This repository has been archived by the owner on Dec 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#5 fix issue with buffertools.indexOf
- Loading branch information
1 parent
5ca818d
commit aaf48ce
Showing
4 changed files
with
28 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v0.12.0 |
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,3 +1,3 @@ | ||
#!/usr/bin/env node | ||
require('coffee-script'); | ||
require('coffee-script/register'); | ||
module.exports = require('./src/grabber.coffee'); |
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,27 +1,26 @@ | ||
{ | ||
"name": "nzb-grabber-js", | ||
"version": "0.1.2", | ||
"keywords": [ "nzb", "usenet", "grabber", "leecher", "download", "nntp", "yenc" ], | ||
"author": "Radek <[email protected]>", | ||
"dependencies": { | ||
"coffee-script": "1.6.2", | ||
"async": "~0.2.9", | ||
"buffer-crc32": "~0.2.1", | ||
"buffertools": "1.1.1", | ||
"xml2js": "~0.2.7", | ||
"node-logging": "0.1.6", | ||
"watchr": "2.4.3" | ||
}, | ||
"devDependencies": { | ||
"mocha": "1.8.1" | ||
}, | ||
"scripts": { | ||
"test": "./node_modules/.bin/mocha --compilers coffee:coffee-script --reporter spec --ui exports --timeout 5000 --slow 2000 --bail" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/radekstepan/nzb-grabber-js.git" | ||
}, | ||
"readmeFilename": "README.md", | ||
"main": "./index.js" | ||
"name": "nzb-grabber-js", | ||
"version": "0.1.3", | ||
"keywords": [ "nzb", "usenet", "grabber", "leecher", "download", "nntp", "yenc" ], | ||
"author": "Radek <[email protected]>", | ||
"dependencies": { | ||
"coffee-script": "~1.9.1", | ||
"async": "~0.9.0", | ||
"buffer-crc32": "~0.2.5", | ||
"buffertools": "~2.1.2", | ||
"xml2js": "~0.4.5", | ||
"node-logging": "0.1.6", | ||
"watchr": "~2.4.13" | ||
}, | ||
"devDependencies": { | ||
"mocha": "~2.1.0" | ||
}, | ||
"scripts": { | ||
"test": "./node_modules/.bin/mocha --compilers coffee:coffee-script/register --reporter spec --ui exports --timeout 5000 --slow 2000 --bail" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/radekstepan/nzb-grabber-js.git" | ||
}, | ||
"main": "./index.js" | ||
} |
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