-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "painless-pbkdf2",
"version": "0.1.2",
"description": "A simple PBKDF2 wrapper with great defaults and a sensible interface",
"contributors": [
{
"name": "Gilles De Mey",
"email": "[email protected]"
},
{
"name": "Michiel De Mey",
"email": "[email protected]"
}
],
"homepage": "https://github.com/astromo/pbkdf2",
"main": "index.js",
"scripts": {
"test": "standard && tape tests/*",
"coveralls": "istanbul cover tests/*.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"password",
"hashing",
"crypto",
"pbkdf2"
],
"repository": {
"type": "git",
"url": "https://github.com/astromo/pbkdf2"
},
"bugs": {
"url": "https://github.com/astromo/pbkdf2/issues"
},
"author": "Gilles De Mey <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash.defaults": "^3.1.2"
},
"devDependencies": {
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"standard": "^5.4.1",
"tape": "^4.2.2"
},
"engines" : {
"node" : ">=0.12.0"
}
}