-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 759 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 759 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
{
"name": "lexrank.js",
"version": "3.0.0",
"description": "Lexrank - text relevance algorithm",
"repository": "https://github.com/gorango/lexrank.js",
"license": "MIT",
"keywords": [
"lexrank",
"pagerank",
"content",
"summarization",
"natural",
"language"
],
"author": {
"name": "Goran Spasojevic",
"email": "gospaso@gmail.com"
},
"scripts": {
"test": "node test.js",
"coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node test.js"
},
"type": "module",
"sideEffects": false,
"main": "src/lexrank.js",
"files": [
"src/lexrank.js",
"src/utils.js"
],
"devDependencies": {
"c8": "^7.11.3",
"tape": "^5.5.3"
}
}