-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·55 lines (55 loc) · 1.28 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
53
54
55
{
"name": "test-funnel",
"version": "1.1.2",
"description": "Javascript test selector",
"main": "./bin/cli.js",
"bin": {
"test-funnel": "./dist/bin/cli.js"
},
"scripts": {
"test": "jest",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/bin/cli.js -r jest -o HEAD~7"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"keywords": [
"RTS",
"regression test",
"unit test",
"developer tool",
"CI",
"Javascript",
"mocha",
"jest",
"file dependencies"
],
"repository": {
"type": "git",
"url": "git+https://github.com/slxiao/test-funnel.git"
},
"author": "slxiao1988@163.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/slxiao/test-funnel/issues"
},
"homepage": "https://github.com/slxiao/test-funnel#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.15.1",
"madge": "^3.4.4",
"rc": "^1.2.8"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.8.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^24.8.0",
"rimraf": "^2.6.3"
}
}