package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "babel-plugin-istanbul",
  3. "version": "6.1.1",
  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. "@istanbuljs/load-nyc-config": "^1.0.0",
  14. "@istanbuljs/schema": "^0.1.2",
  15. "istanbul-lib-instrument": "^5.0.4",
  16. "test-exclude": "^6.0.0"
  17. },
  18. "devDependencies": {
  19. "@babel/cli": "^7.7.5",
  20. "@babel/core": "^7.7.5",
  21. "@babel/plugin-transform-modules-commonjs": "^7.7.5",
  22. "@babel/register": "^7.7.4",
  23. "chai": "^4.2.0",
  24. "coveralls": "^3.0.9",
  25. "cross-env": "^6.0.3",
  26. "mocha": "^6.2.2",
  27. "nyc": "^15.0.0",
  28. "pmock": "^0.2.3",
  29. "standard": "^14.3.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 --timeout 5000 test/*.js",
  36. "prepublish": "npm test && npm run release"
  37. },
  38. "standard": {
  39. "ignore": [
  40. "fixtures/*.js"
  41. ]
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git"
  46. },
  47. "keywords": [
  48. "istanbul",
  49. "babel",
  50. "plugin",
  51. "instrumentation"
  52. ],
  53. "nyc": {
  54. "include": [
  55. "src/*.js",
  56. "fixtures/should-cover.js"
  57. ],
  58. "require": [
  59. "@babel/register"
  60. ],
  61. "sourceMap": false,
  62. "instrument": false
  63. },
  64. "bugs": {
  65. "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues"
  66. },
  67. "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme",
  68. "engines": {
  69. "node": ">=8"
  70. }
  71. }