package.json
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.7", 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": "^15.0.6", 31 "tick": "0.0.6" 32 }, 33 "tap": { 34 "before": "test/00-setup.js", 35 "after": "test/zz-cleanup.js", 36 "jobs": 1 37 }, 38 "scripts": { 39 "prepublish": "npm run benchclean", 40 "profclean": "rm -f v8.log profile.txt", 41 "test": "tap", 42 "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", 43 "bench": "bash benchmark.sh", 44 "prof": "bash prof.sh && cat profile.txt", 45 "benchclean": "node benchclean.js" 46 }, 47 "license": "ISC", 48 "funding": { 49 "url": "https://github.com/sponsors/isaacs" 50 } 51 }