-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cp-file-cli",
"version": "1.0.1",
"description": "Command line tool for copying single file, using [cp-file][] under the hood. Just because cpy-cli is too much and does not fit well in the flow.",
"repository": "tunnckoCore/cp-file-cli",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://i.am.charlike.online)",
"precommit.silent": true,
"main": "cli.js",
"license": "MIT",
"scripts": {
"lint": "standard --fix --verbose",
"pretest": "npm run lint",
"test": "npm run coverage",
"posttest": "npm run lint:coverage",
"coverage": "nyc node test.js",
"lint:coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"precommit": "git add --all",
"commit": "git-cz"
},
"dependencies": {
"cp-file": "^4.1.1",
"minimist": "^1.2.0"
},
"devDependencies": {
"commitizen": "^2.9.2",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^1.2.0",
"execa": "^0.6.0",
"mukla": "^0.4.8",
"nyc": "^10.0.0",
"pre-commit": "^1.2.2",
"standard": "^8.6.0",
"standard-version": "^4.0.0"
},
"files": [
"cli.js"
],
"bin": {
"cp-file": "cli.js",
"cp-file-cli": "cli.js"
},
"keywords": [
"cli",
"command",
"copy",
"copying",
"cp",
"cp-file",
"cpy",
"file",
"files",
"line",
"util",
"utility"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=4",
"npm": ">=2"
},
"verb": {
"run": true,
"toc": true,
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"always-done",
"minibase",
"try-catch-core",
"cp-file",
"cpy",
"cpy-cli"
],
"highlight": "always-done"
},
"reflinks": [
"always-done",
"async-done",
"base",
"charlike",
"commitizen",
"cp-file",
"dezalgo",
"once",
"standard-version",
"verb",
"verb-generate-readme"
],
"lint": {
"reflinks": true
}
}
}