This repository was archived by the owner on Oct 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We use a mocha reporter to generate an lcov file which can be uploaded to code climate. the uploader needs an environment variable which contains a token for codeclimate. This variable was added as an encrypted value to the travis yaml file.
- Loading branch information
Showing
4 changed files
with
68 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ node_modules/ | |
src-cov/ | ||
docs/output | ||
coverage.html | ||
coverage.lcov |
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,5 +1,9 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- '0.10' | ||
before_script: | ||
- npm install -g grunt-cli | ||
- npm install -g grunt-cli | ||
script: "grunt travis" | ||
env: | ||
global: | ||
secure: X4UaHLMI8Z+HyOAtSzC9vz40rUL8ySEo+TKZs3diy7t3HgYNwTZ7oyTLSvYY+Jyumf85mFQhjJx+AwhUKOkgCW3JLzjZbQ1eFAHfxtpHDkFr6zvhuDwfM3LaivAOD3l8fMknMdkGtWhJVbANtmOOs+5f0RamQJX7m3t6y7n6zEI= |
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 |
---|---|---|
@@ -1,38 +1,41 @@ | ||
{ | ||
"name": "homelib", | ||
"version": "0.1.0", | ||
"author": "Michael van Engelshoven <[email protected]>", | ||
"description": "A home automation framework for knx/eib", | ||
"contributors": [], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/micha149/homelib.git" | ||
}, | ||
"dependencies": { | ||
"async": "^0.8.0", | ||
"implementjs": "^0.3.0", | ||
"suncalc": "^1.4.0", | ||
"underscore": "^1.6.0" | ||
}, | ||
"devDependencies": { | ||
"sinon": "1.9.0", | ||
"mocha": "~1.18.2", | ||
"chai": "~1.9.1", | ||
"sinon-chai": "~2.5.0", | ||
"grunt": "~0.4.4", | ||
"grunt-contrib-jshint": "~0.9.2", | ||
"grunt-mocha-test": "~0.10.0", | ||
"grunt-jsduck": "~1.0.1", | ||
"blanket": "~1.1.5", | ||
"grunt-contrib-clean": "~0.5.0", | ||
"grunt-contrib-watch": "~0.6.1" | ||
}, | ||
"main": "./homelib.js", | ||
"scripts": { | ||
"test": "grunt" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=0.9.2" | ||
} | ||
"name": "homelib", | ||
"version": "0.1.0", | ||
"author": "Michael van Engelshoven <[email protected]>", | ||
"description": "A home automation framework for knx/eib", | ||
"contributors": [], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/micha149/homelib.git" | ||
}, | ||
"dependencies": { | ||
"async": "^0.8.0", | ||
"implementjs": "^0.3.0", | ||
"suncalc": "^1.4.0", | ||
"underscore": "^1.6.0" | ||
}, | ||
"devDependencies": { | ||
"blanket": "~1.1.5", | ||
"chai": "~1.9.1", | ||
"codeclimate-test-reporter": "0.0.4", | ||
"grunt": "~0.4.4", | ||
"grunt-contrib-clean": "~0.5.0", | ||
"grunt-contrib-jshint": "~0.9.2", | ||
"grunt-contrib-watch": "~0.6.1", | ||
"grunt-jsduck": "~1.0.1", | ||
"grunt-mocha-test": "~0.10.0", | ||
"grunt-shell": "^1.1.1", | ||
"mocha": "~1.18.2", | ||
"mocha-lcov-reporter": "0.0.1", | ||
"sinon": "1.9.0", | ||
"sinon-chai": "~2.5.0" | ||
}, | ||
"main": "./homelib.js", | ||
"scripts": { | ||
"test": "grunt" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=0.9.2" | ||
} | ||
} |