forked from vrza/node-blake2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 874 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 874 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
{
"name": "blake2",
"version": "1.8.0",
"description": "All four BLAKE2 variants (blake2b, blake2bp, blake2s, blake2sp) for node 4+ with stream support",
"homepage": "https://github.com/kregfile/node-blake2",
"issues": "https://github.com/kregfile/node-blake2/issues",
"keywords": [
"crypto",
"hash",
"hashing",
"blake2",
"blake2b",
"blake2bp",
"blake2s",
"blake2sp"
],
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests/*.js && ./node_modules/.bin/eslint .",
"test-strong-mode": "node --strong-mode ./node_modules/.bin/_mocha tests/*.js"
},
"dependencies": {
"nan": "^2.0.0"
},
"devDependencies": {
"eslint": "^7.31.0",
"mocha": "^9.0.2"
},
"author": "Ivan Kozik",
"license": "ISC",
"repository": "ludios/node-blake2",
"engines": {
"node": ">= 12.0.0"
}
}