-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.44 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
57
58
{
"name": "wink-distance",
"version": "2.0.2",
"description": "Distance/Similarity functions for Bag of Words, Strings, Numbers, Dates and Vectors.",
"keywords": [
"Distance",
"Similarity",
"NLP",
"Bag of Words",
"Strings",
"Vectors",
"Chebyshev",
"Cosine",
"Hamming",
"Jaccard",
"Jaro",
"Manhattan",
"Soundex",
"Tversky",
"Taxicab",
"wink",
"winkJS"
],
"main": "src/wink-distance.js",
"scripts": {
"pretest": "npm run lint && npm run docs",
"test": "nyc --reporter=html --reporter=text mocha ./test/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"sourcedocs": "docker -i src -o ./sourcedocs --sidebar yes",
"docs": "jsdoc src/*.js -c .jsdoc.json",
"lint": "eslint ./src/*.js ./test/*.js ./runkit/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-distance.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkjs/wink-distance/issues"
},
"homepage": "http://winkjs.org/",
"devDependencies": {
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"docdash": "github:winkjs/docdash",
"docker": "^1.0.0",
"eslint": "^8.31.0",
"jsdoc": "^3.5.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"runkitExampleFilename": "./runkit/example.js",
"dependencies": {
"wink-helpers": "^2.0.0",
"wink-jaro-distance": "^2.0.0"
}
}