-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "@ecromaneli/search-engine",
"version": "2.1.2",
"description": "A powerful object search engine with advanced query syntax",
"main": "dist/npm/index.min.js",
"files": [ "dist/npm/index.min.*", "dist/npm/index.d.*", "LICENSE" ],
"exports": {
".": "./dist/npm/index.min.js"
},
"scripts": {
"build": "./build.sh",
"test": "jest",
"bench": "node ./test/index.bench.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ECRomaneli/Search-Engine.git"
},
"keywords": [
"search",
"filter",
"query",
"search engine",
"search-engine",
"engine",
"deep search",
"deep",
"objects"
],
"author": "ECRomaneli",
"license": "MIT",
"bugs": {
"url": "https://github.com/ECRomaneli/Search-Engine/issues"
},
"homepage": "https://github.com/ECRomaneli/Search-Engine#readme",
"devDependencies": {
"jest": "^29.7.0",
"typescript": "^5.8.3",
"uglify-js": "^3.19.3"
}
}