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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
| {
| "name": "fastest-levenshtein",
| "version": "1.0.16",
| "description": "Fastest Levenshtein distance implementation in JS.",
| "main": "mod.js",
| "types": "mod.d.ts",
| "module": "./esm/mod.js",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/ka-weihe/fastest-levenshtein.git"
| },
| "keywords": [
| "levenshtein",
| "distance",
| "fast",
| "fastest",
| "edit",
| "string",
| "similarity",
| "algorithm",
| "match",
| "comparison",
| "fuzzy",
| "search",
| "string",
| "matching",
| "similar",
| "node",
| "difference"
| ],
| "author": "Kasper U. Weihe",
| "license": "MIT",
| "bugs": {
| "url": "https://github.com/ka-weihe/fastest-levenshtein/issues"
| },
| "homepage": "https://github.com/ka-weihe/fastest-levenshtein#README",
| "scripts": {
| "build": "tsc mod.ts --declaration",
| "build:esm": "tsc --declaration -p tsconfig.esm.json",
| "prepare": "npm run build && npm run build:esm",
| "bench": "npm run build && tsc bench.ts && node bench.js",
| "test": "npm run build && tsc test.ts && jest test.js",
| "test:coverage": "npm run build && jest --coverage",
| "test:coveralls": "npm run build && jest --coverage --coverageReporters=text-lcov | coveralls"
| },
| "devDependencies": {
| "@types/benchmark": "^1.0.33",
| "@types/jest": "^26.0.15",
| "@typescript-eslint/eslint-plugin": "^4.7.0",
| "@typescript-eslint/parser": "^4.7.0",
| "benchmark": "^2.1.4",
| "coveralls": "^3.1.0",
| "eslint": "^7.13.0",
| "eslint-config-node": "^4.1.0",
| "eslint-config-prettier": "^6.15.0",
| "eslint-plugin-import": "^2.22.1",
| "eslint-plugin-node": "^11.1.0",
| "eslint-plugin-prettier": "^3.1.4",
| "fast-levenshtein": "^2.0.6",
| "jest": "^26.6.3",
| "js-levenshtein": "^1.1.6",
| "leven": "^3.1.0",
| "levenshtein-edit-distance": "^2.0.5",
| "natural": "^2.1.5",
| "prettier": "^2.1.2",
| "talisman": "^1.1.3",
| "typescript": "^4.0.5"
| },
| "engines": {
| "node": ">= 4.9.1"
| }
| }
|
|