-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (54 loc) · 1.39 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": "cucumber-to-html",
"version": "1.0.2",
"description": "Convert Cucumber JSON reports to HTML",
"main": "index.js",
"typings": "./index.d.ts",
"author": {
"name": "Blue Ibex Labs, UG",
"email": "[email protected]"
},
"contributors": [
{
"name": "Amjad Saleem",
"url": "https://github.com/hunzai"
}
],
"scripts": {
"pretest": "node node_modules/cucumber/bin/cucumber-js test/features/ -r test/features/step_definitions -f json:test/report/cucumber_report.json --no-strict || true",
"clean": "rm -rf screenshots",
"test": "node test/createHtmlReports.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blue-ibex-labs/cucumber-html-reporter.git"
},
"bugs": {
"url": "https://github.com/blue-ibex-labs/cucumber-html-reporter/issues",
"email": "[email protected]"
},
"keywords": [
"cucumber",
"html",
"cucumber-to-html",
"html report",
"json to html"
],
"license": "MIT",
"homepage": "https://github.com/blue-ibex-labs/cucumber-html-reporter#readme",
"dependencies": {
"chalk": "^2.4.2",
"find": "^0.3.0",
"fs-extra": "^8.1.0",
"js-base64": "^2.3.2",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11",
"node-emoji": "^1.10.0",
"open": "^6.4.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"cucumber": "^5.1.0"
}
}