30 lines
874 B
JSON
30 lines
874 B
JSON
{
|
|
"name": "deliveries",
|
|
"version": "1.0.0",
|
|
"description": "Trigger notif from matching WorkMail email",
|
|
"main": "index.mjs",
|
|
"scripts": {
|
|
"deploy": "npm run lint && npm run package && aws lambda update-function-code --function-name Deliveries --region us-west-2 --zip-file fileb://./lambda.zip",
|
|
"package": "zip -r -9 lambda.zip .",
|
|
"lint": "npx eslint index.mjs --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@git.corrupt.link:liz/deliveries.git"
|
|
},
|
|
"author": "Elizabeth Cray",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@aws-sdk/client-secrets-manager": "^3.665.0",
|
|
"@stylistic/eslint-plugin": "^2.8.0",
|
|
"ssh2": "^1.16.0",
|
|
"ssh2-promise": "^1.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.12.0",
|
|
"@stylistic/eslint-plugin-js": "^2.8.0",
|
|
"eslint": "^9.12.0",
|
|
"globals": "^15.10.0"
|
|
}
|
|
}
|