FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cz-cli/package.json at master · commitizen/cz-cli · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
commitizen
/
cz-cli
Public
Notifications
You must be signed in to change notification settings
Fork
564
Star
17.5k
Code
Issues
169
Pull requests
24
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cz-cli
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
109 lines (109 loc) · 3.21 KB
Breadcrumbs
cz-cli
/
package.json
Copy path
File metadata and controls
109 lines (109 loc) · 3.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
104
105
106
107
108
109
{
"name"
:
"
commitizen
"
,
"version"
:
"
0.0.2
"
,
"description"
:
"
Git commit, but play nice with conventions.
"
,
"main"
:
"
dist/index.js
"
,
"scripts"
: {
"check-coverage"
:
"
nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80
"
,
"commit"
:
"
node bin/git-cz
"
,
"build"
:
"
babel src --out-dir dist
"
,
"build:watch"
:
"
babel --watch src --out-dir dist
"
,
"prepare"
:
"
not-in-install && npm run build || true
"
,
"report-coverage"
:
"
nyc report --reporter=lcov | codecov
"
,
"write-coverage"
:
"
nyc report --reporter=lcov --reporter=cobertura --reporter=html
"
,
"semantic-release"
:
"
npx semantic-release
"
,
"start"
:
"
npm run test:watch
"
,
"test-actual"
:
"
mocha --reporter=mocha-multi-reporters --reporter-options configFile=./test/mochareporters.json test/tests/index.js
"
,
"test"
:
"
nyc --require @babel/register npm run test-actual
"
,
"test:watch"
:
"
nodemon -q --ignore test/.tmp/ --ignore test/artifacts/ --ignore coverage/ --exec
\"
npm run test
\"
--
"
},
"config"
: {
"commitizen"
: {
"path"
:
"
./node_modules/cz-conventional-changelog
"
},
"ghooks"
: {
"pre-commit"
:
"
npm run test && npm run check-coverage
"
}
},
"homepage"
:
"
https://github.com/commitizen/cz-cli
"
,
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
https://github.com/commitizen/cz-cli.git
"
},
"keywords"
: [
"
commit
"
,
"
pretty
"
,
"
format
"
,
"
conventional changelog
"
,
"
commitizen
"
],
"bugs"
: {
"url"
:
"
https://github.com/commitizen/cz-cli/issues
"
},
"bin"
: {
"cz"
:
"
./bin/git-cz
"
,
"git-cz"
:
"
./bin/git-cz
"
,
"commitizen"
:
"
./bin/commitizen
"
},
"author"
:
"
Jim Cummins <jimthedev@gmail.com> (https://github.com/jimthedev)
"
,
"license"
:
"
MIT
"
,
"devDependencies"
: {
"@babel/cli"
:
"
7.29.7
"
,
"@babel/core"
:
"
7.29.7
"
,
"@babel/plugin-proposal-object-rest-spread"
:
"
7.20.7
"
,
"@babel/preset-env"
:
"
7.29.7
"
,
"@babel/register"
:
"
7.29.7
"
,
"@istanbuljs/nyc-config-babel"
:
"
3.0.0
"
,
"babel-plugin-istanbul"
:
"
6.1.1
"
,
"chai"
:
"
4.5.0
"
,
"codecov"
:
"
3.8.3
"
,
"conventional-changelog-conventionalcommits"
:
"
4.6.3
"
,
"cz-conventional-changelog-default-export"
:
"
0.0.0-semantically-released.1
"
,
"ghooks"
:
"
2.0.4
"
,
"in-publish"
:
"
2.0.1
"
,
"mocha"
:
"
9.2.2
"
,
"mocha-junit-reporter"
:
"
1.23.3
"
,
"mocha-multi-reporters"
:
"
1.5.1
"
,
"nodemon"
:
"
2.0.22
"
,
"nyc"
:
"
15.1.0
"
,
"proxyquire"
:
"
2.1.3
"
,
"semantic-release"
:
"
25.0.5
"
,
"semver"
:
"
7.8.3
"
,
"sinon"
:
"
12.0.1
"
,
"uuid"
:
"
8.3.2
"
},
"dependencies"
: {
"cachedir"
:
"
2.4.0
"
,
"cz-conventional-changelog"
:
"
3.3.0
"
,
"dedent"
:
"
0.7.0
"
,
"detect-indent"
:
"
6.1.0
"
,
"find-node-modules"
:
"
^2.1.2
"
,
"find-root"
:
"
1.1.0
"
,
"fs-extra"
:
"
9.1.0
"
,
"glob"
:
"
7.2.3
"
,
"inquirer"
:
"
8.2.7
"
,
"is-utf8"
:
"
^0.2.1
"
,
"lodash"
:
"
4.18.1
"
,
"minimist"
:
"
1.2.8
"
,
"strip-bom"
:
"
4.0.0
"
,
"strip-json-comments"
:
"
3.1.1
"
},
"nyc"
: {
"extends"
:
"
@istanbuljs/nyc-config-babel
"
,
"exclude"
: [
"
src/cli
"
,
"
test
"
]
},
"engineStrict"
:
true
,
"engines"
: {
"node"
:
"
>= 18
"
},
"collective"
: {
"type"
:
"
opencollective
"
,
"url"
:
"
https://opencollective.com/commitizen
"
},
"release"
: {
"preset"
:
"
conventionalcommits
"
}
}
Back
|
FazBrowse Home
|
New Git URL