-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "liblevenshtein",
"version": "2.0.4",
"description": "Various utilities regarding Levenshtein transducers.",
"keywords": [
"javascript",
"coffeescript",
"levenshtein",
"distance",
"metric",
"spelling correction",
"fuzzy search",
"approximate string matching",
"automata",
"transducer",
"information retrieval"
],
"homepage": "https://github.com/dylon/liblevenshtein-coffeescript",
"bugs": "https://github.com/dylon/liblevenshtein-coffeescript/issues",
"license": "MIT",
"author": "Dylon Edwards",
"contributors": [
{
"name": "Dylon Edwards",
"email": "[email protected]"
}
],
"main": "./lib/liblevenshtein/index",
"directories": {
"lib": "./lib/liblevenshtein"
},
"repository": {
"type": "git",
"url": "https://github.com/dylon/liblevenshtein-coffeescript.git"
},
"devDependencies": {
"nodeunit": "~0.8.6",
"coffee-script": "~1.7.1",
"wrench": "~1.5.8",
"docco": "~0.6.3",
"seed-random": "~2.2.0"
},
"engines": {
"node": "~0.10.26"
},
"scripts": {
"test": "node ./node_modules/coffee-script/bin/cake test"
}
}