package.json 925 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "media-typer",
  3. "description": "Simple RFC 6838 media type parser and formatter",
  4. "version": "1.1.0",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "repository": "jshttp/media-typer",
  8. "devDependencies": {
  9. "eslint": "5.16.0",
  10. "eslint-config-standard": "12.0.0",
  11. "eslint-plugin-import": "2.17.2",
  12. "eslint-plugin-markdown": "1.0.0",
  13. "eslint-plugin-node": "8.0.1",
  14. "eslint-plugin-promise": "4.1.1",
  15. "eslint-plugin-standard": "4.0.0",
  16. "mocha": "6.1.4",
  17. "nyc": "14.0.0"
  18. },
  19. "files": [
  20. "LICENSE",
  21. "HISTORY.md",
  22. "index.js"
  23. ],
  24. "engines": {
  25. "node": ">= 0.8"
  26. },
  27. "scripts": {
  28. "lint": "eslint --plugin markdown --ext js,md .",
  29. "test": "mocha --reporter spec --check-leaks --bail test/",
  30. "test-cov": "nyc --reporter=html --reporter=text npm test",
  31. "test-travis": "nyc --reporter=text npm test"
  32. }
  33. }