This repository was archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ipfs-http-server",
"version": "0.3.1",
"description": "JavaScript implementation of the IPFS specification",
"keywords": [
"IPFS"
],
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-http-server#readme",
"bugs": "https://github.com/ipfs/js-ipfs/issues",
"license": "(Apache-2.0 OR MIT)",
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
"files": [
"src",
"dist"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"lint": "aegir lint",
"prepare": "aegir build --no-bundle",
"test": "npm run test:node",
"test:node": "aegir test -t node",
"coverage": "nyc --reporter=text --reporter=lcov npm run test:node",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i ipfs-http-client -i rimraf"
},
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/content": "^5.0.2",
"@hapi/hapi": "^20.0.0",
"cids": "^1.1.5",
"debug": "^4.1.1",
"dlv": "^1.1.3",
"err-code": "^2.0.3",
"hapi-pino": "^8.3.0",
"ipfs-core-utils": "^0.7.0",
"ipfs-http-gateway": "^0.3.0",
"ipfs-unixfs": "^2.0.3",
"ipld-dag-pb": "^0.20.0",
"it-all": "^1.0.4",
"it-drain": "^1.0.3",
"it-first": "^1.0.4",
"it-last": "^1.0.4",
"it-map": "^1.0.4",
"it-multipart": "^1.0.5",
"it-pipe": "^1.1.0",
"it-tar": "^1.2.2",
"it-to-stream": "^0.1.2",
"iterable-ndjson": "^1.1.0",
"joi": "^17.2.1",
"just-safe-set": "^2.1.0",
"multiaddr": "^8.0.0",
"multibase": "^3.0.0",
"multicodec": "^2.0.1",
"multihashing-async": "^2.0.1",
"native-abort-controller": "~1.0.1",
"parse-duration": "^0.4.4",
"stream-to-it": "^0.2.2",
"streaming-iterables": "^5.0.2",
"uint8arrays": "^2.0.5",
"uri-to-multiaddr": "^4.0.0"
},
"devDependencies": {
"aegir": "^30.3.0",
"form-data": "^3.0.0",
"ipfs-http-client": "^49.0.1",
"iso-random-stream": "^1.1.1",
"it-to-buffer": "^1.0.2",
"qs": "^6.9.4",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"stream-to-promise": "^3.0.0"
},
"optionalDependencies": {
"prom-client": "^12.0.0"
}
}