-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (27 loc) · 818 Bytes
/
package.json
File metadata and controls
30 lines (27 loc) · 818 Bytes
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
{
"name": "mocha_debug_test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --opts test/settings.ts-node/mocha.opts",
"test:ts": "mocha --opts test/settings.ts-node/mocha.opts",
"test:ts:watch": "mocha --opts test/settings.ts-node/mocha.opts --watch",
"pretest:js": "tsc --project ./test --sourcemap",
"test:js": "mocha --opts test/settings.transpiled-code/mocha.opts",
"tsc": "tsc",
"test:build:watch": "tsc --project ./test --sourcemap --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"chai": "^4.1.2",
"comment-json": "^1.1.3",
"mocha": "^2.5.3",
"ts-node": "^3.3.0",
"tsconfig-paths": "^2.3.0",
"typescript": "^2.5.3"
}
}