UNPKG

3.18 kBJSONView Raw
1{
2 "name": "commitizen",
3 "version": "4.1.2",
4 "description": "Git commit, but play nice with conventions.",
5 "main": "dist/index.js",
6 "scripts": {
7 "check-coverage": "nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80 ",
8 "commit": "node bin/git-cz",
9 "build": "babel src --out-dir dist",
10 "build:watch": "babel --watch src --out-dir dist",
11 "prepare": "not-in-install && npm run build || true",
12 "report-coverage": "nyc report --reporter=lcov | codecov",
13 "write-coverage": "nyc report --reporter=lcov --reporter=cobertura --reporter=html",
14 "semantic-release": "npx semantic-release",
15 "start": "npm run test:watch",
16 "test-actual": "mocha --reporter=mocha-multi-reporters --reporter-options configFile=./test/mochareporters.json test/tests/index.js",
17 "test": "nyc --require @babel/register npm run test-actual",
18 "test:watch": "nodemon -q --ignore test/.tmp/ --ignore test/artifacts/ --ignore coverage/ --exec \"npm run test\" --"
19 },
20 "config": {
21 "commitizen": {
22 "path": "./node_modules/cz-conventional-changelog"
23 },
24 "ghooks": {
25 "pre-commit": "npm run test && npm run check-coverage"
26 }
27 },
28 "homepage": "https://github.com/commitizen/cz-cli",
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/commitizen/cz-cli.git"
32 },
33 "keywords": [
34 "commit",
35 "pretty",
36 "format",
37 "conventional changelog",
38 "commitizen"
39 ],
40 "bugs": {
41 "url": "https://github.com/commitizen/cz-cli/issues"
42 },
43 "bin": {
44 "git-cz": "./bin/git-cz",
45 "commitizen": "./bin/commitizen"
46 },
47 "author": "Jim Cummins <jimthedev@gmail.com> (https://github.com/jimthedev)",
48 "license": "MIT",
49 "devDependencies": {
50 "@babel/cli": "^7.1.0",
51 "@babel/core": "^7.1.0",
52 "@babel/plugin-proposal-object-rest-spread": "7.9.0",
53 "@babel/preset-env": "^7.1.0",
54 "@babel/register": "^7.0.0",
55 "@istanbuljs/nyc-config-babel": "2.1.1",
56 "axios": "0.19.0",
57 "babel-plugin-istanbul": "5.1.4",
58 "chai": "^4.1.2",
59 "codecov.io": "0.1.6",
60 "cz-conventional-changelog-default-export": "0.0.0-semantically-released.1",
61 "ghooks": "^2.0.4",
62 "in-publish": "^2.0.0",
63 "mocha": "6.2.0",
64 "mocha-junit-reporter": "^1.18.0",
65 "mocha-multi-reporters": "^1.1.7",
66 "nodemon": "1.19.1",
67 "nyc": "15.0.1",
68 "proxyquire": "^2.1.0",
69 "semantic-release": "15.13.18",
70 "semver": "6.2.0",
71 "sinon": "^6.3.4",
72 "uuid": "3.3.2"
73 },
74 "dependencies": {
75 "cachedir": "2.2.0",
76 "cz-conventional-changelog": "3.2.0",
77 "dedent": "0.7.0",
78 "detect-indent": "6.0.0",
79 "find-node-modules": "2.0.0",
80 "find-root": "1.1.0",
81 "fs-extra": "8.1.0",
82 "glob": "7.1.4",
83 "inquirer": "6.5.0",
84 "is-utf8": "^0.2.1",
85 "lodash": "4.17.15",
86 "minimist": "1.2.5",
87 "strip-bom": "4.0.0",
88 "strip-json-comments": "3.0.1"
89 },
90 "nyc": {
91 "extends": "@istanbuljs/nyc-config-babel",
92 "exclude": [
93 "src/cli",
94 "test"
95 ]
96 },
97 "engineStrict": true,
98 "engines": {
99 "node": ">= 10"
100 },
101 "collective": {
102 "type": "opencollective",
103 "url": "https://opencollective.com/commitizen"
104 }
105}