-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 862 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
{
"author": "Tal Einat <[email protected]>",
"name": "levenshtein-search",
"description": "A Javascript library for fuzzy substring searches.",
"keywords": [
"Levenshtein Distance",
"edit distance",
"Levenshtein",
"fuzzy",
"search"
],
"main": "index.js",
"dependencies": {},
"devDependencies": {
"jest": "^23.6.0",
"lodash": "^4.17.15",
"standard": "^14.3.4"
},
"repository": {
"type": "git",
"url": "https://github.com/taleinat/levenshtein-search.git"
},
"bugs": {
"url": "https://github.com/taleinat/levenshtein-search/issues"
},
"homepage": "https://github.com/taleinat/levenshtein-search",
"license": "MIT",
"scripts": {
"check-only": "! grep 'test.only' test.js -n",
"lint": "standard",
"test": "npm run lint && npm run check-only && jest"
},
"version": "0.1.2"
}