Skip to content

Commit

Permalink
Release v1.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Jan 18, 2018
1 parent 3c4751e commit 8382911
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "requestretry",
"description":
"request-retry wrap nodejs request to retry http(s) requests in case of error",
"version": "1.12.3",
"description": "request-retry wrap nodejs request to retry http(s) requests in case of error",
"version": "1.13.0",
"author": {
"name": "Francois-Guillaume Ribreau",
"email": "npm@fgribreau.com",
Expand All @@ -25,18 +24,22 @@
"scripts": {
"test": "mocha -t 2000 -R spec $(find test -name '*.test.js')",
"test-watch": "mocha -t 100000 -R min -w $(find test -name '*.test.js')",
"test-coverage":
"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000 $(find test -name '*.test.js')",
"test-coverage": "nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000 $(find test -name '*.test.js')",
"send-coverage": "cat ./coverage/lcov.info | coveralls",
"update": "updtr",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog-git":
"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master",
"postpublish": "npm run --silent changelog-git"
},
"license": "MIT",
"nyc": {
"exclude": ["node_modules", "dist", "coverage", "webpack.config.js", "test"]
"exclude": [
"node_modules",
"dist",
"coverage",
"webpack.config.js",
"test"
]
},
"dependencies": {
"extend": "^3.0.0",
Expand Down

0 comments on commit 8382911

Please sign in to comment.