package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "range-parser",
  3. "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
  4. "description": "Range header field string parser",
  5. "version": "1.2.0",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  8. "James Wyatt Cready <wyatt.cready@lanetix.com>",
  9. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  10. ],
  11. "license": "MIT",
  12. "keywords": [
  13. "range",
  14. "parser",
  15. "http"
  16. ],
  17. "repository": "jshttp/range-parser",
  18. "devDependencies": {
  19. "eslint": "2.11.1",
  20. "eslint-config-standard": "5.3.1",
  21. "eslint-plugin-promise": "1.1.0",
  22. "eslint-plugin-standard": "1.3.2",
  23. "istanbul": "0.4.3",
  24. "mocha": "1.21.5"
  25. },
  26. "files": [
  27. "HISTORY.md",
  28. "LICENSE",
  29. "index.js"
  30. ],
  31. "engines": {
  32. "node": ">= 0.6"
  33. },
  34. "scripts": {
  35. "lint": "eslint **/*.js",
  36. "test": "mocha --reporter spec",
  37. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  38. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  39. }
  40. }