{"_id":"notes","_rev":"22-0b8e6ab218eb379303ce6fc29b9af950","name":"notes","description":"a node.js version of Rails' \"rake notes\" functionality","dist-tags":{"latest":"0.0.4"},"versions":{"0.0.1":{"author":{"name":"Stephen Blankenship"},"name":"notes","description":"a node.js version of Rails' \"rake notes\" functionality","version":"0.0.1","repository":{"type":"git","url":"git://github.com/stephenb/node-notes.git"},"main":"./lib/notes","engines":{"node":">= v0.4.7"},"dependencies":{},"devDependencies":{},"_id":"notes@0.0.1","_engineSupported":true,"_npmVersion":"1.0.6","_nodeVersion":"v0.4.7","_defaultsLoaded":true,"dist":{"shasum":"52f85ef5eb2ed517ca831746e17a7a15d3dd2f54","tarball":"https://registry.npmjs.org/notes/-/notes-0.0.1.tgz","integrity":"sha512-jeSWyr/i86VZUPdfEo/CYwfeghowSPVIOa09SVU2E197DVA68PgB0mSBYM9iP0GgIM0vLd6RAReyUucPuAy4Uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAvYpjO/CjWshDu3o4kp1jIclZ0iM9VH0dbMfJtio3+wIhAJbnuFpeixAS3ecnwYgcq+vA27munGmbgzrPzOUaiz9Z"}]},"scripts":{},"directories":{}},"0.0.2":{"author":{"name":"Stephen Blankenship"},"name":"notes","description":"a node.js version of Rails' \"rake notes\" functionality","version":"0.0.2","repository":{"type":"git","url":"git://github.com/stephenb/node-notes.git"},"main":"./lib/notes","engines":{"node":">= v0.4.7"},"contributors":[{"name":"Veselin Todorov","email":"hi@vesln.com"}],"dependencies":{"colors":"*"},"devDependencies":{"coffee-script":">= 1.1.1"},"bin":{"notes":"./bin/notes"},"keywords":["notes","annotate","todo","fixme"],"preferGlobal":"true","_npmUser":{"name":"stephenb","email":"stephenrb@gmail.com"},"_id":"notes@0.0.2","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"f328a844b078541aca559587e862e8dacc9dec0f","tarball":"https://registry.npmjs.org/notes/-/notes-0.0.2.tgz","integrity":"sha512-SIeFelqNdU/ZEarWw7tg04yD4wHehJtF/FJNtTXPj8v5TZSVNH/w24w+1BSD0ZwbW4fefQ3v1K5tqtg3UaqiDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDm/giGyZ8IzdhFoJNddf9t5sl9kJ2OS8T1LB4SRV/++QIgRWcrqMVf1LRaNmc31QHoQxz/ffrVw72oIKjVwomEiKE="}]},"readme":"node-notes is a node.js version of Rails' \"rake notes\" functionality. It allows you \nto put comments in your code and then have them annotated across your whole project.\n\nTo install:\n\n    npm install notes\n\nFor example, if a file contained these lines somewhere in it:\n\n    code...\n    # NOTE: This line should get annoated by Notes.\n    # OPTIMIZE Make things faster!\n    \n    more code...\n    # TODO: Annotate your tasks.\n    \n    yet more code...\n    # FIXME: Keep up with things to fix.\n\nThose comments would be annotated as:\n\n    * /path/to/my/file\n    Line 8:    ✐ NOTE This line should get annoated by Notes.\n    Line 9:   ↘ OPTIMIZE Make things faster!\n    Line 10:   ✓ TODO Annotate your tasks.\n    Line 11:   ☂ FIXME Keep up with things to fix.\n\nAnd this would collect all of the notes across your project. \n\nHere's how you could use this in a Cakefile task (this is CoffeeScript).\n\n    Notes = require 'notes'\n\n    task 'notes', 'Print out notes from project', ->\n      notes = new Notes(__dirname)\n      notes.annotate()\n\nAs you can see, the usage is very simple. You just pass in a root directory path when \ncreating a notes object, then call annotate(). Notes has a handful of other options \nyou can customize and fine-tune for your needs that you can see in the code.\n\n","maintainers":[{"name":"stephenb","email":"stephenrb@gmail.com"}],"directories":{}},"0.0.3":{"author":{"name":"Stephen Blankenship"},"name":"notes","description":"a node.js version of Rails' \"rake notes\" functionality","version":"0.0.3","repository":{"type":"git","url":"git://github.com/stephenb/node-notes.git"},"main":"./lib/notes","engines":{"node":">= v0.4.7"},"contributors":[{"name":"Veselin Todorov","email":"hi@vesln.com"}],"dependencies":{"colors":"*"},"devDependencies":{"coffee-script":">= 1.1.1"},"bin":{"notes":"./bin/notes"},"keywords":["notes","annotate","todo","fixme"],"preferGlobal":"true","_npmUser":{"name":"stephenb","email":"stephenrb@gmail.com"},"_id":"notes@0.0.3","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.1","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"bcfe61120ae8055dbbe885f282133c48777eb461","tarball":"https://registry.npmjs.org/notes/-/notes-0.0.3.tgz","integrity":"sha512-KonADLHr7dTXPe+LYxfTuYcYkLkyE/H5UJi8LaJ83Pmfo4O9II1M72MjryYMBesiempAKGolnkPhzRfZHsB1CA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNiFr8iyQEryzP25Pyjyl5AfImaU13JyJ5hur3Zs/chQIgWP17EL4izJTf8/4GriebXv7SCJ5DN3kFc7CltMfFDi4="}]},"readme":"node-notes is a node.js version of Rails' \"rake notes\" functionality. It allows you \nto put comments in your code and then have them annotated across your whole project.\n\n### Installation:\n\n\n    npm install notes -g\n\n### Usage:\n\n    $ notes              # will search for notes in cwd\n    $ notes lib/ test/   # will search only in lib and test\n\n### What It Does:\n\nFor example, if a file contained these lines somewhere in it:\n\n    code...\n    # NOTE: This line should get annoated by Notes.\n    # OPTIMIZE Make things faster!\n    \n    more code...\n    # TODO: Annotate your tasks.\n    \n    yet more code...\n    # FIXME: Keep up with things to fix.\n\nThose comments would be annotated as:\n\n    * /path/to/my/file\n    Line 8:    ✐ NOTE This line should get annoated by Notes.\n    Line 9:   ↘ OPTIMIZE Make things faster!\n    Line 10:   ✓ TODO Annotate your tasks.\n    Line 11:   ☂ FIXME Keep up with things to fix.\n","maintainers":[{"name":"stephenb","email":"stephenrb@gmail.com"}],"directories":{}},"0.0.4":{"author":{"name":"Stephen Blankenship"},"name":"notes","description":"a node.js version of Rails' \"rake notes\" functionality","version":"0.0.4","repository":{"type":"git","url":"git://github.com/stephenb/node-notes.git"},"main":"./lib/notes","engines":{"node":">= v0.4.7"},"contributors":[{"name":"Veselin Todorov","email":"hi@vesln.com"}],"dependencies":{"colors":"*"},"devDependencies":{"coffee-script":">= 1.1.1"},"bin":{"notes":"./bin/notes"},"keywords":["notes","annotate","todo","fixme"],"preferGlobal":"true","readme":"node-notes is a node.js version of Rails' \"rake notes\" functionality. It allows you \nto put comments in your code and then have them annotated across your whole project.\n\n### Installation:\n\n\n    npm install notes -g\n\n### Usage:\n\n    $ notes              # will search for notes in cwd\n    $ notes lib/ test/   # will search only in lib and test\n\n### What It Does:\n\nFor example, if a file contained these lines somewhere in it:\n\n    code...\n    # NOTE: This line should get annoated by Notes.\n    # OPTIMIZE Make things faster!\n    \n    more code...\n    # TODO: Annotate your tasks.\n    \n    yet more code...\n    # FIXME: Keep up with things to fix.\n\nThose comments would be annotated as:\n\n    * /path/to/my/file\n    Line 8:    ✐ NOTE This line should get annoated by Notes.\n    Line 9:   ↘ OPTIMIZE Make things faster!\n    Line 10:   ✓ TODO Annotate your tasks.\n    Line 11:   ☂ FIXME Keep up with things to fix.\n","_id":"notes@0.0.4","dist":{"shasum":"3462c2db2250e4178e8f8832e6bb2b64f8925076","tarball":"https://registry.npmjs.org/notes/-/notes-0.0.4.tgz","integrity":"sha512-us+uBKsFaFE/803RLY0TTOpvvzRumUBInH2qDkcUSf7SwP3qrNVRUCExmcrG8dlwaOBF8XrANzvRGztbQ6jgMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICB+1sWAzneX5jAtb47HU+3JcqtRuAx6zjbBQrLl0uRrAiA4fFp0xKw3iOwbHeABZPxswmY/NOmz3DkT73e/IFyMgg=="}]},"maintainers":[{"name":"stephenb","email":"stephenrb@gmail.com"}],"directories":{}}},"maintainers":[{"name":"stephenb","email":"stephenrb@gmail.com"}],"time":{"modified":"2022-06-22T06:06:32.711Z","created":"2011-07-05T22:11:32.650Z","0.0.1":"2011-07-05T22:11:33.036Z","0.0.2":"2012-05-16T22:12:25.728Z","0.0.3":"2012-05-16T22:30:25.802Z","0.0.4":"2012-10-05T14:21:07.833Z"},"author":{"name":"Stephen Blankenship"},"repository":{"type":"git","url":"git://github.com/stephenb/node-notes.git"},"users":{"lundepm":true,"ruffle1986":true,"fabian.moron.zirfas":true}}