-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
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
{
"name": "weighted-damerau-levenshtein",
"version": "0.2.1",
"description": "Weighted Damerau-Levenshtein and Levenshtein edit distance for Node.js with configurable operation costs.",
"main": "./index.js",
"type": "commonjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"default": "./index.js"
}
},
"files": [
"index.js",
"index.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint .",
"test": "node --test test/index.test.js",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-include=index.js --test-coverage-lines=100 --test-coverage-functions=100 --test-coverage-branches=100 test/index.test.js",
"verify": "npm run lint && npm test",
"ci": "npm run verify && npm run test:coverage",
"pack:check": "npm pack --dry-run",
"prepublishOnly": "npm run ci"
},
"keywords": [
"distance",
"levenshtein",
"damerau-levenshtein",
"weighted-damerau-levenshtein",
"edit-distance",
"string-distance",
"fuzzy-matching",
"typo-tolerance",
"string-similarity",
"weights",
"weighted",
"search"
],
"author": "Marek Suppa",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"globals": "^17.9.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/mrshu/node-weighted-damerau-levenshtein.git"
},
"bugs": {
"url": "https://github.com/mrshu/node-weighted-damerau-levenshtein/issues"
},
"homepage": "https://github.com/mrshu/node-weighted-damerau-levenshtein#readme",
"publishConfig": {
"access": "public",
"provenance": true
}
}