-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "itemsjs",
"version": "2.1.25",
"description": "Created to perform fast search on small json dataset (up to 1000 elements).",
"type": "module",
"scripts": {
"test": "mocha tests/*",
"lint": "eslint \"**/*.js\" --ext js",
"lint:fix": "eslint \"**/*.js\" --ext js --fix",
"prepublishOnly": "npm run build",
"build": "microbundle",
"dev": "microbundle watch"
},
"source": "src/index.js",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"files": [
"./dist/*"
],
"author": "Mateusz Rzepa",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"boolean-parser": "^0.0.2",
"fastbitset": "^0.4.1",
"lodash-es": "^4.17.21",
"lunr": "^1.0.0",
"eslint": "^8.52.0",
"microbundle": "^0.15.1",
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itemsapi/itemsjs.git"
},
"keywords": [
"full",
"text",
"fulltext",
"search",
"faceted search",
"javascript",
"search engine"
],
"bugs": {
"url": "https://github.com/itemsapi/itemsjs/issues"
},
"homepage": "https://github.com/itemsapi/itemsjs#readme"
}