-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "terminal-gbc-emulator",
"version": "0.2.0",
"description": "GBC emulator in the terminal",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MX-Futhark/terminal-gbc-emulator.git"
},
"keywords": [
"gbc",
"gameboy",
"emulator",
"terminal",
"ascii"
],
"author": "Maxime PIA",
"license": "MIT",
"bugs": {
"url": "https://github.com/MX-Futhark/terminal-gbc-emulator/issues"
},
"homepage": "https://github.com/MX-Futhark/terminal-gbc-emulator#readme",
"dependencies": {
"active-win": "^3.0.0",
"ansi": "^0.3.1",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"canvas": "^1.6.12",
"color-convert": "^1.9.3",
"four-color-ascii-canvas": "^1.1.0",
"iohook": "^0.2.0",
"jsgbc": "github:ardean/jsGBC-core",
"keycode": "^2.2.0",
"node-localstorage": "^1.3.1",
"speaker": "^0.4.1",
"web-audio-api": "^0.2.2"
},
"iohook": {
"targets": [
"node-57"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64",
"ia32"
]
}
}