This repository has been 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.3k
/
Copy pathpackage.json
124 lines (124 loc) · 3.62 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
{
"name": "ipfs-api",
"version": "12.1.4",
"description": "A client library for the IPFS HTTP API. Follows interface-ipfs-core spec",
"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",
"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.1",
"ipfs-unixfs": "^0.1.8",
"ipld-dag-pb": "^0.9.3",
"is-ipfs": "^0.2.1",
"isstream": "^0.1.2",
"lru-cache": "^4.0.2",
"multiaddr": "^2.1.1",
"multipart-stream": "^2.0.1",
"ndjson": "^1.5.0",
"once": "^1.4.0",
"peer-id": "^0.8.1",
"peer-info": "^0.8.1",
"promisify-es6": "^1.0.2",
"pump": "^1.0.2",
"qs": "^6.3.0",
"readable-stream": "1.1.14",
"stream-http": "^2.5.0",
"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/ipfs/js-ipfs-api"
},
"devDependencies": {
"aegir": "^9.2.1",
"chai": "^3.5.0",
"eslint-plugin-react": "^6.8.0",
"gulp": "^3.9.1",
"hapi": "^16.0.3",
"interface-ipfs-core": "^0.23.1",
"ipfsd-ctl": "^0.17.0",
"pre-commit": "^1.2.0",
"socket.io": "^1.7.1",
"socket.io-client": "^1.7.1",
"stream-equal": "^0.1.12"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"ipfs"
],
"author": "Matt Bell <mappum@gmail.com>",
"contributors": [
"Alex Mingoia <talk@alexmingoia.com>",
"Connor Keenan <ckeenan89@gmail.com>",
"David Braun <David.Braun@Toptal.com>",
"David Dias <daviddias.p@gmail.com>",
"Fil <fil@rezo.net>",
"Francisco Baio Dias <xicombd@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Gavin McDermott <gavinmcdermott@gmail.com>",
"Greenkeeper <support@greenkeeper.io>",
"Haad <haadcode@users.noreply.github.com>",
"Harlan T Wood <harlantwood@users.noreply.github.com>",
"Harlan T Wood <code@harlantwood.net>",
"Holodisc <holodiscent@gmail.com>",
"James Halliday <substack@gmail.com>",
"Jason Carver <jacarver@linkedin.com>",
"Jeff Downie <JeffDownie@users.noreply.github.com>",
"Jeromy <why@ipfs.io>",
"Jeromy <jeromyj@gmail.com>",
"Joe Turgeon <arithmetric@gmail.com>",
"Juan Batiz-Benet <juan@benet.ai>",
"Kristoffer Ström <kristoffer@rymdkoloni.se>",
"Matt Bell <mappum@gmail.com>",
"Mithgol <getgit@mithgol.ru>",
"Pedro Teixeira <i@pgte.me>",
"Richard Littauer <richard.littauer@gmail.com>",
"Stephen Whitmore <stephen.whitmore@gmail.com>",
"Tara Vancil <tbvanc@gmail.com>",
"Travis Person <travis.person@gmail.com>",
"Victor Bjelkholm <victorbjelkholm@gmail.com>",
"Victor Bjelkholm <victor@typeform.com>",
"elsehow <yes@cosmopol.is>",
"ethers <ethereum@outlook.com>",
"haad <haad@headbanggames.com>",
"nginnever <ginneversource@gmail.com>",
"priecint <tp-dev@seznam.cz>",
"samuli <samuli@nugg.ad>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-api/issues"
},
"homepage": "https://github.com/ipfs/js-ipfs-api"
}