js-libp2p-secio/package.json
vms 1dbcfa88b6
sync with master (#1)
* chore: update deps (#113)

* chore: update contributors

* chore: release version v0.12.2

* fix: remove use of assert module (#114)

The polyfill is big, we can simulate it by throwing an Error and it doesn't work under React Native.

* chore: update contributors

* chore: release version v0.12.3

* chore(deps-dev): bump aegir from 20.6.1 to 21.0.2 (#117)

Bumps [aegir](https://github.com/ipfs/aegir) from 20.6.1 to 21.0.2.
- [Release notes](https://github.com/ipfs/aegir/releases)
- [Changelog](https://github.com/ipfs/aegir/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ipfs/aegir/compare/v20.6.1...v21.0.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: Jacob Heun <jacobheun@gmail.com>
Co-authored-by: Alex Potsides <alex@achingbrain.net>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-02-23 19:48:03 +03:00

81 lines
2.2 KiB
JSON

{
"name": "libp2p-secio",
"version": "0.12.3",
"description": "Secio implementation in JavaScript",
"leadMaintainer": "Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"release": "aegir release -t node browser",
"release-minor": "aegir release --type minor -t node browser",
"release-major": "aegir release --type major -t node browser",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage publish",
"benchmark": "node benchmarks/send.js"
},
"keywords": [
"IPFS",
"libp2p",
"crypto",
"rsa"
],
"license": "MIT",
"dependencies": {
"bl": "^4.0.0",
"debug": "^4.1.1",
"it-buffer": "^0.1.1",
"it-length-prefixed": "^3.0.0",
"it-pair": "^1.0.0",
"it-pb-rpc": "^0.1.4",
"it-pipe": "^1.1.0",
"libp2p-crypto": "^0.17.1",
"libp2p-interfaces": "^0.2.1",
"multiaddr": "^7.2.1",
"multihashing-async": "^0.8.0",
"peer-id": "^0.13.6",
"protons": "^1.1.0"
},
"devDependencies": {
"aegir": "^21.0.2",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"streaming-iterables": "^4.1.1"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ipfs/js-libp2p-secio.git"
},
"bugs": {
"url": "https://github.com/ipfs/js-libp2p-secio/issues"
},
"homepage": "https://github.com/ipfs/js-libp2p-secio",
"contributors": [
"Alex Potsides <alex@achingbrain.net>",
"David Dias <daviddias.p@gmail.com>",
"Dmitriy Ryajov <dryajov@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Hugo Dias <hugomrdias@gmail.com>",
"Jacob Heun <jacobheun@gmail.com>",
"Maciej Krüger <mkg20001@gmail.com>",
"Pedro Teixeira <i@pgte.me>",
"Richard Littauer <richard.littauer@gmail.com>",
"Vasco Santos <vasco.santos@ua.pt>",
"Vasco Santos <vasco.santos@moxy.studio>",
"Victor Bjelkholm <victorbjelkholm@gmail.com>",
"greenkeeperio-bot <support@greenkeeper.io>"
]
}