forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ipfs-http-server",
"version": "0.11.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)",
"type": "module",
"main": "src/index.js",
"types": "types/src/index.d.ts",
"files": [
"*",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"import": "./src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"publishConfig": {
"directory": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"scripts": {
"lint": "aegir ts -p check && aegir lint",
"test": "aegir test -t node",
"test:node": "aegir test -t node --cov",
"clean": "rimraf ./dist",
"dep-check": "aegir dep-check -i ipfs-http-client -i rimraf -i ipfs-core-types -i npm-run-all",
"build": "run-s build:*",
"build:update-version": "node scripts/update-version.js",
"build:aegir": "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",
"any-signal": "^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.10.1",
"ipfs-core-utils": "^0.14.1",
"ipfs-http-gateway": "^0.9.1",
"ipfs-unixfs": "^6.0.3",
"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.5.1",
"parse-duration": "^1.0.0",
"stream-to-it": "^0.2.2",
"timeout-abort-controller": "^3.0.0",
"uint8arrays": "^3.0.0",
"uri-to-multiaddr": "^6.0.0"
},
"devDependencies": {
"@types/hapi-pino": "^8.0.1",
"@types/hapi__hapi": "^20.0.5",
"aegir": "^36.0.1",
"form-data": "^4.0.0",
"ipfs-http-client": "^56.0.1",
"iso-random-stream": "^2.0.2",
"it-to-buffer": "^2.0.0",
"npm-run-all": "^4.1.5",
"qs": "^6.9.4",
"rimraf": "^3.0.2",
"sinon": "^12.0.01",
"stream-to-promise": "^3.0.0"
},
"optionalDependencies": {
"prom-client": "^14.0.1"
}
}