forked from matrus2/dynamodb-stream-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·57 lines (57 loc) · 1.7 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
{
"name": "dynamodb-stream-elasticsearch",
"version": "3.0.2",
"description": "Missing blueprint for AWS Lambda. Reads stream from AWS DynamoDB and writes it to AWS ElasticSearch.",
"main": "src/index.js",
"scripts": {
"test": "DEBUG=elasticsearch mocha test/index.js --timeout 10000",
"test-aws": "DEBUG=elasticsearch mocha test/aws-es-connection.js --timeout 10000",
"lint": "./node_modules/.bin/eslint .",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matrus2/dynamodb-stream-elasticsearch.git"
},
"keywords": [
"AWS",
"Lambda",
"DynamoDB",
"Elasticsearch",
"AWS Lambda",
"AWS DynamoDB",
"AWS Elasticsearch",
"Blueprint",
"Stream",
"Node"
],
"author": "Bogusz Przybyslawski <biuro@matrus.pl>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matrus2/dynamodb-stream-elasticsearch/issues"
},
"homepage": "https://github.com/matrus2/dynamodb-stream-elasticsearch#readme",
"devDependencies": {
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^9.0.2",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@elastic/elasticsearch": "7.13.0",
"aws-sdk": "2.950.0",
"aws4": "^1.11.0",
"lodash.flatmap": "4.5.0"
},
"typings": "./src/index.d.ts"
}