You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
821 B
36 lines
821 B
{
|
|
"name": "string-similarity",
|
|
"version": "1.2.0",
|
|
"description": "Finds degree of similarity between strings, based on Dice's Coefficient, which is mostly better than Levenshtein distance.",
|
|
"main": "compare-strings.js",
|
|
"scripts": {
|
|
"test": "gulp test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/aceakash/string-similarity.git"
|
|
},
|
|
"keywords": [
|
|
"strings",
|
|
"similar",
|
|
"difference",
|
|
"similarity",
|
|
"compare",
|
|
"comparison",
|
|
"degree",
|
|
"match",
|
|
"matching",
|
|
"dice",
|
|
"levenshtein"
|
|
],
|
|
"author": "Akash Kurdekar <npm@kurdekar.com> (http://untilfalse.com/)",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"gulp": "^3.9.1",
|
|
"gulp-jasmine": "^2.3.0",
|
|
"gulp-watch": "^4.3.6"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.13.1"
|
|
}
|
|
}
|
|
|