passlens 1.1.3 → 1.1.6

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -68,7 +68,7 @@ Analyzes a password and returns:
68
68
  Clone the repository:
69
69
 
70
70
  ```bash
71
- git clone <your-repository-url>
71
+ git clone https://github.com/DefNotArham/passlens
72
72
  ```
73
73
 
74
74
  Install dependencies:
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "passlens",
3
- "version": "1.1.3",
3
+ "version": "1.1.6",
4
4
  "description": "A TypeScript password strength analyzer",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "readme": "README.md",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/DefNotArham/passlens"
11
+ },
8
12
  "files": [
9
13
  "dist",
10
14
  "README.md"