Skip to content

Commit

Permalink
remove some EOL nodejs versions + bump axios + use v4.2.2 (unreleased…
Browse files Browse the repository at this point in the history
…) instead of v4.2.3
  • Loading branch information
doersf committed Oct 26, 2023
1 parent 42851f6 commit 37a5d58
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ script:
- npm --version
- npm test
node_js:
- 12
- 13
- 14
- 15
- 16
Expand Down
4 changes: 2 additions & 2 deletions lib/httpsclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const axios = require('axios');

const DEFAULT_AGENT_OPTIONS = {
keepAlive: true,
keepAliveMsecs: 30000,
timeout: 30000,
keepAliveMsecs: 60000,
timeout: 60000,
};

function HttpsClient(options, userAgent) {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dogecoin",
"wallet"
],
"version": "4.2.3",
"version": "4.2.2",
"preferGlobal": false,
"homepage": "https://github.com/BlockIo/block_io-nodejs",
"author": "Patrick Lodder <[email protected]> (https://github.com/patricklodder)",
Expand All @@ -25,7 +25,7 @@
},
"main": "./lib/block_io.js",
"dependencies": {
"axios": "^1.2.5",
"axios": "^1.5.1",
"bitcoinjs-lib": "^6.1.5",
"ecpair": "^2.1.0",
"pbkdf2": "^3.1.2",
Expand All @@ -40,6 +40,6 @@
},
"license": "MIT",
"engines": {
"node": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15 || ^14 || ^13 || ^12"
"node": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^14"
}
}

0 comments on commit 37a5d58

Please sign in to comment.