-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.71 KB
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
{
"name": "wdio-testingbot-service",
"version": "0.2.3",
"description": "WebdriverIO service for better TestingBot integration",
"main": "index.js",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testingbot/wdio-testingbot-service.git"
},
"keywords": [
"webdriverio",
"wdio",
"testingbot",
"test",
"automation",
"cloud",
"wdio-service"
],
"author": "Jochen Delabie <info@testingbot.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/testingbot/wdio-testingbot-service/issues"
},
"homepage": "https://github.com/testingbot/wdio-testingbot-service#readme",
"dependencies": {
"request": "^2.87.0",
"testingbot-tunnel-launcher": "^1.1.7"
},
"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"
}
}