Skip to content

Commit

Permalink
Updates to package.json, changelog and readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlangberg committed May 16, 2015
1 parent 5bc334a commit 8a3a280
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 4.0.0 (2015-15-05)
# 4.0.0 (2015-16-05)

## Features

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ npm install goldwasher
- ```filterTexts``` - stop texts that should be excluded.
- ```filterKeywords``` - stop words that should be excluded as keywords.
- ```filterLocale``` - stop words from external JSON file (see the folder stop_words).
- ```format``` - output format (```json```, ```xml```, ```atom``` or ```rss```).
- ```output``` - output format (```json```, ```xml```, ```atom``` or ```rss```).

## Example
```javascript
Expand Down
18 changes: 17 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,21 @@
"bugs": {
"url": "https://github.com/alexlangberg/node-goldwasher/issues"
},
"homepage": "https://github.com/alexlangberg/node-goldwasher"
"homepage": "https://github.com/alexlangberg/node-goldwasher",
"goldwasher": {
"options": {
"url": "string",
"selector": "string",
"search": "string[]",
"output": ["json", "xml", "atom", "rss"],
"limit": "integer",
"filterKeywords": "string[]",
"filterTexts": "string[]",
"filterLocale": ["en"]
},
"defaults": {
"selector": "h1, h2, h3, h4, h5, h6, p",
"output": "json"
}
}
}

0 comments on commit 8a3a280

Please sign in to comment.