-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1022 Bytes
/
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
{
"name": "tsnode_mocha",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"cov:test": "nyc mocha -r ts-node/register test/**/*.spec.ts",
"watch:test": "mocha -r ts-node/register --watch test/**/*.spec.ts --watch-extensions tsx,ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^2.2.47",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"jsdom": "^11.6.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"sinon": "^4.2.1",
"sinon-chai": "^2.14.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"dependencies": {
"modernizr": "^3.5.0"
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true
}
}