-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "jsgbc-web",
"version": "0.5.8",
"description": "A GameBoy Color Emulator for the Web",
"main": "src/index.js",
"repository": "https://github.com/ardean/jsGBC-web",
"bugs": "https://github.com/ardean/jsGBC-web/issues",
"author": "ardean",
"license": "MIT",
"keywords": [
"gameboy",
"color",
"emulator",
"gameboy-color",
"gameboy-color-emulator",
"gbc",
"html5",
"html5-canvas",
"canvas",
"jsgbc"
],
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0",
"build": "webpack --config webpack.prod.js && cpy ./jsgbc-web.js ./docs && gulp build && cpy bower_components/jsgbc-ui/images/*.png docs/bower_components/jsgbc-ui/images/ && cpy bower_components/webcomponentsjs/webcomponents.min.js docs/bower_components/webcomponentsjs/"
},
"dependencies": {
"jquery": "^3.3.1",
"jsfullscreen": "^0.1.0",
"jsgamepad": "^0.1.0",
"jsgbc": "^0.5.8",
"jspointerlock": "^1.0.0"
},
"devDependencies": {
"@types/jquery": "^3.3.2",
"bower": "^1.8.0",
"clean-webpack-plugin": "^0.1.19",
"cpy-cli": "^1.0.1",
"express": "^4.14.1",
"gulp": "^3.9.1",
"gulp-vulcanize": "^6.1.0",
"require-dir": "^0.3.1",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}