-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "string-mismatch",
"version": "3.0.2",
"description": "All mismatch between two strings",
"main": "index.js",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"docs": "typedoc --options ./typedoc.json",
"performance": "ts-node ./scripts/performance-test",
"pub": "npm run build && npm publish",
"start": "node ./example/mismatch",
"test": "jest",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wil92/string-mismatch.git"
},
"donate": "https://www.paypal.com/donate?hosted_button_id=66HG7ANLYHYZ4",
"keywords": [
"string",
"levenshtein",
"difference",
"mismatch",
"compare",
"match",
"similarity",
"string distance"
],
"author": {
"name": "wil92",
"email": "[email protected]",
"url": "https://github.com/wil92"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wil92/string-mismatch/issues"
},
"homepage": "https://github.com/wil92/string-mismatch#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/jest": "29.5.12",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typedoc": "0.25.13",
"typescript": "5.4.5",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
}
}