forked from k1LoW/serverless-s3-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 867 Bytes
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
{
"name": "serverless-s3-sync-v2",
"version": "1.0.1",
"description": "A plugin to sync local directories and S3 prefixes for Serverless Framework.",
"main": "index.js",
"scripts": {
"test": "node --test test/*.test.js",
"lint": "standard",
"lint:fix": "standard --fix"
},
"keywords": [
"serverless",
"s3"
],
"author": "Original: k1LoW <k1lowxb@gmail.com> (https://github.com/k1LoW). V2 author: Oleksandr Hladin <alexgladin17@gmail.com> (https://github.com/AlexHladin)",
"repository": "AlexHladin/serverless-s3-sync",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1063.0",
"ajv": "^8.20.0",
"mime": "^4.1.0",
"minimatch": "^10.2.5"
},
"peerDependencies": {
"serverless": "3.x || 4.x"
},
"devDependencies": {
"standard": "^17.1.2"
}
}