forked from rgrove/node-elastical
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
39 lines (30 loc) · 947 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
{
"name" : "elastical",
"description": "An ElasticSearch client.",
"version" : "0.0.13",
"homepage" : "https://github.com/ramv/node-elastical/",
"author" : "Ryan Grove <[email protected]> (http://wonko.com/)",
"copyright" : "Copyright (c) 2013 Ryan Grove. All rights reserved.",
"keywords" : ["elasticsearch", "elastic", "search", "client", "lucene"],
"licenses": [
{"type": "MIT", "url": "https://github.com/ramv/node-elastical/blob/master/LICENSE.md"}
],
"repository": [
{"type": "git", "url": "git://github.com/ramv/node-elastical.git"}
],
"engines": [
"node >=0.4.0",
"npm >=1.0.0"
],
"dependencies": {
"request": ">=2.9.200",
"diff" : ">=1.0.3"
},
"devDependencies": {
"vows": "*"
},
"main": "index",
"scripts": {
"test": "node_modules/.bin/vows tests/offline-tests.js"
}
}