forked from itemsapi/itemsjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
{
"name": "itemsjs",
"version": "1.0.36",
"description": "Created to perform fast search on small json dataset (up to 1000 elements).",
"main": "index.js",
"scripts": {
"test": "mocha tests/*",
"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",
"lodash": "lodash include=some,forEach,map,mapKeys,mapValues,every,includes,intersection,filter,keys,flatten,transform,orderBy -o lib/lodash.js -p"
},
"author": "Matt Rzepa",
"license": "Apache-2.0",
"dependencies": {
"lodash": "^4.17.4",
"lodash-cli": "^4.17.4",
"lunr": "^1.0.0"
},
"devDependencies": {
"babel-minify": "^0.2.0",
"browserify": "^14.3.0",
"expect": "^1.20.2",
"lodash-cli": "^4.17.4",
"should": "^11.2.1",
"sinon": "^2.1.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itemsapi/itemsjs.git"
},
"keywords": [
"full",
"text",
"search",
"faceted",
"search",
"javascript",
"search",
"engine",
"json"
],
"bugs": {
"url": "https://github.com/itemsapi/itemsjs/issues"
},
"homepage": "https://github.com/itemsapi/itemsjs#readme"
}