-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 985 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
42
43
44
{
"name": "console8",
"version": "0.0.5",
"description": "yet another chip-8 emulator that works on your command line interface.",
"main": "./src/index.js",
"bin": {
"console8": "./bin/index.js",
"obsfx@console8": "./bin/index.js"
},
"scripts": {
"run-dev": "node ./bin/index_dev.js --rom=./roms/wipeoff.rom --color=green",
"run": "node ./bin/index.js --rom=./roms/wipeoff.rom --color=green",
"minify": "minify ./src -d ./build",
"link": "npm link --force"
},
"keywords": [
"console",
"8",
"tool",
"command",
"line",
"interface",
"terminal",
"cli",
"emulator",
"output",
"user-friendly",
"chip8"
],
"author": "obsfx",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/obsfx/console8.git"
},
"dependencies": {
"iohook": "^0.6.5",
"kleur": "^3.0.3",
"minimist": ">=1.2.3"
},
"devDependencies": {
"babel-minify": "^0.5.1"
}
}