package.json 985 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "glob",
  4. "description": "a little globber",
  5. "version": "5.0.15",
  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. "inflight": "^1.0.4",
  21. "inherits": "2",
  22. "minimatch": "2 || 3",
  23. "once": "^1.3.0",
  24. "path-is-absolute": "^1.0.0"
  25. },
  26. "devDependencies": {
  27. "mkdirp": "0",
  28. "rimraf": "^2.2.8",
  29. "tap": "^1.1.4",
  30. "tick": "0.0.6"
  31. },
  32. "scripts": {
  33. "prepublish": "npm run benchclean",
  34. "profclean": "rm -f v8.log profile.txt",
  35. "test": "tap test/*.js --cov",
  36. "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
  37. "bench": "bash benchmark.sh",
  38. "prof": "bash prof.sh && cat profile.txt",
  39. "benchclean": "node benchclean.js"
  40. },
  41. "license": "ISC"
  42. }