-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "nexrad.js",
"version": "1.1.1",
"description": "A JavaScript processor for WSR-88D NEXRAD radar data.\n\nTo install, run `npm install; bower install`.\n\nStart the server by renaming `config.default.json` to `config.json` and running `npm start`.\n\nv1.0.0 has been deprecated and will be removed in v2.0.0.",
"apidoc": {
"title": "nexrad.js API documentation"
},
"main": "server.js",
"scripts": {
"gendocs": "./node_modules/.bin/grunt gendocs",
"apidoc": "./node_modules/.bin/apidoc-markdown -p docs/ -o api.md",
"grunt": "./node_modules/.bin/grunt",
"start": "npm run gendocs && npm run apidoc && npm run grunt && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexNeises/nexrad.js.git"
},
"author": "Alex Neises",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexNeises/nexrad.js/issues"
},
"homepage": "https://github.com/AlexNeises/nexrad.js#readme",
"dependencies": {
"async": "^2.1.4",
"cluster": "^0.7.7",
"connect-busboy": "0.0.2",
"express": "^4.14.0",
"fs-extra": "^1.0.0",
"lodash": "^4.17.4",
"progress": "^1.1.8"
},
"devDependencies": {
"apidoc-markdown": "^0.2.0",
"grunt": "^1.0.1",
"grunt-apidoc": "^0.11.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-string-replace": "^1.3.1"
}
}