-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 2.79 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
37
38
39
40
41
{
"name": "sierra-retriever",
"version": "0.0.1",
"description": "This service reads sierra bib/item ids from the Bib/Item request stream, retrieves those records from the sierra-wrapper (https://www.npmjs.com/package/sierra-wrapper) and publishes them to the bib/item poster Stream",
"main": "index.js",
"scripts": {
"test": "mocha test",
"deploy-bib-development": "./node_modules/.bin/node-lambda deploy -n SierraBibRetrieverRequest -e development -f ./config/bib-development.env --role arn:aws:iam::224280085904:role/lambda_basic_execution --profile nypl-sandbox -S config/event-sources-bib-development.json",
"deploy-item-development": "./node_modules/.bin/node-lambda deploy -n SierraItemRetrieverRequest -e development -f ./config/item-development.env --role arn:aws:iam::224280085904:role/lambda_basic_execution --profile nypl-sandbox -S config/event-sources-item-development.json",
"deploy-bib-qa": "./node_modules/.bin/node-lambda deploy -n SierraBibRetrieverRequest -e qa -f ./config/bib-qa.env --role arn:aws:iam::946183545209:role/lambda-full-access -b subnet-21a3b244,subnet-f35de0a9 -g sg-aa74f1db --profile nypl-digital-dev -S config/event-sources-bib-qa.json",
"deploy-item-qa": "./node_modules/.bin/node-lambda deploy -n SierraItemRetrieverRequest -e qa -f ./config/item-qa.env --role arn:aws:iam::946183545209:role/lambda-full-access -b subnet-21a3b244,subnet-f35de0a9 -g sg-aa74f1db --profile nypl-digital-dev -S config/event-sources-item-qa.json",
"deploy-bib-production": "./node_modules/.bin/node-lambda deploy -n SierraBibRetrieverRequest -e production -f ./config/bib-production.env --role arn:aws:iam::946183545209:role/lambda-full-access -b subnet-59bcdd03,subnet-5deecd15 -g sg-116eeb60 --profile nypl-digital-dev -S config/event-sources-bib-production.json",
"deploy-item-production": "./node_modules/.bin/node-lambda deploy -n SierraItemRetrieverRequest -e production -f ./config/item-production.env --role arn:aws:iam::946183545209:role/lambda-full-access -b subnet-59bcdd03,subnet-5deecd15 -g sg-116eeb60 --profile nypl-digital-dev -S config/event-sources-item-production.json"
},
"repository": {
"type": "git",
"url": "https://github.com/NYPL-discovery/sierra-retriever.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NYPL-discovery/sierra-retriever/issues"
},
"homepage": "https://github.com/NYPL-discovery/sierra-retriever",
"dependencies": {
"@nypl/nypl-streams-client": "^0.1.2",
"@nypl/sierra-wrapper": "0.2.0",
"async": "^2.5.0",
"avsc": "^4.1.11",
"bunyan": "^1.8.10",
"config": "^1.25.1",
"highland": "^2.10.2",
"node-lambda": "^0.11.7",
"request": "^2.81.0",
"retry": "^0.10.1",
"standard": "^10.0.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.2.0"
}
}