-
Notifications
You must be signed in to change notification settings - Fork 208
/
package.json
95 lines (95 loc) · 2.98 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "solr-client",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"description": " A Solr client library for indexing, adding, deleting, committing, optimizing and searching documents within an Apache Solr installation (version>=3.2)",
"version": "0.10.0-rc10",
"scripts": {
"build": "tsc",
"format": "prettier --write \"{lib,examples,test}/**/*.ts\"",
"lint": "eslint \"lib/**/*.ts\" \"test/**/*.ts\"",
"test-cov": "jscoverage lib lib-cov && mocha -r ts-node/register -R html-cov test/*-test.ts > coverage.html && rm -r lib-cov",
"report": "rm -rf report && mkdir report && plato -r -d report main.ts lib/*",
"solr:current:start": "docker-compose -f docker-compose-solr-8.yml up --build -d solr8",
"solr:current:stop": "docker-compose -f docker-compose-solr-8.yml down",
"solr:current:logs": "docker logs solr-node-client_solr8_1",
"test:current": "mocha -r ts-node/register -R spec test/*-test.ts --client.bigint=true",
"solr:legacy:start": "docker-compose -f docker-compose-solr-5.yml up --build -d solr5",
"solr:legacy:stop": "docker-compose -f docker-compose-solr-5.yml down",
"solr:legacy:logs": "docker logs solr-node-client_solr5_1",
"test:legacy": "mocha -r ts-node/register -R spec test/*-test.ts --client.port=8984 && mocha -r ts-node/register -R spec test/*-test.ts --client.port=8984",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">= 12"
},
"dependencies": {
"duplexer": "^0.1.2",
"hnp": "^1.0.1",
"json-bigint": "^1.0.0",
"JSONStream": "^1.3.5",
"proxy-agent": "^5.0.0",
"request": "^2.88.2",
"tslib": "^2.3.1",
"undici": "^4.7.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"@types/request": "^2.48.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"csv-stream": "^0.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"figc": "^0.0.3",
"jasmine-core": "^3.10.1",
"minimist": "^1.2.5",
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "4.4.3"
},
"files": [
"dist/*",
"CHANGELOG.md",
"CONTRIBUTIONS.md",
"LICENSE",
"main.ts",
"README.md",
"UPGRADING.md"
],
"keywords": [
"solr",
"client",
"query",
"sdk",
"search"
],
"repository": {
"type": "git",
"url": "https://github.com/lbdremy/solr-node-client"
},
"author": {
"name": "Remy Loubradou",
"email": "remy.loubradou@gmail.com",
"url": "https://twitter.com/#!/lbdremy"
},
"contributors": [
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com",
"url": "https://twitter.com/kibertoad"
},
{
"name": "Rudolf Byker",
"email": "rudolfbyker@gmail.com",
"url": "https://github.com/rudolfbyker"
}
],
"license": "MIT"
}