-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "gameboyjs",
"version": "0.1.0",
"description": "My emulator for Gameboy in TypeScript",
"main": "build/bundle.js",
"dependencies": {
"express": "^4.17.1",
"lodash": "^4.17.19",
"vue": "^2.6.11",
"vue-router": "^3.1.6"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/chai-as-promised": "^7.1.2",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/sinon": "^7.5.2",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"css-loader": "^6.6.0",
"html-webpack-plugin": "^5.5.0",
"jsfft": "0.0.4",
"mocha": "^8.2.1",
"node-sass": "^7.0.1",
"sass-loader": "^12.6.0",
"sinon": "^9.0.0",
"sinon-chai": "^3.5.0",
"source-map-loader": "^3.0.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.8.2",
"vue-loader": "^15.9.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.69.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"serve": "node server.js",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"build": "webpack --mode=development",
"dev": "webpack --mode=development --watch",
"prod": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakoberzar/gameboyjs.git"
},
"author": "Jakob Erzar",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jakoberzar/gameboyjs/issues"
},
"homepage": "https://github.com/jakoberzar/gameboyjs#readme"
}