-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 856 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
{
"name": "cucumber-stats",
"version": "1.0.3",
"spec": "cucumber version >=4.x <=6.x",
"description": "Step usage statisticsfor cucumber-js",
"keywords": [
"testing",
"bdd",
"cucumber",
"gherkin",
"tests"
],
"author": "Alex Bakanov",
"license": "MIT",
"repository": {
"url": "https://github.com/Bakanych/cucumber-stats.git",
"type": "git"
},
"scripts": {
"test": "tsc && node ./bin/cucumber-stats",
"cucumber": "cucumber-js"
},
"directories": {
"lib": "./lib"
},
"files": [
"bin/",
"lib/"
],
"bin": "./bin/cucumber-stats",
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/cucumber": "^6.0.1",
"@types/node": "^13.11.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"peerDependencies": {
"cucumber": "4.x - 6.x"
}
}