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 f6a6b85 commit 860f58bCopy full SHA for 860f58b
.travis.yml
@@ -7,7 +7,3 @@ node_js:
7
- 4
8
- 0.12
9
- 0.10
10
-
11
-after_success:
12
- - npm i coveralls
13
- - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
package.json
@@ -10,6 +10,7 @@
],
"devDependencies": {
"chai": "^4.0.0",
+ "coveralls": "^3.0.3",
14
"jsdoc-to-markdown": "^4.0.1",
15
"mocha": "^6.1.4",
16
"nyc": "^14.1.0",
@@ -18,7 +19,8 @@
18
19
},
20
"scripts": {
21
"lint": "standard --env mocha",
- "test": "nyc node_modules/mocha/bin/_mocha",
22
+ "test": "nyc mocha",
23
+ "coverage": "nyc report --reporter=text-lcov | coveralls",
24
"docs": "jsdoc2md lib/*.js > RENDER.md",
25
"release": "standard-version"
26
0 commit comments