Browse Source

v2.0.2: add node engine restriction

pull/5/head v2.0.2
AJ ONeal 5 years ago
parent
commit
0b5850cf6a
  1. 8
      README.md
  2. 5
      package.json

8
README.md

@ -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

5
package.json

@ -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…
Cancel
Save