Skip to content

Commit 809031f

Browse files
committed
init
0 parents  commit 809031f

7 files changed

Lines changed: 123 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
npm-debug.log
2+
node_modules/
3+
tmp/

CONTRIBUTING.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## Contributing
2+
3+
#### Code Style Guide
4+
5+
* code should be indented with 2 spaces
6+
* single quotes should be used where feasible
7+
* commas should be followed by a single space (function params, etc)
8+
* variable declaration should include `var`, [no multiple declarations](http://benalman.com/news/2012/05/multiple-var-statements-javascript/)
9+
10+
#### Tests
11+
12+
* tests should be added to the nodeunit configs in `tests/`
13+
* tests can be run with `npm test`
14+
* see existing tests for guidance

LICENSE-MIT

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2014 Chris Talkington, contributors.
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Compress Commons v0.0.1 [![Build Status](https://travis-ci.org/ctalkington/node-compress-commons.svg?branch=master)](https://travis-ci.org/ctalkington/node-compress-commons)
2+
3+
description
4+
5+
[![NPM](https://nodei.co/npm/compress-commons.png)](https://nodei.co/npm/compress-commons/)
6+
7+
## Install
8+
9+
```bash
10+
npm install compress-commons --save
11+
```
12+
13+
You can also use `npm install https://github.com/ctalkington/node-compress-commons/archive/master.tar.gz` to test upcoming versions.
14+
15+
## Things of Interest
16+
17+
- [Changelog](https://github.com/ctalkington/node-compress-commons/releases)
18+
- [Contributing](https://github.com/ctalkington/node-compress-commons/blob/master/CONTRIBUTING.md)
19+
- [MIT License](https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT)

lib/compress-commons.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* node-compress-commons
3+
*
4+
* Copyright (c) 2014 Chris Talkington, contributors.
5+
* Licensed under the MIT license.
6+
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
7+
*/
8+
module.exports = {};

package.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "compress-commons",
3+
"version": "0.0.1",
4+
"description": "",
5+
"homepage": "https://github.com/ctalkington/node-compress-commons",
6+
"author": {
7+
"name": "Chris Talkington",
8+
"url": "http://christalkington.com/"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/ctalkington/node-compress-commons.git"
13+
},
14+
"bugs": {
15+
"url": "https://github.com/ctalkington/node-compress-commons/issues"
16+
},
17+
"licenses": [
18+
{
19+
"type": "MIT",
20+
"url": "https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT"
21+
}
22+
],
23+
"main": "lib/compress-commons.js",
24+
"files": [
25+
"lib",
26+
"LICENSE-MIT"
27+
],
28+
"engines": {
29+
"node": ">= 0.10.0"
30+
},
31+
"scripts": {
32+
"test": "mocha --reporter dot"
33+
},
34+
"dependencies": {
35+
},
36+
"devDependencies": {
37+
"chai": "~1.9.1",
38+
"mocha": "~1.20.1",
39+
"rimraf": "~2.2.8",
40+
"mkdirp": "~0.5.0",
41+
},
42+
"keywords": [
43+
"compress",
44+
"commons",
45+
"archive"
46+
]
47+
}

test/commons.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*global before,describe,it */
2+
var assert = require('chai').assert;
3+
4+
describe('commons', function() {
5+
6+
it.skip('will do something some day', function(){
7+
8+
});
9+
10+
});

0 commit comments

Comments
 (0)