-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "ipfs-blob-store",
"version": "2.1.0",
"description": "An abstract-blob-store compatible implementation built using IPFS as the storage backend",
"main": "src/index.js",
"browser": {
"fs": false
},
"scripts": {
"test": "aegir test",
"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": "https://github.com/ipfs-shipyard/ipfs-blob-store"
},
"keywords": [
"ipfs",
"blob",
"object",
"store",
"content"
],
"author": "IPFS",
"contributors": [
"David Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Henrique Dias <[email protected]>",
"Richard Littauer <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Travis Person <[email protected]>",
"achingbrain <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/ipfs-blob-store/issues"
},
"homepage": "https://github.com/ipfs/ipfs-blob-store",
"devDependencies": {
"abstract-blob-store": "^3.3.4",
"aegir": "^17.0.1",
"ipfs": "~0.33.0",
"ipfsd-ctl": "~0.40.0",
"tape": "^4.9.1",
"which": "^1.3.1"
},
"dependencies": {
"debug": "^4.1.0",
"ipfs": "~0.33.0",
"ipfs-api": "^26.1.2",
"promisify-es6": "^1.0.3"
}
}