-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 801 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 801 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": "node-summary",
"version": "1.2.0",
"type": "module",
"description": "Summarizes text using a naive summarization algorithm",
"main": "./lib/summary.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require should --reporter spec"
},
"repository": "git://github.com/jbrooksuk/node-summary.git",
"keywords": [
"summary",
"text",
"summarization",
"algorithm"
],
"dependencies": {
"axios": "^1.7.7",
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"cheerio": "^0.22.0",
"html-to-text": "^5.1.1",
"lodash": "^4.17.21",
"sbd": "^1.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.2.1"
},
"author": "James Brooks <jbrooksuk@me.com>",
"readmeFilename": "README.md"
}