forked from jbrooksuk/node-summary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 701 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 701 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
{
"name": "node-summary",
"version": "1.0.1",
"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": {
"lodash": "^4.17.4",
"sbd": "^1.0.16"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"mocha": "^3.2.0",
"should": "^11.2.1"
},
"author": "James Brooks <jbrooksuk@me.com>",
"readmeFilename": "README.md"
}