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
83 lines (83 loc) · 2.34 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
81
82
83
{
"name": "ipfs-http-server",
"version": "0.7.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 <[email protected]>",
"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",
"coverage": "nyc --reporter=text --reporter=lcov npm run test:node",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i ipfs-http-client -i rimraf -i abort-controller -i ipfs-core-types",
"build": "aegir build --no-bundle"
},
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/content": "^5.0.2",
"@hapi/hapi": "^20.0.0",
"@ipld/dag-pb": "^2.1.3",
"abort-controller": "^3.0.0",
"debug": "^4.1.1",
"dlv": "^1.1.3",
"err-code": "^3.0.1",
"hapi-pino": "^8.3.0",
"ipfs-core-types": "^0.7.0",
"ipfs-core-utils": "^0.10.1",
"ipfs-http-gateway": "^0.6.0",
"ipfs-unixfs": "^6.0.0",
"it-all": "^1.0.4",
"it-drain": "^1.0.3",
"it-filter": "^1.0.2",
"it-first": "^1.0.4",
"it-last": "^1.0.4",
"it-map": "^1.0.4",
"it-merge": "^1.0.2",
"it-multipart": "^2.0.0",
"it-pipe": "^1.1.0",
"it-pushable": "^1.4.2",
"it-reduce": "^1.0.5",
"joi": "^17.2.1",
"just-safe-set": "^2.2.1",
"multiaddr": "^10.0.0",
"multiformats": "^9.4.1",
"native-abort-controller": "^1.0.3",
"parse-duration": "^1.0.0",
"stream-to-it": "^0.2.2",
"uint8arrays": "^2.1.6",
"uri-to-multiaddr": "^6.0.0"
},
"devDependencies": {
"@types/hapi-pino": "^8.0.1",
"@types/hapi__hapi": "^20.0.5",
"aegir": "^34.0.2",
"form-data": "^4.0.0",
"ipfs-http-client": "^52.0.1",
"iso-random-stream": "^2.0.0",
"it-to-buffer": "^2.0.0",
"qs": "^6.9.4",
"rimraf": "^3.0.2",
"sinon": "^11.1.1",
"stream-to-promise": "^3.0.0"
},
"optionalDependencies": {
"prom-client": "^12.0.0"
}
}