-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 963 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 963 Bytes
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
{
"scripts": {
"start": "npm build && npm run server",
"build": "npm install && npm run build:copy_modules",
"server": "http-server -p 8000 -c-1 -s -o ",
"build:copy_modules": "echo 'Copying required node_modules to assets/js/modules...' && copy-node-modules . assets/js -v && rm -rf assets/js/modules && mv assets/js/node_modules assets/js/modules",
"build:update_dependencies": "npm prune --production=false && npm update --dev",
"build:shrinkpack": "npm shrinkwrap --dev && shrinkpack"
},
"dependencies": {
"d3": "^4.7.0",
"d3-sankey": "^0.4.2"
},
"devDependencies": {
"copy-node-modules": "^0.4.1",
"http-server": "^0.9.0",
"shrinkpack": "^0.18.1"
},
"repository": {
"type": "git",
"url": "https://github.com/statabs/parteiwechsel"
},
"author": "Jonas Bieri",
"bugs": {
"url": "https://github.com/statabs-test/parteiwechsel/issues"
},
"homepage": "http://www.statistik.bs.ch"
}