diff --git a/Readme.md b/Readme.md index b19cb8e..0b74abb 100644 --- a/Readme.md +++ b/Readme.md @@ -1,7 +1,7 @@ format ====== -printf and sprintf for JavaScript +printf, sprintf, and vsprintf for JavaScript Installation @@ -9,6 +9,8 @@ Installation npm install format +The code works in browsers as well, you can copy these functions into your project +or otherwise include them with your other JavaScript. Usage ===== @@ -32,6 +34,6 @@ See `man 3 printf` or `man 1 printf` for details. License ======= -Copyright 2010 Sami Samhuri sami.samhuri@gmail.com +Copyright 2010 - 2011 Sami Samhuri sami@samhuri.net -MIT (see included [LICENSE](/samsonjs/format/blob/master/LICENSE)) +ISC (see included [LICENSE](/samsonjs/format/blob/master/LICENSE)) diff --git a/lib/index.js b/lib/index.js index a79688d..78e25f6 100644 --- a/lib/index.js +++ b/lib/index.js @@ -2,7 +2,7 @@ // format, printf-like string formatting for JavaScript // github.com/samsonjs/format // -// Copyright 2010 Sami Samhuri +// Copyright 2010 - 2011 Sami Samhuri // ISC license // diff --git a/package.json b/package.json index 8911cc7..87d832d 100644 --- a/package.json +++ b/package.json @@ -1,22 +1,22 @@ { "name" : "format" -, "description" : "printf and sprintf for JavaScript" -, "version" : "0.1.0" -, "homepage" : "http://samhuri.net/node/format" -, "author" : "Sami Samhuri " +, "description" : "printf, sprintf, and vsprintf for JavaScript" +, "version" : "0.1.1" +, "homepage" : "http://samhuri.net/proj/format" +, "author" : "Sami Samhuri " , "repository" : { "type" : "git" - , "url" : "http://github.com/samsonjs/format.git" + , "url" : "https://github.com/samsonjs/format.git" } , "bugs" : - { "mail" : "sami.samhuri+format@gmail.com" - , "web" : "http://github.com/samsonjs/format/issues" + { "mail" : "sami@samhuri.net" + , "web" : "https://github.com/samsonjs/format/issues" } , "directories" : { "lib" : "./lib" } , "main" : "./lib/index" -, "engines" : { "node" : ">=0.3.0" } +, "engines" : { "node" : "0.4.x" } , "licenses" : [ { "type" : "MIT" , "url" : "http://github.com/samsonjs/format/raw/master/LICENSE" } ] -} \ No newline at end of file +}