-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.5 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": "garbage-in-garbage-out",
"version": "1.0.0",
"description": "Looking at the flow of garbage through US cities",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "http-server . -p 8080",
"build": "./node_modules/.bin/rollup -c",
"build:watch": "ROLLUP_WATCH=true ./node_modules/.bin/rollup -c --watch",
"build:production": "NODE_ENV=production ./node_modules/.bin/rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jermspeaks/garbage-in-garbage-out.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jermspeaks/garbage-in-garbage-out/issues"
},
"homepage": "https://github.com/jermspeaks/garbage-in-garbage-out#readme",
"dependencies": {
"csv-parse": "^1.2.4",
"csvtojson": "^1.1.9",
"d3": "^4.11.0",
"d3-svg-legend": "^2.0.0",
"http-server": "^0.10.0",
"queue": "^4.4.1",
"stream-transform": "^0.1.2",
"topojson": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-minify": "^0.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-minify": "^0.2.0",
"prettier": "1.7.4",
"request": "^2.83.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.3.4"
}
}