forked from michaeldelorenzo/keyword-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.43 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
{
"author": "Michael De Lorenzo <michael@delorenzodesign.com> (http://mikedelorenzo.com)",
"name": "keyword-extractor",
"description": "Module for creating a keyword array from a string and excluding stop words.",
"keywords": ["text", "keyword", "search", "extract"],
"version": "0.0.13",
"licenses": [{
"type": "MIT",
"url": "https://github.com/michaeldelorenzo/keyword-extractor/raw/master/LICENSE"
}],
"contributors": [
"Marcos Sanz <marcossanzlatorre@gmail.com> (http://www.mistersanz.com)",
"d-oliveros (https://github.com/d-oliveros)",
"Abhijeet Sutar <ajduke@about.me> (https://github.com/ajduke)",
"janvde (https://github.com/janvde)",
"Alex Gustafsson (https://github.com/AlexGustafsson)"
],
"homepage": "https://github.com/michaeldelorenzo/keyword-extractor",
"repository": {
"type": "git",
"url": "git://github.com/michaeldelorenzo/keyword-extractor.git"
},
"bugs":{
"url": "https://github.com/michaeldelorenzo/keyword-extractor/issues"
},
"main": "./index",
"devDependencies": {
"mocha": "*",
"should": "*"
},
"dependencies":{
"underscore": "1.7.0",
"underscore.string": "2.3.3"
},
"engines": {
"node": "node >= 0.10.0"
}
}