-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
{
"author": "Yann Armelin",
"name": "readdir-glob",
"description": "Recursive fs.readdir with streaming API and glob filtering.",
"version": "2.0.1",
"homepage": "https://github.com/Yqnn/node-readdir-glob",
"repository": {
"type": "git",
"url": "git://github.com/Yqnn/node-readdir-glob.git"
},
"main": "./dist/cjs/index.cjs.js",
"files": [
"dist/**",
"src"
],
"funding": {
"url": "https://github.com/sponsors/yqnn"
},
"exports": {
"import": {
"default": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.cjs.js",
"types": "./dist/cjs/index.cjs.d.ts"
}
},
"types": "./dist/cjs/index.cjs.d.ts",
"dependencies": {
"minimatch": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.12.5",
"jasmine": "^4.6.0",
"mkdirp": "^2.1.6",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"tick": "0.0.6",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^5.4.4"
},
"keywords": [
"recursive",
"fs",
"stream",
"streams",
"readdir",
"filesystem",
"find",
"filter",
"glob"
],
"scripts": {
"test": "npx nyc --reporter=lcov --reporter=text-summary --reporter=html jasmine --config=jasmine.json",
"test-regen": "TEST_REGEN=1 jasmine --config=jasmine.json",
"build": "rimraf dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && tsconfig-to-dual-package tsconfig.esm.json tsconfig.cjs.json",
"bench": "bash scripts/benchmark.sh",
"profile": "bash scripts/profile.sh && cat profile.txt"
},
"license": "Apache-2.0"
}