-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1017 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1017 Bytes
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
{
"name": "earth",
"description": "Earth",
"version": "0.0.1",
"private": true,
"author": {
"name": "Cameron Beccario",
"email": "cambecc@nullschool.net"
},
"scripts": {
"test": "No test specified",
"build": "mkdir -p ./bin & rm ./bin/* & pkg dev-server.js --out-path ./bin/",
"start": "node dev-server.js"
},
"bin": "dev-server.js",
"pkg": {
"assets": [
"public/**/*"
],
"output": "dist"
},
"homepage": "https://github.com/cambecc/earth",
"repository": {
"type": "git",
"url": "git://github.com/cambecc/earth.git"
},
"engine": "node >= 0.10.21",
"dependencies": {
"axios": "^1.1.3",
"express": "3.4.4",
"grib2json": "^1.0.2",
"mkdirp": "0.3.5",
"open": "^8.4.2",
"swig": "1.2.2",
"when": "2.6.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.7.1"
}
}