-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
43 lines (43 loc) · 986 Bytes
/
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
{
"name": "sifter",
"keywords": [
"search",
"filter",
"sift",
"data",
"results",
"match",
"sort",
"autocomplete"
],
"description": "A library for textually searching arrays and hashes of objects by property (or multiple properties). Designed specifically for autocomplete.",
"version": "0.6.0",
"license": "Apache-2.0",
"author": "Brian Reavis <[email protected]>",
"main": "./sifter.js",
"repository": {
"type": "git",
"url": "git://github.com/brianreavis/sifter.js.git"
},
"scripts": {
"test": "mocha -R list"
},
"bin": {
"sifter": "./bin/sifter.js"
},
"dependencies": {
"optimist": "^0.6.1",
"cardinal": "^1.0.0",
"async": "^2.6.0",
"humanize": "^0.0.9",
"csv-parse": "^4.6.5"
},
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-istanbul": "^0.3.0",
"mocha-lcov-reporter": "^1.3.0",
"uglify-js": "^3.2.0"
}
}