forked from winkjs/wink-bm25-text-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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": "wink-bm25-text-search",
"version": "2.0.1",
"description": "Configurable BM25 Text Search Engine with simple semantic search support",
"keywords": [
"BM25",
"BM25F",
"TFIDF",
"TF-IDF",
"In Memory Search",
"Semantic Search",
"Full Text Search",
"NLP",
"Natural Language Processing"
],
"main": "src/wink-bm25-text-search.js",
"scripts": {
"pretest": "npm run lint && npm run hint",
"test": "istanbul cover _mocha ./test/",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"docs": "docco -o ./docs/ ./src/*.js",
"hint": "jshint ./src/*.js ./test/*.js ./runkit/*.js",
"lint": "eslint ./src/*.js ./test/*.js ./runkit/*.js",
"changelog": "standard-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-bm25-text-search.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/winkjs/wink-bm25-text-search/issues"
},
"homepage": "https://github.com/winkjs/wink-bm25-text-search#readme",
"devDependencies": {
"chai": "^4.1.1",
"coveralls": "^2.11.15",
"docco": "^0.7.0",
"eslint": "^4.4.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0",
"standard-changelog": "^1.0.1",
"wink-nlp-utils": "^1.0.2"
},
"dependencies": {
"wink-helpers": "^1.2.0"
},
"runkitExampleFilename": "runkit/example.js"
}