-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
80 lines (80 loc) · 2.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "jsgbc",
"productName": "jsGBC",
"version": "0.4.6",
"description": "A cross-platform, free and open-source GameBoy Color Emulator written in JavaScript",
"main": "app/index.js",
"repository": "https://github.com/ardean/jsGBC",
"bugs": "https://github.com/ardean/jsGBC/issues",
"author": "ardean",
"license": "MIT",
"keywords": [
"gameboy",
"color",
"emulator",
"gameboy-color",
"gameboy-color-emulator",
"gbc",
"html5",
"html5-canvas",
"canvas",
"jsgbc"
],
"scripts": {
"start": "gulp dev && ELECTRON_ENV=development electron ./",
"start-win": "gulp dev && set ELECTRON_ENV=development && electron ./",
"build": "npm run build-src && gulp build && cpy index.js app/dist/ && npm run build-assets && build",
"build-src": "jspm build src/index.js index.js --minify --skip-source-maps",
"build-assets": "cpy bower_components/jsgbc-ui/images/*.png app/dist/bower_components/jsgbc-ui/images/ && cpy bower_components/webcomponentsjs/webcomponents.min.js app/dist/bower_components/webcomponentsjs/"
},
"devDependencies": {
"bower": "^1.8.0",
"cpy-cli": "^1.0.1",
"electron": "^1.4.15",
"electron-builder": "^13.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-inject": "^4.2.0",
"gulp-vulcanize": "^6.1.0",
"jspm": "^0.17.0-beta.38",
"require-dir": "^0.3.1"
},
"jspm": {
"name": "jsgbc",
"main": "src/index.js",
"dependencies": {
"jquery": "npm:jquery@^3.1.1",
"jsgamepad": "github:ardean/jsGamepad@^0.1.0",
"jsgbc-core": "github:ardean/jsGBC-core@^0.4.3"
},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.20"
},
"peerDependencies": {
"assert": "npm:jspm-nodelibs-assert@^0.2.0",
"buffer": "npm:jspm-nodelibs-buffer@^0.2.0",
"constants": "npm:jspm-nodelibs-constants@^0.2.0",
"crypto": "npm:jspm-nodelibs-crypto@^0.2.0",
"events": "npm:jspm-nodelibs-events@^0.2.0",
"fs": "npm:jspm-nodelibs-fs@^0.2.0",
"os": "npm:jspm-nodelibs-os@^0.2.0",
"path": "npm:jspm-nodelibs-path@^0.2.0",
"process": "npm:jspm-nodelibs-process@^0.2.0",
"stream": "npm:jspm-nodelibs-stream@^0.2.0",
"string_decoder": "npm:jspm-nodelibs-string_decoder@^0.2.0",
"timers": "npm:jspm-nodelibs-timers@^0.2.0",
"util": "npm:jspm-nodelibs-util@^0.2.0",
"vm": "npm:jspm-nodelibs-vm@^0.2.0"
},
"overrides": {
"npm:inherits@2.0.3": {
"ignore": [
"test.js"
]
},
"npm:jquery@3.1.1": {
"format": "amd"
}
}
}
}