UNPKG

retrieval

Version:

Full text search engine in js. Features BM25 ranking function that can be tuned.

48 lines 1.1 kB
{ "name": "retrieval", "version": "1.7.2", "description": "Full text search engine in js. Features BM25 ranking function that can be tuned.", "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 search", "information retrieval", "bm25", "term weighting", "vector space model" ] }