36 lines
973 B
JSON
36 lines
973 B
JSON
{
|
|
"name": "@nodelib/fs.walk",
|
|
"version": "1.2.6",
|
|
"description": "A library for efficiently walking a directory recursively",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk",
|
|
"keywords": [
|
|
"NodeLib",
|
|
"fs",
|
|
"FileSystem",
|
|
"file system",
|
|
"walk",
|
|
"scanner",
|
|
"crawler"
|
|
],
|
|
"engines": {
|
|
"node": ">= 8"
|
|
},
|
|
"main": "out/index.js",
|
|
"typings": "out/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rimraf {tsconfig.tsbuildinfo,out}",
|
|
"lint": "eslint \"src/**/*.ts\" --cache",
|
|
"compile": "tsc -b .",
|
|
"compile:watch": "tsc -p . --watch --sourceMap",
|
|
"test": "mocha \"out/**/*.spec.js\" -s 0",
|
|
"build": "npm run clean && npm run compile && npm run lint && npm test",
|
|
"watch": "npm run clean && npm run compile:watch"
|
|
},
|
|
"dependencies": {
|
|
"@nodelib/fs.scandir": "2.1.4",
|
|
"fastq": "^1.6.0"
|
|
},
|
|
"gitHead": "bd149ea6dc1ef18c234730278271f6a7f3882ed2"
|
|
}
|