package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "babel-plugin-istanbul",
  3. "version": "5.2.0",
  4. "author": "Thai Pangsakulyanont @dtinth",
  5. "license": "BSD-3-Clause",
  6. "description": "A babel plugin that adds istanbul instrumentation to ES6 code",
  7. "main": "lib/index.js",
  8. "files": [
  9. "lib"
  10. ],
  11. "dependencies": {
  12. "@babel/helper-plugin-utils": "^7.0.0",
  13. "find-up": "^3.0.0",
  14. "istanbul-lib-instrument": "^3.3.0",
  15. "test-exclude": "^5.2.3"
  16. },
  17. "devDependencies": {
  18. "@babel/cli": "^7.4.3",
  19. "@babel/core": "^7.4.3",
  20. "@babel/plugin-transform-modules-commonjs": "^7.4.3",
  21. "@babel/register": "^7.4.0",
  22. "chai": "^4.2.0",
  23. "coveralls": "^3.0.3",
  24. "cross-env": "^5.2.0",
  25. "mocha": "^6.1.4",
  26. "nyc": "^14.1.0",
  27. "pmock": "^0.2.3",
  28. "standard": "^12.0.1",
  29. "standard-version": "^6.0.1"
  30. },
  31. "scripts": {
  32. "coverage": "nyc report --reporter=text-lcov | coveralls",
  33. "release": "babel src --out-dir lib",
  34. "pretest": "standard && npm run release",
  35. "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/*.js",
  36. "prepublish": "npm test && npm run release",
  37. "version": "standard-version"
  38. },
  39. "standard": {
  40. "ignore": [
  41. "fixtures/has-inline-source-map.js"
  42. ]
  43. },
  44. "repository": {
  45. "type": "git",
  46. "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git"
  47. },
  48. "keywords": [
  49. "istanbul",
  50. "babel",
  51. "plugin",
  52. "instrumentation"
  53. ],
  54. "nyc": {
  55. "include": [
  56. "src/*.js",
  57. "fixtures/should-cover.js"
  58. ],
  59. "require": [
  60. "@babel/register"
  61. ],
  62. "sourceMap": false,
  63. "instrument": false
  64. },
  65. "bugs": {
  66. "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues"
  67. },
  68. "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme",
  69. "engines": {
  70. "node": ">=6"
  71. }
  72. }