package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "content-type",
  3. "description": "Create and parse HTTP Content-Type header",
  4. "version": "1.0.4",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "keywords": [
  8. "content-type",
  9. "http",
  10. "req",
  11. "res",
  12. "rfc7231"
  13. ],
  14. "repository": "jshttp/content-type",
  15. "devDependencies": {
  16. "eslint": "3.19.0",
  17. "eslint-config-standard": "10.2.1",
  18. "eslint-plugin-import": "2.7.0",
  19. "eslint-plugin-node": "5.1.1",
  20. "eslint-plugin-promise": "3.5.0",
  21. "eslint-plugin-standard": "3.0.1",
  22. "istanbul": "0.4.5",
  23. "mocha": "~1.21.5"
  24. },
  25. "files": [
  26. "LICENSE",
  27. "HISTORY.md",
  28. "README.md",
  29. "index.js"
  30. ],
  31. "engines": {
  32. "node": ">= 0.6"
  33. },
  34. "scripts": {
  35. "lint": "eslint .",
  36. "test": "mocha --reporter spec --check-leaks --bail test/",
  37. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  38. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
  39. }
  40. }