Skip to content

Commit

Permalink
Adding pre-project setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgco committed Jun 13, 2012
1 parent 0dc7756 commit 9d71ed5
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .gitignore
@@ -0,0 +1,36 @@
# Node.js with Express and Stlyus
public/css/*.css
public/css/main/*.css
public/css/admin/*.css
/.monitor

/log
/data
/cache

/public/js/compact

# Windows
Thumbs.db

# Vim
.*.sw[a-z]
*.un~i
tags

# OsX
.DS_Store
Icon?
._*
.Spotlight-V100
.Trashes

# nodejs npm modules
node_modules

# node-cluster
/pids
*.sock

# ZSH Cake plugin cache
/.cake_task_cache
5 changes: 5 additions & 0 deletions .nodemonignore
@@ -0,0 +1,5 @@
public/css/*
public/fonts/*
public/images/*
public/js/compact/*
views/*
12 changes: 12 additions & 0 deletions Makefile
@@ -0,0 +1,12 @@
test:
@./node_modules/.bin/mocha \
-r should \
-R spec

lint-changed:
@jshint `git status --porcelain | sed -e "s/^...//g"`

lint:
@jshint lib test

.PHONY: test lint lint-changed
12 changes: 12 additions & 0 deletions package.json
@@ -0,0 +1,12 @@
{ "name": "zbar"
, "version": "0.0.1"
, "private": true
, "engine": "~0.6"
, "dependencies":
{
}
, "devDependencies":
{ "mocha": "*"
, "should": "*"
}
}

0 comments on commit 9d71ed5

Please sign in to comment.