Skip to content

Commit

Permalink
add coveralls tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Kunka committed Nov 1, 2016
1 parent a23f5f2 commit 7380440
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
language: node_js
node_js:
- "node"
- "node"
after_success:
- npm run coveralls
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# MixItUp 3

[![Build Status](https://travis-ci.org/patrickkunka/mixitup.svg?branch=v3)](https://travis-ci.org/patrickkunka/mixitup)
[![Coverage Status](https://coveralls.io/repos/github/patrickkunka/mixitup/badge.svg?branch=v3)](https://coveralls.io/github/patrickkunka/mixitup?branch=v3)

MixItUp is a high-performance, dependency-free library for animated DOM manipulation, giving you the power to filter, sort, add and remove DOM elements with beautiful animations.

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
"main": "./dist/mixitup.min.js",
"scripts": {
"test": "mocha ./tests/unit/main.js",
"cover": "istanbul cover _mocha ./tests/unit/main.js"
"cover": "istanbul cover _mocha ./tests/unit/main.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-shallow-deep-equal": "^1.4.0",
"coveralls": "^2.11.14",
"gulp": "^3.8.8",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^1.8.5",
Expand All @@ -30,6 +32,7 @@
"merge-stream": "^0.1.7",
"mixitup-build": "git://github.com/patrickkunka/mixitup-build.git",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
Expand Down

0 comments on commit 7380440

Please sign in to comment.