package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.3.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. "funding": {
  19. "type": "opencollective",
  20. "url": "https://opencollective.com/express"
  21. },
  22. "devDependencies": {
  23. "deep-equal": "1.0.1",
  24. "eslint": "6.0.1",
  25. "eslint-config-standard": "13.0.1",
  26. "eslint-plugin-markdown": "1.0.0",
  27. "eslint-plugin-import": "2.18.0",
  28. "eslint-plugin-node": "9.1.0",
  29. "eslint-plugin-promise": "4.2.1",
  30. "eslint-plugin-standard": "4.0.0",
  31. "mocha": "6.1.4",
  32. "nyc": "14.1.1"
  33. },
  34. "files": [
  35. "HISTORY.md",
  36. "LICENSE",
  37. "index.js"
  38. ],
  39. "engines": {
  40. "node": ">= 0.6"
  41. },
  42. "scripts": {
  43. "lint": "eslint --plugin markdown --ext js,md .",
  44. "test": "mocha --reporter spec",
  45. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  46. "test-cov": "nyc --reporter=html --reporter=text npm test"
  47. }
  48. }