-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 917 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
{
"name": "DU-data-viz-demo",
"version": "1.0.0",
"description": "data visualisation demo of DML data",
"main": "src/app.js",
"repository": "https://github.com/empowerhack/DU-data-viz-demo.git",
"author": "Draw My Life",
"license": "ISC",
"scripts": {
"watch:bundle": "watchify src/app.js -v -d -t [ babelify --presets [ es2015 ] ] -o public/js/bundle.js ",
"deploy": "gh-pages -d public",
"dev": "lite-server -c ./bs-config.json",
"postinstall": "mkdir public/js/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"d3": "^4.4.2",
"jsdom": "^9.9.1",
"leaflet": "^1.0.2"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"gh-pages": "^0.12.0",
"lite-server": "^2.2.2",
"watchify": "^3.8.0"
}
}