forked from mergermarket/acuris-aws-es-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "@acuris/aws-es-connection",
"private": false,
"version": "1.1.1",
"description": "AWS ElasticSearch connection for the @elastic/elasticsearch ES client",
"keywords": [
"aws",
"elasticsearch",
"es",
"@elastic",
"@elastic/elasticsearch",
"connection",
"signing",
"elastic",
"search"
],
"homepage": "https://github.com/mergermarket/acuris-aws-es-connection#readme",
"repository": {
"repository": "git",
"url": "https://github.com/mergermarket/acuris-aws-es-connection.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "jest --bail",
"lint": "eslint src/**/*.ts"
},
"author": "Acuris",
"license": "MIT",
"peerDependencies": {
"@elastic/elasticsearch": ">=5.6.16",
"aws-sdk": ">=2"
},
"devDependencies": {
"@elastic/elasticsearch": "^7.2.0",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"aws-sdk": "^2.500.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"jest-circus": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"winston": "^3.2.1"
},
"dependencies": {
"aws4": "^1.8.0"
}
}