1 | {
|
2 | "name": "walk-sync",
|
3 | "description": "Get an array of recursive directory contents",
|
4 | "version": "3.0.0",
|
5 | "author": "Jo Liss <joliss42@gmail.com>",
|
6 | "main": "index.js",
|
7 | "types": "index.d.ts",
|
8 | "license": "MIT",
|
9 | "engines": {
|
10 | "node": "10.* || >= 12.*"
|
11 | },
|
12 | "repository": {
|
13 | "type": "git",
|
14 | "url": "https://github.com/joliss/node-walk-sync"
|
15 | },
|
16 | "files": [
|
17 | "index.js",
|
18 | "index.d.ts",
|
19 | "index.js.map"
|
20 | ],
|
21 | "dependencies": {
|
22 | "@types/minimatch": "^3.0.4",
|
23 | "ensure-posix-path": "^1.1.0",
|
24 | "matcher-collection": "^2.0.1",
|
25 | "minimatch": "^3.0.4"
|
26 | },
|
27 | "devDependencies": {
|
28 | "@types/jest": "^26.0.23",
|
29 | "@types/node": "^15.12.2",
|
30 | "glob": "^7.1.7",
|
31 | "jest": "^27.0.4",
|
32 | "memfs": "^3.2.2",
|
33 | "rimraf": "^3.0.2",
|
34 | "ts-jest": "^27.0.3",
|
35 | "typescript": "~4.3.2"
|
36 | },
|
37 | "scripts": {
|
38 | "prepare": "tsc -b .",
|
39 | "build": "tsc -b .",
|
40 | "clean": "tsc -b --clean .",
|
41 | "test": "jest ."
|
42 | },
|
43 | "volta": {
|
44 | "node": "10.21.0",
|
45 | "yarn": "1.22.4"
|
46 | }
|
47 | }
|