forked from NaturalNode/natural
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
59
60
61
62
63
64
{
"name": "natural",
"description": "General natural language (tokenizing, stemming (English, Russian, Spanish), classification, inflection, phonetics, tfidf, WordNet, jaro-winkler, Levenshtein distance, Dice's Coefficient) facilities for node.",
"version": "0.2.1",
"homepage": "https://github.com/NaturalNode/natural",
"repository": {
"type": "git",
"url": "git://github.com/NaturalNode/natural.git"
},
"engines": {
"node": ">=0.4.10"
},
"dependencies": {
"sylvester": ">= 0.0.12",
"apparatus": ">= 0.0.9",
"underscore": ">=1.3.1"
},
"devDependencies": {
"uubench": "0.0.x",
"jasmine-node": "~1.13.1"
},
"scripts": {
"test": "NODE_PATH=. node_modules/jasmine-node/bin/jasmine-node spec/"
},
"license": "MIT",
"author": "Chris Umbel <[email protected]>",
"keywords": [
"natural",
"language",
"porter",
"lancaster",
"stemmer",
"bayes",
"classifier",
"phonetic",
"metaphone",
"inflector",
"wordnet",
"tf-idf",
"logistic",
"regression",
"doublemetaphone",
"double",
"jaro-winkler",
"levenshtein",
"distance"
],
"main": "./lib/natural/index.js",
"maintainers": [
{
"name": "Chris Umbel",
"email": "[email protected]",
"web": "http://www.chrisumbel.com"
},
{
"name": "Rob Ellis",
"email": "[email protected]"
},
{
"name": "Ken Koch",
"email": "[email protected]"
}
]
}