-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1005 Bytes
/
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
{
"name": "svelte-circles-demo",
"version": "0.0.0",
"description": "Playground for developing interactive SVG, as a Svelte component",
"svelte": "src/index.svelte",
"module": "dist/index.mjs",
"main": "dist/index.js",
"author": "Asko Kauppi",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/akauppi/svelte-circles-demo"
},
"scripts": {
"build": "rollup -c",
"dev": "run-p dev:start dev:watch",
"dev:watch": "rollup -c -w",
"dev:start": "sirv app/public --dev --single",
"clean": "(cd app/public && rm -f *.js *.css *.map)",
"prepublishOnly": "build",
"test": "mocha # tbd.",
"pretest": "build"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"rollup": "^1.27.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.1.2",
"sirv-cli": "^0.4.5",
"svelte": "^3.15.0"
}
}