package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "babel-plugin-istanbul",
  3. "version": "4.1.6",
  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-plugin-syntax-object-rest-spread": "^6.13.0",
  13. "find-up": "^2.1.0",
  14. "istanbul-lib-instrument": "^1.10.1",
  15. "test-exclude": "^4.2.1"
  16. },
  17. "devDependencies": {
  18. "babel-cli": "^6.18.0",
  19. "babel-core": "^6.24.0",
  20. "babel-preset-env": "^1.6.1",
  21. "babel-register": "^6.24.0",
  22. "chai": "^4.1.0",
  23. "coveralls": "^3.0.0",
  24. "cross-env": "^3.1.4",
  25. "mocha": "^4.0.0",
  26. "nyc": "^11.1.0",
  27. "pmock": "^0.2.3",
  28. "standard": "^9.0.2",
  29. "standard-version": "^4.0.0"
  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. "greenkeeper": {
  70. "ignore": [
  71. "find-up",
  72. "cross-env"
  73. ]
  74. }
  75. }