package.json 671 B

1234567891011121314151617181920212223242526272829303132
  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": "5.1.2",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/isaacs/minimatch.git"
  9. },
  10. "main": "minimatch.js",
  11. "scripts": {
  12. "test": "tap",
  13. "snap": "tap",
  14. "preversion": "npm test",
  15. "postversion": "npm publish",
  16. "prepublishOnly": "git push origin --follow-tags"
  17. },
  18. "engines": {
  19. "node": ">=10"
  20. },
  21. "dependencies": {
  22. "brace-expansion": "^2.0.1"
  23. },
  24. "devDependencies": {
  25. "tap": "^16.3.2"
  26. },
  27. "license": "ISC",
  28. "files": [
  29. "minimatch.js",
  30. "lib"
  31. ]
  32. }