package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "etag",
  3. "description": "Create simple HTTP ETags",
  4. "version": "1.8.1",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "David Björklund <david.bjorklund@gmail.com>"
  8. ],
  9. "license": "MIT",
  10. "keywords": [
  11. "etag",
  12. "http",
  13. "res"
  14. ],
  15. "repository": "jshttp/etag",
  16. "devDependencies": {
  17. "beautify-benchmark": "0.2.4",
  18. "benchmark": "2.1.4",
  19. "eslint": "3.19.0",
  20. "eslint-config-standard": "10.2.1",
  21. "eslint-plugin-import": "2.7.0",
  22. "eslint-plugin-markdown": "1.0.0-beta.6",
  23. "eslint-plugin-node": "5.1.1",
  24. "eslint-plugin-promise": "3.5.0",
  25. "eslint-plugin-standard": "3.0.1",
  26. "istanbul": "0.4.5",
  27. "mocha": "1.21.5",
  28. "safe-buffer": "5.1.1",
  29. "seedrandom": "2.4.3"
  30. },
  31. "files": [
  32. "LICENSE",
  33. "HISTORY.md",
  34. "README.md",
  35. "index.js"
  36. ],
  37. "engines": {
  38. "node": ">= 0.6"
  39. },
  40. "scripts": {
  41. "bench": "node benchmark/index.js",
  42. "lint": "eslint --plugin markdown --ext js,md .",
  43. "test": "mocha --reporter spec --bail --check-leaks test/",
  44. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  45. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  46. }
  47. }