forked from NaturalNode/natural
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 1.17 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
{
"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.25",
"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.6",
"underscore": ">=1.3.1"
},
"devDependencies": {
"uubench": "0.0.x"
},
"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]"
}]
}