forked from joliss/node-walk-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 885 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
{
"name": "walk-sync",
"description": "Get an array of recursive directory contents",
"version": "2.0.2",
"author": "Jo Liss <[email protected]>",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"engines": {
"node": "8.* || >= 10.*"
},
"repository": {
"type": "git",
"url": "https://github.com/joliss/node-walk-sync"
},
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {
"@types/minimatch": "^3.0.3",
"ensure-posix-path": "^1.1.0",
"matcher-collection": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"glob": "^7.1.4",
"jest": "^24.8.0",
"rimraf": "^2.4.3",
"ts-jest": "^24.0.2",
"typescript": "~3.5.2"
},
"scripts": {
"prepare": "tsc -b .",
"build": "tsc -b .",
"clean": "tsc -b --clean .",
"test": "jest"
}
}