package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "c8",
  3. "version": "7.14.0",
  4. "description": "output coverage reports using Node.js' built in coverage",
  5. "main": "./index.js",
  6. "types": "./index.d.ts",
  7. "bin": "./bin/c8.js",
  8. "repository": {
  9. "type": "git",
  10. "url": "git@github.com:bcoe/c8.git"
  11. },
  12. "scripts": {
  13. "test": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js mocha --timeout=10000 ./test/*.js",
  14. "coverage": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js --check-coverage mocha --timeout=10000 ./test/*.js",
  15. "test:snap": "cross-env CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
  16. "fix": "standard --fix",
  17. "posttest": "standard"
  18. },
  19. "standard": {
  20. "ignore": [
  21. "test/fixtures"
  22. ]
  23. },
  24. "keywords": [
  25. "coverage",
  26. "v8",
  27. "test",
  28. "istanbul",
  29. "profiler",
  30. "inspector",
  31. "node"
  32. ],
  33. "author": "Ben Coe <ben@npmjs.com>",
  34. "license": "ISC",
  35. "dependencies": {
  36. "@bcoe/v8-coverage": "^0.2.3",
  37. "@istanbuljs/schema": "^0.1.3",
  38. "find-up": "^5.0.0",
  39. "foreground-child": "^2.0.0",
  40. "istanbul-lib-coverage": "^3.2.0",
  41. "istanbul-lib-report": "^3.0.0",
  42. "istanbul-reports": "^3.1.4",
  43. "rimraf": "^3.0.2",
  44. "test-exclude": "^6.0.0",
  45. "v8-to-istanbul": "^9.0.0",
  46. "yargs": "^16.2.0",
  47. "yargs-parser": "^20.2.9"
  48. },
  49. "devDependencies": {
  50. "@types/node": "^18.0.0",
  51. "chai": "^4.3.6",
  52. "chai-jest-snapshot": "^2.0.0",
  53. "cross-env": "^7.0.3",
  54. "mocha": "^9.2.2",
  55. "standard": "^16.0.4",
  56. "ts-node": "^10.7.0",
  57. "typescript": "^4.6.2"
  58. },
  59. "engines": {
  60. "node": ">=10.12.0"
  61. },
  62. "files": [
  63. "index.js",
  64. "index.d.ts",
  65. "lib",
  66. "bin"
  67. ]
  68. }