-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "dynamo2es-lambda",
"version": "2.1.0",
"description": "Configurable AWS Lambda handler to index documents from DynamoDB Streams in Amazon Elasticsearch",
"repository": {
"type": "git",
"url": "https://github.com/AntonBazhal/dynamo2es-lambda.git"
},
"keywords": [
"amazon",
"aws",
"aws-es",
"elasticsearch",
"elasticsearch-js",
"client",
"dynamo",
"dynamodb",
"dynamodb-streams",
"http-aws-es",
"lambda",
"serverless",
"streams"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint .",
"test": "nyc mocha --",
"pretest": "npm run lint"
},
"nyc": {
"all": true,
"include": [
"lib/**"
],
"exclude": [
"**/test/**"
],
"excludeNodeModules": true,
"reporter": [
"lcov",
"text-summary"
]
},
"author": {
"name": "Anton Bazhal",
"email": "am.bazhal@gmail.com"
},
"contributors": [
{
"name": "Jonathon Hill",
"email": "jhill9693@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"@hapi/joi": "^15.1.0",
"alpha-lambda": "^1.1.0",
"alpha-lambda-bunyan": "^1.3.0",
"lodash": "^4.17.15",
"promise-retry": "^1.1.1"
},
"peerDependencies": {
"@elastic/elasticsearch": "^7.3.0",
"aws-sdk": "^2.514.0"
},
"devDependencies": {
"aws-sdk": "^2.514.0",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"elasticsearch": "^16.3.0",
"env-test": "^1.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.0.0",
"lambda-tester": "^3.6.0",
"mocha": "^6.2.0",
"nyc": "^15.0.0",
"sinon": "^7.4.1",
"uuid": "^3.3.2"
}
}