UNPKG

1.51 kBJSONView Raw
1{
2 "name": "cp-cli",
3 "version": "2.0.0",
4 "description": "A 'cp' CLI util for Node.js",
5 "scripts": {
6 "precommit": "pretty-quick --staged",
7 "prepublishOnly": "yarn clean && yarn build && yarn test",
8 "build": "tsc --build",
9 "clean": "rimraf dist",
10 "lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
11 "test:unit": "tape -r source-map-support/register 'dist/test/**/*.js'",
12 "test": "yarn lint && yarn test:unit | tap-dot",
13 "test:ci": "yarn lint && yarn test:unit | tap-xunit > test-results.xml"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/screendriver/cp-cli.git"
18 },
19 "keywords": [
20 "cp",
21 "cp -R -L",
22 "copy"
23 ],
24 "license": "MIT",
25 "bugs": {
26 "url": "https://github.com/screendriver/cp-cli/issues"
27 },
28 "homepage": "https://github.com/screendriver/cp-cli#readme",
29 "files": [
30 "dist/src/cp-cli.js"
31 ],
32 "bin": "dist/src/cp-cli.js",
33 "dependencies": {
34 "fs-extra": "7.0.1",
35 "yargs": "12.0.5"
36 },
37 "devDependencies": {
38 "@types/fs-extra": "5.0.4",
39 "@types/shelljs": "0.8.0",
40 "@types/tape": "4.2.32",
41 "@types/yargs": "12.0.1",
42 "husky": "1.2.0",
43 "prettier": "1.15.2",
44 "pretty-quick": "1.8.0",
45 "rimraf": "2.6.2",
46 "shelljs": "0.8.3",
47 "source-map-support": "0.5.9",
48 "tap-dot": "2.0.0",
49 "tap-xunit": "2.3.0",
50 "tape": "4.9.1",
51 "tslint": "5.11.0",
52 "tslint-config-prettier": "1.16.0",
53 "typescript": "3.1.6",
54 "typescript-tslint-plugin": "0.1.0"
55 }
56}