forked from commitizen/cz-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "commitizen",
"version": "0.0.0-semantically-released",
"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",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "npm run test:watch",
"lint": "eslint --ignore-path .gitignore .",
"test": "nyc --require @babel/register _mocha -- test/tests/index.js",
"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 lint && 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": {
"git-cz": "./bin/git-cz",
"commitizen": "./bin/commitizen"
},
"author": "Jim Cummins <jimthedev@gmail.com> (https://github.com/jimthedev)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"axios": "0.18.0",
"chai": "^4.1.2",
"codecov.io": "0.1.6",
"cz-conventional-changelog-default-export": "0.0.0-semantically-released.1",
"eslint": "5.6.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"ghooks": "^2.0.4",
"in-publish": "^2.0.0",
"mocha": "5.2.0",
"node-uuid": "1.4.8",
"nodemon": "1.18.7",
"nyc": "13.0.1",
"proxyquire": "^2.1.0",
"semantic-release": "7.0.2",
"semver": "5.5.1",
"sinon": "^6.3.4"
},
"dependencies": {
"cachedir": "2.1.0",
"cz-conventional-changelog": "2.1.0",
"dedent": "0.7.0",
"detect-indent": "^5.0.0",
"find-node-modules": "2.0.0",
"find-root": "1.1.0",
"fs-extra": "^7.0.0",
"glob": "7.1.3",
"inquirer": "6.2.0",
"is-utf8": "^0.2.1",
"lodash": "4.17.11",
"minimist": "1.2.0",
"shelljs": "0.7.6",
"strip-bom": "3.0.0",
"strip-json-comments": "2.0.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6"
}
}
]
]
},
"nyc": {
"exclude": [
"src/cli",
"test"
]
},
"engineStrict": true,
"engines": {
"node": ">= 6"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/commitizen"
}
}