forked from NaturalNode/natural
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"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.28",
"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",
"jasmine-node": "~1.13.1"
},
"scripts": {
"test": "NODE_PATH=. node_modules/jasmine-node/bin/jasmine-node spec/"
},
"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"
},
{
"name": "Ken Koch",
"email": "kkoch986@gmail.com"
}
]
}