UNPKG

644 BPlain TextView Raw
1{
2 "description": "These are just examples for demonstration, nothing prescriptive",
3 "nyc": {
4 "check-coverage": true,
5 "per-file": true,
6 "lines": 99,
7 "statements": 99,
8 "functions": 99,
9 "branches": 99,
10 "include": [
11 "src/**/*.js"
12 ],
13 "exclude": [
14 "src/**/*.spec.js"
15 ],
16 "ignore-class-method": "methodToIgnore",
17 "reporter": [
18 "lcov",
19 "text-summary"
20 ],
21 "require": [
22 "./test/helpers/some-helper.js"
23 ],
24 "extension": [
25 ".jsx"
26 ],
27 "cache": true,
28 "all": true,
29 "temp-directory": "./alternative-tmp",
30 "report-dir": "./alternative"
31 }
32}
\No newline at end of file