forked from dsfields/spleen-elasticsearch-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "ts-spleen-elasticsearch",
"longName": "spleen-elasticsearch",
"description": "Convert spleen filters into Elasticsearch queries.",
"version": "2.0.0",
"dependencies": {
"elv": "^2.0.0",
"spleen": "^1.3.0"
},
"devDependencies": {
"chai": "~3.5.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"keywords": [
"conditional",
"filter",
"graph",
"query",
"dynamic",
"if",
"where",
"search",
"api",
"input",
"param",
"elastic",
"search",
"elasticsearch",
"lucene"
],
"license": "MIT",
"main": "./lib",
"peerDependencies": {
"spleen": ">=1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dsfields/spleen-elasticsearch-node"
},
"scripts": {
"lint": "eslint ./*",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --recursive ./test/unit",
"test:integration": "sh ./test/integration/services/run.sh && NODE_ENV=test nyc --reporter=lcov --reporter=text mocha ./test/integration"
},
"packageManager": "yarn@3.2.2"
}