-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 968 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "credentials",
"version": "3.0.2",
"description": "Secure password hashing and verification",
"bin": {
"credentials": "bin/cmd.js"
},
"dependencies": {
"commander": "^2.18.0"
},
"devDependencies": {
"bluebird": "^3.5.2",
"prettier": "^1.14.3",
"tape": "^4.9.1"
},
"scripts": {
"test": "node test",
"format": "prettier --write ./*"
},
"repository": "srcagency/credentials",
"keywords": [
"password",
"passwords",
"hash",
"auth",
"authorization",
"authentication",
"security",
"login",
"sign in",
"salt",
"rainbow",
"brute",
"stretching",
"PBKDF2"
],
"author": "Thomas Jensen <[email protected]> (http://src.agency)",
"license": "MIT",
"prettier": {
"semi": false,
"singleQuote": true,
"useTabs": true,
"bracketSpacing": false,
"trailingComma": "es5",
"tabWidth": 4,
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
}
}