package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "browserstack",
  3. "title": "BrowserStack Client",
  4. "description": "A client for working with the BrowserStack APIs.",
  5. "version": "1.6.1",
  6. "homepage": "https://github.com/scottgonzalez/node-browserstack",
  7. "author": "Scott González <scott.gonzalez@gmail.com> (http://scottgonzalez.com)",
  8. "contributors": [
  9. "Simon Tarchichi <kartsims@gmail.com>"
  10. ],
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/scottgonzalez/node-browserstack.git"
  14. },
  15. "bugs": "https://github.com/scottgonzalez/node-browserstack/issues",
  16. "license": "MIT",
  17. "dependencies": {
  18. "https-proxy-agent": "^2.2.1"
  19. },
  20. "devDependencies": {
  21. "jscs": "2.8.0",
  22. "jshint": "2.8.0",
  23. "mocha": "2.4.5",
  24. "should": "8.2.1"
  25. },
  26. "main": "lib/browserstack.js",
  27. "scripts": {
  28. "jscs": "jscs lib/* test/*",
  29. "jscs-fix": "jscs lib/* test/* --fix",
  30. "jshint": "jshint lib/* test/*",
  31. "lint": "npm run jscs && npm run jshint",
  32. "test": "npm run lint && mocha"
  33. },
  34. "keywords": [
  35. "automation",
  36. "browser",
  37. "browserstack",
  38. "screenshot",
  39. "testing"
  40. ]
  41. }