Skip to content

Commit

Permalink
Dependency updates, bring .travis.yml, package.json and badges up to …
Browse files Browse the repository at this point in the history
…date
  • Loading branch information
floridoo committed Feb 26, 2015
1 parent 081e74f commit 04b6211
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 25 deletions.
10 changes: 0 additions & 10 deletions .npmignore

This file was deleted.

5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
sudo: false
language: node_js
node_js:
- 0.10
- iojs
- '0.12'
- '0.10'
after_script:
- npm run coveralls
branches:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ The resulting concatenated file content (Buffer).
#### concat.sourceMap
The resulting source map of the concatenated files (string).

[npm-image]: https://img.shields.io/npm/v/concat-with-sourcemaps.svg?style=flat
[npm-url]: https://npmjs.org/package/concat-with-sourcemaps
[travis-image]: https://img.shields.io/travis/floridoo/concat-with-sourcemaps.svg?style=flat
[npm-image]: https://img.shields.io/npm/v/concat-with-sourcemaps.svg
[npm-url]: https://www.npmjs.com/package/concat-with-sourcemaps
[travis-image]: https://img.shields.io/travis/floridoo/concat-with-sourcemaps.svg
[travis-url]: https://travis-ci.org/floridoo/concat-with-sourcemaps
[coveralls-image]: https://img.shields.io/coveralls/floridoo/concat-with-sourcemaps.svg?style=flat
[coveralls-image]: https://img.shields.io/coveralls/floridoo/concat-with-sourcemaps.svg
[coveralls-url]: https://coveralls.io/r/floridoo/concat-with-sourcemaps?branch=master
25 changes: 15 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "concat-with-sourcemaps",
"version": "1.0.0",
"version": "1.0.1",
"description": "Concatenate file contents with a custom separator and generate a source map",
"homepage": "http://github.com/floridoo/concat-with-sourcemaps",
"repository": "git://github.com/floridoo/concat-with-sourcemaps.git",
"main": "index.js",
"scripts": {
"test": "jshint *.js test/*.js && faucet test/*.js",
"tap": "node node_modules/argg test/*.js",
"cover": "istanbul cover --dir reports/coverage node_modules/argg test/*.js",
"coveralls": "istanbul cover node_modules/argg test/*.js --report lcovonly && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
"tap": "tape test/*.js",
"cover": "istanbul cover --dir reports/coverage tape test/*.js",
"coveralls": "istanbul cover tape test/*.js --report lcovonly && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"keywords": [
"concat",
Expand All @@ -18,14 +18,19 @@
"author": "Florian Reiterer <me@florianreiterer.com>",
"license": "ISC",
"dependencies": {
"source-map": "^0.1.41"
"source-map": "^0.4.0"
},
"devDependencies": {
"jshint": "^2.5.11",
"tape": "^3.0.3",
"argg": "0.0.1",
"istanbul": "^0.3.5",
"jshint": "^2.6.0",
"tape": "^3.5.0",
"istanbul": "^0.3.6",
"faucet": "0.0.1",
"coveralls": "^2.10.0"
}
},
"files": [
"index.js",
"package.json",
"README.md",
"LICENSE.md"
]
}

0 comments on commit 04b6211

Please sign in to comment.