Skip to content

Commit

Permalink
More package.json and travis fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jirwin committed May 25, 2015
1 parent 9f5fec1 commit 40672cc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
17 changes: 12 additions & 5 deletions .travis.yml
@@ -1,12 +1,19 @@
language: node_js

node_js:
- 0.6
- 0.8
- "0.8"
- "0.10"
- "0.12"
- "iojs"

before_script:
- ./lint.sh
before_install:
- "npm install -g npm"

script:
- "npm run-script lint"
- "npm test"

notifications:
email:
- tomaz+travisci@tomaz.me
- justin.gallardo@gmail.com
- maburns@gmail.com
11 changes: 7 additions & 4 deletions package.json
Expand Up @@ -5,7 +5,8 @@
"dreadnot": "./bin/dreadnot"
},
"scripts": {
"test": "node_modules/.bin/jshint lib/**/*.js --config jshint.json"
"test": "node_modules/.bin/tape test/*.js",
"lint": "node_modules/.bin/jshint lib/**/*.js --config jshint.json"
},
"main": "lib/dreadnot.js",
"repository": {
Expand All @@ -23,7 +24,9 @@
"contributors": [
"Russell Haering <russellhaering@gmail.com>",
"Ryan Phillips <ryan.phillips@rackspace.com>",
"Brandon Philips <brandon@ifup.org>"
"Brandon Philips <brandon@ifup.org>",
"Justin Gallardo <justin.gallardo@gmail.com>",
"Michael Burns <maburns@gmail.com>"
],
"dependencies": {
"async": "0.1.12",
Expand All @@ -46,7 +49,7 @@
},
"analyze": true,
"license": "Apache 2.0",
"engines": {
"node": ">=0.4.1 <0.7.0"
"devDependencies": {
"tape": "^4.0.0"
}
}

0 comments on commit 40672cc

Please sign in to comment.