chore(coverage): switch to coveralls

This commit is contained in:
Stephan Bönnemann 2015-06-18 16:32:22 -07:00
parent 057e8e9759
commit e24c7c3833
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# semantic-release core scripts # semantic-release core scripts
[![npm version](https://badge.fury.io/js/%40semantic-release%2Fcore.svg)](http://badge.fury.io/js/%40semantic-release%2Fcore) [![npm version](https://badge.fury.io/js/%40semantic-release%2Fcore.svg)](http://badge.fury.io/js/%40semantic-release%2Fcore)
[![Build Status](https://travis-ci.org/semantic-release/core.svg?branch=master)](https://travis-ci.org/semantic-release/core) [![Build Status](https://travis-ci.org/semantic-release/core.svg?branch=master)](https://travis-ci.org/semantic-release/core)
[![Test Coverage](https://codeclimate.com/github/semantic-release/core/badges/coverage.svg)](https://codeclimate.com/github/semantic-release/core/coverage) [![Coverage Status](https://coveralls.io/repos/semantic-release/core/badge.svg)](https://coveralls.io/r/semantic-release/core)
[![Dependency Status](https://david-dm.org/semantic-release/core.svg)](https://david-dm.org/semantic-release/core) [![Dependency Status](https://david-dm.org/semantic-release/core.svg)](https://david-dm.org/semantic-release/core)
[![devDependency Status](https://david-dm.org/semantic-release/core/dev-status.svg)](https://david-dm.org/semantic-release/core#info=devDependencies) [![devDependency Status](https://david-dm.org/semantic-release/core/dev-status.svg)](https://david-dm.org/semantic-release/core#info=devDependencies)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)

View File

@ -23,7 +23,6 @@
}, },
"devDependencies": { "devDependencies": {
"babel": "^5.5.8", "babel": "^5.5.8",
"codeclimate-test-reporter": "0.0.4",
"coveralls": "^2.11.2", "coveralls": "^2.11.2",
"mkdirp": "^0.5.1", "mkdirp": "^0.5.1",
"nock": "^2.5.0", "nock": "^2.5.0",
@ -55,7 +54,7 @@
"build": "rimraf dist && mkdirp dist && babel src --out-dir dist", "build": "rimraf dist && mkdirp dist && babel src --out-dir dist",
"build:tests": "rimraf .test && mkdirp .test && babel test --out-dir .test", "build:tests": "rimraf .test && mkdirp .test && babel test --out-dir .test",
"coverage": "nyc report", "coverage": "nyc report",
"coverage:upload": "npm run coverage -- --reporter=lcovonly && codeclimate < coverage/lcov.info", "coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info",
"pretest:suite": "npm run build && npm run build:tests", "pretest:suite": "npm run build && npm run build:tests",
"test": "npm run test:style && npm run test:suite", "test": "npm run test:style && npm run test:suite",
"test:style": "standard", "test:style": "standard",