nightwatch
Version:
Easy to use Node.js based End-to-End testing solution for browser based apps and websites, using the W3C WebDriver API.
100 lines (99 loc) • 2.19 kB
JSON
{
"name": "nightwatch",
"description": "Easy to use Node.js based End-to-End testing solution for browser based apps and websites, using the W3C WebDriver API.",
"version": "1.3.4",
"author": {
"name": "Andrei Rusu",
"email": "andrei@nightwatchjs.org"
},
"homepage": "http://nightwatchjs.org",
"main": "./lib/index.js",
"license": "MIT",
"bugs": "https://github.com/nightwatchjs/nightwatch/issues",
"repository": {
"type": "git",
"url": "git@github.com:nightwatchjs/nightwatch.git"
},
"dependencies": {
"assertion-error": "^1.1.0",
"chai-nightwatch": "^0.4.0",
"dotenv": "7.0.0",
"ejs": "^2.5.9",
"is-ci": "^2.0.0",
"lodash.clone": "3.0.3",
"lodash.defaultsdeep": "^4.6.1",
"lodash.merge": "^4.6.2",
"minimatch": "3.0.4",
"mkpath": "1.0.0",
"optimist": "^0.6.1",
"ora": "^4.0.2",
"proxy-agent": "^3.1.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"semver": "^6.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^6.3.0",
"js-yaml": "^3.13.1",
"mock-spawn": "^0.2.1",
"mockery": "~2.1.0",
"nock": "^10.0.6",
"nyc": "^14.0.0"
},
"peerDependencies": {
"chromedriver": "*",
"geckodriver": "*"
},
"peerDependenciesMeta": {
"chromedriver": {
"optional": true
},
"geckodriver": {
"optional": true
}
},
"optionalDependencies": {
"mocha": "^6.2.2"
},
"bin": {
"nightwatch": "./bin/nightwatch"
},
"man": "",
"scripts": {
"eslint": "eslint . --quiet",
"mocha-coverage": "nyc --reporter=html mocha test/src/",
"test": "mocha test/src/",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": false,
"node": true
},
"rules": {
"eqeqeq": "off",
"curly": [
"error",
"all"
],
"quotes": [
"error",
"single"
]
}
},
"engines": {
"node": ">= 8.0.0"
},
"files": [
"bin",
"examples",
"lib",
"README.md",
"LICENSE.md",
"index.js"
]
}