-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "ukkonen",
"version": "2.1.0",
"description": "Ukkonens approximate string matching algorithm for finding edit distance similar to Levenshtein",
"bugs": "https://github.com/sunesimonsen/ukkonen/issues",
"repository": {
"type": "git",
"url": "https://github.com/sunesimonsen/ukkonen"
},
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint . && prettier --check '**/*.{js,md,json}'",
"format": "prettier --write **/*.{md,js,json}",
"ci": "UNEXPECTED_CHECK_MAX_ITERATIONS=10000 mocha",
"preversion": "npm run lint && npm run test",
"version": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md",
"bench": "node bench.js"
},
"keywords": [
"Ukkonen",
"Hal",
"Berghel",
"Aproximate",
"string",
"match",
"ASM",
"EHD",
"Levenshtein"
],
"author": "Sune Simonsen <[email protected]>",
"license": "MIT",
"devDependencies": {
"leven": "3.1.0",
"chance-generators": "3.5.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-node": "11.1.0",
"mocha": "10.7.3",
"nanobench": "3.0.0",
"offline-github-changelog": "3.1.0",
"prettier": "3.3.3",
"unexpected": "13.2.1",
"unexpected-check": "3.1.0"
},
"engines": {
"node": ">=12"
}
}