-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "tsmochanyc",
"version": "1.0.0",
"description": "Sample project for Typescript, Mocha, and Istanbul using [ts-node](https://www.npmjs.com/package/ts-node).",
"main": "index.js",
"scripts": {
"unit-test": "mocha -r ts-node/register src/**/*.spec.ts",
"test": "nyc mocha"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/oleersoy/tsmochanyc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oleersoy/tsmochanyc/issues"
},
"homepage": "https://github.com/oleersoy/tsmochanyc#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.2",
"@types/node": "^10.3.4",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"source-map-support": "^0.5.6",
"ts-node": "^6.1.2",
"tsconfig-paths": "^3.4.0",
"typescript": "^2.9.2"
}
}