-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 879 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": "fixturify",
"description": "Convert objects into directory structures and back again",
"version": "3.0.0",
"author": "Jo Liss <[email protected]>",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joliss/node-fixturify"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimatch": "^3.0.3",
"@types/rimraf": "^3.0.2",
"fs-extra": "^10.1.0",
"matcher-collection": "^2.0.1",
"walk-sync": "^3.0.0"
},
"devDependencies": {
"@types/node": "^18.11.7",
"rimraf": "^3.0.2",
"tap": "^16.3.0",
"typescript": "^4.8.4"
},
"engines": {
"node": "14.* || >= 16.*"
},
"scripts": {
"prepare": "tsc -b .",
"test": "tap --timeout 10 ./test.js"
},
"tap": {
"coverage": false
},
"files": [
"index.d.ts",
"index.js"
]
}