forked from kelektiv/node.bcrypt.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.49 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
{
"name": "bcrypt",
"description": "A bcrypt library for NodeJS.",
"keywords": ["bcrypt","password","auth","authentication","encryption","crypt","crypto"],
"main": "./bcrypt",
"version": "0.5.0",
"author": "Nick Campbell (http://github.com/ncb000gt)",
"engines": { "node": ">= 0.6.0" },
"repository": {
"type": "git",
"url": "http://github.com/ncb000gt/node.bcrypt.js.git"
},
"licenses": [
{
"type": "MIT"
}
],
"bugs": {
"url" : "http://github.com/ncb000gt/node.bcrypt.js/issues"
},
"scripts": {
"install": "make build",
"test": "make test"
},
"devDependencies": {
"nodeunit": ">=0.6.4"
},
"contributors": [
"Antonio Salazar Cardozo <[email protected]> (https://github.com/Shadowfiend)",
"Van Nguyen <[email protected]> (https://github.com/thegoleffect)",
"David Trejo <[email protected]> (https://github.com/dtrejo)",
"Ben Glow <[email protected]> (https://github.com/pixelglow)",
"NewITFarmer.com <> (https://github.com/newitfarmer)",
"Alfred Westerveld <[email protected]> (https://github.com/alfredwesterveld)",
"Vincent Côté-Roy <[email protected]> (https://github.com/vincentcr)",
"Lloyd Hilaiel <[email protected]> (https://github.com/lloyd)",
"Roman Shtylman <[email protected]> (https://github.com/shtylman)",
"Vadim Graboys <[email protected]> (https://github.com/vadimg)",
"Ben Noorduis <> (https://github.com/bnoordhuis)"
]
}