-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 742 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 742 Bytes
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
{
"name": "simple-elasticsearch",
"version": "0.2.1",
"description": "Minimalistic Elasticsearch client",
"keywords": ["elasticsearch", "elastic", "search"],
"author": "Bryan Donovan",
"engines": {
"node": ">= 0.8.0"
},
"main": "./index",
"dependencies": {
"qs": "~1.2.1"
},
"devDependencies": {
"coveralls": "~2.3.0",
"jshint": "2.0.1",
"istanbul": "0.1.34",
"mocha": "1.9.0",
"optimist" : "0.3.5",
"sinon": "1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BryanDonovan/node-simple-elasticsearch"
},
"scripts": {
"test": "make",
"coverage": "make test-cov"
}
}