package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "ignore-walk",
  3. "version": "7.0.0",
  4. "description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.",
  5. "main": "lib/index.js",
  6. "devDependencies": {
  7. "@npmcli/eslint-config": "^5.0.0",
  8. "@npmcli/template-oss": "4.23.3",
  9. "mutate-fs": "^2.1.1",
  10. "tap": "^16.0.1"
  11. },
  12. "scripts": {
  13. "test": "tap",
  14. "posttest": "npm run lint",
  15. "lint": "npm run eslint",
  16. "lintfix": "npm run eslint -- --fix",
  17. "postlint": "template-oss-check",
  18. "template-oss-apply": "template-oss-apply --force",
  19. "test:windows-coverage": "npm pkg set tap.statements=99 --json && npm pkg set tap.branches=98 --json && npm pkg set tap.lines=99 --json",
  20. "snap": "tap",
  21. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  22. },
  23. "keywords": [
  24. "ignorefile",
  25. "ignore",
  26. "file",
  27. ".gitignore",
  28. ".npmignore",
  29. "glob"
  30. ],
  31. "author": "GitHub Inc.",
  32. "license": "ISC",
  33. "repository": {
  34. "type": "git",
  35. "url": "git+https://github.com/npm/ignore-walk.git"
  36. },
  37. "files": [
  38. "bin/",
  39. "lib/"
  40. ],
  41. "dependencies": {
  42. "minimatch": "^9.0.0"
  43. },
  44. "tap": {
  45. "test-env": "LC_ALL=sk",
  46. "before": "test/00-setup.js",
  47. "after": "test/zz-cleanup.js",
  48. "timeout": 600,
  49. "jobs": 1,
  50. "nyc-arg": [
  51. "--exclude",
  52. "tap-snapshots/**"
  53. ]
  54. },
  55. "engines": {
  56. "node": "^18.17.0 || >=20.5.0"
  57. },
  58. "templateOSS": {
  59. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  60. "version": "4.23.3",
  61. "content": "scripts/template-oss",
  62. "publish": "true"
  63. }
  64. }