package.json 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "glob",
  4. "description": "a little globber",
  5. "version": "7.1.2",
  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. "mkdirp": "0",
  29. "rimraf": "^2.2.8",
  30. "tap": "^7.1.2",
  31. "tick": "0.0.6"
  32. },
  33. "scripts": {
  34. "prepublish": "npm run benchclean",
  35. "profclean": "rm -f v8.log profile.txt",
  36. "test": "tap test/*.js --cov",
  37. "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
  38. "bench": "bash benchmark.sh",
  39. "prof": "bash prof.sh && cat profile.txt",
  40. "benchclean": "node benchclean.js"
  41. },
  42. "license": "ISC"
  43. }