-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.02 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.02 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
{
"name": "scheduler-lambda",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -f ./lambdaFn.zip && ncc build -m index.js && zip -j lambdaFn.zip dist/index.js",
"deploy:executor": "aws lambda update-function-code --function-name=executorFn --zip-file fileb:///$PWD/lambdaFn.zip",
"deploy:creator": "aws lambda update-function-code --function-name=creatorFn --zip-file fileb:///$PWD/lambdaFn.zip",
"deploy:stateCheck": "aws lambda update-function-code --function-name=stateCheckFn --zip-file fileb:///$PWD/lambdaFn.zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aa-dhaar/scheduler-lambda.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aa-dhaar/scheduler-lambda/issues"
},
"homepage": "https://github.com/aa-dhaar/scheduler-lambda#readme",
"dependencies": {
"aws-sdk": "^2.720.0",
"jsonschema": "^1.2.6",
"pg-promise": "^10.5.8"
}
}