08721b2e77725220d65abaa1d94b706bb917aa1aaca1723ce5ff03c82708deca1c77409f3f098223a002eefe57e9d994d0ad350f83a2a30107e1288aa61c12 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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": "10.0.3",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/isaacs/minimatch.git"
  9. },
  10. "main": "./dist/commonjs/index.js",
  11. "types": "./dist/commonjs/index.d.ts",
  12. "exports": {
  13. "./package.json": "./package.json",
  14. ".": {
  15. "import": {
  16. "types": "./dist/esm/index.d.ts",
  17. "default": "./dist/esm/index.js"
  18. },
  19. "require": {
  20. "types": "./dist/commonjs/index.d.ts",
  21. "default": "./dist/commonjs/index.js"
  22. }
  23. }
  24. },
  25. "files": [
  26. "dist"
  27. ],
  28. "scripts": {
  29. "preversion": "npm test",
  30. "postversion": "npm publish",
  31. "prepublishOnly": "git push origin --follow-tags",
  32. "prepare": "tshy",
  33. "pretest": "npm run prepare",
  34. "presnap": "npm run prepare",
  35. "test": "tap",
  36. "snap": "tap",
  37. "format": "prettier --write . --loglevel warn",
  38. "benchmark": "node benchmark/index.js",
  39. "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts"
  40. },
  41. "prettier": {
  42. "semi": false,
  43. "printWidth": 80,
  44. "tabWidth": 2,
  45. "useTabs": false,
  46. "singleQuote": true,
  47. "jsxSingleQuote": false,
  48. "bracketSameLine": true,
  49. "arrowParens": "avoid",
  50. "endOfLine": "lf"
  51. },
  52. "engines": {
  53. "node": "20 || >=22"
  54. },
  55. "devDependencies": {
  56. "@types/brace-expansion": "^1.1.2",
  57. "@types/node": "^24.0.0",
  58. "mkdirp": "^3.0.1",
  59. "prettier": "^3.3.2",
  60. "tap": "^21.1.0",
  61. "tshy": "^3.0.2",
  62. "typedoc": "^0.28.5"
  63. },
  64. "funding": {
  65. "url": "https://github.com/sponsors/isaacs"
  66. },
  67. "license": "ISC",
  68. "tshy": {
  69. "exports": {
  70. "./package.json": "./package.json",
  71. ".": "./src/index.ts"
  72. }
  73. },
  74. "type": "module",
  75. "module": "./dist/esm/index.js",
  76. "dependencies": {
  77. "@isaacs/brace-expansion": "^5.0.0"
  78. }
  79. }