forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ipfs-message-port-protocol",
"version": "0.2.0",
"description": "IPFS client/server protocol over message port",
"keywords": [
"ipfs"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-message-port-protocol#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <[email protected]>",
"files": [
"src",
"dist"
],
"browser": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"test:chrome": "aegir test -t browser -t webworker -- --browsers ChromeHeadless",
"test:firefox": "aegir test -t browser -t webworker -- --browsers FirefoxHeadless",
"lint": "aegir lint",
"build": "aegir build",
"coverage": "npx nyc -r html npm run test:node -- --bail",
"clean": "rm -rf ./dist",
"dep-check": "aegir dep-check"
},
"dependencies": {
"cids": "^1.0.0",
"ipld-block": "^0.10.1"
},
"devDependencies": {
"aegir": "^26.0.0",
"interface-ipfs-core": "^0.140.0",
"uint8arrays": "^1.1.0"
},
"engines": {
"node": ">=10.3.0",
"npm": ">=3.0.0"
},
"contributors": [
"Irakli Gozalishvili <[email protected]>"
]
}