UNPKG

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