-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 926 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
{
"name": "uri-stats",
"version": "0.0.7",
"description": "",
"main": "index.js",
"scripts": {
"build-data": "npm run fetch-data && node lto.js ./uri-users > data.json",
"build-js": "browserify browser/main.js -o assets/js/bundle.js",
"watch-js": "watchify browser/main.js -o assets/js/bundle.js -dv",
"fetch-data": "node index.js",
"start": "npm run build-js && http-server .",
"start-dev": "npm run watch-js & http-server .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Manuel Pineda <[email protected]> (http://github.com/pin3da)",
"license": "ISC",
"dependencies": {
"c3": "^0.4.11",
"d3": "^3.5.16",
"date-and-time": "^0.3.0",
"fetch-user-uri": "^1.0.2",
"http-server": "^0.9.0",
"level": "^1.4.0",
"superagent": "^1.8.3"
},
"devDependencies": {
"browserify": "^13.0.0",
"watchify": "^3.7.0"
}
}