This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.16 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
{
"name": "wdio-sumologic-reporter",
"description": "A WebdriverIO plugin. Reporter that uploads results to Sumo Logic for statistical analyses",
"version": "0.0.3",
"homepage": "http://webdriver.io",
"author": "Christian Bromann <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/webdriverio/wdio-sumologic-reporter.git"
},
"bugs": {
"url": "https://github.com/webdriverio/wdio-sumologic-reporter/issues"
},
"license": "MIT",
"main": "./build/reporter.js",
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"build": "grunt build",
"prepublish": "npm prune && npm run build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha --compilers js:babel-register --recursive tests/unit",
"test:integration": "wdio tests/integration/wdio.conf.js"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"dateformat": "^1.0.12",
"deepmerge": "^0.2.10",
"request": "^2.74.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-bump": "^0.6.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "^19.0.0",
"grunt-npm": "0.0.2",
"load-grunt-tasks": "^3.2.0",
"wdio-mocha-framework": "^0.4.1",
"wdio-spec-reporter": "0.0.3",
"webdriverio": "^4.2.14"
},
"tags": [
"web",
"test",
"selenium",
"browser",
"javascript"
],
"keywords": [
"webdriverio",
"wdio",
"wdio-reporter",
"remote",
"debugging"
],
"contributors": [
"Christian Bromann <[email protected]>"
]
}