-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "histograph-viewer",
"version": "0.5.0",
"description": "Viewer for Histograph API data",
"main": "",
"dependencies": {
"cortexjs": "^0.8.4",
"leaflet": "^0.7.3",
"react": "^0.13.3"
},
"devDependencies": {
"eslint": "^0.16.2",
"hintify": "^0.1.0",
"histograph-config": "histograph/config",
"reactify": "^1.1.0",
"serve": "~>7.0.0",
"uglifyify": "^3.0.1",
"watchify": "^2.4.0"
},
"scripts": {
"start": "NODE_ENV=development node viewer-config.js > config.json && watchify -d -t reactify src/index.js -o dist/bundle.js & serve",
"production": "NODE_ENV=production node viewer-config.js > config.json && browserify -t reactify -g uglifyify src/index.js -o dist/bundle.js",
"test": "eslint src/*.js src/components/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/histograph/viewer.git"
},
"author": "Bert Spaan",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/histograph/viewer/issues"
},
"homepage": "http://histograph.io/viewer"
}