package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "statuses",
  3. "description": "HTTP status utility",
  4. "version": "1.3.1",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  8. ],
  9. "repository": "jshttp/statuses",
  10. "license": "MIT",
  11. "keywords": [
  12. "http",
  13. "status",
  14. "code"
  15. ],
  16. "files": [
  17. "HISTORY.md",
  18. "index.js",
  19. "codes.json",
  20. "LICENSE"
  21. ],
  22. "devDependencies": {
  23. "csv-parse": "1.1.7",
  24. "eslint": "3.10.0",
  25. "eslint-config-standard": "6.2.1",
  26. "eslint-plugin-promise": "3.3.2",
  27. "eslint-plugin-standard": "2.0.1",
  28. "istanbul": "0.4.5",
  29. "mocha": "1.21.5",
  30. "stream-to-array": "2.3.0"
  31. },
  32. "engines": {
  33. "node": ">= 0.6"
  34. },
  35. "scripts": {
  36. "build": "node scripts/build.js",
  37. "fetch": "node scripts/fetch.js",
  38. "lint": "eslint .",
  39. "test": "mocha --reporter spec --check-leaks --bail test/",
  40. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  41. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  42. "update": "npm run fetch && npm run build"
  43. }
  44. }