forked from libp2p/js-libp2p-crypto-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
57
58
59
60
{
"name": "libp2p-crypto-secp256k1",
"version": "0.2.2",
"description": "Support for secp256k1 keys in libp2p-crypto",
"leadMaintainer": "Friedel Ziegelmayer <[email protected]>",
"main": "src/index.js",
"browser": {
"secp256k1": "secp256k1/js"
},
"scripts": {
"lint": "aegir-lint",
"build": "aegir-build",
"test": "npm run test:node && npm run test:browser",
"test:node": "aegir-test --env node",
"test:browser": "aegir-test --env browser",
"release": "aegir-release",
"release-minor": "aegir-release --type minor",
"release-major": "aegir-release --type major",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish"
},
"keywords": [
"IPFS",
"libp2p",
"crypto",
"secp256k1"
],
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"multihashing-async": "~0.4.8",
"nodeify": "^1.0.1",
"safe-buffer": "^5.1.2",
"secp256k1": "^3.5.0"
},
"devDependencies": {
"aegir": "^13.1.0",
"benchmark": "^2.1.4",
"libp2p-crypto": "~0.13.0",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-libp2p-crypto-secp256k1.git"
},
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-crypto-secp256k1/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-crypto-secp256k1",
"contributors": [
"David Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Yusef Napora <[email protected]>"
]
}