forked from lbdremy/solr-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 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
{
"author": {
"name": "Remy Loubradou",
"email": "remy.loubradou@gmail.com",
"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.2.6",
"repository": {
"type": "git",
"url": "https://github.com/lbdremy/solr-node-client"
},
"engines": {
"node": ">= 0.4.7"
},
"dependencies": {
"JSONStream" : "~0.3.1",
"duplexer" : "~0.0.2",
"request" : "~2.11.0"
},
"devDependencies": {
"vows": "0.6.x",
"nock": "0.12.x"
},
"scripts": {
"test": "vows --spec test/test-*"
}
}