forked from piotrwitek/ts-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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
50
51
52
{
"name": "ts-mocha",
"version": "1.0.3",
"description": "Mocha thin wrapper that allows running TypeScript tests with TypeScript runtime (ts-node) to get rid of compilation complexity",
"repository": "https://github.com/piotrwitek/ts-mocha",
"author": "Piotr Witek <[email protected]> (http://piotrwitek.github.io)",
"license": "MIT",
"main": "src/index.js",
"bin": {
"ts-mocha": "./bin/ts-mocha"
},
"engines": {
"node": ">= 0.10.x"
},
"scripts": {
"prepublishOnly": "yarn run clean && yarn install --production && yarn add -D mocha && yarn start",
"clean": "rm -rf node_modules/",
"start": "./bin/ts-mocha -p test test/**/*.spec.ts",
"test": "echo \"Yet no tests was needed.\""
},
"dependencies": {
"ts-node": "^1.7.2"
},
"devDependencies": {
"@types/expect": "^1.13.31",
"@types/mocha": "^2.2.33",
"@types/node": "^0.0.2",
"expect": "^1.20.2",
"husky": "^0.11.9",
"mocha": "^3.2.0",
"tslint": "^4.0.2",
"typescript": "^2.1.4"
},
"peerDependencies": {
"mocha": "^3.2.0"
},
"files": [
"bin/",
"src/",
"package.json",
"README.md",
"LICENSE",
"yarn.lock"
],
"keywords": [
"ts",
"mocha",
"typescript",
"ts-node",
"test"
]
}