web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.8 KiB

  1. {
  2. "name": "babel-plugin-istanbul",
  3. "version": "6.0.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. "@istanbuljs/load-nyc-config": "^1.0.0",
  14. "@istanbuljs/schema": "^0.1.2",
  15. "istanbul-lib-instrument": "^4.0.0",
  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. "standard-version": "^7.1.0"
  31. },
  32. "scripts": {
  33. "coverage": "nyc report --reporter=text-lcov | coveralls",
  34. "release": "babel src --out-dir lib",
  35. "pretest": "standard && npm run release",
  36. "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 5000 test/*.js",
  37. "prepublish": "npm test && npm run release",
  38. "version": "standard-version"
  39. },
  40. "standard": {
  41. "ignore": [
  42. "fixtures/*.js"
  43. ]
  44. },
  45. "repository": {
  46. "type": "git",
  47. "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git"
  48. },
  49. "keywords": [
  50. "istanbul",
  51. "babel",
  52. "plugin",
  53. "instrumentation"
  54. ],
  55. "nyc": {
  56. "include": [
  57. "src/*.js",
  58. "fixtures/should-cover.js"
  59. ],
  60. "require": [
  61. "@babel/register"
  62. ],
  63. "sourceMap": false,
  64. "instrument": false
  65. },
  66. "bugs": {
  67. "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues"
  68. },
  69. "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme",
  70. "engines": {
  71. "node": ">=8"
  72. }
  73. }