-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.15 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
{
"name": "ts-gb",
"version": "0.9.9",
"description": "TypeScript Game Boy emulator",
"author": "Vincent Le Biannic",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Lyrkan/ts-gb/",
"scripts": {
"clean": "rimraf dist",
"benchmark": "ts-node ./benchmark/index.ts",
"build": "yarn run clean && tsc",
"lint": "tslint './src/**/*.ts' './test/**/*.ts'",
"nsp": "nsp check",
"precommit": "yarn run lint",
"prepush": "yarn run nsp && yarn run lint && yarn run test",
"test": "mocha -t 60000 -r ts-node/register \"./test/**/*.spec.ts\""
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.2",
"@types/sinon": "^5.0.0",
"ansi-styles": "^3.2.1",
"chai": "^4.1.2",
"husky": "^0.14.3",
"mocha": "^5.1.1",
"nsp": "^3.2.1",
"ora": "^2.1.0",
"rimraf": "^2.6.2",
"sinon": "^5.0.10",
"supports-color": "^5.5.0",
"tone": "^0.12.80",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"yargs": "^11.0.0"
},
"files": [
"src/",
"dist/"
]
}