-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0f7bdc
commit 57ab340
Showing
1 changed file
with
66 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,68 @@ | ||
{ | ||
"name": "libp2p-pubsub", | ||
"version": "0.0.0", | ||
"description": "Pubsub base protocol for libp2p pubsub routers", | ||
"leadMaintainer": "Vasco Santos <santos.vasco10@gmail.com>", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"lint": "aegir lint", | ||
"test": "aegir test -t node", | ||
"test:node": "aegir test -t node", | ||
"build": "aegir build", | ||
"docs": "aegir-docs", | ||
"release": "aegir release --target node --docs", | ||
"release-minor": "aegir release --type minor --docs", | ||
"release-major": "aegir release --type major --docs", | ||
"coverage": "aegir coverage", | ||
"coverage-publish": "aegir coverage --provider coveralls" | ||
}, | ||
"files": [ | ||
"src", | ||
"dist" | ||
], | ||
"pre-push": [ | ||
"lint" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/libp2p/js-libp2p-pubsub.git" | ||
}, | ||
"keywords": [ | ||
"IPFS", | ||
"libp2p", | ||
"pubsub", | ||
"gossip", | ||
"flood", | ||
"flooding" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/libp2p/js-libp2p-pubsub/issues" | ||
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-pubsub#readme", | ||
"devDependencies": { | ||
"aegir": "^18.0.3", | ||
"benchmark": "^2.1.4", | ||
"chai": "^4.2.0", | ||
"chai-spies": "^1.0.0", | ||
"dirty-chai": "^2.0.1", | ||
"libp2p": "~0.24.4", | ||
"libp2p-secio": "~0.11.0", | ||
"libp2p-spdy": "~0.13.1", | ||
"libp2p-tcp": "~0.13.0", | ||
"lodash": "^4.17.11", | ||
"peer-id": "~0.12.2", | ||
"peer-info": "~0.15.1" | ||
}, | ||
"dependencies": { | ||
"async": "^2.6.1", | ||
"debug": "^4.1.1", | ||
"err-code": "^1.1.2", | ||
"length-prefixed-stream": "^1.6.0", | ||
"protons": "^1.0.1", | ||
"pull-pushable": "^2.2.0" | ||
}, | ||
"contributors": [] | ||
"name": "libp2p-pubsub", | ||
"version": "0.0.1", | ||
"description": "Pubsub base protocol for libp2p pubsub routers", | ||
"leadMaintainer": "Vasco Santos <santos.vasco10@gmail.com>", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"lint": "aegir lint", | ||
"test": "aegir test -t node", | ||
"test:node": "aegir test -t node", | ||
"build": "aegir build", | ||
"docs": "aegir-docs", | ||
"release": "aegir release --target node --docs", | ||
"release-minor": "aegir release --type minor --docs", | ||
"release-major": "aegir release --type major --docs", | ||
"coverage": "aegir coverage", | ||
"coverage-publish": "aegir coverage --provider coveralls" | ||
}, | ||
"files": [ | ||
"src", | ||
"dist" | ||
], | ||
"pre-push": [ | ||
"lint" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/libp2p/js-libp2p-pubsub.git" | ||
}, | ||
"keywords": [ | ||
"IPFS", | ||
"libp2p", | ||
"pubsub", | ||
"gossip", | ||
"flood", | ||
"flooding" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/libp2p/js-libp2p-pubsub/issues" | ||
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-pubsub#readme", | ||
"devDependencies": { | ||
"aegir": "^18.0.3", | ||
"benchmark": "^2.1.4", | ||
"chai": "^4.2.0", | ||
"chai-spies": "^1.0.0", | ||
"dirty-chai": "^2.0.1", | ||
"libp2p": "~0.24.4", | ||
"libp2p-secio": "~0.11.0", | ||
"libp2p-spdy": "~0.13.1", | ||
"libp2p-tcp": "~0.13.0", | ||
"lodash": "^4.17.11", | ||
"peer-id": "~0.12.2", | ||
"peer-info": "~0.15.1" | ||
}, | ||
"dependencies": { | ||
"async": "^2.6.1", | ||
"debug": "^4.1.1", | ||
"err-code": "^1.1.2", | ||
"length-prefixed-stream": "^1.6.0", | ||
"protons": "^1.0.1", | ||
"pull-pushable": "^2.2.0" | ||
}, | ||
"contributors": [ | ||
"Vasco Santos <vasco.santos@moxy.studio>" | ||
] | ||
} |