package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.1",
  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. "deep-equal": "1.0.1",
  20. "eslint": "5.16.0",
  21. "eslint-config-standard": "12.0.0",
  22. "eslint-plugin-markdown": "1.0.0",
  23. "eslint-plugin-import": "2.17.2",
  24. "eslint-plugin-node": "8.0.1",
  25. "eslint-plugin-promise": "4.1.1",
  26. "eslint-plugin-standard": "4.0.0",
  27. "mocha": "6.1.4",
  28. "nyc": "14.1.1"
  29. },
  30. "files": [
  31. "HISTORY.md",
  32. "LICENSE",
  33. "index.js"
  34. ],
  35. "engines": {
  36. "node": ">= 0.6"
  37. },
  38. "scripts": {
  39. "lint": "eslint --plugin markdown --ext js,md .",
  40. "test": "mocha --reporter spec",
  41. "test-cov": "nyc --reporter=html --reporter=text npm test",
  42. "test-travis": "nyc --reporter=text npm test"
  43. }
  44. }