UNPKG

1.37 kBJSONView Raw
1{
2 "name": "@nodelib/fs.walk",
3 "version": "2.0.0",
4 "description": "A library for efficiently walking a directory recursively",
5 "license": "MIT",
6 "repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk",
7 "keywords": [
8 "NodeLib",
9 "fs",
10 "FileSystem",
11 "file system",
12 "walk",
13 "scanner",
14 "crawler"
15 ],
16 "engines": {
17 "node": ">=16.14.0"
18 },
19 "files": [
20 "out/**",
21 "!out/benchmark",
22 "!out/**/*.map",
23 "!out/**/*.spec.*",
24 "!out/**/tests/**"
25 ],
26 "main": "out/index.js",
27 "typings": "out/index.d.ts",
28 "scripts": {
29 "clean": "rimraf {tsconfig.tsbuildinfo,out}",
30 "lint": "eslint \"src/**/*.ts\" --cache",
31 "compile": "tsc -b .",
32 "compile:watch": "tsc -b . --watch --sourceMap",
33 "test": "mocha \"out/**/*.spec.js\" -s 0",
34 "build": "npm run clean && npm run compile && npm run lint && npm test",
35 "watch": "npm run clean && npm run compile:watch",
36 "bench": "npm run bench:sync && npm run bench:async && npm run bench:stream",
37 "bench:sync": "hereby bench:sync",
38 "bench:async": "hereby bench:async",
39 "bench:stream": "hereby bench:stream"
40 },
41 "dependencies": {
42 "@nodelib/fs.scandir": "3.0.0",
43 "fastq": "^1.15.0"
44 },
45 "devDependencies": {
46 "@nodelib/fs.macchiato": "2.0.0",
47 "@nodelib/fs.walk.previous": "npm:@nodelib/fs.walk@2"
48 }
49}