fixturify
Version:
Convert objects into directory structures and back again
41 lines (40 loc) • 879 B
JSON
{
"name": "fixturify",
"description": "Convert objects into directory structures and back again",
"version": "3.0.0",
"author": "Jo Liss <joliss42@gmail.com>",
"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"
]
}