-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jhaystack",
"version": "0.1.8",
"description": "JavaScript search engine",
"main": "./dist/jhaystack.cjs.min.js",
"module": "./dist/jhaystack.esm.js",
"unpkg": "./dist/jhaystack.umd.min.js",
"jsdelivr": "./dist/jhaystack.umd.min.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"prebuild": "rimraf dist && npm run lint:fix && npm run test && npm run build:types",
"build": "rollup -c",
"prettier": "prettier \"*/**/*.{js,ts}\" --write",
"lint": "eslint \"*/**/*.{js,ts}\"",
"lint:fix": "npm run prettier && eslint \"*/**/*.{js,ts}\" --fix",
"test": "jest --verbose --coverage --no-cache --maxtestworkers=50%",
"test:watch": "jest --watch --verbose",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir ./dist/types/"
},
"repository": {
"type": "git",
"url": "https://github.com/fukurosan/Jhaystack.git"
},
"keywords": [
"JavaScript",
"search",
"engine",
"search-engine",
"bitap",
"typescript",
"fulltext",
"string-search",
"TFIDF",
"BM25",
"KMeans",
"Naive-Bayes",
"spelling",
"ngram"
],
"author": "Henrik Olofsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/fukurosan/Jhaystack/issues"
},
"homepage": "https://fukurosan.github.io/Jhaystack/",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.6.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}