-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 969 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "password-magic",
"version": "1.0.0",
"author": "Andi Dittrich (https://andidittrich.de)",
"license": "MIT",
"homepage": "https://github.com/AndiDittrich/Node.password-magic",
"bugs": "https://github.com/AndiDittrich/Node.password-magic/issues",
"repository": "AndiDittrich/Node.password-magic",
"description": "Generate ultrastrong user passwords and auth tokens",
"keywords": [
"password",
"generator",
"token",
"user",
"security",
"random",
"numbers",
"async",
"promise",
"crypto"
],
"files": [
"lib",
"CHANGES.md",
"LICENSE.md",
"README.md"
],
"main": "password-magic.js",
"bin": {},
"preferGlobal": false,
"engines": {
"node": ">=7.6"
},
"scripts": {
"test": "eslint lib/*"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-aenondynamics": "^0.1.0",
"mathjs": "^7.5.1"
},
"dependencies": {
"async-magic": "^1.3.0"
}
}