-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "retrieval",
"version": "1.7.3",
"description": "Full text search engine in js that features tunable BM25 ranking function.",
"author": "John Jung",
"license": "MIT",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"start": "node index.js",
"demo1": "node demo/demo1/scenarios.js",
"demo2": "node demo/demo2/server.js"
},
"dependencies": {
"express": "^4.16.4",
"heap": "^0.2.6",
"lodash": "^4.17.11",
"mathjs": "^3.17.0",
"pug": "^2.0.3",
"sort-keys": "^2.0.0"
},
"devDependencies": {
"mocha": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zjohn77/retrieval.git"
},
"homepage": "https://github.com/zjohn77/retrieval#readme",
"bugs": {
"url": "https://github.com/zjohn77/retrieval/issues"
},
"keywords": [
"okapi bm25",
"tfidf",
"tf-idf",
"search engine",
"full text search",
"natural language processing",
"information retrieval",
"bm25",
"term weighting",
"vector space model"
]
}