-
Notifications
You must be signed in to change notification settings - Fork 519
/
package.json
61 lines (61 loc) · 2.13 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "bcrypt",
"description": "A bcrypt library for NodeJS.",
"keywords": [
"bcrypt",
"password",
"auth",
"authentication",
"encryption",
"crypt",
"crypto"
],
"main": "./bcrypt",
"version": "5.1.1",
"author": "Nick Campbell (https://github.com/ncb000gt)",
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kelektiv/node.bcrypt.js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kelektiv/node.bcrypt.js/issues"
},
"scripts": {
"test": "jest",
"install": "node-gyp-build",
"build": "prebuildify --napi --tag-libc --strip"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"node-gyp-build": "^4.2.3"
},
"devDependencies": {
"jest": "^29.6.2"
},
"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)",
"Nate Rajlich <[email protected]> (https://github.com/tootallnate)",
"Sean McArthur <[email protected]> (https://github.com/seanmonstar)",
"Fanie Oosthuysen <[email protected]> (https://github.com/weareu)",
"Amitosh Swain Mahapatra <[email protected]> (https://github.com/Agathver)",
"Corbin Crutchley <[email protected]> (https://github.com/crutchcorn)",
"Nicola Del Gobbo <[email protected]> (https://github.com/NickNaso)"
],
"binary": {
"module_name": "bcrypt_lib"
}
}