-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
36 lines (36 loc) · 1.41 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "socless",
"engines": {
"node": ">=14.0.0"
},
"version": "1.0.0",
"description": "Socless' core infrastructure and functionality",
"main": "index.js",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/socless.git"
},
"keywords": [
"socless",
"security",
"automation"
],
"author": "Ubani Balogun",
"license": "ISC",
"devDependencies": {},
"dependencies": {
"serverless": "2.57.0",
"lambda-packager": "git+https://github.com/twilio-labs/socless_lambda_packager.git#v0.1.0",
"sls-apb": "git+https://github.com/twilio-labs/sls-apb.git#1.4.3"
}
}