forked from gkushang/cucumber-html-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cucumber-html-reporter",
"version": "4.0.0",
"description": "Generates Cucumber HTML reports in three different themes",
"main": "index.js",
"author": {
"name": "Kushang Gajjar",
"email": "[email protected]"
},
"contributors": [
{
"name": "Galileo1",
"url": "https://github.com/Galileo1"
},
{
"name": "LiQiang",
"url": "https://github.com/li-qiang"
},
{
"name": "Igor Muchychka",
"url": "https://github.com/mucsi96"
},
{
"name": "Miguel Ángel Domínguez",
"url": "https://github.com/eridem"
},
{
"name": "Thyagarajulu Atthipatla",
"url": "https://github.com/thyagab"
},
{
"name": "Alexandros D",
"url": "https://github.com/AlexandrosD"
},
{
"name": "spujar",
"url": "https://github.com/spujar"
},
{
"name": "Craeg Strong",
"url": "https://github.com/cstrong"
},
{
"name": "anrodkin",
"url": "https://github.com/anrodkin"
},
{
"name": "spukst3r",
"url": "https://github.com/spukst3r"
},
{
"name": "klimenko4",
"url": "https://github.com/klimenko4"
}
],
"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",
"test": "node test/createHtmlReports.js",
"posttest": "rm -rf test/report/*.html test/report/*.json test/report/screenshot screenshots"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkushang/cucumber-html-reporter.git"
},
"bugs": {
"url": "https://github.com/gkushang/cucumber-html-reporter/issues",
"email": "[email protected]"
},
"keywords": [
"cucumber",
"html",
"cucumber-html-reporter",
"html report",
"json to html"
],
"license": "MIT",
"homepage": "https://github.com/gkushang/cucumber-html-reporter#readme",
"dependencies": {
"find": "^0.2.7",
"fs-extra": "^3.0.1",
"js-base64": "^2.3.2",
"jsonfile": "^3.0.0",
"lodash": "^4.17.2",
"open": "0.0.5"
},
"devDependencies": {
"chai": "^3.5.0",
"cucumber": "^4.0.0"
}
}