Skip to content

Commit 48b21cf

Browse files
author
Benjamin Coe
committed
added coverage and build badges
1 parent 06fc18a commit 48b21cf

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
sudo: false
2+
language: node_js
3+
node_js:
4+
- '0.12'
5+
- '0.10'
6+
- iojs
7+
env:
8+
- secure: "SVg7NpV0Sru296kdp+eFl07RFjtJy242fWQ1KDCUdk/1EtZEOzBoSKP7Tn3zX/VLBieexL0T31EwYvRztnL97Sr8VgpYU0z95vCPO8FrixElJR6NH3dqrKeNzC3xOYdV0fy2b4UMlPJOI0aYDT1KHm1aWtkb2J8zqII+XbMtlDaelfHCDxa2+RBII9nYYDP62z+0chQFS6MGPSNwve3G2emYHZpYP5iTFmOzaFUCAjLskKvnnsY0jyx5XssqAo17747WKZl5SDgN8YHZIwhE5tB9m9j3MGjJhwdsR3kmq2om0GD1tQFFAXzWhWad3zNBUE4fLqswgASi39o5NIEzvSRzpw77ttOkkIFGem0l421Zi25W8x5n6GZvP06Y47ddmjNBlniwIzG4fb3dbIByCy/g5SjUYmfnke7stXXBKsPv0eEadlLGFWnG5RIfnyGjvUgQ//QXSAnBBzYF9IK+KUdU8c9kHF6kPybsGEzjQoX+4EJL6kZ4sNX9qxjHERUr4Jb6rAMOnKI9VtCBNqwcCC3nV5DDWHS86hKwbuTbBFkszP7majOi0kUQJTO/tZGwVVcphSDwhL5QkmMepLOqXyRICdUcB2ffXHYhZLiZPofYdom8csaDolqFkotJEBj3GM3gwHvUC3i1vxshxtjF6NHjanhpiIpHLRCs6R1RESE="
9+
after_success: npm run coverage

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# nyc
22

3+
[![Build Status](https://travis-ci.org/bcoe/nyc.png)](https://travis-ci.org/bcoe/nyc)
4+
[![Coverage Status](https://coveralls.io/repos/bcoe/nyc/badge.svg?branch=)](https://coveralls.io/r/bcoe/nyc?branch=)
5+
[![NPM version](https://img.shields.io/npm/v/nyc.svg)](https://www.npmjs.com/package/nyc)
6+
37
a code coverage reporter built on [istanbul](https://www.npmjs.com/package/istanbul)
48
that works well for applications that spawn child processes.

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "forking code-coverage using istanbul.",
55
"main": "index.js",
66
"scripts": {
7-
"test": "standard && mocha --ui exports"
7+
"test": "standard && ./bin/nyc.js ./node_modules/.bin/mocha --ui exports",
8+
"coverage": "./bin/nyc-report.js --reporter=text-lcov | coveralls"
89
},
910
"bin": {
1011
"nyc": "./bin/nyc.js",
@@ -24,15 +25,15 @@
2425
"author": "Ben Coe <[email protected]>",
2526
"license": "ISC",
2627
"dependencies": {
27-
"istanbul": "^0.3.13",
28+
"istanbul": "git+ssh://[email protected]:bcoe/istanbul.git#text-lcov",
2829
"lodash": "^3.8.0",
2930
"mkdirp": "^0.5.0",
3031
"rimraf": "^2.3.3",
31-
"spawn-wrap": "0.0.0",
32-
"yargs": "^3.8.0"
32+
"spawn-wrap": "0.0.0"
3333
},
3434
"devDependencies": {
3535
"chai": "^2.3.0",
36+
"coveralls": "^2.11.2",
3637
"mocha": "^2.2.4",
3738
"standard": "^3.7.3"
3839
},

0 commit comments

Comments
 (0)