-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
77 lines (77 loc) · 2.11 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
{
"name": "wdio-docker-service",
"version": "3.3.1",
"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": {
"prepublishOnly": "rm -rf ./lib && npm run build",
"build": "babel ./src --out-dir ./lib",
"build:dev": "rm -rf ./lib && babel ./src --out-dir ./lib -s",
"lint": "eslint -c .eslintrc.json src test",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:unit": "nyc mocha --require @babel/register --recursive ./test/unit",
"test:app": "wdio test/integration/docker-app/wdio.conf.js",
"test:selenium": "wdio test/integration/docker-selenium/wdio.conf.js",
"test:integration": "run-s build:dev test:app test:selenium"
},
"keywords": [
"webdriverio",
"wdio",
"wdio-service",
"docker",
"tests"
],
"author": "Simon Tsvilik",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"@wdio/cli": "^7.30.2",
"@wdio/local-runner": "^7.30.2",
"@wdio/mocha-framework": "^7.30.2",
"@wdio/selenium-standalone-service": "^7.30.2",
"@wdio/spec-reporter": "^7.30.2",
"chai": "^4.3.7",
"chromedriver": "^119.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.38.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^15.0.3",
"wdio-chromedriver-service": "^8.1.1",
"webdriverio": "^7.30.2"
},
"dependencies": {
"@wdio/logger": "^7.26.0",
"fs-extra": "^11.1.1",
"node-fetch": "^2.6.9"
},
"contributors": [
"Simon Tsvilik <[email protected]>"
],
"nyc": {
"exclude": [
"index.js",
"launcher.js",
"lib",
"test"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": true,
"cache": false,
"all": true
}
}