forked from ncb000gt/node-es
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.59 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.59 KB
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
{
"name" : "es",
"description" : "API around the ElasticSearch RESTful API -- mostly convenience.",
"main" : "index.js",
"version" : "0.4.1",
"author" : "Nick Campbell (http://github.com/ncb000gt)",
"contributors" : [
"Nick Campbell (http://github.com/ncb000gt)",
"Gabriel Farrel (http://github.com/gsf)",
"Richard Marr (http://github.com/richmarr)",
"Joshua Thomas (http://github.com/brozeph)",
"Brian Link (https://github.com/cpsubrian)"
],
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"elastic",
"search",
"elastic search",
"elasticsearch",
"es",
"lucene"
],
"repository": "git://github.com/ncb000gt/node-es.git",
"license": "MIT",
"homepage": "http://github.com/ncb000gt/node-es",
"bugs": "http://github.com/ncb000gt/node-es/issues",
"devDependencies": {
"chai": "*",
"coveralls": "*",
"jscoverage": "*",
"jshint": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"stact": "*"
},
"scripts": {
"coverage": "rm -rf ./reports ; mkdir -p ./reports ; NODE_ELASTICSEARCH_COVERAGE=true mocha -R html-cov -r ./test/common.js -u bdd ./test/lib > reports/coverage.html",
"functional": "mocha --check-leaks -R spec -r ./test/common.js -u bdd ./test/functional",
"pretest": "jshint *.js ./lib/*.js ./test/*.js ; jscoverage ./lib ./lib-cov",
"test": "mocha --check-leaks -R spec -r ./test/common.js -u bdd ./test/lib ./test/functional",
"posttest": "NODE_ELASTICSEARCH_COVERAGE=true mocha -R mocha-lcov-reporter -r ./test/common.js -u bdd ./test/lib | ./node_modules/coveralls/bin/coveralls.js"
}
}