package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@bcoe/v8-coverage",
  3. "version": "0.2.3",
  4. "description": "Helper functions for V8 coverage files.",
  5. "author": "Charles Samborski <demurgos@demurgos.net> (https://demurgos.net)",
  6. "license": "MIT",
  7. "main": "dist/lib/index",
  8. "types": "dist/lib/index.d.ts",
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/demurgos/v8-coverage.git"
  12. },
  13. "homepage": "https://demurgos.github.io/v8-coverage",
  14. "scripts": {
  15. "prepare": "gulp all:tsconfig.json && gulp dist",
  16. "pretest": "gulp lib:build",
  17. "test": "gulp test",
  18. "lint": "gulp :lint:fix"
  19. },
  20. "devDependencies": {
  21. "@types/chai": "^4.1.4",
  22. "@types/gulp": "^4.0.5",
  23. "@types/minimist": "^1.2.0",
  24. "@types/mocha": "^5.2.2",
  25. "@types/node": "^10.5.4",
  26. "chai": "^4.1.2",
  27. "codecov": "^3.0.2",
  28. "gulp": "^4.0.0",
  29. "gulp-cli": "^2.0.1",
  30. "minimist": "^1.2.0",
  31. "pre-commit": "^1.2.2",
  32. "ts-node": "^8.3.0",
  33. "turbo-gulp": "^0.20.1"
  34. },
  35. "nyc": {
  36. "include": [
  37. "build/test/lib/**/*.js",
  38. "build/test/lib/**/*.mjs"
  39. ],
  40. "reporter": [
  41. "text",
  42. "html"
  43. ],
  44. "extension": [
  45. ".mjs"
  46. ]
  47. }
  48. }