forked from jls/nightwatch-html-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "nightwatch-html-reporter",
"description": "Generates an HTML view of the Nightwatch.js test reports by either parsing the XML files generated by Nightwatch or by using the Nightwatch reporter options.",
"version": "2.0.2",
"homepage": "https://github.com/jls/nightwatch-html-reporter",
"author": {
"name": "James Smith",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/jls/nightwatch-html-reporter.git"
},
"bugs": {
"url": "https://github.com/jls/nightwatch-html-reporter/issues"
},
"license": "MIT",
"main": "lib/reporter",
"scripts": {
"test": "nodeunit test",
"lint": "eslint ./"
},
"dependencies": {
"async": "^2.1.4",
"lodash": "^4.9.0",
"nconf": "^0.8.4",
"open": "0.0.5",
"pug": "^2.0.0-beta11",
"readdirp": "^2.0.0",
"xml2js": "^0.4.6"
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"nodeunit": "^0.11.0"
},
"keywords": [
"nightwatch",
"nightwatchjs",
"reporter",
"generator",
"report generator",
"html reporter",
"custom reporter"
],
"preferGlobal": "true",
"bin": {
"nightwatch-html-reporter": "lib/cli.js"
}
}