package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "nightwatch",
  3. "description": "Easy to use Node.js based End-to-End testing solution for browser based apps and websites, using the W3C WebDriver API.",
  4. "version": "0.9.21",
  5. "author": {
  6. "name": "Andrei Rusu",
  7. "email": "andrei@nightwatchjs.org"
  8. },
  9. "homepage": "http://nightwatchjs.org",
  10. "main": "./lib/index.js",
  11. "license": "MIT",
  12. "bugs": "https://github.com/nightwatchjs/nightwatch/issues",
  13. "repository": {
  14. "type": "git",
  15. "url": "git@github.com:nightwatchjs/nightwatch.git"
  16. },
  17. "dependencies": {
  18. "chai-nightwatch": "~0.1.x",
  19. "ejs": "2.5.7",
  20. "lodash.clone": "3.0.3",
  21. "lodash.defaultsdeep": "4.3.2",
  22. "minimatch": "3.0.3",
  23. "mkpath": "1.0.0",
  24. "mocha-nightwatch": "3.2.2",
  25. "optimist": "0.6.1",
  26. "proxy-agent": "2.0.0",
  27. "q": "1.4.1"
  28. },
  29. "devDependencies": {
  30. "chai": "^3.2.0",
  31. "coveralls": "latest",
  32. "grunt": "~0.4.4",
  33. "grunt-complexity": "^0.1.7",
  34. "grunt-contrib-jshint": "~0.10.0",
  35. "grunt-jsonlint": "~1.0.4",
  36. "grunt-npm-release": "latest",
  37. "jscoverage": "latest",
  38. "jshint": "~2.4.4",
  39. "jsonlint": "~1.6.0",
  40. "mocha": "^2.3.4",
  41. "mocha-lcov-reporter": "^1.2.0",
  42. "mock-spawn": "^0.2.1",
  43. "mockery": "~1.4.0",
  44. "nock": "~0.45.0",
  45. "xml2json": "^0.11.0"
  46. },
  47. "bin": {
  48. "nightwatch": "./bin/nightwatch"
  49. },
  50. "man": "",
  51. "scripts": {
  52. "jshint": "./node_modules/.bin/jshint --verbose --config .jshintrc lib/",
  53. "mocha-coverage": "jscoverage lib --exclude *.ejs,*.json && NIGHTWATCH_COV=1 ./node_modules/.bin/mocha test/src --reporter html-cov > coverage.html",
  54. "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",
  55. "test": "./node_modules/.bin/mocha test/src",
  56. "unit-tests": "./bin/nightwatch -c test/nightwatch.json"
  57. },
  58. "files": [
  59. "bin",
  60. "examples",
  61. "lib",
  62. "README.md",
  63. "LICENSE.md",
  64. "index.js"
  65. ]
  66. }