-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
33 lines (33 loc) · 883 Bytes
/
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
{
"name": "solr-security-proxy",
"description":
"reverse proxy to secure solr, rejecting requests that might modify the solr index.",
"keywords": ["solr", "security", "ajax-solr", "server"],
"version": "0.0.5",
"author": "Alex Dergachev <[email protected]>",
"bugs": {
"url": "https://github.com/dergachev/solr-security-proxy/issues"
},
"main": "solr-security-proxy.js",
"scripts": {
"start": "node solr-security-proxy.js",
"test": "./node_modules/.bin/vows test/test-*.js --spec"
},
"bin": "./solr-security-proxy.js",
"repository": {
"type": "git",
"url": "https://github.com/dergachev/solr-security-proxy.git"
},
"dependencies": {
"http-proxy": "0.10.1",
"optimist": "0.4.0"
},
"devDependencies": {
"request": "2.16.6",
"vows": "0.7.0"
},
"engines": {
"node": ">=0.6.12"
},
"license": "GPL"
}