-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ESLint, added travis.yml, fix coverage test
- Loading branch information
Showing
30 changed files
with
16,346 additions
and
2,890 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: node_js | ||
node_js: | ||
- "node" | ||
|
||
cache: | ||
yarn: true | ||
directories: | ||
- node_modules | ||
|
||
after_success: | ||
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![MIT License][license-image]][license-url] [![Build Status][travis-image]][travis-url] | ||
[![Coverage Status][coverage-image]][coverage-url] | ||
|
||
dicomParser | ||
=========== | ||
|
||
|
@@ -31,10 +34,6 @@ Or install via [NPM](https://www.npmjs.com/): | |
|
||
> npm install dicom-parser | ||
Or install via [Bower](http://bower.io/): | ||
|
||
> bower install dicomParser | ||
Or install via atmosphere for [Meteor](https://www.meteor.com/) applications | ||
|
||
> meteor add chafey:dicom-parser | ||
|
@@ -140,34 +139,24 @@ Key Features | |
Build System | ||
============ | ||
|
||
This project uses grunt to build the software. | ||
This project uses Webpack to build the software. | ||
|
||
Pre-requisites: | ||
--------------- | ||
|
||
NodeJs - [click to visit web site for installation instructions](http://nodejs.org). | ||
|
||
grunt-cli | ||
|
||
> npm install -g grunt-cli | ||
bower | ||
|
||
> npm install -g bower | ||
Common Tasks | ||
------------ | ||
|
||
Update dependencies (after each pull): | ||
> npm install | ||
> bower install | ||
Running the build: | ||
> grunt | ||
> npm run build | ||
Automatically running the build and unit tests after each source change: | ||
> grunt watch | ||
> npm run watch | ||
Backlog | ||
------------ | ||
|
@@ -359,3 +348,16 @@ You can find out more about this by googling for "self documenting code" | |
Copyright | ||
============ | ||
Copyright 2016 Chris Hafey [[email protected]](mailto:[email protected]) | ||
|
||
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat | ||
[license-url]: LICENSE | ||
|
||
[npm-url]: https://npmjs.org/package/dicom-parser | ||
[npm-version-image]: http://img.shields.io/npm/v/dicom-parser.svg?style=flat | ||
[npm-downloads-image]: http://img.shields.io/npm/dm/dicom-parser.svg?style=flat | ||
|
||
[travis-url]: http://travis-ci.org/chafey/dicomParser | ||
[travis-image]: https://travis-ci.org/chafey/dicomParser.svg?branch=master | ||
|
||
[coverage-url]: https://coveralls.io/github/chafey/dicomParser?branch=master | ||
[coverage-image]: https://coveralls.io/repos/github/chafey/dicomParser/badge.svg?branch=master |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.