-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
36 lines (36 loc) · 896 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
{
"name": "password-hash-and-salt",
"version": "0.1.4",
"description": "Simple, safe and straight-forward password hashing / salting for node.js",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/florianheinemann/password-hash-and-salt.git"
},
"keywords": [
"crypto",
"node.js",
"node",
"hash",
"salt",
"password",
"pbkdf2"
],
"dependencies": {
},
"devDependencies": {
"grunt": "~0.4.4",
"mocha": "~1.18.2",
"chai": "~1.9.1",
"grunt-mocha-test": "~0.10.2"
},
"author": "Florian Heinemann <[email protected]> (http://twitter.com/florian__h)",
"license": "MIT",
"bugs": {
"url": "https://github.com/florianheinemann/password-hash-and-salt/issues"
},
"homepage": "https://github.com/florianheinemann/password-hash-and-salt"
}