-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
22 lines (22 loc) · 1.15 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
{
"name": "socless-slack",
"version": "1.0.0",
"description": "Socless Slack Integration",
"scripts": {
"test": ". venv/bin/activate && tox",
"pretest": "python3 -m venv venv && . venv/bin/activate && pip3 install tox -qq",
"posttest": "find . | grep -E '(__pycache__|.pytest_cache|.egg-info)' | xargs rm -rf",
"build-funcs": "node node_modules/lambda-packager/build/src/main.js functions -c common -o .archives/functions -u 'no-linux'",
"dev": "$npm_execpath run build-funcs && serverless deploy --stage dev --region us-west-2 --verbose",
"stage": "$npm_execpath run build-funcs && serverless deploy --stage stage --region us-east-2 --verbose",
"prod": "$npm_execpath run build-funcs && serverless deploy --stage prod --region us-east-1 --verbose",
"sandbox": "$npm_execpath run build-funcs && serverless deploy --stage sandbox --region us-west-1 --verbose"
},
"author": "Ubani Balogun",
"license": "ISC",
"dependencies": {
"serverless": "2.57.0",
"lambda-packager": "twilio-labs/socless_lambda_packager#v0.1.0",
"sls-apb": "twilio-labs/sls-apb#1.4.3"
}
}