package.json
1 { 2 "author": "Yann Armelin", 3 "name": "readdir-glob", 4 "description": "Recursive fs.readdir with streaming API and glob filtering.", 5 "version": "1.1.1", 6 "homepage": "https://github.com/Yqnn/node-readdir-glob", 7 "repository": { 8 "type": "git", 9 "url": "git://github.com/Yqnn/node-readdir-glob.git" 10 }, 11 "main": "index.js", 12 "files": [ 13 "index.js" 14 ], 15 "dependencies": { 16 "minimatch": "^3.0.4" 17 }, 18 "devDependencies": { 19 "coveralls": "^3.1.0", 20 "jest": "^25.5.4", 21 "mkdirp": "^1.0.0", 22 "path-is-absolute": "^1.0.0", 23 "rimraf": "^2.2.8", 24 "tick": "0.0.6" 25 }, 26 "keywords": [ 27 "recursive", 28 "fs", 29 "stream", 30 "streams", 31 "readdir", 32 "filesystem", 33 "find", 34 "filter", 35 "glob" 36 ], 37 "scripts": { 38 "test": "jest --coverage", 39 "test-regen": "TEST_REGEN=1 jest --coverage", 40 "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls", 41 "bench": "bash scripts/benchmark.sh", 42 "profile": "bash scripts/profile.sh && cat profile.txt" 43 }, 44 "license": "Apache-2.0" 45 }