-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1018 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
{
"name": "keyword-search",
"version": "0.1.2",
"description": "Determine whether a given query string contains keywords in a given item string, with a specified margin for spelling error based on the hamming distance.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hannesmcman/keyword-search.git"
},
"keywords": [
"search",
"keyword",
"hamming"
],
"author": "Johannes Carlsen <[email protected]> (https://hannesmcman.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hannesmcman/keyword-search/issues"
},
"homepage": "https://github.com/hannesmcman/keyword-search#readme",
"dependencies": {
"hamming": "^0.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.1.1"
}
}