package.json 933 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "author": {
  3. "name": "Robert Kieffer",
  4. "url": "http://github.com/broofa",
  5. "email": "robert@broofa.com"
  6. },
  7. "scripts": {
  8. "test": "node test.js"
  9. },
  10. "bin": {
  11. "mime": "cli.js"
  12. },
  13. "contributors": [
  14. {
  15. "name": "Benjamin Thomas",
  16. "url": "http://github.com/bentomas",
  17. "email": "benjamin@benjaminthomas.org"
  18. }
  19. ],
  20. "description": "A comprehensive library for mime-type mapping",
  21. "licenses": [
  22. {
  23. "type": "MIT",
  24. "url": "https://raw.github.com/broofa/node-mime/master/LICENSE"
  25. }
  26. ],
  27. "dependencies": {},
  28. "devDependencies": {
  29. "mime-db": "^1.2.0"
  30. },
  31. "scripts": {
  32. "prepublish": "node build/build.js > types.json",
  33. "test": "node build/test.js"
  34. },
  35. "keywords": [
  36. "util",
  37. "mime"
  38. ],
  39. "main": "mime.js",
  40. "name": "mime",
  41. "repository": {
  42. "url": "https://github.com/broofa/node-mime",
  43. "type": "git"
  44. },
  45. "version": "1.3.4"
  46. }