-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
45 lines (45 loc) · 983 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
{
"name": "@leeoniya/ufuzzy",
"version": "1.0.16",
"description": "A tiny, efficient fuzzy matcher that doesn't suck",
"main": "./dist/uFuzzy.cjs.js",
"module": "./dist/uFuzzy.esm.js",
"types": "./dist/uFuzzy.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leeoniya/uFuzzy.git"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"keywords": [
"micro",
"fast",
"fuzzy",
"match",
"search",
"filter",
"hint",
"autocomplete",
"typeahead",
"sort"
],
"author": "Leon Sorokin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leeoniya/uFuzzy/issues"
},
"homepage": "https://github.com/leeoniya/uFuzzy#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.27.3"
}
}