-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "flexsearch-server",
"version": "0.3.21",
"description": "Next-Generation full text search library with zero dependencies.",
"homepage": "https://github.com/nextapps-de/flexsearch-server/",
"author": "Thomas Wilkerling",
"copyright": "Nextapps GmbH",
"license": "Apache-2.0",
"keywords": [
"fulltext search",
"elastic search",
"fastest search",
"contextual search",
"fuzzy search"
],
"bugs": {
"url": "https://github.com/nextapps-de/flexsearch-server/issues",
"email": "[email protected]"
},
"main": "server.js",
"preferGlobal": false,
"bin": {},
"repository": {
"type": "git",
"url": "git+https://github.com/nextapps-de/flexsearch-server.git"
},
"files": [
"config/",
"cluster.js",
"controller.js",
"env.js",
"handler.js",
"helper.js",
"server.js",
"setup.js"
],
"scripts": {
"postinstall": "node setup",
"start": "node server",
"cluster": "node cluster",
"test": "nyc --reporter=html --reporter=text mocha --timeout=3000 --exit",
"coverage": "nyc report --reporter=lcov --reporter=text-lcov | coveralls"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.16.4",
"flexsearch": "^0.3.51"
},
"devDependencies": {
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0",
"supertest": "^3.4.2"
}
}