forked from EthanRutherford/fast-fuzzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "fast-fuzzy",
"version": "1.9.1",
"description": "Fast and tiny fuzzy-search utility",
"main": "lib/fuzzy.cjs.js",
"module": "lib/fuzzy.esm.js",
"browser": "lib/fuzzy.umd.js",
"scripts": {
"compile": "rollup -c",
"prepublishOnly": "npm run compile",
"pretest": "npm run compile",
"test": "mocha test.js"
},
"keywords": [
"fast",
"fuzzy",
"search",
"damerau",
"levenshtein",
"unicode",
"partial",
"match"
],
"author": "Ethan Rutherford",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/EthanRutherford/fast-fuzzy.git"
},
"bugs": {
"url": "https://github.com/EthanRutherford/fast-fuzzy/issues"
},
"homepage": "https://github.com/EthanRutherford/fast-fuzzy#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"mocha": "^5.2.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3"
},
"dependencies": {
"graphemesplit": "^2.0.3"
}
}