Skip to content

Commit

Permalink
Merge ccd5249 into e8a29f9
Browse files Browse the repository at this point in the history
  • Loading branch information
anshulsahni committed Mar 17, 2021
2 parents e8a29f9 + ccd5249 commit dfc2862
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
coverage
node_modules
npm-debug.log
package-lock.json
package-lock.json
7 changes: 7 additions & 0 deletions .travis.yml
Expand Up @@ -13,6 +13,10 @@ node_js:
- "8.12"
- "9.11"
- "10.10"
- "11"
- "12"
- "13"
- "14"
sudo: false
cache:
directories:
Expand Down Expand Up @@ -41,10 +45,13 @@ before_install:
# mocha for testing
# - use 2.x for Node.js < 0.10
# - use 3.x for Node.js < 6
# - use 5.x for Node.js < 10
if [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -eq 0 && "$(cut -d. -f2 <<< "$TRAVIS_NODE_VERSION")" -lt 10 ]]; then
npm install --save-dev mocha@2.5.3
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -lt 6 ]]; then
npm install --save-dev mocha@3.5.3
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -lt 10 ]]; then
npm install --save-dev mocha@5.2.0
fi
# Update Node.js modules
- |
Expand Down
17 changes: 8 additions & 9 deletions package.json
Expand Up @@ -11,18 +11,17 @@
],
"repository": "jshttp/basic-auth",
"dependencies": {
"safe-buffer": "5.1.2"
"safe-buffer": "5.2.1"
},
"devDependencies": {
"eslint": "5.6.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-markdown": "1.0.0-beta.6",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"eslint": "7.22.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-markdown": "2.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"istanbul": "0.4.5",
"mocha": "5.2.0"
"mocha": "8.3.2"
},
"files": [
"HISTORY.md",
Expand Down

0 comments on commit dfc2862

Please sign in to comment.