forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
51
52
53
54
{
"name": "ipfs-message-port-client",
"version": "0.2.2",
"description": "IPFS client library for accessing IPFS node over message port",
"keywords": [
"ipfs",
"message-port",
"worker"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-message-port-client#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <[email protected]>",
"files": [
"src",
"dist"
],
"main": "src/index.js",
"browser": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"test": "echo 'Only interface tests live here'",
"test:interface:message-port-client": "npm run build:test-worker && aegir test -t browser -f ./test/interface-message-port-client.js",
"lint": "aegir lint",
"build:test-worker": "aegir build -- --config ./test/util/webpack.config.js",
"build": "aegir build",
"coverage": "npx nyc -r html npm run test:node -- --bail",
"clean": "rm -rf ./dist",
"dep-check": "aegir dep-check"
},
"dependencies": {
"browser-readablestream-to-it": "0.0.2",
"cids": "^1.0.0"
},
"devDependencies": {
"aegir": "^27.0.0",
"cross-env": "^7.0.0",
"interface-ipfs-core": "^0.140.0",
"ipfs": "^0.50.2",
"ipfs-message-port-protocol": "^0.2.0",
"ipfs-message-port-server": "^0.2.2",
"ipld-dag-pb": "^0.20.0"
},
"engines": {
"node": ">=10.3.0",
"npm": ">=3.0.0"
},
"contributors": [
"Irakli Gozalishvili <[email protected]>"
]
}