forked from mikesouza/serverless-deployment-bucket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "serverless-deployment-bucket",
"version": "2.0.0",
"description": "Create and configure the Serverless deployment bucket.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest --env node --coverage",
"test:w": "jest --env node --coverage --watch",
"test:wa": "jest --env node --coverage --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikeSouza/serverless-deployment-bucket.git"
},
"keywords": [
"serverless",
"serverless framework",
"serverless plugin",
"serverless plugins",
"amazon web services",
"aws",
"aws s3",
"s3",
"s3 bucket",
"deployment bucket",
"serverless bucket",
"bucket"
],
"author": "Mike Souza",
"license": "MIT",
"bugs": {
"url": "https://github.com/MikeSouza/serverless-deployment-bucket/issues"
},
"homepage": "https://github.com/MikeSouza/serverless-deployment-bucket#readme",
"devDependencies": {
"coveralls": "^3.1.1",
"jest": "^29.1.2",
"serverless": "^3.22.0"
},
"peerDependencies": {
"serverless": "^3"
}
}