forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug in aegir ipfs/aegir#587 causes race conditions
- Loading branch information
Showing
1 changed file
with
13 additions
and
6 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 |
---|---|---|
|
@@ -2,12 +2,19 @@ | |
"name": "ipfs-message-port-server", | ||
"version": "0.0.1", | ||
"description": "IPFS server library for exposing IPFS node over message port", | ||
"keywords": ["ipfs", "message-port", "worker"], | ||
"keywords": [ | ||
"ipfs", | ||
"message-port", | ||
"worker" | ||
], | ||
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-message-port-server#readme", | ||
"bugs": "https://github.com/ipfs/js-ipfs/issues", | ||
"license": "(Apache-2.0 OR MIT)", | ||
"leadMaintainer": "Alex Potsides <[email protected]>", | ||
"files": ["src", "dist"], | ||
"files": [ | ||
"src", | ||
"dist" | ||
], | ||
"main": "src/index.js", | ||
"browser": {}, | ||
"repository": { | ||
|
@@ -18,8 +25,6 @@ | |
"test": "aegir test", | ||
"test:browser": "aegir test -t browser", | ||
"test:webworker": "aegir test -t webworker", | ||
"test:electron-main": "aegir test -t electron-main", | ||
"test:electron-renderer": "aegir test -t electron-renderer", | ||
"test:chrome": "aegir test -t browser -t webworker -- --browsers ChromeHeadless", | ||
"test:firefox": "aegir test -t browser -t webworker -- --browsers FirefoxHeadless", | ||
"lint": "aegir lint", | ||
|
@@ -42,5 +47,7 @@ | |
"node": ">=10.3.0", | ||
"npm": ">=3.0.0" | ||
}, | ||
"contributors": ["Irakli Gozalishvili <[email protected]>"] | ||
} | ||
"contributors": [ | ||
"Irakli Gozalishvili <[email protected]>" | ||
] | ||
} |