forked from itemsapi/itemsjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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
{
"name": "itemsjs",
"version": "2.1.20",
"description": "Created to perform fast search on small json dataset (up to 1000 elements).",
"main": "lib/index.js",
"scripts": {
"test": "mocha tests/*",
"lint": "eslint \"**/*.js\" --ext js",
"lint:fix": "eslint \"**/*.js\" --ext js --fix",
"browserify": "browserify index.js -v -s itemsjs -o dist/itemsjs.js",
"minify": "minify dist/itemsjs.js -o dist/itemsjs.min.js",
"dist": "npm run browserify && npm run minify",
"prepublishOnly": "npm run build",
"build:cjs": "babel src -d lib",
"build": "npm run build:cjs && npm run dist"
},
"author": "Mateusz Rzepa",
"license": "Apache-2.0",
"dependencies": {
"boolean-parser": "^0.0.2",
"fastbitset": "^0.4.0",
"lodash": "^4.17.21",
"lunr": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.0.0",
"babel-minify": "^0.2.0",
"babelify": "^9.0.0",
"browserify": "^14.3.0",
"eslint": "^7.32.0",
"expect": "^1.20.2",
"mocha": "^9.1.3"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"directories": {
"test": "tests"
},
"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"
}