-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 KB
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
{
"name": "text-summarization",
"version": "1.0.3",
"description": "Automagically generate summaries from html or text.",
"repository": "transitive-bullshit/text-summarization",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"main": "index.js",
"bin": {
"summarize": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "ava -v && standard"
},
"dependencies": {
"capitalize": "^1.0.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^2.11.0",
"dotenv-safe": "^8.1.0",
"is-capitalized": "^1.0.0",
"lodash.isequal": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"natural": "^0.6.3",
"p-map": "^3.0.0",
"p-retry": "^4.2.0",
"request": "^2.88.0",
"request-image-size": "^2.1.0",
"request-promise-native": "^1.0.8",
"retext": "^5.0.0",
"retext-readability": "^4.1.2",
"retext-redundant-acronyms": "^1.2.1",
"retext-repeated-words": "^1.2.1",
"retext-simplify": "^4.1.1",
"sbd": "^1.0.16",
"stopwords": "^0.0.9",
"url-parse": "^1.2.0"
},
"devDependencies": {
"ava": "^2.4.0",
"nock": "^9.0.14",
"sinon": "^3.2.1",
"standard": "^14.3.1"
},
"ava": {
"failFast": true,
"snapshotDir": "./.snapshots"
}
}