-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (41 loc) · 958 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
{
"name": "mosquitto-pbkdf2",
"version": "0.3.0",
"description": "Small module to generate/verify PBKDF2 as needed by mosquitto-auth-plug",
"license": "MIT",
"main": "mosquitto_pbkdf2.js",
"scripts": {
"test": "node test.js",
"pwd_compare": "node np.js"
},
"author": "Manuel Domínguez Dorado",
"email": "[email protected]",
"keywords": [
"pbkdf2",
"mosquitto",
"password",
"hash",
"mosquitto-auth-plug",
"authentication"
],
"contributors": [
{
"name": "Daniel Jimenez Jerez",
"email": "[email protected]",
"url": "https://github.com/djimenezjerez"
},
{
"name": "Stefan Seide",
"email": "[email protected]",
"url": "https://github.com/sseide"
}
],
"repository": "https://github.com/manolodd/mosquitto-pbkdf2",
"dependencies": {
"pbkdf2": "3.0.14",
"promptly": "3.0.3"
},
"engines": {
"node": ">= 0.10.0"
}
}