js-libp2p-crypto/package.json

67 lines
1.9 KiB
JSON
Raw Normal View History

2017-02-09 06:35:39 -05:00
{
"name": "libp2p-crypto-secp256k1",
2020-03-25 12:59:03 +01:00
"version": "0.4.3",
2017-02-09 06:35:39 -05:00
"description": "Support for secp256k1 keys in libp2p-crypto",
2018-05-01 14:41:12 +01:00
"leadMaintainer": "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
2017-02-09 06:35:39 -05:00
"main": "src/index.js",
"scripts": {
2018-12-17 11:54:05 +00:00
"lint": "aegir lint",
"build": "aegir build",
2019-04-18 18:30:06 +01:00
"test": "aegir test -t node -t browser",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
2018-12-17 11:54:05 +00:00
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage publish"
2017-02-09 06:35:39 -05:00
},
"keywords": [
"IPFS",
"libp2p",
"crypto",
"secp256k1"
],
"license": "MIT",
"dependencies": {
"buffer": "^5.5.0",
"is-typedarray": "^1.0.0",
"multibase": "^0.7.0",
"multihashing-async": "^0.8.1",
"secp256k1": "^4.0.0"
2017-02-09 06:35:39 -05:00
},
"devDependencies": {
"aegir": "^21.0.2",
2017-07-21 11:38:33 -07:00
"benchmark": "^2.1.4",
2019-01-08 16:43:36 +01:00
"chai": "^4.2.0",
2018-12-17 11:54:05 +00:00
"dirty-chai": "^2.0.1",
"libp2p-crypto": "~0.17.2",
"protons": "^1.1.0"
2017-02-09 06:35:39 -05:00
},
"engines": {
2018-05-01 14:41:12 +01:00
"node": ">=6.0.0",
2017-02-09 08:03:23 -08:00
"npm": ">=3.0.0"
2017-02-09 06:35:39 -05:00
},
"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": [
2017-02-09 08:05:13 -08:00
"David Dias <daviddias.p@gmail.com>",
2020-03-17 12:11:28 +01:00
"Jacob Heun <jacobheun@gmail.com>",
2017-02-09 06:35:39 -05:00
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
2019-01-08 16:44:54 +01:00
"Hugo Dias <hugomrdias@gmail.com>",
2020-03-17 12:11:28 +01:00
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
2019-02-20 13:29:17 +01:00
"Yusef Napora <yusef@napora.org>",
2020-03-17 12:11:28 +01:00
"Alan Shaw <alan.shaw@protocol.ai>",
"Alberto Elias <hi@albertoelias.me>",
"Alex Potsides <alex@achingbrain.net>",
"Arve Knudsen <arve.knudsen@gmail.com>",
"Vasco Santos <vasco.santos@ua.pt>"
2017-02-09 06:35:39 -05:00
]
2018-05-01 14:41:12 +01:00
}