Skip to content

Commit

Permalink
uhmuhm
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Rondini committed Feb 16, 2012
1 parent 0a4003f commit 0b13dbf
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 25 deletions.
58 changes: 34 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,36 @@
{
"name" : "tail-native",

"version" : "v0.1.0"

, "scripts" : {
"preinstall" : "node-waf configure && node-waf build"
, "preuninstall" : "rm -rf build/*"
}

, "main" : "build/default/tail.node"

// The following fields are optional:

, "description" : "read new line in real time, as 'tail - f'"
, "homepage" : "https://github.com/whitesheep/node-tail-native"
, "author" : {
"name" : "Marco Rondini"
, "email" : "white_sheep@ihteam.net"
, "url" : "http://www.marcorondini.eu/"
}
, "repository" : {
"type" : "git"
, "url" : "https://github.com/whitesheep/node-tail-native.git"
}
"name": "tail-native",
"version": "0.1.0",
"description": "Native (C++) Re-Implemetation of 'tail -f' command",
"keywords": [
"package",
"tail",
"tail -f",
"realtime line"
],
"maintainers": [
{
"name": "Marco Rondini",
"email": "white_sheep@ihteam.net",
"web": "http://www.marcorondini.eu"
}
],
"contributors": [],
"bugs": {
"mail": "white_sheep@ihteam.net"
},
"licenses": [
{
"type": "GPLv2",
"url": "http://www.gnu.org/licenses/gpl-2.0.html"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/whitesheep/node-tail-native.git"
}
],
"os": ["linux", "macos", "win"],
"cpu": ["x86", "ppc", "x86_64"]
}
2 changes: 1 addition & 1 deletion src/tail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* tail.cpp
*
*
* Created by Marco Rondini on 14/02/12.
* Node.js native module. Re-Implementation of 'tail -f' command.
*
*
*/
Expand Down

0 comments on commit 0b13dbf

Please sign in to comment.