-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "tiny-readdir-glob-gitignore",
"repository": "github:fabiospampinato/tiny-readdir-glob-gitignore",
"description": "A simple promisified recursive readdir function, with support for globs and .gitignore files.",
"version": "2.0.5",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"prepublishOnly": "tsex prepare"
},
"keywords": [
"readdir",
"recursive",
"promise",
"simple",
"tiny",
"glob",
"gitignore"
],
"dependencies": {
"fast-ignore": "^1.1.3",
"find-up-path": "^1.0.0",
"tiny-readdir-glob": "^1.22.23",
"zeptomatch-explode": "^1.0.0",
"zeptomatch-is-static": "^1.0.0",
"zeptomatch-unescape": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.11.29",
"fava": "^0.3.2",
"tsex": "^3.2.1",
"typescript": "^5.4.2"
}
}