package.json 637 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "filelist",
  3. "version": "1.0.4",
  4. "description": "Lazy-evaluating list of files, based on globs or regex patterns",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "test": "jake test"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/mde/filelist.git"
  13. },
  14. "keywords": [
  15. "file",
  16. "utility",
  17. "glob"
  18. ],
  19. "author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)",
  20. "license": "Apache-2.0",
  21. "bugs": {
  22. "url": "https://github.com/mde/filelist/issues"
  23. },
  24. "homepage": "https://github.com/mde/filelist",
  25. "dependencies": {
  26. "minimatch": "^5.0.1"
  27. }
  28. }