-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
121 lines (121 loc) · 2.05 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "upash",
"version": "1.0.2",
"description": "Unified API for password hashing algorithms",
"license": "MIT",
"homepage": "https://github.com/simonepri/upash#readme",
"repository": "github:simonepri/upash",
"bugs": {
"url": "https://github.com/simonepri/upash/issues",
"email": "simonepri@outlook.com"
},
"author": "Simone Primarosa <simonepri@outlook.com> (https://simoneprimarosa.com)",
"contributors": [
"Simone Primarosa <simonepri@outlook.com> (https://simoneprimarosa.com)"
],
"keywords": [
"account",
"accounts",
"algorithm",
"algorithms",
"API",
"APIs",
"application",
"argon2",
"attack",
"attacks",
"auth",
"authentication",
"authorization",
"bcrypt",
"brute",
"cli",
"command",
"credential",
"credentials",
"cryptographically",
"derivation",
"easy",
"force",
"form",
"function",
"hash",
"hashing",
"interface",
"irreversible",
"kdf",
"key",
"line",
"login",
"one",
"one-way",
"password",
"passwords",
"PBKDF",
"PBKDF1",
"PBKDF2",
"pbkdf2-crypt",
"plus",
"programming",
"protected",
"rainbow",
"resistance",
"salt",
"scrypt",
"secure",
"security",
"sign in",
"simple",
"store",
"stretching",
"strong",
"table",
"time",
"timining",
"transform",
"unified",
"universal",
"upash",
"user",
"users",
"verification",
"verify",
"way"
],
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo &&nyc ava",
"release": "np",
"update": "npm-check -u"
},
"dependencies": {},
"devDependencies": {
"ava": "*",
"np": "*",
"npm-check": "*",
"nyc": "*",
"xo": "*"
},
"ava": {
"verbose": true
},
"nyc": {
"reporter": [
"lcovonly",
"text"
]
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"prefer-destructuring": "off"
}
}
}