diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..586e879 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: node_js +node_js: +- "0.12" +- "0.11" +- "0.10" +- "iojs" +- "iojs-v1.0.4" +after_script: +- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage diff --git a/README.md b/README.md index 9b6b2a5..f86764d 100644 --- a/README.md +++ b/README.md @@ -1 +1,8 @@ # algebra.structures.max + +[![NPM](https://nodei.co/npm/algebra.structures.max.png?downloads=true&downloadRank=true&stars=true)](https://npmjs.com/package/algebra.structures.max) + +[![npm version](https://badge.fury.io/js/algebra.structures.max.svg)](http://badge.fury.io/js/algebra.structures.max) +[![Coverage Status](https://coveralls.io/repos/reaganthomas/algebra.structures.max/badge.svg?branch=master&service=github)](https://coveralls.io/github/reaganthomas/algebra.structures.max?branch=master) +[![Build Status](https://travis-ci.org/reaganthomas/algebra.structures.max.svg)](https://travis-ci.org/reaganthomas/algebra.structures.max) +[![Dependency Status](https://david-dm.org/reaganthomas/algebra.structures.max.svg)](https://david-dm.org/reaganthomas/algebra.structures.max) diff --git a/package.json b/package.json index bb4adf7..46bb455 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "algebra.structures.max", - "version": "0.1.0", + "version": "0.1.1", "description": "A maximizing structure conforming to the Monoid specification.", "main": "lib/index.js", "scripts": { @@ -23,12 +23,16 @@ }, "homepage": "https://github.com/reaganthomas/algebra.structures.max", "devDependencies": { + "algebra.laws": "^0.1.0", + "coveralls": "^2.11.4", "gulp": "^3.9.0", "gulp-mocha": "^2.1.3", - "algebra.laws": "^0.1.0" + "istanbul": "^0.3.19", + "mocha": "^2.3.1", + "mocha-lcov-reporter": "0.0.2" }, "dependencies": { - "algebra.structures.constructor": "^0.1.0", + "algebra.structures.constructor": "^0.1.3", "deep-equal": "^1.0.1" } }