-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "s3-blob-store",
"version": "4.1.1",
"description": "s3 abstract-blob-store",
"keywords": [
"abstract-blob-store",
"blob-store",
"s3",
"blob"
],
"repository": {
"type": "git",
"url": "git://github.com/jb55/s3-blob-store.git"
},
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"docs": "documentation readme index.js --section=API",
"lint": "eslint . --ext .js",
"test": "node test.js | tap-spec"
},
"dependencies": {
"debug": "^4.1.1",
"mime-types": "^2.0.0",
"s3-download-stream": "1.1.1",
"s3-stream-upload": "^2.0.1"
},
"devDependencies": {
"abstract-blob-store": "^3.3.2",
"aws-sdk": "^2.0.15",
"documentation": "^12.1.4",
"eslint": "^6.8.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"s3rver": "^3.5.0",
"tap-spec": "^5.0.0",
"tape": "^4.8.0",
"tmp": "^0.1.0"
}
}