UNPKG

1.17 kBJSONView Raw
1{
2 "name": "leven",
3 "version": "4.0.0",
4 "description": "Measure the difference between two strings using the Levenshtein distance algorithm",
5 "license": "MIT",
6 "repository": "sindresorhus/leven",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
17 },
18 "scripts": {
19 "test": "xo && ava && tsd",
20 "bench": "matcha bench.js"
21 },
22 "files": [
23 "index.js",
24 "index.d.ts"
25 ],
26 "keywords": [
27 "leven",
28 "levenshtein",
29 "distance",
30 "algorithm",
31 "string",
32 "difference",
33 "diff",
34 "fast",
35 "fuzzy",
36 "similar",
37 "similarity",
38 "compare",
39 "comparison",
40 "edit",
41 "text",
42 "match",
43 "matching"
44 ],
45 "devDependencies": {
46 "ava": "^3.15.0",
47 "fast-levenshtein": "^3.0.0",
48 "ld": "^0.1.0",
49 "levdist": "^2.2.10",
50 "levenshtein": "^1.0.5",
51 "levenshtein-component": "^0.0.1",
52 "levenshtein-edit-distance": "^3.0.0",
53 "matcha": "^0.7.0",
54 "natural": "^5.0.4",
55 "talisman": "^1.1.4",
56 "tsd": "^0.17.0",
57 "xo": "^0.44.0"
58 }
59}