-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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": "cloud-bucket",
"type": "module",
"version": "0.5.1-WIP",
"description": "Simple multi cloud (Google Storage and AWS S3) bucket API",
"author": "Jeremy Chone <jeremy.chone@gmail.com>",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/BriteSnow/node-cloud-bucket.git"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@google-cloud/storage": "^7.18.0",
"@types/micromatch": "^4.0.10",
"@types/mime-types": "^3.0.1",
"@aws-sdk/client-s3": "^3.964.0",
"@aws-sdk/lib-storage": "^3.964.0",
"fs-extra-plus": "^0.6.0",
"micromatch": "^4.0.8",
"mime-types": "^3.0.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"js-yaml": "^4.1.1",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"scripts": {
"test": "TS_NODE_PROJECT='test/tsconfig.json' ./node_modules/.bin/mocha",
"testw": "TS_NODE_FILES=true ./node_modules/.bin/mocha --watch",
"testd": "TS_NODE_FILES=true ./node_modules/.bin/mocha --inspect-brk",
"prepare": "rm -Rf dist/ && ./node_modules/.bin/tsc"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BriteSnow/node-cloud-bucket/issues"
},
"files": [
"src/",
"dist/"
]
}