UNPKG

fs-teardown

Version:

Teardown API for testing file system-dependent code.

57 lines (56 loc) 1.37 kB
{ "name": "fs-teardown", "version": "0.3.2", "description": "Teardown API for testing file system-dependent code.", "main": "lib/index.js", "types": "lib/index.d.ts", "repository": "git@github.com:kettanaito/fs-teardown.git", "author": "Artem Zakharchenko <kettanaito@gmail.com>", "license": "MIT", "files": [ "lib", "README.md" ], "scripts": { "lint": "ctl-scripts lint", "test": "ctl-scripts test", "clean": "rimraf ./lib", "build": "yarn clean && rollup -c rollup.config.ts", "prepublishOnly": "yarn lint && yarn test && yarn build" }, "devDependencies": { "@rollup/plugin-commonjs": "^21.0.1", "@rollup/plugin-node-resolve": "^13.0.6", "@types/fs-extra": "^9.0.13", "@types/jest": "^27.0.2", "@types/node": "^15.12.2", "ctl-scripts": "^0.3.4", "cz-conventional-changelog": "3.3.0", "jest": "^27.3.1", "rimraf": "^3.0.2", "rollup": "^2.60.0", "rollup-plugin-typescript2": "^0.31.0", "ts-jest": "^27.0.7", "tslib": "^2.3.1", "typescript": "^4.3.2" }, "dependencies": { "fs-extra": "^10.0.0", "outvariant": "^1.2.1" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "keywords": [ "fs", "mock", "tree", "prepare", "cleanup", "file", "directory", "test" ] }