forked from kelektiv/node.bcrypt.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 998 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
{
"name": "bcrypt",
"description": "A bcrypt library for NodeJS.",
"main": "./bcrypt",
"version": "0.2.3",
"author": "Nick Campbell (http://github.com/ncb000gt)",
"engines": { "node": ">= 0.1.100" },
"repository": {
"type": "git",
"url": "http://github.com/ncb000gt/node.bcrypt.js.git"
},
"licenses": [
{
"type": "MIT"
}
],
"bugs": {
"web" : "http://github.com/ncb000gt/node.bcrypt.js/issues"
},
"scripts": {
"install": "node-waf configure build",
"test": "node-waf configure build; nodeunit test/"
},
"dependencies": {
"nodeunit": ">=0.5.1"
},
"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)",
"Alfred Westerveld <[email protected]> (https://github.com/alfredwesterveld)"
]
}