forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 KB
/
package.json
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
{
"name": "@open-wc/testing",
"version": "3.0.0-next.3",
"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",
"exports": {
".": "./index.js",
"./pure": "./index-no-side-effects.js"
},
"scripts": {
"build-plugins": "rollup -c rollup.config.js",
"debug": "cd ../../ && yarn 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 ../../ && yarn test:web --group testing"
},
"files": [
"*.d.ts",
"*.js",
"plugins"
],
"keywords": [
"testing",
"chai"
],
"dependencies": {
"@esm-bundle/chai": "^4.3.4",
"@open-wc/chai-dom-equals": "^0.12.36",
"@open-wc/semantic-dom-diff": "^0.19.5-next.2",
"@open-wc/testing-helpers": "^2.0.0-next.0",
"@types/chai": "^4.2.11",
"@types/chai-dom": "^0.0.9",
"@types/sinon-chai": "^3.2.3",
"chai-a11y-axe": "^1.3.2-next.0"
}
}