package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "v8-to-istanbul",
  3. "version": "8.1.1",
  4. "description": "convert from v8 coverage format to istanbul's format",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "fix": "standard --fix",
  9. "snapshot": "TAP_SNAPSHOT=1 tap test/*.js",
  10. "test": "c8 --reporter=html --reporter=text tap --no-coverage test/*.js",
  11. "posttest": "standard",
  12. "coverage": "c8 report --check-coverage"
  13. },
  14. "repository": "istanbuljs/v8-to-istanbul",
  15. "keywords": [
  16. "istanbul",
  17. "v8",
  18. "coverage"
  19. ],
  20. "standard": {
  21. "ignore": [
  22. "**/test/fixtures"
  23. ]
  24. },
  25. "author": "Ben Coe <ben@npmjs.com>",
  26. "license": "ISC",
  27. "dependencies": {
  28. "@types/istanbul-lib-coverage": "^2.0.1",
  29. "convert-source-map": "^1.6.0",
  30. "source-map": "^0.7.3"
  31. },
  32. "devDependencies": {
  33. "@types/node": "^16.0.0",
  34. "c8": "^7.2.1",
  35. "semver": "^7.3.2",
  36. "should": "13.2.3",
  37. "standard": "^16.0.4",
  38. "tap": "^15.1.6"
  39. },
  40. "engines": {
  41. "node": ">=10.12.0"
  42. },
  43. "files": [
  44. "lib/*.js",
  45. "index.js",
  46. "index.d.ts"
  47. ]
  48. }