package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "glob",
  4. "description": "a little globber",
  5. "version": "4.5.3",
  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.0.1",
  23. "once": "^1.3.0"
  24. },
  25. "devDependencies": {
  26. "mkdirp": "0",
  27. "rimraf": "^2.2.8",
  28. "tap": "^0.5.0",
  29. "tick": "0.0.6"
  30. },
  31. "scripts": {
  32. "prepublish": "npm run benchclean",
  33. "profclean": "rm -f v8.log profile.txt",
  34. "test": "npm run profclean && tap test/*.js",
  35. "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
  36. "bench": "bash benchmark.sh",
  37. "prof": "bash prof.sh && cat profile.txt",
  38. "benchclean": "bash benchclean.sh"
  39. },
  40. "license": "ISC",
  41. "__npminstall_done": true,
  42. "_from": "glob@4.5.3",
  43. "_resolved": "https://registry.npmmirror.com/glob/-/glob-4.5.3.tgz"
  44. }