-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "svelte-testing-demo",
"version": "1.0.0",
"description": "A demo of Svelte 3 testing techniques",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"start": "serve public",
"dev": "rollup -c -w",
"test": "scripty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dirv/svelte-testing-demo.git"
},
"keywords": [
"svelte",
"testing",
"test",
"unit",
"testing",
"tdd"
],
"author": "Daniel Irvine",
"license": "MIT",
"bugs": {
"url": "https://github.com/dirv/svelte-testing-demo/issues"
},
"homepage": "https://github.com/dirv/svelte-testing-demo#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-plugin-rewire-exports": "^2.2.0",
"jasmine": "^3.6.1",
"jsdom": "^16.4.0",
"rollup": "^2.28.2",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"scripty": "^2.0.0",
"serve": "^11.3.2",
"source-map-support": "^0.5.19",
"svelte": "^3.31.2",
"svelte-component-double": "^0.8.0"
}
}