-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.21 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
{
"name": "gitclone",
"version": "2.0.0",
"description": "Powerful and flexible programmatic interface for the `git clone` command, using [gitclone-defaults][] and [cross-spawn][]",
"repository": "tunnckoCore/gitclone",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "standard --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 0 --branches 0 --statements 0 --functions 0",
"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": {
"capture-spawn": "^1.0.1",
"cross-spawn": "^5.0.0",
"gitclone-defaults": "^2.0.0",
"lazy-cache": "^2.0.1"
},
"devDependencies": {
"commitizen": "^2.8.6",
"coveralls": "^2.11.14",
"cz-conventional-changelog": "^1.2.0",
"mukla": "^0.4.4",
"nyc": "^8.3.2",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"standard": "^8.5.0",
"standard-version": "^3.0.0"
},
"files": [
"index.js",
"utils.js"
],
"keywords": [
"api",
"clone",
"cmd",
"command",
"flexible",
"gh",
"ghclone",
"git",
"gitc",
"gitclone",
"github",
"github-clone",
"interface",
"powerful",
"program",
"programmatic",
"ui",
"util",
"utils"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"verb": {
"run": true,
"toc": true,
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"gitclone-defaults",
"try-catch-callback",
"try-catch-core",
"always-done",
"minibase"
]
},
"reflinks": [
"cross-spawn",
"gitclone-defaults",
"always-done",
"async-done",
"base",
"dezalgo",
"once",
"try-catch-core"
],
"lint": {
"reflinks": true
}
}
}