Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.nycrc - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.nycrc
blob: 6192a73a77b0d2a25cff115d31575b0dd3330520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "exclude": [
    "coverage/**",
    "test/**",
    "tools/**",
    "benchmark/**",
    "deps/**"
  ],
  "reporter": [
    "html",
    "text",
    "lcov"
  ],
  "lines": 95,
  "branches": "93",
  "statements": "95",
  "temp-directory": "coverage/tmp",
  "omit-relative": false,
  "resolve": "./lib",
  "wrapper-length": 0
}