UNPKG

879 BJSONView Raw
1{
2 "name": "fixturify",
3 "description": "Convert objects into directory structures and back again",
4 "version": "3.0.0",
5 "author": "Jo Liss <joliss42@gmail.com>",
6 "main": "index.js",
7 "license": "MIT",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/joliss/node-fixturify"
11 },
12 "dependencies": {
13 "@types/fs-extra": "^9.0.13",
14 "@types/minimatch": "^3.0.3",
15 "@types/rimraf": "^3.0.2",
16 "fs-extra": "^10.1.0",
17 "matcher-collection": "^2.0.1",
18 "walk-sync": "^3.0.0"
19 },
20 "devDependencies": {
21 "@types/node": "^18.11.7",
22 "rimraf": "^3.0.2",
23 "tap": "^16.3.0",
24 "typescript": "^4.8.4"
25 },
26 "engines": {
27 "node": "14.* || >= 16.*"
28 },
29 "scripts": {
30 "prepare": "tsc -b .",
31 "test": "tap --timeout 10 ./test.js"
32 },
33 "tap": {
34 "coverage": false
35 },
36 "files": [
37 "index.d.ts",
38 "index.js"
39 ]
40}