forked from mafintosh/skim-blob-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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": "slim-blob-store",
"version": "1.0.1",
"description": "Blob store that will read from a remote blob store and cache it to a local one",
"keywords": [
"blobs",
"slim"
],
"homepage": "https://github.com/Teomik129/slim-blob-store",
"bugs": {
"url": "https://github.com/Teomik129/slim-blob-store/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Teomik129/slim-blob-store"
},
"license": "MIT",
"author": {
"name": "Jules Amosah",
"email": "teomik129@gmail.com",
"url": "https://github.com/Teomik129"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"compile": "tsc",
"prepare": "npm run compile",
"test": "node ./lib/test.js"
},
"dependencies": {
"duplexify": "^4.1.1",
"logdown": "^3.3.1",
"pump": "^3.0.0"
},
"devDependencies": {
"@types/duplexify": "^3.6.0",
"@types/node": "^14.14.6",
"@types/pump": "^1.1.0",
"@types/tape": "^4.13.0",
"abstract-blob-store": "^3.3.5",
"tape": "^5.0.1",
"typescript": "^4.0.5"
}
}