generated from mmcs-gd/space-invaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 925 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
{
"name": "space-invaders",
"version": "1.0.0",
"description": "fixed shooter in which the player moves a laser cannon horizontally across the bottom of the screen and fires at aliens overhead",
"main": "index.js",
"watch": {
"em-build-debug": {
"patterns": [
"src"
],
"extensions": "cpp,h",
"quiet": false
}
},
"scripts": {
"em-build-debug": "node build.js src debug dist/index.js",
"em-build": "node build.js src release dist/index.js",
"copy-static": "copyfiles -u 1 public/* dist",
"build": "npm run copy-static && npm run em-build",
"build-debug": "npm run copy-static && npm run em-build-debug",
"watch": "npm run copy-static && npm-watch"
},
"license": "MIT",
"devDependencies": {
"copyfiles": "^2.4.1",
"npm-watch": "^0.11.0"
}
}