-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "rouge",
"version": "2.0.0",
"description": "Recall-Oriented Understudy for Gisting Evaluation (ROUGE) Evaluation Functions",
"main": "dist/rouge.cjs.js",
"module": "dist/rouge.esm.js",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "rollup -c",
"test": "mocha --ui tdd --require @babel/register test/tests.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kenlimmj/rouge.git"
},
"keywords": [
"ROUGE",
"Auto-summarization",
"NLP"
],
"author": "Lim Mingje, Kenneth <me@kenlimmj.com> (https://kenlimmj.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenlimmj/rouge/issues"
},
"homepage": "https://github.com/kenlimmj/rouge",
"overrides": {
"serialize-javascript": "^7.0.3",
"diff": "^8.0.3"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-flow-strip-types": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/register": "^7.24.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-terser": "^1.0.0",
"chai": "^4.3.0",
"mocha": "^11.7.5",
"rollup": "^3.29.0"
}
}