forked from TheDeveloper/http-aws-es
-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "aws-elasticsearch-connector",
"version": "9.2.0",
"description": "A tiny Amazon Signature Version 4 connection class for @elastic/elasticsearch, for compatibility with AWS Elasticsearch and IAM authentication.",
"repository": "https://github.com/compwright/aws-elasticsearch-connector",
"bugs": "https://github.com/compwright/aws-elasticsearch-connector/issues",
"keywords": [
"elasticsearch",
"aws-es",
"aws",
"aws4",
"amazon",
"es",
"http",
"connector",
"extension",
"sign",
"http-aws-es",
"HttpConnection"
],
"engines": {
"node": ">= 10"
},
"main": "src/index.js",
"types": "index.d.ts",
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u compwright -p aws-elasticsearch-connector && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "standard src/*.js tests/*.js --fix",
"pretest": "npm run lint",
"test": "AWS_PROFILE=null nyc --all mocha tests/Amazon*.test.js",
"test:integration": "mocha tests/integration.test.js"
},
"author": {
"name": "Jonathon Hill",
"email": "[email protected]",
"url": "https://compwright.com"
},
"license": "MIT",
"standard": {
"env": [
"mocha"
]
},
"nyc": {
"include": [
"src/**/Amazon*.js"
]
},
"dependencies": {
"aws4": "^1.11.0"
},
"peerDependencies": {
"@elastic/elasticsearch": ">=6",
"aws-sdk": "^2.831.0"
},
"devDependencies": {
"@elastic/elasticsearch": "^7.10.0",
"aws-sdk": "^2.831.0",
"minimist": "^1.2.5",
"mocha": "*",
"nyc": "*",
"standard": "*"
}
}