package.json 700 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
  3. "name": "minimatch",
  4. "description": "a glob matcher in javascript",
  5. "version": "3.1.2",
  6. "publishConfig": {
  7. "tag": "v3-legacy"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/isaacs/minimatch.git"
  12. },
  13. "main": "minimatch.js",
  14. "scripts": {
  15. "test": "tap",
  16. "preversion": "npm test",
  17. "postversion": "npm publish",
  18. "postpublish": "git push origin --all; git push origin --tags"
  19. },
  20. "engines": {
  21. "node": "*"
  22. },
  23. "dependencies": {
  24. "brace-expansion": "^1.1.7"
  25. },
  26. "devDependencies": {
  27. "tap": "^15.1.6"
  28. },
  29. "license": "ISC",
  30. "files": [
  31. "minimatch.js"
  32. ]
  33. }