forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "@open-wc/testing-helpers",
"version": "2.1.3",
"publishConfig": {
"access": "public"
},
"description": "Testing Helpers following open-wc recommendations",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/testing-helpers"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/tree/master/packages/testing-helpers",
"module": "index.js",
"type": "module",
"exports": {
".": "./index.js",
"./pure": "./index-no-side-effects.js"
},
"scripts": {
"debug": "cd ../../ && yarn debug --group testing-helpers",
"prepublishOnly": "publish-docs --github-url https://github.com/open-wc/open-wc/ --git-root-dir ../../",
"test": "cd ../../ && yarn test:web --group testing-helpers"
},
"files": [
"*.d.ts",
"*.js",
"src",
"types"
],
"keywords": [
"testing",
"helpers",
"browser-testing",
"fixtures"
],
"dependencies": {
"@open-wc/scoped-elements": "^2.1.3",
"lit": "^2.0.0",
"lit-html": "^2.0.0"
},
"types": "types/index.d.ts"
}