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 cb1d2e1 commit fb0084aCopy full SHA for fb0084a
package.json
@@ -3,9 +3,24 @@
3
"version": "8.3.0",
4
"description": "JSON Web Token implementation (symmetric and asymmetric)",
5
"main": "index.js",
6
+ "nyc": {
7
+ "check-coverage": true,
8
+ "lines": 95,
9
+ "statements": 95,
10
+ "functions": 100,
11
+ "branches": 95,
12
+ "exclude": [
13
+ "./test/**"
14
+ ],
15
+ "reporter": [
16
+ "json",
17
+ "lcov",
18
+ "text-summary"
19
+ ]
20
+ },
21
"scripts": {
22
"lint": "eslint .",
- "test": "npm run lint && nyc --reporter=html --reporter=text mocha && nsp check && cost-of-modules"
23
+ "test": "npm run lint && nyc mocha && nsp check && cost-of-modules"
24
},
25
"repository": {
26
"type": "git",
0 commit comments