-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 843 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
34
35
36
37
38
39
{
"name": "bcrypt-napi",
"description": "A bcrypt library for NodeJS. Porting to N-API",
"keywords": [
"bcrypt",
"password",
"auth",
"authentication",
"encryption",
"crypt",
"crypto"
],
"main": "./bcrypt",
"version": "1.0.3-napi",
"author": "Nicola Del Gobbo (https://github.com/NickNaso)",
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NickNaso/bcrypt-napi.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NickNaso/bcrypt-napi/issues"
},
"scripts": {
"test": "npm install --build-from-source && nodeunit test",
"install": "node-gyp rebuild"
},
"dependencies": {
"bindings": "1.3.0",
"node-addon-api": "1.1.0"
},
"gypfile": true,
"devDependencies": {
"nodeunit": "~0.9.1"
}
}