-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
57 lines (57 loc) · 1.45 KB
/
package.json
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
50
51
52
53
54
55
56
57
{
"name": "rouge",
"version": "2.0.0",
"description": "Recall-Oriented Understudy for Gisting Evaluation (ROUGE) Evaluation Functions",
"main": "dist/es5/rouge.js",
"jsnext:main": "dist/es6/rouge.js",
"scripts": {
"test": "babel-node ./node_modules/istanbul/lib/cli.js cover --report html _mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kenlimmj/rouge.git"
},
"keywords": [
"ROUGE",
"Auto-summarization",
"NLP"
],
"author": "Lim Mingje, Kenneth <[email protected]> (https://kenlimmj.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenlimmj/rouge/issues"
},
"homepage": "https://github.com/kenlimmj/rouge",
"devDependencies": {
"babel-plugin-transform-flow-strip-types": "^6.4.0",
"babel-preset-es2015-rollup": "^1.1.1",
"chai": "^3.4.1",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-concat": "^2.6.0",
"gulp-foreach": "^0.1.0",
"gulp-plumber": "^1.0.1",
"gulp-rollup": "^1.7.0",
"gulp-sourcemaps": "^1.6.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"mocha-better-spec-reporter": "^3.0.1",
"rollup-plugin-babel": "^2.3.9",
"rollup-plugin-uglify": "^0.1.0",
"run-sequence": "^1.1.5"
},
"dependencies": {},
"directories": {
"lib": "lib",
"test": "test"
},
"babel": {
"presets": [
"es2015-rollup"
],
"plugins": [
"transform-flow-strip-types"
]
}
}