forked from alainrk/quick-match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "quick-match",
"version": "1.0.1",
"description": "Fast string matcher conceived for quick replies chat and multiple choice scenario.",
"main": "index.js",
"scripts": {
"benchmark": "node bench.js",
"lint:fix": "standard --fix",
"test:lint": "standard",
"test:unit": "NODE_ENV=test tap -J --no-check-coverage test/*.test.js",
"test": "npm run test:lint && npm run test:unit"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/alainrk/quick-match.git"
},
"keywords": [
"string",
"match",
"dice",
"coefficient",
"levenshtein",
"distance",
"fast",
"quickreply"
],
"author": "Alain Di Chiappari <alain.devcs@gmail.com> (https://github.com/alainrk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alainrk/quick-match/issues"
},
"homepage": "https://github.com/alainrk/quick-match#README.md",
"devDependencies": {
"ansi-regex": ">=5.0.1",
"benchmark": "^2.1.4",
"pre-commit": "^1.2.2",
"standard": "^16.0.1",
"tap": "^15.0.0"
},
"engines": {
"node": ">= 10.0.0"
},
"standard": {
"ignore": [
"schema-validator.js"
]
},
"runkitExampleFilename": "example.js",
"dependencies": {
"ajv": "^8.6.2",
"fast-dice-coefficient": "^1.0.3",
"fastest-levenshtein": "^1.0.12",
"multilingual-stemmer": "^1.0.2"
}
}