From 73896ff4a632b28daf9c6141d2a23377f3f79faa Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Wed, 5 Jan 2011 05:50:12 -0800 Subject: [PATCH] Initial commit --- History.md | 0 Makefile | 10 ++++++++++ Readme.md | 27 +++++++++++++++++++++++++++ bin/n | 3 +++ package.json | 8 ++++++++ 5 files changed, 48 insertions(+) create mode 100644 History.md create mode 100644 Makefile create mode 100644 Readme.md create mode 100755 bin/n create mode 100644 package.json diff --git a/History.md b/History.md new file mode 100644 index 00000000..e69de29b diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..4385c8bf --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ + +PREFIX ?= /usr/local + +install: bin/n + cp $< $(PREFIX)/$< + +uninstall: + rm -f $(PREFIX)/n + +.PHONY: install uninstall \ No newline at end of file diff --git a/Readme.md b/Readme.md new file mode 100644 index 00000000..292c1fe2 --- /dev/null +++ b/Readme.md @@ -0,0 +1,27 @@ + +# Chrono + +## License + +(The MIT License) + +Copyright (c) 2010 TJ Holowaychuk <tj@vision-media.ca> + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/bin/n b/bin/n new file mode 100755 index 00000000..a7b921f4 --- /dev/null +++ b/bin/n @@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +VERSION="0.0.1" \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..b37abe96 --- /dev/null +++ b/package.json @@ -0,0 +1,8 @@ +{ "name": "" + , "description": "" + , "version": "0.0.1" + , "author": "TJ Holowaychuk " + , "keywords": [] + , "main": "./lib/mylib.js" + , "engines": { "node": ">= 0.2.0" } +} \ No newline at end of file