-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 810 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 810 Bytes
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
{
"name": "gameboy-emulator",
"version": "0.0.1",
"description": "Gameboy emulator",
"engineStrict": true,
"engines": {
"node": ">= 8.9.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^10.14.1",
"jest": "~23.4.2",
"node-ts": "^2.1.2",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "~5.11.0",
"tslint-microsoft-contrib": "~5.1.0",
"tsutils": "~3.0.0",
"typescript": "^3.3.3333"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"start": "ts-node -D --skip-ignore test/system-test/gameboy-runner.ts",
"test": "jest --config jest.config.json"
},
"author": "Marcel Visser <Marcel1337@hotmail.com>",
"license": "MIT",
"dependencies": {
"tslib": "~1.9.3"
}
}