forked from ipfs/js-datastore-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "datastore-s3",
"version": "0.2.4",
"description": "IPFS datastore implementation backed by s3",
"leadMaintainer": "Jacob Heun<[email protected]>",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "aegir lint",
"test": "aegir test --target node",
"test:node": "aegir test --target node",
"flow": "flow",
"release": "aegir release --target node --docs",
"release-minor": "aegir release --type minor --target node --docs",
"release-major": "aegir release --type major --target node --docs",
"coverage": "aegir coverage --timeout 10000",
"coverage-publish": "aegir coverage --provider codecov --timeout 10000",
"docs": "aegir docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-datastore-s3.git"
},
"keywords": [
"interface",
"key-value",
"ipfs",
"datastore",
"s3"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-datastore-s3/issues"
},
"homepage": "https://github.com/ipfs/js-datastore-s3#readme",
"dependencies": {
"async": "^2.6.2",
"datastore-core": "~0.6.0",
"interface-datastore": "~0.6.0",
"once": "^1.4.0",
"pull-defer": "~0.2.3",
"pull-stream": "^3.6.9",
"upath": "^1.1.0",
"node-cache": "^4.2.1",
"once": "^1.4.0"
},
"devDependencies": {
"aegir": "^18.1.0",
"aws-sdk": "^2.402.0",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"flow-bin": "~0.93.0",
"flow-typed": "^2.5.1",
"ipfs-repo": "~0.26.1",
"stand-in": "^4.2.0"
},
"peerDependencies": {
"ipfs-repo": "0.x",
"aws-sdk": "2.x"
},
"contributors": [
"Jacob Heun <[email protected]>",
"Justin Chase <[email protected]>",
"Zach Ferland <[email protected]>"
]
}