forked from webdriverio-community/wdio-docker-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
{
"name": "wdio-docker-service",
"version": "1.5.0",
"description": "WebdriverIO service to start and stop docker container (for Selenium and more)",
"repository": {
"type": "git",
"url": "git+https://github.com/stsvilik/wdio-docker-service.git"
},
"bugs": {
"url": "https://github.com/stsvilik/wdio-docker-service/issues"
},
"main": "index.js",
"scripts": {
"prepare": "npm prune && npm run build",
"build": "rm -rf lib && babel src --out-dir lib -s > /dev/null",
"test": "eslint -c .eslintrc.json src test && npm run test:unit && npm run test:integration",
"test:unit": "nyc mocha --require babel-register --recursive ./test/unit",
"test:integration": "npm run build && wdio test/integration/docker-selenium/wdio.conf.js && wdio test/integration/docker-app/wdio.conf.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"webdriverio",
"wdio",
"wdio-service",
"docker",
"tests"
],
"author": "Simon Tsvilik",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"gulp": "^3.9.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"sinon": "^6.3.4",
"wdio-mocha-framework": "^0.6.3",
"wdio-selenium-standalone-service": "0.0.10",
"wdio-spec-reporter": "^0.1.5",
"webdriverio": "^4.13.2"
},
"dependencies": {
"bluebird": "^3.5.2",
"chalk": "^2.4.1",
"fs-extra": "^7.0.0",
"node-fetch": "^2.2.0"
},
"contributors": [
"Simon Tsvilik <[email protected]>"
],
"nyc": {
"exclude": [
"index.js",
"launcher.js",
"lib",
"test"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": true,
"cache": false,
"all": true
}
}