fs-generate
Version:
Utilities to set up file system structures (directories, files, and symlinks)
61 lines (60 loc) • 1.48 kB
JSON
{
"name": "fs-generate",
"version": "1.9.26",
"description": "Utilities to set up file system structures (directories, files, and symlinks)",
"keywords": [
"fs",
"generate",
"fixtures"
],
"homepage": "https://github.com/kmalakoff/fs-generate#readme",
"bugs": {
"url": "https://github.com/kmalakoff/fs-generate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmalakoff/fs-generate.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe",
"test": "mocha --no-timeouts test/**/*.test.*",
"test:engines": "nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"dependencies": {
"fs.realpath": "^1.0.0",
"graceful-fs": "^4.2.11",
"mkdirp-classic": "^0.5.3",
"pinkie-promise": "*",
"queue-cb": "^1.5.5",
"rimraf2": "^2.8.2"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"fs-iterator": "*",
"fs-stats-spys": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts"
}
}