-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 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
{
"name": "logic-search",
"version": "1.0.0",
"description": "A powerful and flexible logical search engine with boolean operations support",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "node src/index.js",
"build": "babel src -d dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.js\"",
"dev": "nodemon src/index.js",
"prepare": "husky install",
"clean": "rm -rf dist"
},
"keywords": [
"search",
"boolean",
"logic",
"fuzzy",
"query",
"filter",
"text-search",
"search-engine"
],
"author": "",
"license": "MIT",
"dependencies": {
"fuse.js": "^6.6.2",
"leven": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@types/jest": "^29.5.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GWnbsp/logic-search.git"
},
"bugs": {
"url": "https://github.com/GWnbsp/logic-search/issues"
},
"homepage": "https://github.com/GWnbsp/logic-search#readme",
"engines": {
"node": ">=14.0.0"
}
}