forked from zone117x/node-multi-hashing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "multi-hashing",
"version": "1.0.2",
"main": "index.js",
"author": {
"name": "Matthew Little",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/zone117x/node-multi-hashing.git"
},
"scripts": {
"build": "node-gyp rebuild",
"test": "mocha --require babel-register --gc-global tests/test.vectors.js"
},
"dependencies": {
"bindings": "*",
"nan": "^2.15.0",
"node-gyp": "^9.3.0"
},
"keywords": [
"argon2",
"scrypt",
"scryptjane",
"script-n",
"x11",
"quark",
"keccak_hash",
"skein",
"bcrypt",
"keccak",
"blake",
"shavite",
"fugue",
"sha1",
"verthash"
],
"devDependencies": {
"babel-register": "^6.26.0",
"mocha": "^7.1.1"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
]
}
}