This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
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
e7524e1
commit e451201
Showing
4 changed files
with
29 additions
and
21 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
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
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
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 |
---|---|---|
|
@@ -2,15 +2,13 @@ | |
"name": "libp2p-tcp", | ||
"version": "0.8.1", | ||
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces", | ||
"main": "lib/index.js", | ||
"jsnext:main": "src/index.js", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"lint": "aegir-lint", | ||
"build": "aegir-build --env node", | ||
"test": "aegir-test --env node", | ||
"release": "aegir-release --env node", | ||
"release-minor": "aegir-release --type minor --env node", | ||
"release-major": "aegir-release --type major --env node", | ||
"release": "aegir-release --env no-build", | ||
"release-minor": "aegir-release --type minor --env no-build", | ||
"release-major": "aegir-release --type major --env no-build", | ||
"coverage": "aegir-coverage", | ||
"coverage-publish": "aegir-coverage publish" | ||
}, | ||
|
@@ -20,19 +18,22 @@ | |
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/diasdavid/js-libp2p-tcp.git" | ||
"url": "https://github.com/libp2p/js-libp2p-tcp.git" | ||
}, | ||
"keywords": [ | ||
"IPFS" | ||
], | ||
"author": "David Dias <[email protected]>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/diasdavid/js-libp2p-tcp/issues" | ||
"url": "https://github.com/libp2p/js-libp2p-tcp/issues" | ||
}, | ||
"homepage": "https://github.com/libp2p/js-libp2p-tcp", | ||
"engines": { | ||
"node": ">=4.0.0" | ||
}, | ||
"homepage": "https://github.com/diasdavid/js-libp2p-tcp", | ||
"devDependencies": { | ||
"aegir": "^8.0.1", | ||
"aegir": "^9.0.1", | ||
"chai": "^3.5.0", | ||
"interface-transport": "^0.3.3", | ||
"lodash.isfunction": "^3.0.8", | ||
|