We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0eb988 commit ead4f30Copy full SHA for ead4f30
2 files changed
.travis.yml
@@ -5,7 +5,7 @@ node_js:
5
6
script:
7
- npm run codestyle
8
- - npm run coverage
+ - npm run coverage && npm run report
9
10
notifications:
11
email:
package.json
@@ -13,7 +13,8 @@
13
"jshint": "jshint lib test",
14
"codestyle": "npm-run-all jshint jscs",
15
"test": "tape test/*.js",
16
- "coverage": "nyc npm test"
+ "coverage": "nyc npm test",
17
+ "report": "nyc report --reporter=text-lcov | coveralls"
18
},
19
"repository": {
20
"type": "git",
@@ -28,6 +29,7 @@
28
29
"try-catch": "~1.0.0"
30
31
"devDependencies": {
32
+ "coveralls": "^2.11.6",
33
"jscs": "^2.7.0",
34
"jshint": "^2.8.0",
35
"npm-run-all": "^1.4.0",
0 commit comments