package.json 861 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "cache-content-type",
  3. "version": "1.0.1",
  4. "description": "Create a full Content-Type header given a MIME type or extension and catch the result",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "test": "egg-bin test",
  11. "cov": "egg-bin cov",
  12. "ci": "eslint . && npm run cov"
  13. },
  14. "dependencies": {
  15. "mime-types": "^2.1.18",
  16. "ylru": "^1.2.0"
  17. },
  18. "devDependencies": {
  19. "egg-bin": "^4.7.1",
  20. "egg-ci": "^1.8.0",
  21. "eslint": "^5.1.0",
  22. "eslint-config-egg": "^7.0.0",
  23. "mm": "^2.2.0"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/node-modules/cache-content-type.git"
  28. },
  29. "keywords": [
  30. "mime",
  31. "content-type",
  32. "lru"
  33. ],
  34. "engines": {
  35. "node": ">= 6.0.0"
  36. },
  37. "ci": {
  38. "version": "6, 8, 10"
  39. },
  40. "author": "dead_horse",
  41. "license": "MIT"
  42. }