package.json
 1  {
 2    "name": "fast-levenshtein",
 3    "version": "2.0.6",
 4    "description": "Efficient implementation of Levenshtein algorithm  with locale-specific collator support.",
 5    "main": "levenshtein.js",
 6    "files": [
 7      "levenshtein.js"
 8    ],
 9    "scripts": {
10      "build": "grunt build",
11      "prepublish": "npm run build",
12      "benchmark": "grunt benchmark",
13      "test": "mocha"
14    },
15    "devDependencies": {
16      "chai": "~1.5.0",
17      "grunt": "~0.4.1",
18      "grunt-benchmark": "~0.2.0",
19      "grunt-cli": "^1.2.0",
20      "grunt-contrib-jshint": "~0.4.3",
21      "grunt-contrib-uglify": "~0.2.0",
22      "grunt-mocha-test": "~0.2.2",
23      "grunt-npm-install": "~0.1.0",
24      "load-grunt-tasks": "~0.6.0",
25      "lodash": "^4.0.1",
26      "mocha": "~1.9.0"
27    },
28    "repository": {
29      "type": "git",
30      "url": "https://github.com/hiddentao/fast-levenshtein.git"
31    },
32    "keywords": [
33      "levenshtein",
34      "distance",
35      "string"
36    ],
37    "author": "Ramesh Nair <ram@hiddentao.com> (http://www.hiddentao.com/)",
38    "license": "MIT"
39  }