-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "readdirp-walk",
"version": "2.1.7",
"description": "An optimized readdirp-compliant directory walker that gives you control over concurrency and performance tradeoffs",
"keywords": [
"recursive",
"fs",
"readdir",
"filesystem",
"stream",
"streams",
"find",
"filter",
"readdirp",
"walk",
"walk-filtered"
],
"homepage": "https://github.com/kmalakoff/readdirp-walk#readme",
"bugs": {
"url": "https://github.com/kmalakoff/readdirp-walk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmalakoff/readdirp-walk.git"
},
"license": "MIT",
"author": "Kevin Malakoff <[email protected]> (https://github.com/kmalakoff)",
"type": "commonjs",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"deploy": "tsds deploy",
"format": "biome check --apply-unsafe src/ test/",
"test": "tsds test:node --no-timeouts test/test.js",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"dependencies": {
"fs-iterator": "^5.0.1",
"picomatch": "^4.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"chai": "^1.10.0",
"chai-subset": "^1.6",
"depcheck": "^1.4.7",
"rimraf": "^1.0.9",
"ts-dev-stack": "^0.15.3",
"util.promisify": "^1.1.2"
},
"engines": {
"node": ">=8"
},
"tsds": {
"source": "src/index.mjs",
"targets": [
"cjs"
]
}
}