forked from NaturalNode/natural
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·31 lines (31 loc) · 1.07 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
{
"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.1.21",
"homepage": "https://github.com/NaturalNode/natural",
"engines": {
"node": ">=0.4.10"
},
"dependencies": {
"sylvester": ">= 0.0.12",
"apparatus": ">= 0.0.6",
"underscore": ">=1.3.1"
},
"devDependencies": {
"uubench": "0.0.x"
},
"author": "Chris Umbel <chris@chrisumbel.com>",
"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": "chris@chrisumbel.com",
"web": "http://www.chrisumbel.com"
}, {
"name": "Rob Ellis",
"email": "rob@silentrob.me"
}]
}