-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.36 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.36 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
29
30
31
32
33
34
35
36
37
38
39
{
"name": "member-stats-sync-lambda",
"version": "1.0.0",
"description": "topcoder project to sync member stats from DynamoDB to ElasticSearch via Lambda",
"main": "handler.js",
"scripts": {
"serverless:offline": "AWS_REGION=localhost AWS_ACCESS_KEY_ID=XXXXXXXXXXXXXXXXXXXX AWS_SECRET_ACCESS_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxx+ ES_ENDPOINT=http://127.0.0.1:9200 ES_REGION=ddblocal ES_STATS_INDEX=memberstats ES_STATS_MAPPING=stats serverless offline start",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/topcoder-platform/member-stats-sync-lambda.git"
},
"author": "upbeat",
"license": "ISC",
"bugs": {
"url": "https://github.com/topcoder-platform/member-stats-sync-lambda/issues"
},
"homepage": "https://github.com/topcoder-platform/member-stats-sync-lambda#readme",
"dependencies": {
"config": "^3.1.0",
"aws-sdk": "^2.466.0",
"path": "^0.12.7",
"lodash": "^4.17.15",
"elasticsearch": "^15.2.0",
"http-aws-es": "^6.0.0",
"joi": "^14.3.1"
},
"devDependencies": {
"aws-sdk-mock": "^4.4.0",
"jest": "^24.8.0",
"serverless": "^1.67.3",
"serverless-dynamodb-local": "^0.2.39",
"serverless-offline": "^5.12.1",
"serverless-offline-dynamodb-streams": "^3.0.2",
"serverless-plugin-offline-dynamodb-stream": "^1.0.19",
"sinon": "^7.3.2"
}
}