forked from gkushang/cucumber-parallel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
56
57
58
{
"name": "cucumber-parallel",
"version": "2.0.3",
"description": "Run cucumber-js features in parallel",
"author": {
"name": "kushang gajjar",
"email": "g.kushang@gmail.com"
},
"scripts": {
"pretest": "npm run clean && npm run parallel-features && npm run assert-report",
"test": "npm run clean && npm run parallel-scenarios",
"posttest": "npm run generate-report && npm run assert-report",
"parallel-features": "node test/bin/cucumber-parallel test/features/ -f json:test/report/cucumber_report.json --parallel features",
"parallel-scenarios": "node test/bin/cucumber-parallel test/features/ -f json:test/report/cucumber_report.json --parallel scenarios",
"assert-report": "node test/features/assert/assertReport.js",
"clean": "rm -rf test/report/*.html test/report/cucumber_report.json test/report/*.json test/report/screenshot",
"generate-report": "node test/report/generateReport.js"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-fs": "^1.0.0",
"cucumber-html-reporter": "^2.0.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"bluebird": "^3.5.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"cucumber": "^2.3.1",
"debug": "^2.2.0",
"events": "^1.1.1",
"fs-finder": "^1.8.1",
"gherkin": "^4.1.3",
"lodash": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkushang/cucumber-parallel.git"
},
"bugs": {
"url": "https://github.com/gkushang/cucumber-parallel/issues",
"email": "g.kushang@gmail.com"
},
"license": "MIT",
"keywords": [
"cucumber",
"parallel",
"concurrent",
"cucumber-js",
"cucumber-parallel"
],
"maintainers": [
{
"name": "kushang",
"email": "g.kushang@gmail.com"
}
]
}