-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
48
49
50
51
52
53
54
55
56
57
{
"name": "fast-fuzzy",
"version": "1.12.0",
"description": "Fast and tiny fuzzy-search utility",
"main": "lib/fuzzy.js",
"types": "lib/fuzzy.d.ts",
"author": "Ethan Rutherford",
"license": "ISC",
"homepage": "https://github.com/EthanRutherford/fast-fuzzy#readme",
"browserslist": "> 1%, not ie > 0, not op_mini all",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/fuzzy.d.ts",
"import": "./lib/fuzzy.mjs",
"require": "./lib/fuzzy.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"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EthanRutherford/fast-fuzzy.git"
},
"bugs": {
"url": "https://github.com/EthanRutherford/fast-fuzzy/issues"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@rutherford/eslint-config": "^1.0.3",
"eslint": "^7.2.0",
"expect": "^27.3.1",
"mocha": "^8.1.1",
"rollup": "^2.16.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.3.0"
},
"dependencies": {
"graphemesplit": "^2.4.1"
}
}