forked from vidz2/cucumber-html-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "cucumber-html-reporter",
"version": "0.4.0",
"description": "Generates Cucumber HTML reports in three different themes",
"main": "index.js",
"author": {
"name": "Kushang Gajjar",
"email": "g.kushang@gmail.com"
},
"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"
}
],
"scripts": {
"test": "npm run features && npm run clean",
"clean": "rm -rf test/report/*.html test/report/*.json test/report/screenshot",
"features": "node node_modules/cucumber/bin/cucumber test/features/ -f json:test/report/cucumber_report.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkushang/cucumber-html-reporter.git"
},
"bugs": {
"url": "https://github.com/gkushang/cucumber-html-reporter/issues",
"email": "g.kushang@gmail.com"
},
"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": "^2.0.0",
"js-base64": "^2.1.9",
"jsonfile": "^2.3.1",
"lodash": "^4.17.2",
"open": "0.0.5"
},
"devDependencies": {
"chai": "^3.5.0",
"cucumber": "^1.3.1"
}
}