forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.31 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
{
"name": "ipfs-http-response",
"version": "1.0.3",
"description": "Creates an HTTP response from an IPFS Hash",
"leadMaintainer": "Vasco Santos <vasco.santos@moxy.studio>",
"main": "src/index.js",
"types": "types/src/index.d.ts",
"typesVersions": {
"*": {
"*": [
"types/*",
"types/src/*"
],
"types/*": [
"types/*",
"types/src/*"
]
}
},
"type": "module",
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"exports": {
".": {
"import": "./src/index.js"
}
},
"publishConfig": {
"directory": "dist"
},
"scripts": {
"lint": "aegir ts -p check && aegir lint",
"clean": "rimraf ./dist",
"build": "aegir build --no-bundle",
"pretest": "aegir build --esm-tests",
"test": "aegir test -t node",
"test:node": "aegir test -t node",
"dep-check": "aegir dep-check -i rimraf -i global"
},
"browser": {
"file-type": "file-type/browser",
"fs": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs-http-response.git"
},
"keywords": [
"ipfs",
"http",
"response"
],
"author": "Vasco Santos <vasco.santos@moxy.studio>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-http-response/issues"
},
"homepage": "https://github.com/ipfs/js-ipfs-http-response#readme",
"dependencies": {
"debug": "^4.3.1",
"ejs": "^3.1.6",
"file-type": "^16.0.0",
"filesize": "^8.0.0",
"it-buffer": "^0.1.1",
"it-concat": "^2.0.0",
"it-reader": "^3.0.0",
"it-to-stream": "^1.0.0",
"mime-types": "^2.1.30",
"p-try-each": "^1.0.1"
},
"devDependencies": {
"@types/ejs": "^3.1.0",
"aegir": "^35.1.1",
"get-stream": "^6.0.0",
"global": "^4.4.0",
"ipfs-core": "^0.12.0",
"ipfsd-ctl": "^10.0.4",
"it-all": "^1.0.4",
"rimraf": "^3.0.2",
"uint8arrays": "^3.0.0"
},
"contributors": [
"Vasco Santos <vasco.santos@moxy.studio>",
"Alex Potsides <alex@achingbrain.net>",
"Hector Sanjuan <code@hector.link>",
"Marcin Rataj <lidel@lidel.org>",
"André Cruz <andremiguelcruz@msn.com>",
"Irakli Gozalishvili <rfobic@gmail.com>",
"Alan Shaw <alan.shaw@protocol.ai>",
"Pedro Santos <pedro.santos@moxy.studio>"
]
}