-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.68 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
{
"name": "noflo-teaser",
"description": "NoFlo Components for summarizing text. Algorithm by Text Teaser",
"repo": "p0wl/noflo-teaser",
"version": "0.1.0",
"author": {
"name": "Paul Mölders",
"email": "paulmoelders@gmail.com"
},
"dependencies": {
"noflo": "0.3.x",
"noflo-strings": "git://github.com/p0wl/noflo-strings#concat",
"noflo-underscore": "git://github.com/p0wl/noflo-underscore.git#sortBy",
"underscore": "~1.5.2",
"noflo-objects": "~0.1.8",
"noflo-packets": "~0.1.2",
"noflo-flow": "~0.3.3",
"noflo-cache": "0.0.3",
"noflo-core": "~0.1.3",
"noflo-math": "0.0.4",
"noflo-diffbot": "0.0.4"
},
"devDependencies": {
"noflo-test": "0.0.6"
},
"noflo": {
"components": {
"AssertEqual": "./components/AssertEqual.coffee",
"Frequency": "./components/Frequency.coffee",
"RelevanceByPosition": "./components/RelevanceByPosition.coffee",
"ScoreByKeywords": "./components/ScoreByKeywords.coffee",
"ScoreByLength": "./components/ScoreByLength.coffee",
"ScoreStepWrapper": "./components/ScoreStepWrapper.coffee",
"StructureSentenceIp": "./components/StructureSentenceIp.coffee"
},
"graphs": {
"ExtractKeywords": "./graphs/ExtractKeywords.fbp",
"FilterBadwords": "./graphs/FilterBadwords.fbp",
"LoadBadwords": "./graphs/LoadBadwords.fbp",
"ScoreByTitle": "./graphs/ScoreByTitle.fbp",
"ScoreByPosition": "./graphs/ScoreByPosition.fbp",
"Teaser": "./graphs/Teaser.fbp"
}
}
}