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.

65 lines
1.7 KiB

  1. {
  2. "name": "rollup-plugin-babel",
  3. "version": "4.4.0",
  4. "description": "Seamless integration between Rollup and Babel.",
  5. "main": "dist/rollup-plugin-babel.cjs.js",
  6. "module": "dist/rollup-plugin-babel.esm.js",
  7. "files": [
  8. "src",
  9. "dist"
  10. ],
  11. "keywords": [
  12. "rollup-plugin",
  13. "babel",
  14. "es2015",
  15. "es6"
  16. ],
  17. "homepage": "https://github.com/rollup/rollup-plugin-babel",
  18. "author": "Rich Harris",
  19. "contributors": [
  20. "Bogdan Chadkin <trysound@yandex.ru>",
  21. "Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
  22. ],
  23. "license": "MIT",
  24. "scripts": {
  25. "lint": "eslint src",
  26. "pretest": "npm run build",
  27. "test": "mocha",
  28. "prebuild": "rm -rf dist/*",
  29. "build": "rollup -c",
  30. "prepare": "npm run build",
  31. "preversion": "npm run lint && npm test"
  32. },
  33. "dependencies": {
  34. "@babel/helper-module-imports": "^7.0.0",
  35. "rollup-pluginutils": "^2.8.1"
  36. },
  37. "peerDependencies": {
  38. "@babel/core": "7 || ^7.0.0-rc.2",
  39. "rollup": ">=0.60.0 <3"
  40. },
  41. "devDependencies": {
  42. "@babel/core": "^7.3.4",
  43. "@babel/plugin-external-helpers": "^7.0.0",
  44. "@babel/plugin-proposal-decorators": "^7.0.0",
  45. "@babel/plugin-transform-runtime": "^7.0.0",
  46. "@babel/preset-env": "^7.3.4",
  47. "buble": "^0.19.3",
  48. "eslint": "^5.15.1",
  49. "eslint-config-prettier": "^3.3.0",
  50. "eslint-plugin-prettier": "^3.0.0",
  51. "husky": "^1.0.1",
  52. "lint-staged": "^7.2.2",
  53. "mocha": "^5.2.0",
  54. "prettier": "^1.15.3",
  55. "rollup": "^2.0.1",
  56. "rollup-plugin-buble": "^0.19.2",
  57. "rollup-plugin-json": "^3.0.0",
  58. "source-map": "^0.6.1",
  59. "source-map-support": "^0.5.6"
  60. },
  61. "repository": "rollup/rollup-plugin-babel",
  62. "bugs": {
  63. "url": "https://github.com/rollup/rollup-plugin-babel/issues"
  64. }
  65. }