forked from webdriverio-boneyard/wdio-junit-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.38 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
{
"name": "wdio-junit-reporter",
"version": "0.3.0",
"description": "A WebdriverIO plugin. Report results in junit xml format.",
"main": "build/reporter.js",
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf ./build ./coverage",
"compile": "babel lib/ -d build/",
"eslint": "eslint ./lib test/",
"release": "np patch",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major",
"test": "run-s eslint test:unit",
"test:ci": "run-s clean eslint test:cover",
"test:unit": "mocha --compilers js:babel-core/register test/*.js",
"test:cover": "babel-node ./node_modules/.bin/isparta cover --include 'lib/*.js' _mocha",
"prepublish": "npm prune && run-s build",
"watch": "npm run compile -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/wdio-junit-reporter.git"
},
"directories": {
"lib": "./lib"
},
"keywords": [
"junit",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter"
],
"author": "Christian Bromann <christian@saucelabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio/wdio-junit-reporter/issues"
},
"homepage": "https://github.com/webdriverio/wdio-junit-reporter#readme",
"dependencies": {
"junit-report-builder": "~1.2.0",
"mkdirp": "~0.5.1"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-core": "6.24.0",
"babel-eslint": "7.2.1",
"babel-istanbul": "0.12.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-0": "6.22.0",
"codeclimate-test-reporter": "0.4.1",
"eslint": "3.18.0",
"eslint-config-standard": "7.1.0",
"eslint-plugin-mocha": "4.9.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "2.1.1",
"isparta": "4.0.0",
"istanbul": "0.4.5",
"libxmljs": "0.18.4",
"mocha": "3.2.0",
"np": "2.13.1",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"should": "11.2.1",
"sinon": "2.1.0"
},
"contributors": [
"christian-bromann <contact@christian-bromann.com>",
"Sam Shrekdecker <sleiendecker@skylinenet.net>",
"Christian Bromann <github@christian-bromann.com>",
"Hugo Massaroli <hmassaroli@appnexus.com>",
"Peter Peterson <petey@yahoo-inc.com>",
"George Crawford <g.o.crawford@gmail.com>"
]
}