1{ 2 "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", 3 "name": "glob", 4 "description": "a little globber", 5 "version": "8.1.0", 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": ">=12" 18 }, 19 "dependencies": { 20 "fs.realpath": "^1.0.0", 21 "inflight": "^1.0.4", 22 "inherits": "2", 23 "minimatch": "^5.0.1", 24 "once": "^1.3.0" 25 }, 26 "devDependencies": { 27 "memfs": "^3.2.0", 28 "mkdirp": "0", 29 "rimraf": "^2.2.8", 30 "tap": "^16.0.1", 31 "tick": "0.0.6" 32 }, 33 "tap": { 34 "before": "test/00-setup.js", 35 "after": "test/zz-cleanup.js", 36 "statements": 90, 37 "branches": 90, 38 "functions": 90, 39 "lines": 90, 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} 56