-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 909 Bytes
/
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
{
"name": "leven-match",
"version": "2.0.3",
"description": "Return all word matches between two arrays within given Levenshtein distance",
"main": "./dist/leven-match.cjs.js",
"module": "./dist/leven-match.esm.mjs",
"browser": "./dist/leven-match.umd.js",
"scripts": {
"build": "rollup --config",
"test": "standard './src/*.js' && npm run build && npx ava ./test/test.cjs.js && npx ava ./test/test.esm.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eklem/leven-match.git"
},
"keywords": [
"search",
"fuzzy",
"match",
"levenshtein",
"distance"
],
"dependencies": {
"leven": "^4.0.0"
},
"devDependencies": {
"batr": "^2.1.10"
},
"author": "Espen Klem",
"license": "MIT",
"bugs": {
"url": "https://github.com/eklem/leven-match/issues"
},
"homepage": "https://github.com/eklem/leven-match#readme"
}