encrypt-rsa 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 1.2.0 (2022-02-09)
2
+
3
+ ##### Documentation Changes
4
+
5
+ * set docs ([6f1fa5e3](https://github.com/miladezzat/encrypt-rsa/commit/6f1fa5e38e7d1ef0576a8e49501766f540715477))
6
+
1
7
  ### 1.1.0 (2021-07-21)
2
8
 
3
9
  ##### Documentation Changes
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
  # Encrypt By RSA Algorithm
3
3
 
4
4
  [![npm version](https://badge.fury.io/js/encrypt-rsa.svg)](https://badge.fury.io/js/encrypt-rsa) 
5
+ ![https://img.shields.io/npm/dm/encrypt-rsa.svg](https://img.shields.io/npm/dm/encrypt-rsa.svg)
5
6
 
6
7
  > RSA is a public-key cryptosystem that is widely used for secure data transmission. It is also one of the oldest. The acronym RSA comes from the surnames of Ron Rivest, Adi Shamir and Leonard Adleman, who publicly described the algorithm in 1977. [Wikipedia](https://en.wikipedia.org/wiki/RSA_(cryptosystem))
7
8
 
@@ -70,4 +71,4 @@ console.log({ decryptedText });
70
71
 
71
72
  ```
72
73
  for more information about RSA:
73
- [https://simple.wikipedia.org/wiki/RSA_algorithm](https://simple.wikipedia.org/wiki/RSA_algorithm)
74
+ [https://simple.wikipedia.org/wiki/RSA_algorithm](https://simple.wikipedia.org/wiki/RSA_algorithm)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "encrypt-rsa",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "this is a little module use to encrypt and decrypt strings with RSA keys (public and private keys)",
5
5
  "main": "./build/index.js",
6
6
  "module": "./build/index.js",
@@ -14,7 +14,8 @@
14
14
  "depcheck": "./node_modules/.bin/depcheck",
15
15
  "prepare": "husky install",
16
16
  "build": "tsc",
17
- "git-cz": "./node_modules/.bin/git-cz",
17
+ "commit": "./node_modules/.bin/git-cz",
18
+ "docs:serve": "docsify serve docs",
18
19
  "_postinstall": "husky install",
19
20
  "prepublishOnly": "pinst --disable",
20
21
  "postpublish": "pinst --enable",
@@ -32,6 +33,7 @@
32
33
  "@typescript-eslint/parser": "^4.28.3",
33
34
  "chai": "^4.3.4",
34
35
  "commitizen": "^4.2.4",
36
+ "docsify-cli": "^4.4.3",
35
37
  "cz-conventional-changelog": "^3.3.0",
36
38
  "depcheck": "^1.4.2",
37
39
  "eslint": "^7.31.0",
@@ -78,5 +80,5 @@
78
80
  "bugs": {
79
81
  "url": "https://github.com/miladezzat/encrypt-rsa/issues"
80
82
  },
81
- "homepage": "https://milad-ezzat.vercel.app"
83
+ "homepage": "https://miladezzat.github.io/encrypt-rsa/"
82
84
  }