UNPKG

link-unlink

Version:

Link and unlink with saving and restoring the previous file or directory

68 lines (67 loc) 1.51 kB
{ "name": "link-unlink", "version": "1.0.2", "description": "Link and unlink with saving and restoring the previous file or directory", "keywords": [ "link", "unlink", "restore", "fs", "symlink", "file", "directory" ], "homepage": "https://github.com/kmalakoff/link-unlink#README.md", "bugs": { "url": "https://github.com/kmalakoff/link-unlink/issues" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/kmalakoff/link-unlink.git" }, "license": "MIT", "author": { "name": "Kevin Malakoff", "email": "kmalakoff@gmail.com", "url": "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": { "lock": "*", "mkdirp-classic": "*", "queue-cb": "*", "rimraf2": "*", "temp-suffix": "*" }, "devDependencies": { "@types/mocha": "*", "@types/node": "*", "fs-exists-sync": "*", "pinkie-promise": "*" }, "engines": { "node": ">=0.8" }, "tsds": { "source": "src/index.ts" } }