package.json 318 B

123456789101112131415161718
  1. {
  2. "name": "nyc",
  3. "version": "1.1.1",
  4. "description": "forking code-coverage using istanbul.",
  5. "main": "index.js",
  6. "bin": {
  7. "nyc": "./bin/nyc.js",
  8. "nyc-report": "./bin/nyc-report.js"
  9. },
  10. "nyc": {
  11. "exclude": [
  12. "**/blarg",
  13. "**/blerg"
  14. ],
  15. "extension": [".es6", ".foo.BAR"]
  16. }
  17. }