js-generate-password 0.0.3 → 0.0.5
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/package.json +4 -2
- package/.history/.gitignore_20221107183247 +0 -104
- package/.history/.gitignore_20221107211503 +0 -106
- package/.history/README_20221107201823.md +0 -118
- package/.history/README_20221107202530.md +0 -118
- package/.history/README_20221107211027.md +0 -118
- package/.history/package_20221107201823.json +0 -34
- package/.history/package_20221107202343.json +0 -34
- package/.history/package_20221107202357.json +0 -34
- package/.history/package_20221107202358.json +0 -34
- package/.history/package_20221107202502.json +0 -34
- package/.history/package_20221107204050.json +0 -35
- package/.history/package_20221107210001.json +0 -35
- package/.history/package_20221107210028.json +0 -35
- package/.history/package_20221107210033.json +0 -35
- package/.history/package_20221107210124.json +0 -35
- package/.history/package_20221107210128.json +0 -35
- package/.history/package_20221107210129.json +0 -35
- package/.history/package_20221107210130.json +0 -35
- package/.history/package_20221107210131.json +0 -35
- package/.history/package_20221107210132.json +0 -35
- package/.history/package_20221107210134.json +0 -35
- package/.history/package_20221107210143.json +0 -35
- package/.history/package_20221107210954.json +0 -35
- package/.history/package_20221107211052.json +0 -35
- package/.history/package_20221107213802.json +0 -35
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
6
|
"main": "index.js",
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
"js password generator",
|
|
17
17
|
"generate password",
|
|
18
18
|
"password generator",
|
|
19
|
-
"random password",
|
|
19
|
+
"random password generator",
|
|
20
|
+
"simple password generator",
|
|
21
|
+
"easy password generator",
|
|
20
22
|
"password",
|
|
21
23
|
"generator",
|
|
22
24
|
"unique",
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
# Logs
|
|
2
|
-
logs
|
|
3
|
-
*.log
|
|
4
|
-
npm-debug.log*
|
|
5
|
-
yarn-debug.log*
|
|
6
|
-
yarn-error.log*
|
|
7
|
-
lerna-debug.log*
|
|
8
|
-
|
|
9
|
-
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
10
|
-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
11
|
-
|
|
12
|
-
# Runtime data
|
|
13
|
-
pids
|
|
14
|
-
*.pid
|
|
15
|
-
*.seed
|
|
16
|
-
*.pid.lock
|
|
17
|
-
|
|
18
|
-
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
19
|
-
lib-cov
|
|
20
|
-
|
|
21
|
-
# Coverage directory used by tools like istanbul
|
|
22
|
-
coverage
|
|
23
|
-
*.lcov
|
|
24
|
-
|
|
25
|
-
# nyc test coverage
|
|
26
|
-
.nyc_output
|
|
27
|
-
|
|
28
|
-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
29
|
-
.grunt
|
|
30
|
-
|
|
31
|
-
# Bower dependency directory (https://bower.io/)
|
|
32
|
-
bower_components
|
|
33
|
-
|
|
34
|
-
# node-waf configuration
|
|
35
|
-
.lock-wscript
|
|
36
|
-
|
|
37
|
-
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
38
|
-
build/Release
|
|
39
|
-
|
|
40
|
-
# Dependency directories
|
|
41
|
-
node_modules/
|
|
42
|
-
jspm_packages/
|
|
43
|
-
|
|
44
|
-
# TypeScript v1 declaration files
|
|
45
|
-
typings/
|
|
46
|
-
|
|
47
|
-
# TypeScript cache
|
|
48
|
-
*.tsbuildinfo
|
|
49
|
-
|
|
50
|
-
# Optional npm cache directory
|
|
51
|
-
.npm
|
|
52
|
-
|
|
53
|
-
# Optional eslint cache
|
|
54
|
-
.eslintcache
|
|
55
|
-
|
|
56
|
-
# Microbundle cache
|
|
57
|
-
.rpt2_cache/
|
|
58
|
-
.rts2_cache_cjs/
|
|
59
|
-
.rts2_cache_es/
|
|
60
|
-
.rts2_cache_umd/
|
|
61
|
-
|
|
62
|
-
# Optional REPL history
|
|
63
|
-
.node_repl_history
|
|
64
|
-
|
|
65
|
-
# Output of 'npm pack'
|
|
66
|
-
*.tgz
|
|
67
|
-
|
|
68
|
-
# Yarn Integrity file
|
|
69
|
-
.yarn-integrity
|
|
70
|
-
|
|
71
|
-
# dotenv environment variables file
|
|
72
|
-
.env
|
|
73
|
-
.env.test
|
|
74
|
-
|
|
75
|
-
# parcel-bundler cache (https://parceljs.org/)
|
|
76
|
-
.cache
|
|
77
|
-
|
|
78
|
-
# Next.js build output
|
|
79
|
-
.next
|
|
80
|
-
|
|
81
|
-
# Nuxt.js build / generate output
|
|
82
|
-
.nuxt
|
|
83
|
-
dist
|
|
84
|
-
|
|
85
|
-
# Gatsby files
|
|
86
|
-
.cache/
|
|
87
|
-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
|
|
88
|
-
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
89
|
-
# public
|
|
90
|
-
|
|
91
|
-
# vuepress build output
|
|
92
|
-
.vuepress/dist
|
|
93
|
-
|
|
94
|
-
# Serverless directories
|
|
95
|
-
.serverless/
|
|
96
|
-
|
|
97
|
-
# FuseBox cache
|
|
98
|
-
.fusebox/
|
|
99
|
-
|
|
100
|
-
# DynamoDB Local files
|
|
101
|
-
.dynamodb/
|
|
102
|
-
|
|
103
|
-
# TernJS port file
|
|
104
|
-
.tern-port
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
# Logs
|
|
2
|
-
logs
|
|
3
|
-
*.log
|
|
4
|
-
npm-debug.log*
|
|
5
|
-
yarn-debug.log*
|
|
6
|
-
yarn-error.log*
|
|
7
|
-
lerna-debug.log*
|
|
8
|
-
|
|
9
|
-
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
10
|
-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
11
|
-
|
|
12
|
-
# Runtime data
|
|
13
|
-
pids
|
|
14
|
-
*.pid
|
|
15
|
-
*.seed
|
|
16
|
-
*.pid.lock
|
|
17
|
-
|
|
18
|
-
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
19
|
-
lib-cov
|
|
20
|
-
|
|
21
|
-
# Coverage directory used by tools like istanbul
|
|
22
|
-
coverage
|
|
23
|
-
*.lcov
|
|
24
|
-
|
|
25
|
-
# nyc test coverage
|
|
26
|
-
.nyc_output
|
|
27
|
-
|
|
28
|
-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
29
|
-
.grunt
|
|
30
|
-
|
|
31
|
-
# Bower dependency directory (https://bower.io/)
|
|
32
|
-
bower_components
|
|
33
|
-
|
|
34
|
-
# node-waf configuration
|
|
35
|
-
.lock-wscript
|
|
36
|
-
|
|
37
|
-
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
38
|
-
build/Release
|
|
39
|
-
|
|
40
|
-
# Dependency directories
|
|
41
|
-
node_modules/
|
|
42
|
-
jspm_packages/
|
|
43
|
-
|
|
44
|
-
# TypeScript v1 declaration files
|
|
45
|
-
typings/
|
|
46
|
-
|
|
47
|
-
# TypeScript cache
|
|
48
|
-
*.tsbuildinfo
|
|
49
|
-
|
|
50
|
-
# Optional npm cache directory
|
|
51
|
-
.npm
|
|
52
|
-
|
|
53
|
-
# Optional eslint cache
|
|
54
|
-
.eslintcache
|
|
55
|
-
|
|
56
|
-
# Microbundle cache
|
|
57
|
-
.rpt2_cache/
|
|
58
|
-
.rts2_cache_cjs/
|
|
59
|
-
.rts2_cache_es/
|
|
60
|
-
.rts2_cache_umd/
|
|
61
|
-
|
|
62
|
-
# Optional REPL history
|
|
63
|
-
.node_repl_history
|
|
64
|
-
|
|
65
|
-
# Output of 'npm pack'
|
|
66
|
-
*.tgz
|
|
67
|
-
|
|
68
|
-
# Yarn Integrity file
|
|
69
|
-
.yarn-integrity
|
|
70
|
-
|
|
71
|
-
# dotenv environment variables file
|
|
72
|
-
.env
|
|
73
|
-
.env.test
|
|
74
|
-
|
|
75
|
-
# parcel-bundler cache (https://parceljs.org/)
|
|
76
|
-
.cache
|
|
77
|
-
|
|
78
|
-
# Next.js build output
|
|
79
|
-
.next
|
|
80
|
-
|
|
81
|
-
# Nuxt.js build / generate output
|
|
82
|
-
.nuxt
|
|
83
|
-
dist
|
|
84
|
-
|
|
85
|
-
# Gatsby files
|
|
86
|
-
.cache/
|
|
87
|
-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
|
|
88
|
-
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
89
|
-
# public
|
|
90
|
-
|
|
91
|
-
# vuepress build output
|
|
92
|
-
.vuepress/dist
|
|
93
|
-
|
|
94
|
-
# Serverless directories
|
|
95
|
-
.serverless/
|
|
96
|
-
|
|
97
|
-
# FuseBox cache
|
|
98
|
-
.fusebox/
|
|
99
|
-
|
|
100
|
-
# DynamoDB Local files
|
|
101
|
-
.dynamodb/
|
|
102
|
-
|
|
103
|
-
# TernJS port file
|
|
104
|
-
.tern-port
|
|
105
|
-
|
|
106
|
-
package-lock.json
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
<!-- prettier-ignore-start -->
|
|
2
|
-
<!-- SOMETHING AUTO-GENERATED BY TOOLS - START -->
|
|
3
|
-
|
|
4
|
-
# z-password-generator
|
|
5
|
-
|
|
6
|
-
z-password-generator is usable for every javascript based project like react, vue, node, etc. it used to generate passwords that may contain alphabets, number and symbols. The options parameter enables the user to enable or disable the characters that are used to generate random password.
|
|
7
|
-
|
|
8
|
-
The characters that may be choosen from are
|
|
9
|
-
|
|
10
|
-
- Lowercase Characters
|
|
11
|
-
- Uppercase Characters
|
|
12
|
-
- Numbers
|
|
13
|
-
- Symbols
|
|
14
|
-
|
|
15
|
-
The user may also specify the minimum number of character for each type.
|
|
16
|
-
|
|
17
|
-
## Installation
|
|
18
|
-
|
|
19
|
-
`npm install z-password-generator`
|
|
20
|
-
or
|
|
21
|
-
`yarn add z-password-generator`
|
|
22
|
-
|
|
23
|
-
## Usage
|
|
24
|
-
|
|
25
|
-
For the password to be generated, **parameters** are able to pass as an optional **options** object.
|
|
26
|
-
|
|
27
|
-
```javascript
|
|
28
|
-
import PasswordGenerator from "z-password-generator";
|
|
29
|
-
const password = PasswordGenerator({
|
|
30
|
-
length: 14,
|
|
31
|
-
symbols: true,
|
|
32
|
-
});
|
|
33
|
-
console.log(password);
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
If no parameter is passed, the default parameter will be taken as :
|
|
37
|
-
|
|
38
|
-
```javascript
|
|
39
|
-
options = {
|
|
40
|
-
length: 10,
|
|
41
|
-
lowercase: true,
|
|
42
|
-
uppercase: true,
|
|
43
|
-
numbers: true,
|
|
44
|
-
symbols: false,
|
|
45
|
-
exclude: "",
|
|
46
|
-
minLengthLowercase: 1,
|
|
47
|
-
minLengthUppercase: 1,
|
|
48
|
-
minLengthNumbers: 1,
|
|
49
|
-
minLengthSymbols: 0,
|
|
50
|
-
};
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
### Available options
|
|
54
|
-
|
|
55
|
-
Any of these can be passed into the options object for each function.
|
|
56
|
-
|
|
57
|
-
| Name | Description | Default Value |
|
|
58
|
-
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
|
|
59
|
-
| length | Integer, length of password. | 10 |
|
|
60
|
-
| lowercase\* | Boolean, put lowercase letters in password | true |
|
|
61
|
-
| uppercase\* | Boolean, put uppercase letters in password. | true |
|
|
62
|
-
| numbers\* | Boolean, put numbers in password. | true |
|
|
63
|
-
| symbols\* | Boolean, put symbols in password. | false |
|
|
64
|
-
| exclude | String, characters to be excluded from password. | '' |
|
|
65
|
-
| minLengthLowercase | only if **lowercase** is set to **true**, minLengthLowercase will create a password that will have minimum number of lower case characters in the password. | 1 |
|
|
66
|
-
| minLengthUppercase | only if **uppercase** is set to **true**, minLengthUppercase will create a password that will have minimum number of upper case characters in the password. | 1 |
|
|
67
|
-
| minLengthNumbers | only if **numbers** is set to **true**, minLengthNumbers will create a password that will have minimum number of numbers in the password. | 1 |
|
|
68
|
-
| minLengthSymbols | only if **symbols** is set to **true**, minLengthSymbols will create a password that will have minimum number of symbols in the password. | 1 |
|
|
69
|
-
|
|
70
|
-
\*At least one should be true.
|
|
71
|
-
|
|
72
|
-
## Example
|
|
73
|
-
|
|
74
|
-
- **No Options passed.**
|
|
75
|
-
|
|
76
|
-
```javscript
|
|
77
|
-
const PasswordGenerator = require("z-password-generator");
|
|
78
|
-
const password = PasswordGenerator();
|
|
79
|
-
console.log(password);
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
In the above case, no parameter is passed as option. Therefore the default values will be taken - which will have alphabets, both upper and lower case, numbers, and will be of length 10 characters.
|
|
83
|
-
|
|
84
|
-
```javascript
|
|
85
|
-
xDU6izb3PV;
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
- **Length parameter passed.**
|
|
89
|
-
|
|
90
|
-
```javascript
|
|
91
|
-
options={
|
|
92
|
-
length : 25;
|
|
93
|
-
}
|
|
94
|
-
password = PasswordGenerator(options);
|
|
95
|
-
console.log(password);
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
The password generated is
|
|
99
|
-
|
|
100
|
-
```javascript
|
|
101
|
-
U4c3KpQP5UrbZgTcrqMgFeI3R;
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
- **exclude parameter passed.**
|
|
105
|
-
|
|
106
|
-
```javascript
|
|
107
|
-
options={
|
|
108
|
-
exclude : 'abc567XYZ';
|
|
109
|
-
}
|
|
110
|
-
password = PasswordGenerator(options);
|
|
111
|
-
console.log(password);
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
The generated password wouldn't has none of 'abc567XYZ' characters
|
|
115
|
-
|
|
116
|
-
```javascript
|
|
117
|
-
J9yCfttQNj;
|
|
118
|
-
```
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
<!-- prettier-ignore-start -->
|
|
2
|
-
<!-- SOMETHING AUTO-GENERATED BY TOOLS - START -->
|
|
3
|
-
|
|
4
|
-
# easy-password-generator
|
|
5
|
-
|
|
6
|
-
easy-password-generator is usable for every javascript based project like react, vue, node, etc. it used to generate passwords that may contain alphabets, number and symbols. The options parameter enables the user to enable or disable the characters that are used to generate random password.
|
|
7
|
-
|
|
8
|
-
The characters that may be choosen from are
|
|
9
|
-
|
|
10
|
-
- Lowercase Characters
|
|
11
|
-
- Uppercase Characters
|
|
12
|
-
- Numbers
|
|
13
|
-
- Symbols
|
|
14
|
-
|
|
15
|
-
The user may also specify the minimum number of character for each type.
|
|
16
|
-
|
|
17
|
-
## Installation
|
|
18
|
-
|
|
19
|
-
`npm install easy-password-generator`
|
|
20
|
-
or
|
|
21
|
-
`yarn add easy-password-generator`
|
|
22
|
-
|
|
23
|
-
## Usage
|
|
24
|
-
|
|
25
|
-
For the password to be generated, **parameters** are able to pass as an optional **options** object.
|
|
26
|
-
|
|
27
|
-
```javascript
|
|
28
|
-
import PasswordGenerator from "easy-password-generator";
|
|
29
|
-
const password = PasswordGenerator({
|
|
30
|
-
length: 14,
|
|
31
|
-
symbols: true,
|
|
32
|
-
});
|
|
33
|
-
console.log(password);
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
If no parameter is passed, the default parameter will be taken as :
|
|
37
|
-
|
|
38
|
-
```javascript
|
|
39
|
-
options = {
|
|
40
|
-
length: 10,
|
|
41
|
-
lowercase: true,
|
|
42
|
-
uppercase: true,
|
|
43
|
-
numbers: true,
|
|
44
|
-
symbols: false,
|
|
45
|
-
exclude: "",
|
|
46
|
-
minLengthLowercase: 1,
|
|
47
|
-
minLengthUppercase: 1,
|
|
48
|
-
minLengthNumbers: 1,
|
|
49
|
-
minLengthSymbols: 0,
|
|
50
|
-
};
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
### Available options
|
|
54
|
-
|
|
55
|
-
Any of these can be passed into the options object for each function.
|
|
56
|
-
|
|
57
|
-
| Name | Description | Default Value |
|
|
58
|
-
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
|
|
59
|
-
| length | Integer, length of password. | 10 |
|
|
60
|
-
| lowercase\* | Boolean, put lowercase letters in password | true |
|
|
61
|
-
| uppercase\* | Boolean, put uppercase letters in password. | true |
|
|
62
|
-
| numbers\* | Boolean, put numbers in password. | true |
|
|
63
|
-
| symbols\* | Boolean, put symbols in password. | false |
|
|
64
|
-
| exclude | String, characters to be excluded from password. | '' |
|
|
65
|
-
| minLengthLowercase | only if **lowercase** is set to **true**, minLengthLowercase will create a password that will have minimum number of lower case characters in the password. | 1 |
|
|
66
|
-
| minLengthUppercase | only if **uppercase** is set to **true**, minLengthUppercase will create a password that will have minimum number of upper case characters in the password. | 1 |
|
|
67
|
-
| minLengthNumbers | only if **numbers** is set to **true**, minLengthNumbers will create a password that will have minimum number of numbers in the password. | 1 |
|
|
68
|
-
| minLengthSymbols | only if **symbols** is set to **true**, minLengthSymbols will create a password that will have minimum number of symbols in the password. | 1 |
|
|
69
|
-
|
|
70
|
-
\*At least one should be true.
|
|
71
|
-
|
|
72
|
-
## Example
|
|
73
|
-
|
|
74
|
-
- **No Options passed.**
|
|
75
|
-
|
|
76
|
-
```javscript
|
|
77
|
-
const PasswordGenerator = require("easy-password-generator");
|
|
78
|
-
const password = PasswordGenerator();
|
|
79
|
-
console.log(password);
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
In the above case, no parameter is passed as option. Therefore the default values will be taken - which will have alphabets, both upper and lower case, numbers, and will be of length 10 characters.
|
|
83
|
-
|
|
84
|
-
```javascript
|
|
85
|
-
xDU6izb3PV;
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
- **Length parameter passed.**
|
|
89
|
-
|
|
90
|
-
```javascript
|
|
91
|
-
options={
|
|
92
|
-
length : 25;
|
|
93
|
-
}
|
|
94
|
-
password = PasswordGenerator(options);
|
|
95
|
-
console.log(password);
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
The password generated is
|
|
99
|
-
|
|
100
|
-
```javascript
|
|
101
|
-
U4c3KpQP5UrbZgTcrqMgFeI3R;
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
- **exclude parameter passed.**
|
|
105
|
-
|
|
106
|
-
```javascript
|
|
107
|
-
options={
|
|
108
|
-
exclude : 'abc567XYZ';
|
|
109
|
-
}
|
|
110
|
-
password = PasswordGenerator(options);
|
|
111
|
-
console.log(password);
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
The generated password wouldn't has none of 'abc567XYZ' characters
|
|
115
|
-
|
|
116
|
-
```javascript
|
|
117
|
-
J9yCfttQNj;
|
|
118
|
-
```
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
<!-- prettier-ignore-start -->
|
|
2
|
-
<!-- SOMETHING AUTO-GENERATED BY TOOLS - START -->
|
|
3
|
-
|
|
4
|
-
# js-generate-password
|
|
5
|
-
|
|
6
|
-
js-generate-password is usable for every javascript based project like react, vue, node, etc. it used to generate passwords that may contain alphabets, number and symbols. The options parameter enables the user to enable or disable the characters that are used to generate random password.
|
|
7
|
-
|
|
8
|
-
The characters that may be choosen from are
|
|
9
|
-
|
|
10
|
-
- Lowercase Characters
|
|
11
|
-
- Uppercase Characters
|
|
12
|
-
- Numbers
|
|
13
|
-
- Symbols
|
|
14
|
-
|
|
15
|
-
The user may also specify the minimum number of character for each type.
|
|
16
|
-
|
|
17
|
-
## Installation
|
|
18
|
-
|
|
19
|
-
`npm install js-generate-password`
|
|
20
|
-
or
|
|
21
|
-
`yarn add js-generate-password`
|
|
22
|
-
|
|
23
|
-
## Usage
|
|
24
|
-
|
|
25
|
-
For the password to be generated, **parameters** are able to pass as an optional **options** object.
|
|
26
|
-
|
|
27
|
-
```javascript
|
|
28
|
-
import PasswordGenerator from "js-generate-password";
|
|
29
|
-
const password = PasswordGenerator({
|
|
30
|
-
length: 14,
|
|
31
|
-
symbols: true,
|
|
32
|
-
});
|
|
33
|
-
console.log(password);
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
If no parameter is passed, the default parameter will be taken as :
|
|
37
|
-
|
|
38
|
-
```javascript
|
|
39
|
-
options = {
|
|
40
|
-
length: 10,
|
|
41
|
-
lowercase: true,
|
|
42
|
-
uppercase: true,
|
|
43
|
-
numbers: true,
|
|
44
|
-
symbols: false,
|
|
45
|
-
exclude: "",
|
|
46
|
-
minLengthLowercase: 1,
|
|
47
|
-
minLengthUppercase: 1,
|
|
48
|
-
minLengthNumbers: 1,
|
|
49
|
-
minLengthSymbols: 0,
|
|
50
|
-
};
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
### Available options
|
|
54
|
-
|
|
55
|
-
Any of these can be passed into the options object for each function.
|
|
56
|
-
|
|
57
|
-
| Name | Description | Default Value |
|
|
58
|
-
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
|
|
59
|
-
| length | Integer, length of password. | 10 |
|
|
60
|
-
| lowercase\* | Boolean, put lowercase letters in password | true |
|
|
61
|
-
| uppercase\* | Boolean, put uppercase letters in password. | true |
|
|
62
|
-
| numbers\* | Boolean, put numbers in password. | true |
|
|
63
|
-
| symbols\* | Boolean, put symbols in password. | false |
|
|
64
|
-
| exclude | String, characters to be excluded from password. | '' |
|
|
65
|
-
| minLengthLowercase | only if **lowercase** is set to **true**, minLengthLowercase will create a password that will have minimum number of lower case characters in the password. | 1 |
|
|
66
|
-
| minLengthUppercase | only if **uppercase** is set to **true**, minLengthUppercase will create a password that will have minimum number of upper case characters in the password. | 1 |
|
|
67
|
-
| minLengthNumbers | only if **numbers** is set to **true**, minLengthNumbers will create a password that will have minimum number of numbers in the password. | 1 |
|
|
68
|
-
| minLengthSymbols | only if **symbols** is set to **true**, minLengthSymbols will create a password that will have minimum number of symbols in the password. | 1 |
|
|
69
|
-
|
|
70
|
-
\*At least one should be true.
|
|
71
|
-
|
|
72
|
-
## Example
|
|
73
|
-
|
|
74
|
-
- **No Options passed.**
|
|
75
|
-
|
|
76
|
-
```javscript
|
|
77
|
-
const PasswordGenerator = require("js-generate-password");
|
|
78
|
-
const password = PasswordGenerator();
|
|
79
|
-
console.log(password);
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
In the above case, no parameter is passed as option. Therefore the default values will be taken - which will have alphabets, both upper and lower case, numbers, and will be of length 10 characters.
|
|
83
|
-
|
|
84
|
-
```javascript
|
|
85
|
-
xDU6izb3PV;
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
- **Length parameter passed.**
|
|
89
|
-
|
|
90
|
-
```javascript
|
|
91
|
-
options={
|
|
92
|
-
length : 25;
|
|
93
|
-
}
|
|
94
|
-
password = PasswordGenerator(options);
|
|
95
|
-
console.log(password);
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
The password generated is
|
|
99
|
-
|
|
100
|
-
```javascript
|
|
101
|
-
U4c3KpQP5UrbZgTcrqMgFeI3R;
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
- **exclude parameter passed.**
|
|
105
|
-
|
|
106
|
-
```javascript
|
|
107
|
-
options={
|
|
108
|
-
exclude : 'abc567XYZ';
|
|
109
|
-
}
|
|
110
|
-
password = PasswordGenerator(options);
|
|
111
|
-
console.log(password);
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
The generated password wouldn't has none of 'abc567XYZ' characters
|
|
115
|
-
|
|
116
|
-
```javascript
|
|
117
|
-
J9yCfttQNj;
|
|
118
|
-
```
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "z-password-generator",
|
|
3
|
-
"version": "0.2.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/Mustafa-Zahedi/random-password-generator.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"password generator",
|
|
17
|
-
"random password",
|
|
18
|
-
"generate",
|
|
19
|
-
"password",
|
|
20
|
-
"generator",
|
|
21
|
-
"unique",
|
|
22
|
-
"nodejs",
|
|
23
|
-
"nextjs",
|
|
24
|
-
"react",
|
|
25
|
-
"reactjs",
|
|
26
|
-
"random"
|
|
27
|
-
],
|
|
28
|
-
"author": "Mustafa Zahedi",
|
|
29
|
-
"license": "ISC",
|
|
30
|
-
"bugs": {
|
|
31
|
-
"url": "https://github.com/Mustafa-Zahedi/random-password-generator/issues"
|
|
32
|
-
},
|
|
33
|
-
"homepage": "https://github.com/Mustafa-Zahedi/random-password-generator#readme"
|
|
34
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "z-password-generator",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/password-generator.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"password generator",
|
|
17
|
-
"random password",
|
|
18
|
-
"generate",
|
|
19
|
-
"password",
|
|
20
|
-
"generator",
|
|
21
|
-
"unique",
|
|
22
|
-
"nodejs",
|
|
23
|
-
"nextjs",
|
|
24
|
-
"react",
|
|
25
|
-
"reactjs",
|
|
26
|
-
"random"
|
|
27
|
-
],
|
|
28
|
-
"author": "Mustafa Zahedi",
|
|
29
|
-
"license": "ISC",
|
|
30
|
-
"bugs": {
|
|
31
|
-
"url": "https://github.com/ahmadjoya/password-generator/issues"
|
|
32
|
-
},
|
|
33
|
-
"homepage": "https://github.com/ahmadjoya/password-generator#readme"
|
|
34
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "z-password-generator",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/password-generator.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"password generator",
|
|
17
|
-
"random password",
|
|
18
|
-
"generate",
|
|
19
|
-
"password",
|
|
20
|
-
"generator",
|
|
21
|
-
"unique",
|
|
22
|
-
"nodejs",
|
|
23
|
-
"nextjs",
|
|
24
|
-
"react",
|
|
25
|
-
"reactjs",
|
|
26
|
-
"random"
|
|
27
|
-
],
|
|
28
|
-
"author": "Ahmad Joya",
|
|
29
|
-
"license": "ISC",
|
|
30
|
-
"bugs": {
|
|
31
|
-
"url": "https://github.com/ahmadjoya/password-generator/issues"
|
|
32
|
-
},
|
|
33
|
-
"homepage": "https://github.com/ahmadjoya/password-generator#readme"
|
|
34
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "z-password-generator",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/password-generator.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"password generator",
|
|
17
|
-
"random password",
|
|
18
|
-
"generate",
|
|
19
|
-
"password",
|
|
20
|
-
"generator",
|
|
21
|
-
"unique",
|
|
22
|
-
"nodejs",
|
|
23
|
-
"nextjs",
|
|
24
|
-
"react",
|
|
25
|
-
"reactjs",
|
|
26
|
-
"random"
|
|
27
|
-
],
|
|
28
|
-
"author": "Ahmad Joya",
|
|
29
|
-
"license": "ISC",
|
|
30
|
-
"bugs": {
|
|
31
|
-
"url": "https://github.com/ahmadjoya/password-generator/issues"
|
|
32
|
-
},
|
|
33
|
-
"homepage": "https://github.com/ahmadjoya/password-generator#readme"
|
|
34
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "easy-password-generator",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/password-generator.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"password generator",
|
|
17
|
-
"random password",
|
|
18
|
-
"generate",
|
|
19
|
-
"password",
|
|
20
|
-
"generator",
|
|
21
|
-
"unique",
|
|
22
|
-
"nodejs",
|
|
23
|
-
"nextjs",
|
|
24
|
-
"react",
|
|
25
|
-
"reactjs",
|
|
26
|
-
"random"
|
|
27
|
-
],
|
|
28
|
-
"author": "Ahmad Joya",
|
|
29
|
-
"license": "ISC",
|
|
30
|
-
"bugs": {
|
|
31
|
-
"url": "https://github.com/ahmadjoya/password-generator/issues"
|
|
32
|
-
},
|
|
33
|
-
"homepage": "https://github.com/ahmadjoya/password-generator#readme"
|
|
34
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "easy-password-generator",
|
|
3
|
-
"version": "0.2.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/password-generator.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"easy password generator",
|
|
17
|
-
"password generator",
|
|
18
|
-
"random password",
|
|
19
|
-
"generate",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/password-generator/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/password-generator#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/password-generator.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"easy password generator",
|
|
17
|
-
"password generator",
|
|
18
|
-
"random password",
|
|
19
|
-
"generate",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/password-generator/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/password-generator#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"easy password generator",
|
|
17
|
-
"password generator",
|
|
18
|
-
"random password",
|
|
19
|
-
"generate",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"easy password generator",
|
|
17
|
-
"password generator",
|
|
18
|
-
"random password",
|
|
19
|
-
"generate",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.2",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "js-generate-password",
|
|
3
|
-
"version": "0.0.3",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "Password Generator for using in javascirpt/typscript based projects.",
|
|
6
|
-
"main": "index.js",
|
|
7
|
-
"bin": "index.js",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/ahmadjoya/js-generate-password.git"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"js password generator",
|
|
17
|
-
"generate password",
|
|
18
|
-
"password generator",
|
|
19
|
-
"random password",
|
|
20
|
-
"password",
|
|
21
|
-
"generator",
|
|
22
|
-
"unique",
|
|
23
|
-
"nodejs",
|
|
24
|
-
"nextjs",
|
|
25
|
-
"react",
|
|
26
|
-
"reactjs",
|
|
27
|
-
"random"
|
|
28
|
-
],
|
|
29
|
-
"author": "Ahmad Joya",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"bugs": {
|
|
32
|
-
"url": "https://github.com/ahmadjoya/js-generate-password/issues"
|
|
33
|
-
},
|
|
34
|
-
"homepage": "https://github.com/ahmadjoya/js-generate-password#readme"
|
|
35
|
-
}
|