-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 729 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 729 Bytes
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
{
"name": "bcrypt-small",
"version": "4.0.0",
"description": "Threaded bcrypt bindings with a small API.",
"keywords": [
"bcrypt",
"password"
],
"homepage": "https://github.com/charmander/bcrypt-small",
"bugs": {
"url": "https://github.com/charmander/bcrypt-small/issues"
},
"license": "ISC",
"exports": {
".": "./index.mjs"
},
"files": [
"index.mjs",
"binding.gyp",
"src/bcrypt-addon.c",
"src/bcrypt.c",
"src/bcrypt.h",
"src/blf.h",
"src/blowfish.c",
"src/explicit_bzero.c",
"src/openbsd-string.h"
],
"repository": {
"type": "git",
"url": "https://github.com/charmander/bcrypt-small"
},
"scripts": {
"test": "node test.mjs"
},
"engines": {
"node": ">=18.0.0 || ^16.17.0"
}
}