forked from lbdremy/solr-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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
{
"author": {
"name": "Remy Loubradou",
"email": "[email protected]",
"url": "https://twitter.com/#!/lbdremy"
},
"name": "solr-client",
"main": "./main",
"description": " A Solr client library for indexing, adding, deleting, committing, optimizing and searching documents within an Apache Solr installation (version>=3.2)",
"version": "0.7.0",
"repository": {
"type": "git",
"url": "https://github.com/lbdremy/solr-node-client"
},
"engines": {
"node": ">= 0.4.7"
},
"dependencies": {
"JSONStream": "~1.0.6",
"bluebird": "^3.5.0",
"duplexer": "~0.1.1",
"httperror": "~0.2.3",
"json-bigint": "~0.1.4",
"request": "~2.81.0"
},
"devDependencies": {
"chai": "~3.3.0",
"bignumber.js": "~2.0.7",
"minimist": "~1.2.0",
"csv-stream": "~0.1.3",
"mocha": "~2.3.3",
"figc": "~0.0.3"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec test/*-test.js && ./node_modules/mocha/bin/mocha -R spec test/*-test.js --client.bigint=true",
"test-cov": "jscoverage lib lib-cov && ./node_modules/mocha/bin/mocha -R html-cov test/*-test.js > coverage.html && rm -r lib-cov",
"report": "rm -rf report && mkdir report && plato -r -d report main.js lib/*"
},
"license": "MIT"
}