|
2 | 2 | "name": "commitizen", |
3 | 3 | "version": "0.0.0-semantically-released", |
4 | 4 | "description": "Git commit, but play nice with conventions.", |
5 | | - "main": "src/index.js", |
| 5 | + "main": "dist/index.js", |
6 | 6 | "scripts": { |
7 | 7 | "check-coverage": "nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80 ", |
8 | 8 | "commit": "node bin/git-cz", |
9 | 9 | "build": "babel src --out-dir dist", |
10 | 10 | "build:watch": "babel --watch src --out-dir dist", |
11 | 11 | "prepublish": "not-in-install && npm run build || true", |
12 | 12 | "report-coverage": "nyc report --reporter=lcov | codecov", |
| 13 | + "write-coverage": "nyc report --reporter=lcov", |
13 | 14 | "semantic-release": "semantic-release pre && npm publish && semantic-release post", |
14 | 15 | "start": "npm run test:watch", |
| 16 | + "lint": "eslint --ignore-path .gitignore .", |
15 | 17 | "test": "nyc --require babel-core/register _mocha -- test/tests/index.js", |
16 | 18 | "test:watch": "nodemon -q --ignore test/.tmp/ --ignore test/artifacts/ --ignore coverage/ --exec \"npm run test\" --", |
17 | 19 | "test:windows": "node ./test/tools/trigger-appveyor-tests.js" |
|
21 | 23 | "path": "./node_modules/cz-conventional-changelog" |
22 | 24 | }, |
23 | 25 | "ghooks": { |
24 | | - "pre-commit": "npm run test && npm run check-coverage" |
| 26 | + "pre-commit": "npm run lint && npm run test && npm run check-coverage" |
25 | 27 | } |
26 | 28 | }, |
27 | 29 | "homepage": "https://github.com/commitizen/cz-cli", |
|
46 | 48 | "author": "Jim Cummins <[email protected]> (https://github.com/jimthedev)", |
47 | 49 | "license": "MIT", |
48 | 50 | "devDependencies": { |
49 | | - "axios": "0.15.1", |
50 | | - "babel-cli": "6.16.0", |
| 51 | + "axios": "0.15.2", |
| 52 | + "babel-cli": "6.18.0", |
51 | 53 | "babel-core": "6.17.0", |
52 | | - "babel-preset-es2015": "6.13.1", |
53 | | - "babel-preset-stage-2": "6.17.0", |
| 54 | + "babel-preset-es2015": "6.18.0", |
| 55 | + "babel-preset-stage-2": "6.18.0", |
54 | 56 | "chai": "3.5.0", |
55 | 57 | "codecov.io": "0.1.6", |
56 | | - "ghooks": "1.3.0", |
| 58 | + "eslint": "3.12.2", |
| 59 | + "eslint-config-standard": "6.2.1", |
| 60 | + "eslint-plugin-promise": "3.4.0", |
| 61 | + "eslint-plugin-standard": "2.0.1", |
| 62 | + "ghooks": "1.3.2", |
57 | 63 | "in-publish": "^2.0.0", |
58 | 64 | "mocha": "3.1.2", |
59 | 65 | "node-uuid": "1.4.7", |
60 | 66 | "nodemon": "1.11.0", |
61 | | - "nyc": "6.6.1", |
| 67 | + "nyc": "10.0.0", |
62 | 68 | "proxyquire": "1.7.10", |
63 | | - "rimraf": "2.5.4", |
64 | | - "semantic-release": "4.3.5", |
| 69 | + "semantic-release": "6.3.5", |
65 | 70 | "semver": "5.3.0", |
66 | 71 | "sinon": "1.17.6" |
67 | 72 | }, |
68 | 73 | "dependencies": { |
| 74 | + "cachedir": "^1.1.0", |
69 | 75 | "chalk": "1.1.3", |
70 | 76 | "cz-conventional-changelog": "1.2.0", |
71 | 77 | "dedent": "0.6.0", |
72 | 78 | "detect-indent": "4.0.0", |
73 | | - "find-node-modules": "1.0.3", |
| 79 | + "find-node-modules": "1.0.4", |
74 | 80 | "find-root": "1.0.0", |
| 81 | + "fs-extra": "^1.0.0", |
75 | 82 | "glob": "7.1.1", |
76 | | - "home-or-tmp": "2.0.0", |
77 | 83 | "inquirer": "1.2.2", |
78 | | - "lodash": "4.16.3", |
| 84 | + "lodash": "4.17.2", |
79 | 85 | "minimist": "1.2.0", |
80 | 86 | "path-exists": "2.1.0", |
81 | 87 | "shelljs": "0.7.5", |
|
0 commit comments