Skip to content

Commit

Permalink
Merge pull request #13 from akdombrowski/1.0.36
Browse files Browse the repository at this point in the history
1.0.36
  • Loading branch information
akdombrowski committed Apr 17, 2021
2 parents 64cb1c2 + 802abcd commit 0c4b9a5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

jwt-authn is an npm package for dealing with JSON Web Tokens. Encoding, decoding, verifying, signing, and more coming. No package dependencies! It's only dependency is the [Crypto](https://nodejs.org/api/crypto.html) module in Nodejs.

*must be on Node >=15.x

**If you get a base64url encoding not found error, it's likely you're using NodeJS version <15.x

<br>
<br>
<br>
Expand Down Expand Up @@ -207,6 +211,8 @@ Please make sure to update tests as appropriate.

<br>

[GNU GPL3](https://choosealicense.com/licenses/gpl-3.0/)
[MIT](https://choosealicense.com/licenses/mit/)

[MIT-Modern-Variant](https://spdx.org/licenses/MIT-Modern-Variant.html)

![NPM](https://img.shields.io/npm/l/jwt-authn?&style=for-the-badge&logo=npm)
10 changes: 6 additions & 4 deletions package-lock.json

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

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jwt-authn",
"version": "1.0.35",
"description": "JWT decoder, encoder, and more",
"version": "1.0.36",
"description": "JWT decoder, encoder, and more with only Node >=15.x as a dependency.",
"main": "./lib",
"scripts": {
"build": "babel ./src -d ./lib",
Expand Down Expand Up @@ -44,7 +44,7 @@
"base64url"
],
"author": "Anthony Dombrowski",
"license": "GNU GPLv3",
"license": "MIT-Modern-Variant",
"bugs": {
"url": "https://github.com/akdombrowski/jwt-authn/issues"
},
Expand All @@ -55,6 +55,7 @@
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.14",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-plugin-istanbul": "^6.0.0",
"braces": ">=3.0.2",
"chai": "^4.3.4",
"core-js": "^3.10.0",
Expand All @@ -71,5 +72,8 @@
"text",
"lcov"
]
},
"engines": {
"node": ">=15.0"
}
}

0 comments on commit 0c4b9a5

Please sign in to comment.