-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 931 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
{
"name": "play",
"version": "0.0.0",
"description": "A JavaScript NES emulator",
"repository": {
"type": "git",
"url": "git://github.com/outNapGnaw/fc-game.git"
},
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.1",
"grunt-contrib-jshint": "~0.5.4"
},
"bugs": {
"url": "https://github.com/outNapGnaw/fc-game/issues"
},
"homepage": "https://github.com/outNapGnaw/fc-game#readme",
"main": "index.js",
"bin": {
"play": "config.js"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup -c bin/config.js",
"grunt": "grunt",
"dev": "node dist/play ./ -p 9999"
},
"author": "",
"dependencies": {
"journey": "^0.4.0-pre-3",
"opts": "^1.2.6",
"rollup": "^0.43.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-node-resolve": "^3.0.0"
}
}