UNPKG

1.54 kBJSONView Raw
1{
2 "name": "@nodelib/fs.scandir",
3 "version": "4.0.1",
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": ">=18.18.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 "exports": {
28 ".": {
29 "default": "./out/index.js"
30 },
31 "./promises": {
32 "default": "./out/scandir-promises.js"
33 }
34 },
35 "scripts": {
36 "clean": "rimraf {tsconfig.tsbuildinfo,out}",
37 "lint": "eslint \"src/**/*.ts\" --cache",
38 "compile": "tsc -b .",
39 "compile:watch": "tsc -b . --watch --sourceMap",
40 "test": "mocha \"out/**/*.spec.js\" -s 0",
41 "build": "npm run clean && npm run compile && npm run lint && npm test",
42 "watch": "npm run clean && npm run compile:watch",
43 "bench": "npm run bench:sync && npm run bench:async",
44 "bench:sync": "hereby bench:sync",
45 "bench:async": "hereby bench:async"
46 },
47 "dependencies": {
48 "@nodelib/fs.stat": "4.0.0",
49 "run-parallel": "^1.2.0"
50 },
51 "devDependencies": {
52 "@nodelib/fs.macchiato": "3.0.0",
53 "@nodelib/fs.scandir.previous": "npm:@nodelib/fs.scandir@3",
54 "@types/run-parallel": "^1.1.0"
55 },
56 "gitHead": "4750471fdceb6b90ac7c58a93872d61e3f7f143b"
57}