-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 772 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 772 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
{
"name": "nes-bootstrap",
"version": "1.0.0",
"description": "Simple NES bootstrap project for C",
"main": "game.nes",
"scripts": {
"build": "npm run build:sprites && npm run build:code",
"build:code": "./compile",
"build:sprites": "img2chr src/sprites/sprites.png src/sprites/sprites.chr",
"watch": "nodemon --exec 'npm run build' --watch src -e c,h,s,png",
"serve": "http-server",
"start": "run-p build serve watch"
},
"keywords": [
"NES",
"8-bit",
"C",
"cc65",
"Nintendo"
],
"author": "Jesse Luoto",
"license": "MIT",
"devDependencies": {
"http-server": "^0.11.1",
"img2chr": "^1.0.0",
"nodemon": "^1.14.11",
"npm-run-all": "^4.1.2"
},
"dependencies": {
"jsnes": "^0.3.0"
}
}