Skip to content

Commit

Permalink
Merge 930a256 into 1ebd052
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Mujica committed Mar 28, 2016
2 parents 1ebd052 + 930a256 commit d0dbb1a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ node_js:
- "node"
- "iojs"
- "4.0"
script: npm run coverage:upload
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

[![Build Status](https://travis-ci.org/donejs/cli.svg?branch=master)](https://travis-ci.org/donejs/cli)
[![npm version](https://badge.fury.io/js/donejs-cli.svg)](http://badge.fury.io/js/donejs-cli)
[![Coverage Status](https://coveralls.io/repos/github/donejs/cli/badge.svg?branch=code-coverage)](https://coveralls.io/github/donejs/cli?branch=code-coverage)

The DoneJS command line utility. Allows you to initialize a new DoneJS application and easily run different commands from your local appliation.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"engine-deps": "install-engine-dependencies"
"engine-deps": "install-engine-dependencies",
"coverage": "istanbul cover _mocha -- test/ --timeout 600000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/ --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
Expand All @@ -34,11 +36,14 @@
},
"homepage": "https://github.com/donejs/cli",
"devDependencies": {
"coveralls": "^2.11.9",
"documentjs": "^0.4.1",
"engine-dependencies": "^0.2.11",
"is-ci": "^1.0.7",
"istanbul": "^0.4.2",
"jshint": "^2.8.0",
"mocha": "^2.2.5"
"mocha": "^2.2.5",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"commander": "^2.9.0",
Expand Down

0 comments on commit d0dbb1a

Please sign in to comment.