codigo-postal-cli
Advanced tools
+12
-1
@@ -0,1 +1,13 @@ | ||
| # [3.0.0](https://github.com/lgaticaq/codigo-postal-cli/compare/v2.0.4...v3.0.0) (2018-09-20) | ||
| ### chore | ||
| * **node:** update min node version to v8 ([b49a879](https://github.com/lgaticaq/codigo-postal-cli/commit/b49a879)) | ||
| ### BREAKING CHANGES | ||
| * **node:** set min node version to v8 | ||
| #### 2.0.4 (2017-08-07) | ||
@@ -89,2 +101,1 @@ | ||
| * **README:** Update badges ([5c827e9d](https://github.com/lgaticaq/codigo-postal-cli/commit/5c827e9d507894513c09d55735df2cbc6082591a)) | ||
+60
-34
| { | ||
| "name": "codigo-postal-cli", | ||
| "version": "2.0.4", | ||
| "version": "3.0.0", | ||
| "description": "Get postal code from Correos de Chile CLI", | ||
@@ -9,11 +9,10 @@ "main": "src", | ||
| "format": "prettier-standard 'src/**/*.js' 'test/**/*.js'", | ||
| "precommit": "lint-staged", | ||
| "commit": "commit", | ||
| "pretest": "npm run lint -s && npm run format -s", | ||
| "test": "istanbul cover _mocha", | ||
| "release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish", | ||
| "release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish", | ||
| "release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish" | ||
| "semantic-release": "semantic-release", | ||
| "travis-deploy-once": "travis-deploy-once" | ||
| }, | ||
| "engines": { | ||
| "node": ">=6" | ||
| "node": ">=8" | ||
| }, | ||
@@ -42,23 +41,28 @@ "bin": { | ||
| "dependencies": { | ||
| "chalk": "^2.0.1", | ||
| "clipboardy": "^1.1.4", | ||
| "codigo-postal": "^2.0.4", | ||
| "commander": "^2.11.0", | ||
| "update-notifier": "^2.2.0" | ||
| "chalk": "2.4.1", | ||
| "clipboardy": "1.2.3", | ||
| "codigo-postal": "2.0.5", | ||
| "commander": "2.18.0", | ||
| "update-notifier": "2.5.0" | ||
| }, | ||
| "devDependencies": { | ||
| "chai": "^4.1.1", | ||
| "eslint": "^4.4.0", | ||
| "eslint-config-standard": "^10.2.1", | ||
| "eslint-plugin-import": "^2.7.0", | ||
| "eslint-plugin-node": "^5.1.1", | ||
| "eslint-plugin-promise": "^3.5.0", | ||
| "eslint-plugin-standard": "^3.0.1", | ||
| "generate-changelog": "^1.3.0", | ||
| "husky": "^0.14.3", | ||
| "istanbul": "^0.4.5", | ||
| "lint-staged": "^4.0.3", | ||
| "mocha": "^3.5.0", | ||
| "prettier-standard": "^6.0.0", | ||
| "proxyquire": "^1.8.0" | ||
| "@commitlint/cli": "7.1.2", | ||
| "@commitlint/config-conventional": "7.1.2", | ||
| "@commitlint/prompt-cli": "7.1.2", | ||
| "chai": "4.1.2", | ||
| "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", | ||
| "husky": "1.0.0-rc.14", | ||
| "istanbul": "0.4.5", | ||
| "lint-staged": "7.3.0", | ||
| "mocha": "5.2.0", | ||
| "npm-github-config": "1.0.0", | ||
| "prettier-standard": "8.0.1", | ||
| "proxyquire": "2.1.0", | ||
| "semantic-release": "15.9.15", | ||
| "travis-deploy-once": "5.0.8" | ||
| }, | ||
@@ -79,14 +83,36 @@ "eslintConfig": { | ||
| ], | ||
| "husky": { | ||
| "hooks": { | ||
| "pre-commit": "lint-staged", | ||
| "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
| } | ||
| }, | ||
| "lint-staged": { | ||
| "src/**/*.js": [ | ||
| "eslint --fix", | ||
| "prettier-standard", | ||
| "git add" | ||
| ], | ||
| "test/**/*.js": [ | ||
| "eslint --fix", | ||
| "prettier-standard", | ||
| "git add" | ||
| "linters": { | ||
| "src/**/*.js": [ | ||
| "eslint --fix", | ||
| "prettier-standard", | ||
| "git add" | ||
| ], | ||
| "test/**/*.js": [ | ||
| "eslint --fix", | ||
| "prettier-standard", | ||
| "git add" | ||
| ] | ||
| } | ||
| }, | ||
| "commitlint": { | ||
| "extends": [ | ||
| "@commitlint/config-conventional" | ||
| ] | ||
| }, | ||
| "renovate": { | ||
| "automerge": "minor", | ||
| "extends": [ | ||
| "config:base" | ||
| ] | ||
| }, | ||
| "release": { | ||
| "extends": "npm-github-config" | ||
| } | ||
| } |
+7
-7
| # codigo-postal-cli | ||
| [](https://www.npmjs.com/package/codigo-postal-cli) | ||
| [](https://www.npmjs.com/package/codigo-postal-cli) | ||
| [](https://travis-ci.org/lgaticaq/codigo-postal-cli) | ||
| [](https://coveralls.io/github/lgaticaq/codigo-postal-cli?branch=master) | ||
| [](https://codeclimate.com/github/lgaticaq/codigo-postal-cli) | ||
| [](https://david-dm.org/lgaticaq/codigo-postal-cli#info=dependencies) | ||
| [](https://david-dm.org/lgaticaq/codigo-postal-cli#info=devDependencies) | ||
| [](https://www.npmjs.com/package/codigo-postal-cli) | ||
| [](https://www.npmjs.com/package/codigo-postal-cli) | ||
| [](https://travis-ci.org/lgaticaq/codigo-postal-cli) | ||
| [](https://coveralls.io/github/lgaticaq/codigo-postal-cli?branch=master) | ||
| [](https://codeclimate.com/github/lgaticaq/codigo-postal-cli/maintainability) | ||
| [](https://david-dm.org/lgaticaq/codigo-postal-cli#info=dependencies) | ||
| [](https://david-dm.org/lgaticaq/codigo-postal-cli#info=devDependencies) | ||
@@ -11,0 +11,0 @@ > Get postal code from Correos de Chile CLI |
Sorry, the diff of this file is not supported yet
14975
1.39%19
35.71%6
-14.29%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
Updated
Updated
Updated
Updated
Updated