Skip to content

Commit

Permalink
Merge pull request #37 from isaacs/simplify-package-install
Browse files Browse the repository at this point in the history
Simplify package install
  • Loading branch information
paulmillr committed Jan 13, 2013
2 parents 84dec6f + d34a529 commit 7af9965
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 75 deletions.
39 changes: 33 additions & 6 deletions .npmignore
@@ -1,8 +1,35 @@
.lock-wscript
.svn/
.hg/
.git/
CVS/
*~
*.bak
.DS_Store
*.diff
*.err
*.orig
*.log
*.rej
*.swo
*.swp
*.vi
*.sass-cache

.cache
.project
.settings
.tmproj
nbproject

# Dreamweaver added files
_notes
dwsync.xml

# Komodo
*.komodoproject
.komodotools

# Folders to ignore
intermediate
publish
.idea

*.sublime-project
*.sublime-workspace

test/fixtures/subdir/
6 changes: 2 additions & 4 deletions package.json
Expand Up @@ -29,10 +29,8 @@
"node": "~0.6.10 || 0.7 || 0.8 || 0.9"
},
"scripts": {
"prepublish": "node setup.js prepublish",
"postpublish": "node setup.js postpublish",
"test": "node setup.js test",
"postinstall": "node setup.js test"
"prepublish": "coffee -o lib/ src/",
"test": "mocha --compilers coffee:coffee-script --require test/common.js --colors"
},
"dependencies": {},
"devDependencies": {
Expand Down
65 changes: 0 additions & 65 deletions setup.js

This file was deleted.

0 comments on commit 7af9965

Please sign in to comment.