-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "keccak",
"version": "3.0.4",
"description": "Keccak sponge function family",
"keywords": [
"sha3",
"sha-3",
"keccak",
"shake"
],
"bugs": {
"url": "https://github.com/cryptocoinjs/keccak/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cryptocoinjs/keccak.git"
},
"license": "MIT",
"contributors": [
"Kirill Fomichev <[email protected]> (https://github.com/fanatid)"
],
"main": "./index.js",
"browser": {
"./index.js": "./js.js"
},
"scripts": {
"install": "node-gyp-build || exit 0"
},
"dependencies": {
"node-addon-api": "^2.0.0",
"node-gyp-build": "^4.2.0",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"browserify": "^16.5.0",
"node-gyp": "^5.0.7",
"nyc": "^15.0.0",
"prebuildify": "^3.0.4",
"prebuildify-cross": "github:prebuild/prebuildify-cross#v4.0.0",
"proxyquire": "^2.1.3",
"standard": "^14.3.1",
"tap-dot": "^2.0.0",
"tape": "^4.12.0",
"yargs": "^15.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"gypfile": true
}