forked from simonepri/upash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.47 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.47 KB
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
{
"name": "credential-plus",
"version": "0.5.0",
"description": "Easy password hashing and verification in NodeJS",
"main": "index.js",
"dependencies": {
"argon2": "^0.16.1",
"bcrypt": "^1.0.2",
"lodash": "^4.17.4",
"require-directory": "^2.1.1",
"safe-buffer": "^5.1.1",
"scrypt": "^6.0.3",
"tsse": "^1.1.0"
},
"devDependencies": {
"ava": "*",
"codecov": "^2.2.0",
"nyc": "^11.0.3",
"pify": "^3.0.0",
"xo": "*"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && nyc ava --verbose",
"coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage/coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonepri/credential-plus.git"
},
"author": {
"name": "Simone Primarosa",
"email": "simone.pri@hotmail.it"
},
"keywords": [
"credential plus",
"credential",
"password",
"passwords",
"hashing",
"verification",
"hash",
"auth",
"authorization",
"authentication",
"security",
"login",
"sign in",
"salt",
"rainbow",
"brute",
"brute force",
"attack",
"stretching",
"timining attack",
"PBKDF",
"PBKDF2",
"bcrypt",
"scrypt",
"argon2"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/simonepri/credential-plus/issues"
},
"homepage": "https://github.com/simonepri/credential-plus#readme",
"xo": {
"space": true
}
}