summaryrefslogtreecommitdiff
path: root/payever/.nycrc
blob: 96c29159a3e5ae885b2f4cdadbd7e9e9bdd54256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "exclude": [
    "coverage/**",
    "test/**",
    "src/start.js",
    "testServer.js",
    "src/data/**",
    "src/utils/errorHandlers.js"
  ],
  "check-coverage": true,
  "per-file": true,
  "lines": 85,
  "functions": 99,
  "reporter": [
    "lcov",
    "text-summary"
  ],
  "cache": true,
  "all": true,
  "watermarks": {
    "lines": [80, 95],
    "functions": [80, 95],
    "branches": [80, 95],
    "statements": [80, 95]
  }
}