v2.0.2: add node engine restriction
This commit is contained in:
parent
ef8f61b3c3
commit
0b5850cf6a
|
@ -266,12 +266,14 @@ but it does matter.
|
|||
|
||||
# ChangeLog:
|
||||
|
||||
* v2.0.0
|
||||
* remove ursa and node-forge as strict dependencies
|
||||
* v1.9.0
|
||||
* v2.0
|
||||
* remove ursa and node-forge deps
|
||||
* mark for node v10.11+
|
||||
* v1.9
|
||||
* consistently handle key generation across node crypto, ursa, and forge
|
||||
* move all other operations to rasha.js and rsa-csr.js
|
||||
* bugfix non-standard JWKs output (which *mostly* worked)
|
||||
* move dependencies to optional
|
||||
* v1.4.0
|
||||
* remove ursa as dependency (just causes confusion), but note in docs
|
||||
* drop node < v6 support
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{
|
||||
"name": "rsa-compat",
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.2",
|
||||
"engines" : {
|
||||
"node" : ">=10.12"
|
||||
},
|
||||
"description": "RSA utils that work on Windows, Mac, and Linux with or without C compiler",
|
||||
"main": "index.js",
|
||||
"bin": {
|
||||
|
|
Loading…
Reference in New Issue