-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "lexico",
"version": "0.1.3",
"description": "🔭 Powerful data searching with a terse syntax",
"author": "Akash Hamirwasia",
"main": "lib/index.js",
"module": "esm/index.js",
"license": "MIT",
"keywords": [
"data",
"search",
"operators",
"dsl",
"fuzzy",
"logic",
"indexing"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/blenderskool/lexico"
},
"bugs": {
"url": "https://github.com/blenderskool/lexico/issues"
},
"homepage": "https://github.com/blenderskool/lexico#readme",
"scripts": {
"test": "jest",
"build:cjs": "tsc && ./minify.sh lib/*.js",
"build:es": "tsc -m esNext --outDir esm && ./minify.sh esm/*.js",
"build": "npm run build:cjs && npm run build:es"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^18.7.5",
"jest": "^29.1.2",
"terser": "^5.14.2",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"dependencies": {
"fast-fuzzy": "^1.11.2"
}
}