-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "find-related-tests-js",
"version": "1.0.20",
"description": "Find related tests only for changed files in branch. Flexible alternate for jest findRelatedTests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"find-related-tests-js": "dist/cli.js"
},
"author": "Sivakumar R",
"license": "MIT",
"homepage": "https://github.com/tak2siva/find-related-tests-js",
"repository": {
"type": "git",
"url": "https://github.com/tak2siva/find-related-tests-js"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register test/*.spec.ts",
"prepublish": "tsc"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/loglevel": "^1.6.3",
"@types/mocha": "^7.0.2",
"@types/yargs": "^15.0.4",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/dependency-tree": "^7.2.0",
"@types/node": "^13.13.5",
"dependency-tree": "^7.2.1",
"loglevel": "^1.6.8",
"yargs": "^15.3.1"
}
}