-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.74 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
65
66
67
68
69
70
71
72
73
74
{
"name": "fs-iterator",
"version": "5.1.1",
"description": "A file system iterator with filter and asyncIterator iterafaces. Supports Node 0.10 and above",
"keywords": [
"recursive",
"readdir",
"fs",
"filesystem",
"filter",
"iterator",
"asyncIterator",
"Symbol.asyncIterator"
],
"homepage": "https://github.com/kmalakoff/fs-iterator",
"repository": {
"type": "git",
"url": "[email protected]:kmalakoff/fs-iterator.git"
},
"license": "MIT",
"author": "Kevin Malakoff <[email protected]> (https://github.com/kmalakoff)",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./*": "./*"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"deploy": "tsds deploy",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds test:node --timeout=10000",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"dependencies": {
"async-compat": "^1.4.7",
"fifo": "^2.4.1",
"fs.realpath": "^1.0.0",
"stack-base-iterator": "^1.1.2"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"depcheck": "^1.4.7",
"end-of-stream": "^1.4.4",
"fs-generate": "^1.8.7",
"fs-stats-spys": "^1.0.2",
"is-promise": "^4.0.0",
"next-tick": "^1.1.0",
"rimraf2": "^2.8.2",
"starts-with": "^1.0.2",
"ts-dev-stack": "^1.0.5"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.mjs",
"targets": [
"cjs",
"esm"
]
}
}