wdio-docker-service
Version:
WebdriverIO service to start and stop docker container (for Selenium and more)
75 lines (74 loc) • 2.08 kB
JSON
{
"name": "wdio-docker-service",
"version": "3.2.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",
"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:dev && wdio test/integration/docker-selenium/wdio.conf.js && wdio test/integration/docker-app/wdio.conf.js"
},
"keywords": [
"webdriverio",
"wdio",
"wdio-service",
"docker",
"tests"
],
"author": "Simon Tsvilik",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"@wdio/cli": "^7.20.5",
"@wdio/local-runner": "^7.20.5",
"@wdio/mocha-framework": "^7.20.3",
"@wdio/selenium-standalone-service": "^7.20.3",
"@wdio/spec-reporter": "^7.20.3",
"@wdio/sync": "^7.20.5",
"chai": "^4.3.6",
"chromedriver": "^103.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.19.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"wdio-chromedriver-service": "^7.3.2",
"webdriverio": "^7.20.5"
},
"dependencies": {
"@wdio/logger": "^7.19.0",
"fs-extra": "^10.1.0",
"node-fetch": "^2.6.7"
},
"contributors": [
"Simon Tsvilik <webdevsimon@gmail.com>"
],
"nyc": {
"exclude": [
"index.js",
"launcher.js",
"lib",
"test"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": true,
"cache": false,
"all": true
}
}