package.json 964 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "ignore-walk",
  3. "version": "3.0.4",
  4. "description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.",
  5. "main": "index.js",
  6. "devDependencies": {
  7. "mkdirp": "^0.5.1",
  8. "mutate-fs": "^1.1.0",
  9. "rimraf": "^2.6.1",
  10. "tap": "^15.0.6"
  11. },
  12. "scripts": {
  13. "test": "tap",
  14. "preversion": "npm test",
  15. "postversion": "npm publish",
  16. "postpublish": "git push origin --all; git push origin --tags"
  17. },
  18. "keywords": [
  19. "ignorefile",
  20. "ignore",
  21. "file",
  22. ".gitignore",
  23. ".npmignore",
  24. "glob"
  25. ],
  26. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  27. "license": "ISC",
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/isaacs/ignore-walk.git"
  31. },
  32. "files": [
  33. "index.js"
  34. ],
  35. "dependencies": {
  36. "minimatch": "^3.0.4"
  37. },
  38. "tap": {
  39. "test-env": "LC_ALL=sk",
  40. "before": "test/00-setup.js",
  41. "after": "test/zz-cleanup.js",
  42. "jobs": 1
  43. }
  44. }