-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "http-aws-es",
"version": "6.0.0",
"description": "Use the elasticsearch-js client with Amazon ES",
"repository": "https://github.com/TheDeveloper/http-aws-es",
"bugs": "https://github.com/TheDeveloper/http-aws-es/issues",
"keywords": [
"elasticsearch",
"elasticsearch-js",
"aws-es",
"aws",
"amazon",
"es",
"http",
"connector",
"extension",
"sign"
],
"main": "connector.js",
"peerDependencies": {
"aws-sdk": "^2.138.0",
"elasticsearch": "^15.0.0"
},
"devDependencies": {
"aws-sdk": "^2.138.0",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"elasticsearch": "^15.0.0",
"eslint": "^4.9.0",
"express": "^4.16.2",
"minimist": "^1.2.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"puppeteer": "^0.12.0",
"sinon": "^4.0.0"
},
"scripts": {
"test": "nyc --all mocha",
"integration-test": "mocha test/integration",
"posttest": "npm run lint",
"lint": "eslint connector.js src"
},
"browser": {
"./src/node.js": "./src/xhr.js"
},
"author": "Geoff Wagstaff <[email protected]>",
"license": "MIT"
}