-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 927 Bytes
/
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
{
"name": "lambda-ig-mentions",
"version": "1.0.1",
"description": "Webhook endpoint for IG APIs that persists mentions to the DynamoDB.",
"main": "src/index.js",
"scripts": {
"test": "mocha test/setup.js test/**/*.spec.js",
"create:prod": "claudia create --name prod-ig-mentions --region eu-west-1 --handler src/index.handler --role arn:aws:iam::351847414812:role/MentionsPersistor --config claudia-prod.json",
"deploy:prod": "claudia update --config claudia-prod.json"
},
"repository": {
"type": "git",
"url": "https://github.com/muffin-rewards/lambda-ig-mentions"
},
"author": {
"name": "Michael Bausano",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"@bausano/data-structures": "^1.0.1",
"awi": "^0.0.7",
"aws-sdk": "^2.414.0"
},
"devDependencies": {
"chai": "^4.2.0",
"claudia": "^5.4.0",
"mocha": "^6.0.2"
}
}