-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
{
"name": "grunt-cucumberjs",
"description": "Generates documentation from Cucumber features",
"version": "2.0.2",
"homepage": "https://github.com/mavdi/grunt-cucumberjs",
"author": {
"name": "Mehdi Avdi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/mavdi/grunt-cucumberjs.git"
},
"contributors": [
{
"name": "Andrew Keig",
"email": "[email protected]",
"url": "https://github.com/AndrewKeig"
},
{
"name": "Jozz Hart",
"email": "[email protected]",
"url": "http://jozzhart.com"
},
{
"name": "Kushang Gajjar",
"email": "[email protected]",
"url": "https://github.com/gkushang"
},
{
"name": "Sowmya Yellamilli",
"url": "https://github.com/yellamillis"
},
{
"name": "Casey Goodhew",
"email": "[email protected]",
"url": "https://github.com/caseygoodhew"
},
{
"name": "John J. Barton",
"email": "[email protected]",
"url": "https://github.com/johnjbarton",
}
],
"dependencies": {
"chai": "^4.1.2",
"cucumber-html-reporter": "^4.0.3",
"cucumber-parallel": "^2.0.3",
"node-fs": "^0.1.7",
"ramda": "^0.24.1"
},
"devDependencies": {
"cucumber": "^2.3.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-jsbeautifier": "^0.2.13"
},
"bugs": {
"url": "https://github.com/mavdi/grunt-cucumberjs/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mavdi/grunt-cucumberjs/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "npm run clean && grunt cucumberjs",
"clean": "rm -rf test/report/*.html test/report/cucumber_report.json test/report/*.json test/report/screenshot"
},
"keywords": [
"gruntplugin",
"cucumber",
"cucumberjs",
"htmlreport",
"parellel"
]
}