forked from ipfs-inactive/js-ipfs-unixfs-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.03 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
{
"name": "ipfs-unixfs-engine",
"version": "0.32.3",
"description": "JavaScript implementation of the unixfs Engine used by IPFS",
"leadMaintainer": "Alex Potsides <[email protected]>",
"main": "src/index.js",
"browser": {
"fs": false,
"rabin": false
},
"scripts": {
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs-unixfs-engine.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-unixfs-engine/issues"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/ipfs/js-ipfs-unixfs-engine#readme",
"devDependencies": {
"aegir": "^15.0.0",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"ipfs": "~0.31.2",
"ipfs-block-service": "~0.14.0",
"ipfs-repo": "~0.22.1",
"multihashes": "~0.4.13",
"ncp": "^2.0.0",
"pull-generate": "^2.2.0",
"pull-zip": "^2.0.1",
"rimraf": "^2.6.2",
"sinon": "^6.1.0",
"split": "^1.0.1"
},
"dependencies": {
"async": "^2.6.1",
"cids": "~0.5.3",
"deep-extend": "~0.6.0",
"ipfs-unixfs": "~0.1.15",
"ipld": "~0.17.3",
"ipld-dag-pb": "~0.14.6",
"left-pad": "^1.3.0",
"lodash": "^4.17.10",
"multihashing-async": "~0.5.1",
"pull-batch": "^1.0.0",
"pull-block": "^1.4.0",
"pull-cat": "^1.1.11",
"pull-pair": "^1.1.0",
"pull-paramap": "^1.2.2",
"pull-pause": "0.0.2",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.8",
"pull-through": "^1.0.18",
"pull-traverse": "^1.0.3",
"pull-write": "^1.1.4",
"sparse-array": "^1.3.1",
"stream-to-pull-stream": "^1.7.2"
},
"optionalDependencies": {
"rabin": "^1.6.0"
},
"contributors": [
"Alan Shaw <[email protected]>",
"Arpit Agarwal <[email protected]>",
"Bernard Mordan <[email protected]>",
"Dan Ordille <[email protected]>",
"David Dias <[email protected]>",
"Diogo Silva <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Greenkeeper <[email protected]>",
"Marcin Rataj <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Richard Littauer <[email protected]>",
"Richard Schneider <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Volker Mische <[email protected]>",
"achingbrain <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"jbenet <[email protected]>",
"nginnever <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
]
}