-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.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
{
"name": "s3leveldown",
"version": "3.0.0",
"description": "An implementation of LevelDOWN that uses Amazon S3. Turn your S3 bucket into a DB",
"homepage": "https://github.com/loune/s3leveldown",
"main": "s3leveldown.js",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "yarn lint && node ./test.js",
"lint": "./node_modules/.bin/jshint s3leveldown.js"
},
"author": "Loune Lam <[email protected]> (https://loune.net/)",
"keywords": [
"level",
"leveldb",
"leveldown",
"levelup",
"S3",
"AWS"
],
"repository": {
"type": "git",
"url": "https://github.com/loune/s3leveldown.git"
},
"license": "MIT",
"dependencies": {
"@types/abstract-leveldown": "^7.2.0",
"abstract-leveldown": "^7.2.0",
"debug": "^4.3.1",
"ltgt": "^2.2.1"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"levelup": "^5.1.1"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"jshint": "^2.12.0",
"levelup": "^5.1.1",
"tape": "^5.6.3"
}
}