-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.08 KB
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
{
"name": "asteroidal-lander",
"version": "0.1.5",
"author": "Ben Burrill",
"repository": "github:benburrill/asteroidal-lander",
"description": "A game inspired by \"Lunar Lander\" with Newtonian gravity",
"keywords": [
"game",
"simulation",
"lunar lander",
"asteroid",
"physics",
"space"
],
"license": "MIT",
"main": "src/main.js",
"dependencies": {
"open-simplex-noise": "^1.7.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babelify": "^10.0.0",
"budo": "^11.6.4",
"exorcist": "^1.0.1",
"uglifyify": "^5.0.2"
},
"scripts": {
"live": "budo src/main.js:build/asteroidal-lander.js --dir static --live --wg '**/*.{html,css,json}' -- -t babelify",
"build": "mkdir -p static/build && browserify -d src/main.js -t babelify -g uglifyify | exorcist -b src static/build/asteroidal-lander.js.map > static/build/asteroidal-lander.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}