forked from shaneMangudi/bcrypt-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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": "bcrypt-nodejs",
"description": "A native JS bcrypt library for NodeJS.",
"main": "./bCrypt",
"author": "Shane Girish <shaneGirish@gmail.com> (https://github.com/shaneGirish)",
"version": "0.1.0",
"bin": {
"bcrypt-nodejs": "bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/shaneGirish/bcrypt-nodejs.git"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "make test"
},
"bugs": {
"url": "https://github.com/shaneGirish/bcrypt-nodejs/issues"
},
"contributors": [
"Alex Murray <> (https://github.com/alexmurray)",
"Nicolas Pelletier <> (https://github.com/NicolasPelletier)",
"Josh Rogers <> (https://github.com/geekymole)",
"Noah Isaacson <noah@nisaacson.com> (https://github.com/nisaacson)",
"Joshua Ball <joshua.g.s.ball@gmail.com> (https://github.com/joshball)"
],
"keywords": [
"bcrypt",
"javascript",
"js",
"hash",
"password",
"auth",
"authentication",
"encryption",
"crypt",
"crypto"
],
"devDependencies": {
"mocha": "~1.8.2",
"should": "~1.2.2",
"eyespect": "~0.1.8",
"async": "~0.2.6"
}
}