-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.08 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
{
"name": "ts-reference-for-automated-testing",
"version": "1.0.0",
"description": "Reference game for implementing a unit-testable game in Typescript with Phaser.",
"scripts": {
"build": "tsc -p ./src/tsconfig.json",
"pretest": "tsc -p ./test/tsconfig.json",
"test": "mocha ./temp/**/*.js",
"posttest": "rimraf ./src/**/*.js ./temp/**/*.js",
"lint": "tslint -c ./tslint.json -p ./src/tsconfig.json && tslint -c ./tslint.json -p ./test/tsconfig.json",
"dev": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickH-nz/ts-reference-for-automated-testing.git"
},
"author": "Nick Heath",
"license": "MIT",
"bugs": {
"url": "https://github.com/NickH-nz/ts-reference-for-automated-testing/issues"
},
"homepage": "https://github.com/NickH-nz/ts-reference-for-automated-testing#readme",
"devDependencies": {
"@types/mocha": "^2.2.41",
"ceylon": "^0.9.1",
"mocha": "^3.4.2",
"phaser": "^2.6.2",
"rimraf": "^2.6.1",
"tslint": "^5.4.3",
"typescript": "^2.4.0"
}
}