forked from GitbookIO/nuts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request GitbookIO#51 from GitbookIO/feature/atomfeed
Fix GitbookIO#44: Atom/RSS feed
- Loading branch information
Showing
6 changed files
with
101 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
{ | ||
"name": "nuts-serve", | ||
"version": "3.0.0-pre.6", | ||
"description": "Server to make GitHub releases (private) available to download with Squirrel support", | ||
"main": "./lib/index.js", | ||
"homepage": "https://github.com/GitbookIO/nuts", | ||
"license": "Apache-2.0", | ||
"main": "./lib/index.js", | ||
"dependencies": { | ||
"express": "^4.13.3", | ||
"lodash": "3.7.0", | ||
"q": "1.2.0", | ||
"body-parser": "1.12.3", | ||
"octocat": "0.10.2", | ||
"semver": "5.0.1", | ||
"request": "2.60.0", | ||
"basic-auth": "1.0.3", | ||
"express-useragent": "0.1.9", | ||
"lru-diskcache": "1.1.1", | ||
"stream-res": "1.0.1", | ||
"urljoin.js": "0.1.0", | ||
"analytics-node": "1.2.2", | ||
"uuid": "2.0.1", | ||
"github-webhook-handler": "0.5.0", | ||
"strip-bom": "2.0.0", | ||
"destroy": "1.0.3", | ||
"understudy": "4.1.0" | ||
}, | ||
"devDependencies": { | ||
"mocha": "1.18.2", | ||
"should": "7.0.4" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/GitbookIO/nuts/issues" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Samy Pesse", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repository": { | ||
"type" : "git", | ||
"url" : "https://github.com/GitbookIO/nuts.git" | ||
}, | ||
"scripts": { | ||
"start": "node bin/web.js", | ||
"test": "mocha --reporter list" | ||
"name": "nuts-serve", | ||
"version": "3.0.0-pre.6", | ||
"description": "Server to make GitHub releases (private) available to download with Squirrel support", | ||
"main": "./lib/index.js", | ||
"homepage": "https://github.com/GitbookIO/nuts", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"analytics-node": "1.2.2", | ||
"basic-auth": "1.0.3", | ||
"body-parser": "1.12.3", | ||
"destroy": "1.0.3", | ||
"express": "^4.13.3", | ||
"express-useragent": "0.1.9", | ||
"feed": "^0.3.0", | ||
"github-webhook-handler": "0.5.0", | ||
"lodash": "3.7.0", | ||
"lru-diskcache": "1.1.1", | ||
"octocat": "0.10.2", | ||
"q": "1.2.0", | ||
"request": "2.60.0", | ||
"semver": "5.0.1", | ||
"stream-res": "1.0.1", | ||
"strip-bom": "2.0.0", | ||
"understudy": "4.1.0", | ||
"urljoin.js": "0.1.0", | ||
"uuid": "2.0.1" | ||
}, | ||
"devDependencies": { | ||
"mocha": "1.18.2", | ||
"should": "7.0.4" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/GitbookIO/nuts/issues" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Samy Pesse", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/GitbookIO/nuts.git" | ||
}, | ||
"scripts": { | ||
"start": "node bin/web.js", | ||
"test": "mocha --reporter list" | ||
} | ||
} |