forked from cryptocoinjs/secp256k1-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "secp256k1",
"version": "4.0.1",
"description": "This module provides native bindings to ecdsa secp256k1 functions",
"keywords": [
"ec",
"ecdh",
"ecdsa",
"secp256k1"
],
"bugs": {
"url": "https://github.com/cryptocoinjs/secp256k1-node/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cryptocoinjs/secp256k1-node.git"
},
"license": "MIT",
"author": "Martin Becze <[email protected]>",
"contributors": [
"Aaron Davis (https://github.com/kumavis)",
"Ian Matyssik (https://github.com/phpb-com)",
"Kagami Hiiragi <[email protected]> (http://kagami.genshiken.org/)",
"ethers (https://github.com/ethers)",
"Kirill Fomichev <[email protected]> (https://github.com/fanatid)"
],
"main": "./index.js",
"browser": {
"./index.js": "./elliptic.js"
},
"scripts": {
"install": "node-gyp-build || exit 0"
},
"dependencies": {
"elliptic": "^6.5.2",
"node-addon-api": "^2.0.0",
"node-gyp-build": "^4.2.0"
},
"devDependencies": {
"node-gyp": "^5.0.7",
"nyc": "^15.0.0",
"prebuildify": "^3.0.4",
"standard": "^14.3.1",
"tap-dot": "^2.0.0",
"tape": "^4.10.1",
"xorshift.js": "^1.0.3",
"yargs": "^15.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"gypfile": true
}