-
Notifications
You must be signed in to change notification settings - Fork 860
/
package.json
147 lines (147 loc) · 4.04 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "natural",
"description": "General natural language (tokenizing, stemming (English, Russian, Spanish), part-of-speech tagging, sentiment analysis, classification, inflection, phonetics, tfidf, WordNet, jaro-winkler, Levenshtein distance, Dice's Coefficient) facilities for node.",
"version": "8.0.1",
"homepage": "https://github.com/NaturalNode/natural",
"repository": {
"type": "git",
"url": "git://github.com/NaturalNode/natural.git"
},
"engines": {
"node": ">=0.4.10"
},
"dependencies": {
"afinn-165": "^1.0.2",
"afinn-165-financialmarketnews": "^3.0.0",
"apparatus": "^0.0.10",
"dotenv": "^16.4.5",
"http-server": "^14.1.1",
"memjs": "^1.3.2",
"mongoose": "^8.2.0",
"pg": "^8.11.3",
"redis": "^4.6.13",
"safe-stable-stringify": "^2.2.0",
"stopwords-iso": "^1.1.0",
"sylvester": "^0.0.12",
"underscore": "^1.9.1",
"uuid": "^9.0.1",
"wordnet-db": "^3.1.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jasmine": "^5.1.4",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"browserfs": "^1.4.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"gulp": "^4.0.2",
"gulp-jasmine": "^4.0.0",
"gulp-jasmine-browser": "^4.1.0",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"lint": "^0.8.19",
"ncp": "^2.0.0",
"nyc": "^15.1.0",
"pegjs": "^0.10.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.3",
"rollup": "^4.18.0",
"sinon": "^1.12.2",
"source-map-support": "^0.5.21",
"standard": "^16.0.4",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^5.4.2",
"uubench": "^0.0.1",
"webpack": "^4.29.0",
"webpack-stream": "^5.2.1"
},
"standard": {
"ignore": [
"/lib/natural/brill_pos_tagger/lib/TF_Parser.js",
"/lib/natural/tokenizers/parser_sentence_tokenizer.js"
],
"env": {
"jasmine": true
}
},
"jscpd": {
"ignore": [
"lib/natural/brill_pos_tagger/lib/TF_Parser.js",
"lib/natural/tokenizers/parser_sentence_tokenizer.js"
]
},
"scripts": {
"benchmark": "node benchmarks",
"build": "npm run build:tests & npm run build:esm",
"build:esm": "rollup -c",
"build:tests": "tsc",
"clean": "rimraf *~ #* *classifier.json dist io_spec/tmp/*.json coverage",
"test_io": "jasmine --random=false io_spec/*_spec.js",
"test": "cross-env NODE_PATH=. jasmine --random=false dist/cjs/spec/*_spec.js",
"coverage": "nyc --no-clean npm run test && nyc --no-clean npm run test_io",
"test_browser": "cross-env NODE_PATH=. node ./node_modules/gulp/bin/gulp.js",
"lint": "eslint . --ext .ts"
},
"license": "MIT",
"author": "Chris Umbel <[email protected]>",
"keywords": [
"natural language processing",
"artifical intelligence",
"statistics",
"Porter stemmer",
"Lancaster stemmer",
"tokenizer",
"bigram",
"trigram",
"quadgram",
"ngram",
"stemmer",
"bayes",
"classifier",
"phonetic",
"metaphone",
"inflector",
"Wordnet",
"tf-idf",
"logistic regression",
"doublemetaphone",
"double",
"jaro-winkler distance",
"levenshtein distance",
"string distance",
"part-of-speech tagger",
"Eric Brill",
"Brill tagger",
"sentiment analysis",
"maximum entropy modelling"
],
"main": "./lib/natural/index.js",
"types": "./lib/natural/index.d.ts",
"maintainers": [
{
"name": "Chris Umbel",
"email": "[email protected]",
"web": "http://www.chrisumbel.com"
},
{
"name": "Rob Ellis",
"email": "[email protected]"
},
{
"name": "Ken Koch",
"email": "[email protected]"
},
{
"name": "Hugo W.L. ter Doest",
"email": "[email protected]"
}
]
}