-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 808 Bytes
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
{
"name": "text-summarization",
"version": "1.0.0",
"description": "Automatic Extractive Text Summarization using TF-IDF Frequency Analysis",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"AI",
"NLP",
"Text",
"Summarization"
],
"author": "Abdul Moiz",
"license": "MIT",
"dependencies": {
"article-parser": "^4.2.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"mammoth": "^1.4.14",
"natural": "^2.1.5",
"node-article-extractor": "^1.1.2",
"node-fetch": "^2.6.1",
"pdf-parse": "^1.1.1",
"stopword": "^1.0.3"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}