package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.3",
  6. "publishConfig": {
  7. "tag": "v7-legacy"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/isaacs/node-glob.git"
  12. },
  13. "main": "glob.js",
  14. "files": [
  15. "glob.js",
  16. "sync.js",
  17. "common.js"
  18. ],
  19. "engines": {
  20. "node": "*"
  21. },
  22. "dependencies": {
  23. "fs.realpath": "^1.0.0",
  24. "inflight": "^1.0.4",
  25. "inherits": "2",
  26. "minimatch": "^3.1.1",
  27. "once": "^1.3.0",
  28. "path-is-absolute": "^1.0.0"
  29. },
  30. "devDependencies": {
  31. "memfs": "^3.2.0",
  32. "mkdirp": "0",
  33. "rimraf": "^2.2.8",
  34. "tap": "^15.0.6",
  35. "tick": "0.0.6"
  36. },
  37. "tap": {
  38. "before": "test/00-setup.js",
  39. "after": "test/zz-cleanup.js",
  40. "jobs": 1
  41. },
  42. "scripts": {
  43. "prepublish": "npm run benchclean",
  44. "profclean": "rm -f v8.log profile.txt",
  45. "test": "tap",
  46. "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
  47. "bench": "bash benchmark.sh",
  48. "prof": "bash prof.sh && cat profile.txt",
  49. "benchclean": "node benchclean.js"
  50. },
  51. "license": "ISC",
  52. "funding": {
  53. "url": "https://github.com/sponsors/isaacs"
  54. }
  55. }