package.json 907 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "test-exclude",
  3. "version": "7.0.1",
  4. "description": "test for inclusion or exclusion of paths using globs",
  5. "main": "index.js",
  6. "files": [
  7. "*.js",
  8. "!nyc.config.js"
  9. ],
  10. "scripts": {
  11. "release": "standard-version",
  12. "test": "c8 tap",
  13. "snap": "npm test -- --snapshot"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/istanbuljs/test-exclude.git"
  18. },
  19. "keywords": [
  20. "exclude",
  21. "include",
  22. "glob",
  23. "package",
  24. "config"
  25. ],
  26. "author": "Ben Coe <ben@npmjs.com>",
  27. "license": "ISC",
  28. "bugs": {
  29. "url": "https://github.com/istanbuljs/test-exclude/issues"
  30. },
  31. "homepage": "https://istanbul.js.org/",
  32. "dependencies": {
  33. "@istanbuljs/schema": "^0.1.2",
  34. "glob": "^10.4.1",
  35. "minimatch": "^9.0.4"
  36. },
  37. "devDependencies": {
  38. "c8": "^9.1.0",
  39. "tap": "^19.2.2"
  40. },
  41. "engines": {
  42. "node": ">=18"
  43. }
  44. }