Skip to content

Commit

Permalink
first commit is up
Browse files Browse the repository at this point in the history
  • Loading branch information
fent committed Jul 6, 2012
0 parents commit 244818c
Show file tree
Hide file tree
Showing 7 changed files with 89 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
node_js:
- 0.6
- 0.8
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (C) 2012 by Roly Fentanes

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.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# MOD [![Build Status](https://secure.travis-ci.org/fent/MOD.png)](http://travis-ci.org/fent/MOD)

[short consice explanation]


# Usage

```js
```


# Motive
[optional]


# API


# Install

npm install MOD


# Tests
Tests are written with [mocha](http://visionmedia.github.com/mocha/)

```bash
npm test
```

# License
MIT
Empty file added lib/index.js
Empty file.
25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "MOD",
"description": "explanation",
"keywords": ["one"],
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git://github.com/fent/MOD.git"
},
"author": "Roly Fentanes (https://github.com/fent)",
"main": "./lib/index.js",
"scripts": {
"test": "mocha -R spec test/*-test.js"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"mocha": "x"
},
"licenses": [ {
"type": "MIT",
"url" : "http://github.com/fent/MOD/raw/master/LICENSE"
}]
}
8 changes: 8 additions & 0 deletions test/main-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
var lib = require('..')
, assert = require('assert')


describe('Test', function() {
it('Should do what I tell it to', function(done) {
});
});

0 comments on commit 244818c

Please sign in to comment.