We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 898bd8a commit 27cee44Copy full SHA for 27cee44
.travis.yml
@@ -2,4 +2,4 @@ language: node_js
2
node_js:
3
- "0.10"
4
install: npm install
5
-script: npm run jshint && npm test
+script: npm run jshint && npm run test-coveralls
package.json
@@ -5,6 +5,7 @@
"main": "index.js",
6
"scripts": {
7
"test": "node test/test.js",
8
+ "test-coveralls": "istanbul cover test/test.js && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
9
"jshint": "jshint test/* lib/*"
10
},
11
"repository": {
@@ -20,6 +21,8 @@
20
21
"license": "MIT",
22
"devDependencies": {
23
"jshint": "^2.5.3",
- "tape": "^2.14.0"
24
+ "tape": "^2.14.0",
25
+ "istanbul": "~0.3.0",
26
+ "coveralls": "~2.11.1"
27
}
28
0 commit comments