package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "glob",
  4. "description": "a little globber",
  5. "version": "7.2.0",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/isaacs/node-glob.git"
  9. },
  10. "main": "glob.js",
  11. "files": [
  12. "glob.js",
  13. "sync.js",
  14. "common.js"
  15. ],
  16. "engines": {
  17. "node": "*"
  18. },
  19. "dependencies": {
  20. "fs.realpath": "^1.0.0",
  21. "inflight": "^1.0.4",
  22. "inherits": "2",
  23. "minimatch": "^3.0.4",
  24. "once": "^1.3.0",
  25. "path-is-absolute": "^1.0.0"
  26. },
  27. "devDependencies": {
  28. "memfs": "^3.2.0",
  29. "mkdirp": "0",
  30. "rimraf": "^2.2.8",
  31. "tap": "^15.0.6",
  32. "tick": "0.0.6"
  33. },
  34. "tap": {
  35. "before": "test/00-setup.js",
  36. "after": "test/zz-cleanup.js",
  37. "jobs": 1
  38. },
  39. "scripts": {
  40. "prepublish": "npm run benchclean",
  41. "profclean": "rm -f v8.log profile.txt",
  42. "test": "tap",
  43. "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
  44. "bench": "bash benchmark.sh",
  45. "prof": "bash prof.sh && cat profile.txt",
  46. "benchclean": "node benchclean.js"
  47. },
  48. "license": "ISC",
  49. "funding": {
  50. "url": "https://github.com/sponsors/isaacs"
  51. }
  52. }