Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
liangzan committed Jul 26, 2012
0 parents commit 1dd3985
Show file tree
Hide file tree
Showing 9 changed files with 65 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .gitignore
@@ -0,0 +1,31 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

## MAC OS
.DS_Store

## TEXTMATE
*.tmproj
tmtags

## EMACS
*~
\#*
.\#*

## VIM
*.swp

## PROJECT::GENERAL
log
tmp
node_modules
npm-debug.log

## PROJECT::SPECIFIC
7 changes: 7 additions & 0 deletions LICENSE
@@ -0,0 +1,7 @@
Copyright (C) <Year> <Name>

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.
10 changes: 10 additions & 0 deletions Makefile
@@ -0,0 +1,10 @@
TESTS = test/*.js

test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--reporter list \
--slow 20 \
--growl \
$(TESTS)
.PHONY: test
3 changes: 3 additions & 0 deletions README.md
@@ -0,0 +1,3 @@
# Node.js Package Boilerplate

This is a set of common files and directories that I always use for starting a Node.js project. Just git clone and change the files as needed.
Empty file added bin/.gitkeep
Empty file.
Empty file added lib/.gitkeep
Empty file.
14 changes: 14 additions & 0 deletions package.json
@@ -0,0 +1,14 @@
{
"name": "",
"version": "v0.0.1",
"description": "",
"keywords": [],
"repository": { "type": "git", "url": "" },
"author": "",
"engines": {
"node" : "~0.8",
"npm": "1"
},
"dependencies": {},
"devDependencies": {}
}
Empty file added scripts/.gitkeep
Empty file.
Empty file added test/.gitkeep
Empty file.

0 comments on commit 1dd3985

Please sign in to comment.