forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
55
56
57
58
59
60
{
"name": "ipfs-grpc-client",
"version": "0.3.3",
"description": "A client library for the IPFS gRPC API",
"keywords": [
"ipfs"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-grpc-client#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <[email protected]>",
"files": [
"src",
"dist",
"!dist/*.tsbuildinfo"
],
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"browser": {
"./src/grpc/transport.js": "./src/grpc/transport.browser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"build": "aegir build",
"test": "aegir test",
"lint": "aegir lint",
"coverage": "npx nyc -r html npm run test:node -- --bail",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i aegir -i rimraf -i ipfs-grpc-protocol -i ipfs-core-types"
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.14.0",
"change-case": "^4.1.1",
"cids": "^1.1.6",
"debug": "^4.1.1",
"err-code": "^3.0.1",
"ipfs-core-types": "^0.5.2",
"ipfs-core-utils": "^0.16.0",
"ipfs-grpc-protocol": "^0.3.0",
"ipfs-unixfs": "^7.0.0",
"it-first": "^1.0.4",
"it-pushable": "^1.4.0",
"multiaddr": "^9.0.1",
"protobufjs": "^7.2.4",
"wherearewe": "1.0.0",
"ws": "^7.3.1"
},
"devDependencies": {
"aegir": "^33.0.0",
"it-all": "^1.0.4",
"rimraf": "^3.0.2",
"sinon": "^10.0.1"
},
"eslintConfig": {
"extends": "ipfs"
}
}