forked from KQED/elasticsearch-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 959 Bytes
/
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
{
"name": "elasticsearch-proxy",
"version": "1.0.0",
"description": "proxy between client and elasticsearch cluster",
"main": "server.js",
"engines": {
"node": "5.2.0"
},
"scripts": {
"test": "mocha tests/",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KQED/elasticsearch-proxy.git"
},
"author": "Sarah Yu",
"license": "MIT",
"bugs": {
"url": "https://github.com/KQED/elasticsearch-proxy/issues"
},
"homepage": "https://github.com/KQED/elasticsearch-proxy#readme",
"dependencies": {
"body-parser": "^1.14.1",
"bunyan": "^1.5.1",
"cors": "^2.7.1",
"dtrace-provider": "^0.6.0",
"express": "^4.13.3",
"extend": "^3.0.0",
"helmet": "^0.15.0",
"request-promise": "^1.0.2",
"response-time": "^2.3.1"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"nock": "^3.3.2",
"supertest": "^1.1.0"
}
}