forked from ncb000gt/node-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.53 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
{
"name" : "es",
"description" : "API around the ElasticSearch RESTful API -- mostly convenience.",
"main" : "index.js",
"version" : "0.3.12",
"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": "~1.7.2",
"coveralls": "~2.0.16",
"jscoverage": "~0.3.8",
"jshint": "~2.1.10",
"mocha": "~1.12.1",
"mocha-lcov-reporter": "0.0.1",
"stact": "~0.0.11"
},
"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",
"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"
}
}