forked from RaghavendhraK/cucumber-html-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "cucumber-html-report",
"version": "0.6.7",
"description": "Convert cucumber json reports to a pretty html report.",
"homepage": "https://github.com/leinonen/cucumber-html-report",
"author": {
"name": "Peter Leinonen",
"email": "[email protected]",
"url": "http://leinonen.se"
},
"repository": {
"type": "git",
"url": "git://github.com/leinonen/cucumber-html-report.git"
},
"bugs": {
"url": "https://github.com/leinonen/cucumber-html-report/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && mocha src/*.spec.js",
"lint": "eslint index.js src/*.js --ignore-pattern node_modules",
"babel": "babel -d lib src/",
"prepublish": "babel -d lib src/",
"coverage": "istanbul cover --report html node_modules/.bin/_mocha -- -- -u exports -R spec src/**/*"
},
"keywords": [
"cucumber",
"json2html",
"report"
],
"license": "MIT",
"dependencies": {
"atob": "^2.0.3",
"moment": "^2.19.0",
"mustache": "^2.3.0",
"object-assign": "^4.1.0",
"ramda": "^0.23.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
}
}