forked from ipfs-inactive/js-ipfs-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.85 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "ipfs-api-with-timeouts",
"version": "12.1.7",
"description": "A client library for the IPFS HTTP API. Follows interface-ipfs-core spec. Includes bootleg timeouts.",
"main": "src/index.js",
"browser": {
"glob": false,
"fs": false,
"stream": "readable-stream",
"http": "stream-http"
},
"scripts": {
"test": "gulp test",
"test:node": "gulp test:node",
"test:browser": "gulp test:browser",
"lint": "aegir-lint",
"build": "gulp build",
"release": "gulp release",
"release-minor": "gulp release --type minor",
"release-major": "gulp release --type major",
"coverage": "gulp coverage",
"coverage-publish": "aegir-coverage publish"
},
"dependencies": {
"async": "^2.1.4",
"bs58": "^4.0.0",
"cids": "~0.4.1",
"concat-stream": "^1.6.0",
"detect-node": "^2.0.3",
"flatmap": "0.0.3",
"glob": "^7.1.1",
"glob-escape": "0.0.2",
"ipfs-block": "~0.5.5",
"ipfs-unixfs": "~0.1.10",
"ipld-dag-pb": "~0.9.5",
"is-ipfs": "~0.3.0",
"isstream": "^0.1.2",
"lru-cache": "^4.0.2",
"multiaddr": "^2.2.1",
"multihashes": "~0.3.3",
"multipart-stream": "^2.0.1",
"ndjson": "^1.5.0",
"once": "^1.4.0",
"peer-id": "~0.8.2",
"peer-info": "~0.8.3",
"promisify-es6": "^1.0.2",
"pump": "^1.0.2",
"qs": "^6.3.0",
"readable-stream": "1.1.14",
"stream-http": "^2.6.3",
"streamifier": "^0.1.1",
"tar-stream": "^1.5.2"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/proven-system/js-ipfs-api"
},
"devDependencies": {
"aegir": "^10.0.0",
"chai": "^3.5.0",
"eslint-plugin-react": "^6.9.0",
"gulp": "^3.9.1",
"hapi": "^16.1.0",
"interface-ipfs-core": "~0.24.1",
"ipfsd-ctl": "~0.18.2",
"pre-commit": "^1.2.2",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"stream-equal": "^0.1.12"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"ipfs"
],
"author": "Matt Bell <[email protected]>",
"contributors": [
"Alex Mingoia <[email protected]>",
"Connor Keenan <[email protected]>",
"Danny <[email protected]>",
"David Braun <[email protected]>",
"David Dias <[email protected]>",
"Fil <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Gavin McDermott <[email protected]>",
"Greenkeeper <[email protected]>",
"Haad <[email protected]>",
"Harlan T Wood <[email protected]>",
"Harlan T Wood <[email protected]>",
"Holodisc <[email protected]>",
"James Halliday <[email protected]>",
"Jamie Hale <[email protected]>",
"Jason Carver <[email protected]>",
"Jeff Downie <[email protected]>",
"Jeromy <[email protected]>",
"Jeromy <[email protected]>",
"Joe Turgeon <[email protected]>",
"Juan Batiz-Benet <[email protected]>",
"Kristoffer Ström <[email protected]>",
"Matt Bell <[email protected]>",
"Mithgol <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Richard Littauer <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Tara Vancil <[email protected]>",
"Travis Person <[email protected]>",
"Victor Bjelkholm <[email protected]>",
"elsehow <[email protected]>",
"ethers <[email protected]>",
"haad <[email protected]>",
"nginnever <[email protected]>",
"priecint <[email protected]>",
"samuli <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/proven-systems/js-ipfs-api/issues"
},
"homepage": "https://github.com/proven-systems/js-ipfs-api"
}