forked from cryptocoinjs/secp256k1-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "secp256k1",
"version": "1.1.5",
"description": "This module provides native bindings to ecdsa secp256k1 functions",
"main": "index.js",
"scripts": {
"test": "standard ./index.js && ./node_modules/mocha/bin/mocha --reporter spec ./test/",
"install": "node-gyp rebuild",
"rebuild": "node-gyp rebuild"
},
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.0.9"
},
"devDependencies": {
"bigi": "^1.3.0",
"coinkey": "^1.3.0",
"ecdsa": "^0.6.0",
"mocha": "^2.2.5",
"node-gyp": "^3.0.3",
"secure-random": "^1.1.1",
"standard": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/wanderer/secp256k1-node.git"
},
"keywords": [
"secp256k1",
"ecdsa",
"ec"
],
"author": {
"name": "martin becze",
"email": "[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)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wanderer/secp256k1-node/issues"
},
"gypfile": true
}