forked from webdriverio-boneyard/wdio-sauce-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "wdio-sauce-service",
"version": "0.4.14",
"description": "WebdriverIO service for better Sauce Labs integration",
"author": "Christian Bromann <christian@saucelabs.com>",
"homepage": "https://github.com/webdriverio/wdio-sauce-service#readme",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/wdio-sauce-service.git"
},
"keywords": [
"webdriverio",
"wdio",
"sauce",
"saucelabs",
"test",
"automation",
"cloud",
"wdio-service"
],
"bugs": {
"url": "https://github.com/webdriverio/wdio-sauce-service/issues"
},
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf ./build",
"compile": "babel lib/ -d build/",
"eslint": "eslint ./lib",
"release": "npm run build && np patch",
"release:patch": "npm run build && np patch",
"release:minor": "npm run build && np minor",
"release:major": "npm run build && np major",
"test": "run-s eslint",
"prepublish": "npm prune",
"watch": "npm run compile -- --watch"
},
"dependencies": {
"request": "^2.88.0",
"sauce-connect-launcher": "~1.2.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.4.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"np": "^3.0.4",
"npm-run-all": "^4.0.2"
},
"contributors": [
"Christian Bromann <github@christian-bromann.com>",
"christian-bromann <mail@christian-bromann.com>",
"khirakawa <ken.hirakawa@am.sony.com>",
"Pranjal Raihan <Pranjal.Raihan@am.sony.com>",
"Daniel Grant <danieljohngrant@gmail.com>",
"Jan Aagaard Meier <janzeh@gmail.com>"
]
}