UNPKG

cp-cli

Version:
57 lines (56 loc) 1.51 kB
{ "name": "cp-cli", "version": "2.0.0", "description": "A 'cp' CLI util for Node.js", "scripts": { "precommit": "pretty-quick --staged", "prepublishOnly": "yarn clean && yarn build && yarn test", "build": "tsc --build", "clean": "rimraf dist", "lint": "tslint 'src/**/*.ts' 'test/**/*.ts'", "test:unit": "tape -r source-map-support/register 'dist/test/**/*.js'", "test": "yarn lint && yarn test:unit | tap-dot", "test:ci": "yarn lint && yarn test:unit | tap-xunit > test-results.xml" }, "repository": { "type": "git", "url": "git+https://github.com/screendriver/cp-cli.git" }, "keywords": [ "cp", "cp -R -L", "copy" ], "license": "MIT", "bugs": { "url": "https://github.com/screendriver/cp-cli/issues" }, "homepage": "https://github.com/screendriver/cp-cli#readme", "files": [ "dist/src/cp-cli.js" ], "bin": "dist/src/cp-cli.js", "dependencies": { "fs-extra": "7.0.1", "yargs": "12.0.5" }, "devDependencies": { "@types/fs-extra": "5.0.4", "@types/shelljs": "0.8.0", "@types/tape": "4.2.32", "@types/yargs": "12.0.1", "husky": "1.2.0", "prettier": "1.15.2", "pretty-quick": "1.8.0", "rimraf": "2.6.2", "shelljs": "0.8.3", "source-map-support": "0.5.9", "tap-dot": "2.0.0", "tap-xunit": "2.3.0", "tape": "4.9.1", "tslint": "5.11.0", "tslint-config-prettier": "1.16.0", "typescript": "3.1.6", "typescript-tslint-plugin": "0.1.0" } }