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.
Allow channel updates across releases.
- Loading branch information
Showing
5 changed files
with
336 additions
and
74 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,48 @@ | ||
{ | ||
"name": "nuts-serve", | ||
"version": "2.6.2", | ||
"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", | ||
"octonode": "0.7.1", | ||
"semver": "5.0.1", | ||
"request": "2.60.0", | ||
"basic-auth": "1.0.3", | ||
"express-useragent": "0.1.9", | ||
"stores": "0.0.2", | ||
"analytics-node": "1.2.2", | ||
"uuid": "2.0.1", | ||
"github-webhook-handler": "0.5.0", | ||
"strip-bom": "2.0.0", | ||
"destroy": "1.0.3" | ||
}, | ||
"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": "2.6.2", | ||
"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", | ||
"github-webhook-handler": "0.5.0", | ||
"lodash": "3.7.0", | ||
"octonode": "0.7.1", | ||
"q": "1.2.0", | ||
"request": "2.60.0", | ||
"semver": "5.0.1", | ||
"stores": "0.0.2", | ||
"strip-bom": "2.0.0", | ||
"uuid": "2.0.1" | ||
}, | ||
"devDependencies": { | ||
"mocha": "1.18.2", | ||
"mockery": "^1.4.0", | ||
"rewire": "^2.5.1", | ||
"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" | ||
} | ||
} |
Oops, something went wrong.