This repository has been archived by the owner on Aug 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "ipfs-unixfs-engine",
"version": "0.35.4",
"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": "^18.0.2",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1"
},
"dependencies": {
"ipfs-unixfs-exporter": "~0.35.4",
"ipfs-unixfs-importer": "~0.38.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]>"
]
}