Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsetka committed Nov 19, 2017
1 parent d1efef7 commit 5400ec4
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
{
"name": "deepl-translator",
"version": "1.1.0",
"description":
"This module provides promised methods for translating text using DeepL Translator (https://www.deepl.com/translator) undocumented API.",
"version": "1.2.0",
"description": "This module provides promised methods for translating text using DeepL Translator (https://www.deepl.com/translator) undocumented API.",
"main": "index.js",
"browser": {
"./src/request-helper.js": "./shims/client-request-helper.js"
},
"scripts": {
"test": "prettier-check './**/*.js' && jest",
"coverage":
"jest --coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"release:major":
"generate-changelog -u https://github.com/vsetka/deepl-translator -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version major && git push origin && git push origin --tags",
"release:minor":
"generate-changelog -u https://github.com/vsetka/deepl-translator -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version minor && git push origin && git push origin --tags",
"release:patch":
"generate-changelog -u https://github.com/vsetka/deepl-translator -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version patch && git push origin && git push origin --tags"
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"release:major": "generate-changelog -u https://github.com/vsetka/deepl-translator -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version major && git push origin && git push origin --tags",
"release:minor": "generate-changelog -u https://github.com/vsetka/deepl-translator -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version minor && git push origin && git push origin --tags",
"release:patch": "generate-changelog -u https://github.com/vsetka/deepl-translator -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version patch && git push origin && git push origin --tags"
},
"jest": {
"verbose": true
Expand Down

0 comments on commit 5400ec4

Please sign in to comment.