-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1005 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
32
33
34
35
36
37
38
39
40
41
{
"name": "voxel-mars",
"version": "0.2.0",
"description": "A voxel.js world generated from real Mars topography data",
"repository": {
"type": "git",
"url": "https://github.com/rachel-carvalho/voxel-mars.git"
},
"author": {
"name": "Rachel Carvalho",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-middleware": "^7.0.0",
"coffeeify": "^2.0.1",
"express": "^4.14.0",
"fs-extra": "^0.30.0",
"pngjs": "^2.3.1",
"pug": "^2.0.0-beta3",
"pug-cli": "^1.0.0-alpha6",
"stats.js": "^0.16.0",
"stylus": "^0.54.5",
"three": "^0.66.0",
"uglify-js": "^2.6.4"
},
"scripts": {
"start": "coffee preview.coffee",
"download": "cd world/ && ./download.sh && cd ..",
"slice": "cd world/ && coffee slice.coffee && cd ..",
"build": "./build.sh",
"upload": "./upload.sh"
},
"engines": [
{
"node": "6.2.2"
}
]
}