-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.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
{
"name": "blake2",
"version": "5.0.0",
"description": "All four BLAKE2 variants (blake2b, blake2bp, blake2s, blake2sp) for Node.js, with stream support",
"keywords": [
"crypto",
"hash",
"hashing",
"blake2",
"blake2b",
"blake2bp",
"blake2s",
"blake2sp"
],
"homepage": "https://github.com/vrza/node-blake2",
"bugs": "https://github.com/vrza/node-blake2/issues",
"repository": {
"type": "git",
"url": "https://github.com/vrza/node-blake2.git"
},
"main": "index.js",
"scripts": {
"test": "node node_modules/eslint/bin/eslint . && node node_modules/mocha/bin/mocha tests"
},
"dependencies": {
"nan": "^2.22.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"mocha": "^10.7.3"
},
"contributors": [
"Vladimir Vrzić <[email protected]> (https://github.com/vrza)",
"Ivan Kozik <[email protected]> (https://github.com/ivan)",
"James Bowes <[email protected]> (https://github.com/jbowes)",
"Kannan Goundan <[email protected]> (https://github.com/cakoose)",
"coranos (https://github.com/coranos)"
],
"license": "ISC",
"engines": {
"node": ">= 12.0.0"
}
}