Skip to content

Commit

Permalink
Made the command npm run display-coverage cross-platform.
Browse files Browse the repository at this point in the history
  • Loading branch information
jclo committed Oct 30, 2015
1 parent 75bbcaf commit 68eb2d2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### HEAD

### 0.1.4 (October 30, 2015)

* Made the command npm run display-coverage cross-platform,
* Updated npm packages.


### 0.1.3 (October 23, 2015)

* Fixed mismatch in the version number.
Expand All @@ -13,9 +19,9 @@

### 0.1.1 (October 16, 2015)

* Fixed an issue with the test file name 'geoTest.js' that causes a failure on Travis-CI.
* Fixed an issue with the test file name 'geoTest.js' that causes a failure on Travis-CI.


### 0.1.0 (October 16, 2015)

* Initial build.
* Initial build.
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "jmaps",
"version": "0.1.3",
"version": "0.1.4",
"description": "A light Javascript API for reading Natural Earth DB files",
"main": "index.js",
"scripts": {
"test": "istanbul cover -x ./test/main.js _mocha -- -R spec ./test/main.js",
"check-coverage": "istanbul check-coverage --statements 99 --branches 90 --functions 100 --lines 99",
"display-coverage": "open ./coverage/lcov-report/index.html",
"display-coverage": "opener ./coverage/lcov-report/index.html",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
Expand All @@ -28,11 +28,12 @@
},
"homepage": "https://github.com/jclo/jmaps",
"devDependencies": {
"chai": "3.3.0",
"chai": "3.4.0",
"coveralls": "2.11.4",
"ghooks": "0.3.2",
"istanbul": "0.3.22",
"mocha": "2.3.3"
"istanbul": "0.4.0",
"mocha": "2.3.3",
"opener": "1.4.1"
},
"config": {
"ghooks": {
Expand Down

0 comments on commit 68eb2d2

Please sign in to comment.