1 | {
|
2 | "name": "bcrypt",
|
3 | "description": "A bcrypt library for NodeJS.",
|
4 | "keywords": [
|
5 | "bcrypt",
|
6 | "password",
|
7 | "auth",
|
8 | "authentication",
|
9 | "encryption",
|
10 | "crypt",
|
11 | "crypto"
|
12 | ],
|
13 | "main": "./bcrypt",
|
14 | "version": "5.1.1",
|
15 | "author": "Nick Campbell (https://github.com/ncb000gt)",
|
16 | "engines": {
|
17 | "node": ">= 10.0.0"
|
18 | },
|
19 | "repository": {
|
20 | "type": "git",
|
21 | "url": "https://github.com/kelektiv/node.bcrypt.js.git"
|
22 | },
|
23 | "license": "MIT",
|
24 | "bugs": {
|
25 | "url": "https://github.com/kelektiv/node.bcrypt.js/issues"
|
26 | },
|
27 | "scripts": {
|
28 | "test": "npm ci --build-from-source && jest",
|
29 | "install": "node-pre-gyp install --fallback-to-build"
|
30 | },
|
31 | "dependencies": {
|
32 | "@mapbox/node-pre-gyp": "^1.0.11",
|
33 | "node-addon-api": "^5.0.0"
|
34 | },
|
35 | "devDependencies": {
|
36 | "jest": "^29.6.2"
|
37 | },
|
38 | "contributors": [
|
39 | "Antonio Salazar Cardozo <savedfastcool@gmail.com> (https://github.com/Shadowfiend)",
|
40 | "Van Nguyen <the.gol.effect@gmail.com> (https://github.com/thegoleffect)",
|
41 | "David Trejo <david@dtrejo.com> (https://github.com/dtrejo)",
|
42 | "Ben Glow <glen.low@pixelglow.com> (https://github.com/pixelglow)",
|
43 | "NewITFarmer.com <> (https://github.com/newitfarmer)",
|
44 | "Alfred Westerveld <alfredwesterveld@gmail.com> (https://github.com/alfredwesterveld)",
|
45 | "Vincent Côté-Roy <vincentcr@gmail.com> (https://github.com/vincentcr)",
|
46 | "Lloyd Hilaiel <lloyd@hilaiel.com> (https://github.com/lloyd)",
|
47 | "Roman Shtylman <shtylman@gmail.com> (https://github.com/shtylman)",
|
48 | "Vadim Graboys <dimva13@gmail.com> (https://github.com/vadimg)",
|
49 | "Ben Noorduis <> (https://github.com/bnoordhuis)",
|
50 | "Nate Rajlich <nathan@tootallnate.net> (https://github.com/tootallnate)",
|
51 | "Sean McArthur <sean.monstar@gmail.com> (https://github.com/seanmonstar)",
|
52 | "Fanie Oosthuysen <fanie.oosthuysen@gmail.com> (https://github.com/weareu)",
|
53 | "Amitosh Swain Mahapatra <amitosh.swain@gmail.com> (https://github.com/Agathver)",
|
54 | "Corbin Crutchley <crutchcorn@gmail.com> (https://github.com/crutchcorn)",
|
55 | "Nicola Del Gobbo <nicoladelgobbo@gmail.com> (https://github.com/NickNaso)"
|
56 | ],
|
57 | "binary": {
|
58 | "module_name": "bcrypt_lib",
|
59 | "module_path": "./lib/binding/napi-v{napi_build_version}",
|
60 | "package_name": "{module_name}-v{version}-napi-v{napi_build_version}-{platform}-{arch}-{libc}.tar.gz",
|
61 | "host": "https://github.com",
|
62 | "remote_path": "kelektiv/node.bcrypt.js/releases/download/v{version}",
|
63 | "napi_versions": [
|
64 | 3
|
65 | ]
|
66 | }
|
67 | }
|