forked from caliphdev/text-summarisation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 994 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
33
34
35
36
37
38
{
"name": "text-summarisation",
"author": "Naimur Rahman Sourov <naimur.rahman103@gmail.com>",
"description": "Summarize text according to specific sentence and translate tp any language",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/naimur103/text-summarize/"
},
"bugs": {
"url": "https://bitbucket.org/naimur103/text-summarize/issues"
},
"homepage": "https://bitbucket.org/naimur103/text-summarize#readme",
"keywords": [
"summarize",
"summarize-text",
"translate",
"node",
"javascript"
],
"scripts": {
"start": "nodemon index.js",
"test" : "mocha --timeout 0"
},
"dependencies": {
"@vitalets/google-translate-api": "^7.0.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.2",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.0.2"
}
}