package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "glob-to-regex.js",
  3. "packageManager": "yarn@4.9.3",
  4. "publishConfig": {
  5. "access": "public"
  6. },
  7. "version": "1.0.1",
  8. "description": "Transform GLOB patterns to JavaScript regular expressions for fast file path matching.",
  9. "author": {
  10. "name": "streamich",
  11. "url": "https://github.com/streamich"
  12. },
  13. "homepage": "https://github.com/streamich/glob-to-regex",
  14. "repository": "streamich/glob-to-regex",
  15. "funding": {
  16. "type": "github",
  17. "url": "https://github.com/sponsors/streamich"
  18. },
  19. "keywords": [
  20. "glob",
  21. "regex",
  22. "regexp",
  23. "pattern",
  24. "matcher",
  25. "path",
  26. "filesystem",
  27. "wildcard"
  28. ],
  29. "engines": {
  30. "node": ">=10.0"
  31. },
  32. "main": "lib/index.js",
  33. "types": "lib/index.d.ts",
  34. "typings": "lib/index.d.ts",
  35. "files": [
  36. "LICENSE",
  37. "lib/"
  38. ],
  39. "license": "Apache-2.0",
  40. "scripts": {
  41. "format": "biome format ./src",
  42. "format:fix": "biome format --write ./src",
  43. "lint": "biome lint ./src",
  44. "lint:fix": "biome lint --apply ./src",
  45. "clean": "npx rimraf@6.0.1 lib typedocs coverage gh-pages yarn-error.log",
  46. "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
  47. "test": "vitest ./src",
  48. "coverage": "vitest run --coverage",
  49. "typedoc": "npx typedoc@0.25.13 --tsconfig tsconfig.build.json",
  50. "build:pages": "npx rimraf@6.0.1 gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
  51. "deploy:pages": "gh-pages -d gh-pages",
  52. "publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages"
  53. },
  54. "peerDependencies": {
  55. "tslib": "2"
  56. },
  57. "devDependencies": {
  58. "@biomejs/biome": "^2.1.2",
  59. "@vitest/coverage-v8": "^3.2.4",
  60. "config-galore": "^1.0.0",
  61. "tslib": "^2.8.1",
  62. "typescript": "^5.8.3",
  63. "vitest": "^3.2.4"
  64. }
  65. }