-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.03 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
{
"version": "0.0.0-development",
"name": "glob-promise",
"description": "Promise version of glob",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/node-glob-promise",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/node-glob-promise.git"
},
"bugs": {
"url": "https://github.com/ahmadnassri/node-glob-promise/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ahmadnassri"
},
"license": "MIT",
"keywords": [
"glob",
"promise"
],
"engines": {
"node": ">=16"
},
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "tap test --no-coverage",
"test:watch": "tap test --watch",
"test:ci": "tap test --100",
"test:report": "opener coverage/lcov-report/index.html"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"tap": "^16.3.0"
},
"peerDependencies": {
"glob": "^8.0.3"
}
}