-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "nlp-toolkit",
"author": "Alexander Behrens <[email protected]>",
"description": "This module covers some basic nlp principles and implementations. Every implementation in this module is written as stream to only hold that data in memory that is currently processed at any step.",
"url": "https://github.com/Amberlamps/nlp-toolkit",
"repository": {
"type": "git",
"url": "https://github.com/Amberlamps/nlp-toolkit.git"
},
"bugs": {
"url": "https://github.com/Amberlamps/nlp-toolkit/issues"
},
"main": "index.js",
"dependencies": {
"bayes_fixed": "0.0.6",
"bluebird": "^3.3.4",
"debug": "^2.2.0",
"event-stream": "^3.3.2",
"lodash": "^4.11.1",
"mathjs": "^3.1.4",
"snowball-stemmer.jsx": "^0.2.3",
"through2": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"version": "0.2.6",
"keywords": [
"nlp",
"porter",
"stemmer",
"tokenize",
"tokenizer",
"stopwords",
"tfidf",
"idf",
"frequency",
"stream",
"frequency distribution",
"cross validation",
"term frequency"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"licence": "MIT"
}