-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
47 lines (47 loc) · 1020 Bytes
/
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
{
"name": "walk-sync",
"description": "Get an array of recursive directory contents",
"version": "3.0.0",
"author": "Jo Liss <joliss42@gmail.com>",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"engines": {
"node": "10.* || >= 12.*"
},
"repository": {
"type": "git",
"url": "https://github.com/joliss/node-walk-sync"
},
"files": [
"index.js",
"index.d.ts",
"index.js.map"
],
"dependencies": {
"@types/minimatch": "^3.0.4",
"ensure-posix-path": "^1.1.0",
"matcher-collection": "^2.0.1",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"glob": "^7.1.7",
"jest": "^27.0.4",
"memfs": "^3.2.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "~4.3.2"
},
"scripts": {
"prepare": "tsc -b .",
"build": "tsc -b .",
"clean": "tsc -b --clean .",
"test": "jest ."
},
"volta": {
"node": "10.21.0",
"yarn": "1.22.4"
}
}