forked from mattyork/fuzzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 982 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
44
45
46
{
"name": "fuzzy",
"description": "small, standalone fuzzy search / fuzzy filter. browser or node",
"version": "0.1.3",
"homepage": "https://github.com/mattyork/fuzzy",
"author": {
"name": "Matt York",
"email": "[email protected]",
"url": "mattyork.org"
},
"repository": {
"type": "git",
"url": "git://github.com/mattyork/fuzzy.git"
},
"bugs": {
"url": "https://github.com/mattyork/fuzzy/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mattyork/fuzzy/blob/master/LICENSE-MIT"
}
],
"main": "lib/fuzzy",
"typings": "lib/fuzzy",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"devDependencies": {
"mocha": ">= 1.3.0",
"chai": ">= 1.1.1",
"underscore": ">= 1.3.3",
"uglify-js": ">= 1.3.2",
"jshint": ">= 0.7.1"
},
"keywords": [
"fuzzy",
"search",
"filter",
"sublime",
"sublime text"
]
}