forked from testdeck/testdeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 991 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
{
"name": "mocha-typescript",
"version": "1.1.7",
"description": "TypeScript decorators based wrapper over mocha's interface",
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/PanayotCankov/mocha-typescript"
},
"bin": {
"mocha-typescript-watch": "./bin/watch.js"
},
"scripts": {
"pretest": "tsc",
"test": "mocha test.js --opts mocha.opts",
"prepare": "tsc"
},
"author": "Panayot Cankov",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^1.1.3",
"yargs": "^6.5.0"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/node": "^7.0.12",
"assert": "^1.3.0",
"better-assert": "^1.0.2",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.15",
"typescript": "^2.4.1"
},
"files": [
"index.js",
"index.d.ts",
"index.js.map",
"index.ts",
"globals.d.ts",
"bin/watch.js"
]
}