-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 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
{
"name": "mln-item-poster",
"version": "0.1.1",
"engines": { "node" : "12.16.1" },
"description": "Reads bibs/items from stream, posts to MyLibraryNYC",
"devDependencies": {},
"author": "NYPL",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/NYPL/mln-item-poster.git"
},
"scripts": {
"deploy-item-development": "./node_modules/.bin/node-lambda deploy --functionName mln-item-poster -e development -f ./config/deploy_development.env -o arn:aws:iam::224280085904:role/lambda_basic_execution -a $AWS_ACCESS_KEY_ID_DEVELOPMENT -s $AWS_SECRET_ACCESS_KEY_DEVELOPMENT -S config/event-source-item-development.json",
"deploy-item-qa": "./node_modules/.bin/node-lambda deploy --functionName mln-item-poster -e qa -f ./config/deploy_qa.env -o arn:aws:iam::946183545209:role/lambda-full-access -a $AWS_ACCESS_KEY_ID_QA -s $AWS_SECRET_ACCESS_KEY_QA -S config/event-source-item-qa.json",
"deploy-item-production": "./node_modules/.bin/node-lambda deploy --functionName mln-item-poster -e production -f ./config/deploy_production.env -o arn:aws:iam::946183545209:role/lambda-full-access -a $AWS_ACCESS_KEY_ID_QA -s $AWS_SECRET_ACCESS_KEY_QA -S config/event-source-item-production.json"
},
"dependencies": {
"avsc": "^5.0.4",
"node-lambda": "^0.11.7",
"oauth": "^0.9.15",
"promise": "^7.1.1",
"request": "^2.80.0",
"winston": "^3.1.0"
}
}