package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "_from": "babel-plugin-istanbul@^6.0.0",
  3. "_id": "babel-plugin-istanbul@6.0.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==",
  6. "_location": "/babel-plugin-istanbul",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "babel-plugin-istanbul@^6.0.0",
  12. "name": "babel-plugin-istanbul",
  13. "escapedName": "babel-plugin-istanbul",
  14. "rawSpec": "^6.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^6.0.0"
  17. },
  18. "_requiredBy": [
  19. "/@jest/transform",
  20. "/babel-jest"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz",
  23. "_shasum": "e159ccdc9af95e0b570c75b4573b7c34d671d765",
  24. "_spec": "babel-plugin-istanbul@^6.0.0",
  25. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\babel-jest",
  26. "author": {
  27. "name": "Thai Pangsakulyanont @dtinth"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {
  34. "@babel/helper-plugin-utils": "^7.0.0",
  35. "@istanbuljs/load-nyc-config": "^1.0.0",
  36. "@istanbuljs/schema": "^0.1.2",
  37. "istanbul-lib-instrument": "^4.0.0",
  38. "test-exclude": "^6.0.0"
  39. },
  40. "deprecated": false,
  41. "description": "A babel plugin that adds istanbul instrumentation to ES6 code",
  42. "devDependencies": {
  43. "@babel/cli": "^7.7.5",
  44. "@babel/core": "^7.7.5",
  45. "@babel/plugin-transform-modules-commonjs": "^7.7.5",
  46. "@babel/register": "^7.7.4",
  47. "chai": "^4.2.0",
  48. "coveralls": "^3.0.9",
  49. "cross-env": "^6.0.3",
  50. "mocha": "^6.2.2",
  51. "nyc": "^15.0.0",
  52. "pmock": "^0.2.3",
  53. "standard": "^14.3.1",
  54. "standard-version": "^7.1.0"
  55. },
  56. "engines": {
  57. "node": ">=8"
  58. },
  59. "files": [
  60. "lib"
  61. ],
  62. "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme",
  63. "keywords": [
  64. "istanbul",
  65. "babel",
  66. "plugin",
  67. "instrumentation"
  68. ],
  69. "license": "BSD-3-Clause",
  70. "main": "lib/index.js",
  71. "name": "babel-plugin-istanbul",
  72. "nyc": {
  73. "include": [
  74. "src/*.js",
  75. "fixtures/should-cover.js"
  76. ],
  77. "require": [
  78. "@babel/register"
  79. ],
  80. "sourceMap": false,
  81. "instrument": false
  82. },
  83. "repository": {
  84. "type": "git",
  85. "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git"
  86. },
  87. "scripts": {
  88. "coverage": "nyc report --reporter=text-lcov | coveralls",
  89. "prepublish": "npm test && npm run release",
  90. "pretest": "standard && npm run release",
  91. "release": "babel src --out-dir lib",
  92. "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 5000 test/*.js",
  93. "version": "standard-version"
  94. },
  95. "standard": {
  96. "ignore": [
  97. "fixtures/*.js"
  98. ]
  99. },
  100. "version": "6.0.0"
  101. }