This repository was archived by the owner on Apr 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.37 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.37 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
{
"name": "CodeBnb",
"version": "2.3.7",
"repository": "github:builtforme/CodeBnb",
"license": "MIT",
"homepage": "https://github.com/builtforme/CodeBnb",
"config": {
"s3bucket": "codebnb-sample-bucket",
"awsRegion": "us-east-1"
},
"scripts": {
"test": "jest --coverage",
"zip": "zip -r lambda.zip *.js package.json node_modules html",
"createS3bucket": "aws s3api create-bucket --bucket $npm_package_config_s3bucket --region=$npm_package_config_awsRegion",
"deploy": "npm version patch && npm run zip && aws s3 cp lambda.zip s3://$npm_package_config_s3bucket/v$npm_package_version/lambda.zip && echo Interactive variable input required. Please execute: terraform apply -var=\"aws_region=$npm_package_config_awsRegion\" -var=\"app_version=$npm_package_version\" -var=\"s3_bucket=$npm_package_config_s3bucket\"",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"async": "^2.6.0",
"aws-sdk": "^2.427.0",
"bluebird": "^3.5.0",
"dotenv": "^4.0.0",
"github": "^12.0.0",
"google-spreadsheet": "^2.0.7",
"handlebars": "^4.1.2",
"lambda-git": "^0.1.1",
"moment": "^2.21.0",
"snyk": "^1.143.1",
"underscore": "^1.8.3",
"underscore.string": "^3.3.5"
},
"devDependencies": {
"codecov": "^3.2.0",
"jest": "^24.5.0",
"sinon": "^4.0.0"
},
"snyk": true
}