forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "ipfs-daemon",
"version": "0.9.0",
"description": "JavaScript implementation of the IPFS specification",
"keywords": [
"IPFS"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-daemon#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
"files": [
"src",
"dist",
"!dist/*.tsbuildinfo"
],
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"lint": "aegir ts -p check && aegir lint",
"test": "npm run test:node",
"test:node": "aegir test -t node -- --exit",
"coverage": "nyc --reporter=text --reporter=lcov npm run test:node",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i ipfs-core-types -i @mapbox/node-pre-gyp",
"build": "aegir build --no-bundle"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"debug": "^4.1.1",
"ipfs-core": "^0.10.0",
"ipfs-core-types": "^0.7.0",
"ipfs-grpc-server": "^0.5.0",
"ipfs-http-gateway": "^0.6.0",
"ipfs-http-server": "^0.7.0",
"ipfs-utils": "^8.1.4",
"just-safe-set": "^2.2.1",
"libp2p": "^0.32.0",
"libp2p-webrtc-star": "^0.23.0"
},
"devDependencies": {
"aegir": "^34.0.2",
"node-fetch": "npm:@achingbrain/node-fetch@^2.6.4",
"ws": "^7.3.1"
},
"optionalDependencies": {
"electron-webrtc": "^0.3.0",
"prom-client": "^12.0.0",
"prometheus-gc-stats": "^0.6.0",
"wrtc": "^0.4.6"
}
}