forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@open-wc/testing",
"version": "4.0.0",
"publishConfig": {
"access": "public"
},
"description": "Testing following open-wc recommendations",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/testing"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/tree/master/packages/testing",
"module": "index.js",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./pure": {
"types": "./index-no-side-effects.d.ts",
"default": "./index-no-side-effects.js"
}
},
"scripts": {
"build-plugins": "rollup -c rollup.config.js",
"debug": "cd ../../ && npm run debug --group testing",
"monorepo:postinstall": "npm run build-plugins",
"prepublishOnly": "publish-docs --github-url https://github.com/open-wc/open-wc/ --git-root-dir ../../",
"test": "cd ../../ && npm run test:web -- --group testing"
},
"files": [
"*.d.ts",
"*.js",
"plugins"
],
"keywords": [
"testing",
"chai"
],
"dependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/semantic-dom-diff": "^0.20.0",
"@open-wc/testing-helpers": "^3.0.0",
"@types/chai-dom": "^1.11.0",
"@types/sinon-chai": "^3.2.3",
"chai-a11y-axe": "^1.5.0"
}
}