-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
48
49
50
51
52
{
"name": "svelte-custom-element",
"version": "0.0.1",
"author": "Justin Wilkerson @gojutin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gojutin/svelte-custom-element.git"
},
"bugs": {
"url": "https://github.com/gojutin/svelte-custom-element/issues"
},
"keywords": [
"svelte",
"web-component",
"custom-element",
"element",
"shadow-dom"
],
"devDependencies": {
"dom-testing-library": "^5.0.0",
"jest": "^24.8.0",
"jest-dom": "^4.0.0",
"jest-transform-svelte": "^2.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^1.18.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-livereload": "^1.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-terser": "^5.1.1",
"sirv-cli": "^0.4.4",
"svelte": "^3.6.10",
"svelte-testing-library": "^1.6.0"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public",
"start:dev": "sirv public --dev",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.svelte$": "jest-transform-svelte"
},
"setupFilesAfterEnv": [
"svelte-testing-library/cleanup-after-each"
]
}
}