-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "group-similar",
"version": "1.0.4",
"description": "Group similar items together.",
"keywords": [
"algorithm",
"cluster",
"compare",
"comparison",
"disjoint-set",
"edit-distance",
"fuzzy",
"group",
"group-similar",
"grouping",
"levenshtein",
"match",
"matching",
"merge-find",
"similar",
"similarity",
"string",
"union-find"
],
"homepage": "https://github.com/peterthehan/group-similar",
"bugs": {
"url": "https://github.com/peterthehan/group-similar/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/peterthehan/group-similar"
},
"funding": [
{
"type": "GitHub",
"url": "https://github.com/sponsors/peterthehan"
},
{
"type": "Patreon",
"url": "https://www.patreon.com/peterthehan"
},
{
"type": "PayPal",
"url": "https://paypal.me/peterthehan"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/peterthehan"
},
{
"type": "Venmo",
"url": "https://venmo.com/peterthehan"
}
],
"license": "MIT",
"author": {
"name": "Peter Han",
"email": "[email protected]",
"url": "https://peterhan.dev"
},
"main": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"benchmark": "npx tsc ./test/benchmark.ts && node ./test/benchmark.js",
"build": "rm -rf ./dist && npx tsc",
"lint": "npx eslint --fix .",
"prepublishOnly": "npm run lint && npm run build && npm test",
"test": "npx jest --coverage --coverageDirectory='coverage'"
},
"dependencies": {
"mnemonist": "^0.39.5"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"benchmark": "^2.1.4",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"fastest-levenshtein": "^1.0.16",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"set-clustering": "^1.1.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18"
}
}