-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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": "typescript-mocha",
"description": "skeleton for TypeScript users.",
"version": "0.1.0",
"author": {
"name": "TDD BaseCamp and other contributors"
},
"bugs": {
"url": "https://github.com/tddbc/typescript-mocha/issues"
},
"homepage": "https://github.com/tddbc/typescript-mocha",
"keywords": [
"TDDBC"
],
"license": "MIT",
"directories": {
"test": "test"
},
"main": "src/sample.ts",
"repository": {
"type": "git",
"url": "https://github.com/tddbc/typescript-mocha.git"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.26",
"@types/source-map": "^0.5.1",
"del-cli": "^1.1.0",
"espower-typescript": "^8.1.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"power-assert": "^1.4.4",
"source-map-support": "^0.4.16",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.1",
"typescript-formatter": "^6.0.0"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"clean": "del coverage",
"fmt": "tsfmt -r",
"pretest": "npm run lint",
"test": "mocha --compilers ts:espower-typescript/guess \"test/**/*.ts\"",
"watch": "mocha --compilers ts:espower-typescript/guess --watch \"test/**/*.ts\"",
"test-coverage": "mocha --compilers ts:ts-node/register --require source-map-support/register",
"coverage": "npm run clean && nyc --reporter html --reporter text --extension .ts npm run test-coverage"
}
}