package.json
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": "6.0.0", 15 "author": "Nick Campbell (https://github.com/ncb000gt)", 16 "engines": { 17 "node": ">= 18" 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": "jest", 29 "install": "node-gyp-build", 30 "build": "prebuildify --napi --tag-libc --strip" 31 }, 32 "dependencies": { 33 "node-addon-api": "^8.3.0", 34 "node-gyp-build": "^4.8.4" 35 }, 36 "devDependencies": { 37 "jest": "^29.7.0", 38 "prebuildify": "^6.0.1" 39 }, 40 "contributors": [ 41 "Antonio Salazar Cardozo <savedfastcool@gmail.com> (https://github.com/Shadowfiend)", 42 "Van Nguyen <the.gol.effect@gmail.com> (https://github.com/thegoleffect)", 43 "David Trejo <david@dtrejo.com> (https://github.com/dtrejo)", 44 "Ben Glow <glen.low@pixelglow.com> (https://github.com/pixelglow)", 45 "NewITFarmer.com <> (https://github.com/newitfarmer)", 46 "Alfred Westerveld <alfredwesterveld@gmail.com> (https://github.com/alfredwesterveld)", 47 "Vincent Côté-Roy <vincentcr@gmail.com> (https://github.com/vincentcr)", 48 "Lloyd Hilaiel <lloyd@hilaiel.com> (https://github.com/lloyd)", 49 "Roman Shtylman <shtylman@gmail.com> (https://github.com/shtylman)", 50 "Vadim Graboys <dimva13@gmail.com> (https://github.com/vadimg)", 51 "Ben Noorduis <> (https://github.com/bnoordhuis)", 52 "Nate Rajlich <nathan@tootallnate.net> (https://github.com/tootallnate)", 53 "Sean McArthur <sean.monstar@gmail.com> (https://github.com/seanmonstar)", 54 "Fanie Oosthuysen <fanie.oosthuysen@gmail.com> (https://github.com/weareu)", 55 "Amitosh Swain Mahapatra <amitosh.swain@gmail.com> (https://github.com/Agathver)", 56 "Corbin Crutchley <crutchcorn@gmail.com> (https://github.com/crutchcorn)", 57 "Nicola Del Gobbo <nicoladelgobbo@gmail.com> (https://github.com/NickNaso)" 58 ], 59 "binary": { 60 "module_name": "bcrypt_lib" 61 } 62 }