Skip to content

Commit 0c4b9a5

Browse files
authored
Merge pull request #13 from akdombrowski/1.0.36
1.0.36
2 parents 64cb1c2 + 802abcd commit 0c4b9a5

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
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.
1414

15+
*must be on Node >=15.x
16+
17+
**If you get a base64url encoding not found error, it's likely you're using NodeJS version <15.x
18+
1519
<br>
1620
<br>
1721
<br>
@@ -207,6 +211,8 @@ Please make sure to update tests as appropriate.
207211

208212
<br>
209213

210-
[GNU GPL3](https://choosealicense.com/licenses/gpl-3.0/)
214+
[MIT](https://choosealicense.com/licenses/mit/)
215+
216+
[MIT-Modern-Variant](https://spdx.org/licenses/MIT-Modern-Variant.html)
211217

212218
![NPM](https://img.shields.io/npm/l/jwt-authn?&style=for-the-badge&logo=npm)

package-lock.json

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jwt-authn",
3-
"version": "1.0.35",
4-
"description": "JWT decoder, encoder, and more",
3+
"version": "1.0.36",
4+
"description": "JWT decoder, encoder, and more with only Node >=15.x as a dependency.",
55
"main": "./lib",
66
"scripts": {
77
"build": "babel ./src -d ./lib",
@@ -44,7 +44,7 @@
4444
"base64url"
4545
],
4646
"author": "Anthony Dombrowski",
47-
"license": "GNU GPLv3",
47+
"license": "MIT-Modern-Variant",
4848
"bugs": {
4949
"url": "https://github.com/akdombrowski/jwt-authn/issues"
5050
},
@@ -55,6 +55,7 @@
5555
"@babel/preset-env": "^7.13.12",
5656
"@babel/register": "^7.13.14",
5757
"@istanbuljs/nyc-config-babel": "^3.0.0",
58+
"babel-plugin-istanbul": "^6.0.0",
5859
"braces": ">=3.0.2",
5960
"chai": "^4.3.4",
6061
"core-js": "^3.10.0",
@@ -71,5 +72,8 @@
7172
"text",
7273
"lcov"
7374
]
75+
},
76+
"engines": {
77+
"node": ">=15.0"
7478
}
7579
}

0 commit comments

Comments
 (0)