diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..43d0f5c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +*.log +*.pid +node_modules/ diff --git a/lib/index.js b/lib/index.js new file mode 100644 index 0000000..e69de29 diff --git a/license b/license new file mode 100644 index 0000000..0ab97c4 --- /dev/null +++ b/license @@ -0,0 +1,19 @@ +Copyright (C) 2011 by Alex Barlow (alexrbarlow.com) + +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/package.json b/package.json new file mode 100644 index 0000000..933edf8 --- /dev/null +++ b/package.json @@ -0,0 +1,36 @@ +{ + "name": "mixr", + "version": "0.0.1", + "description": "Mixr, is a compiler and pre-processor for your Javascript and CSS.", + "keywords": [ + "mixr", + "css", + "js", + "compiler", + "pre-processor" + ], + "dependencies": { + "async": ">= 0.1.15", + "underscore": ">= 1.2.3" + }, + "devDependencies": { + "vows": ">= 0.0.1" + }, + "maintainers": [ + { + "name": "Alex Barlow", + "email": "alexbarlowis@gmail.com", + "web": "http://www.alexrbarlow.com" + } + ], + "repositories": [ + { + "type": "git", + "url": "https://arbarlow@github.com/arbarlow/mixr.git" + } + ], + "main" : "lib/index", + "directories": { + "lib": "lib" + } +} \ No newline at end of file