| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "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": "0.9.21",
- "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": {
- "chai-nightwatch": "~0.1.x",
- "ejs": "2.5.7",
- "lodash.clone": "3.0.3",
- "lodash.defaultsdeep": "4.3.2",
- "minimatch": "3.0.3",
- "mkpath": "1.0.0",
- "mocha-nightwatch": "3.2.2",
- "optimist": "0.6.1",
- "proxy-agent": "2.0.0",
- "q": "1.4.1"
- },
- "devDependencies": {
- "chai": "^3.2.0",
- "coveralls": "latest",
- "grunt": "~0.4.4",
- "grunt-complexity": "^0.1.7",
- "grunt-contrib-jshint": "~0.10.0",
- "grunt-jsonlint": "~1.0.4",
- "grunt-npm-release": "latest",
- "jscoverage": "latest",
- "jshint": "~2.4.4",
- "jsonlint": "~1.6.0",
- "mocha": "^2.3.4",
- "mocha-lcov-reporter": "^1.2.0",
- "mock-spawn": "^0.2.1",
- "mockery": "~1.4.0",
- "nock": "~0.45.0",
- "xml2json": "^0.11.0"
- },
- "bin": {
- "nightwatch": "./bin/nightwatch"
- },
- "man": "",
- "scripts": {
- "jshint": "./node_modules/.bin/jshint --verbose --config .jshintrc lib/",
- "mocha-coverage": "jscoverage lib --exclude *.ejs,*.json && NIGHTWATCH_COV=1 ./node_modules/.bin/mocha test/src --reporter html-cov > coverage.html",
- "mocha-lcov-coverage": "jscoverage lib --exclude *.ejs,*.json && NIGHTWATCH_COV=1 ./node_modules/.bin/mocha test/src --reporter mocha-lcov-reporter > lib-cov/coverage.lcov",
- "test": "./node_modules/.bin/mocha test/src",
- "unit-tests": "./bin/nightwatch -c test/nightwatch.json"
- },
- "files": [
- "bin",
- "examples",
- "lib",
- "README.md",
- "LICENSE.md",
- "index.js"
- ]
- }
|