forked from fergiemcdowall/search-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "search-index",
"description": "A text search index module for Node.js. Search-index allows applications to add, delete and retrieve documents from a corpus. Retrieved documents are ordered by tf-idf relevance, filtering on metadata, and field weighting",
"version": "0.3.1",
"homepage": "https://github.com/fergiemcdowall/search-index",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"async": "0.2.9",
"bloomfilter": "0.0.14",
"colors": "0.6.2",
"level": "0.18.0",
"level-multiply": "0.0.1",
"natural": "0.1.25",
"search-context": "0.1.0"
},
"author": {
"name": "Fergus McDowall",
"email": "[email protected]"
},
"keywords": [
"natural",
"language",
"search",
"index",
"lucene"
],
"main": "./lib/search-index.js",
"maintainers": [
{
"name": "Fergus McDowall",
"email": "[email protected]",
"url": "https://github.com/fergiemcdowall"
}
],
"scripts": {
"test": "jasmine-node test/spec/*-spec.js"
}
}