-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (24 loc) · 741 Bytes
/
package.json
File metadata and controls
33 lines (24 loc) · 741 Bytes
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
{
"name" : "fuzzysort",
"version" : "3.1.0",
"author" : "farzher",
"license" : "MIT",
"description" : "Fast SublimeText-like fuzzy search for JavaScript",
"keywords": ["fuzzy search", "fuzzy", "search", "filter", "javascript", "node", "fast", "sublime"],
"repository": {
"type" : "git",
"url" : "https://github.com/farzher/fuzzysort.git"
},
"main": "fuzzysort.js",
"scripts": {
"test" : "node test/test.js",
"test-min" : "node test/test.js min",
"minify" : "uglifyjs fuzzysort.js -o fuzzysort.min.js -m -c --mangle-props keep_quoted --comments /farzher/"
},
"files": [
"fuzzysort.js",
"fuzzysort.min.js",
"index.d.ts"
],
"types": "index.d.ts"
}