-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@wholebuzz/search",
"version": "0.0.8",
"description": "Persistent inverted index and BM25 search engine with proximity penalty.",
"author": "wholebuzz",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wholebuzz/search.git"
},
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc -b .",
"clean": "tsc -b . --clean",
"docs": "typedoc --disableOutputCheck && rm -rf docs/README.md && ./scripts/updateReadmeApiReference.sh",
"test": "jest --runInBand --ci --passWithNoTests",
"test:coverage": "jest --runInBand --ci --passWithNoTests --coverage --no-cache",
"lint": "tslint -c tslint.json --project .",
"fix": "yarn lint --fix",
"format": "yarn run prettier --config .prettierrc.js --write 'src/*.+(ts)'"
},
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"dependencies": {
"@sindresorhus/fnv1a": "^2.0.1",
"@wholebuzz/binary-merge": "^0.0.1",
"@wholebuzz/fs": "^1.2.5",
"base62": "^2.0.1",
"ellipsize": "^0.1.0",
"fs-ext": "^2.0.0",
"glob-stream": "^7.0.0",
"entities": "^2.0.3",
"level": "^7.0.0",
"map-obj": "^4.1.0",
"mnemonist": "^0.38.4",
"rimraf": "^3.0.2",
"sorted-array-functions": "^1.3.0",
"striptags": "^3.1.1",
"subleveldown": "^5.0.1",
"tfrecord-stream": "0.2.0",
"wink-nlp-utils": "^2.0.5"
},
"devDependencies": {
"@types/ellipsize": "^0.1.0",
"@types/jest": "^26.0.22",
"@types/level": "^6.0.0",
"@types/lodash": "^4.14.155",
"@types/node": "^13.13.5",
"@types/rimraf": "^3.0.0",
"@types/subleveldown": "^4.1.1",
"jest": "^26.6.3",
"lodash": "^4.17.15",
"prettier": "^2.3.2",
"ts-jest": "^26.5.4",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "3.8.2",
"typescript": "4.2.4",
"typescript-tslint-plugin": "^1.0.1",
"wink-bm25-text-search": "^3.1.0"
},
"nyc": {
"reporter": [
"cobertura",
"json",
"lcov",
"text"
]
}
}