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.

51 lines
1.1 KiB

  1. {
  2. "name": "rollup-plugin-terser",
  3. "version": "5.3.1",
  4. "description": "Rollup plugin to minify generated es bundle",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "files": [
  8. "index.js",
  9. "index.d.ts",
  10. "transform.js"
  11. ],
  12. "scripts": {
  13. "test": "jest",
  14. "prepublish": "yarn test"
  15. },
  16. "babel": {
  17. "plugins": [
  18. "@babel/transform-async-to-generator"
  19. ]
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/TrySound/rollup-plugin-terser.git"
  24. },
  25. "keywords": [
  26. "rollup",
  27. "rollup-plugin",
  28. "terser",
  29. "minify"
  30. ],
  31. "author": "Bogdan Chadkin <trysound@yandex.ru>",
  32. "license": "MIT",
  33. "dependencies": {
  34. "@babel/code-frame": "^7.5.5",
  35. "jest-worker": "^24.9.0",
  36. "rollup-pluginutils": "^2.8.2",
  37. "serialize-javascript": "^4.0.0",
  38. "terser": "^4.6.2"
  39. },
  40. "peerDependencies": {
  41. "rollup": ">=0.66.0 <3"
  42. },
  43. "devDependencies": {
  44. "@babel/core": "^7.7.7",
  45. "@babel/plugin-transform-async-to-generator": "^7.7.4",
  46. "babel-jest": "^24.9.0",
  47. "jest": "^24.9.0",
  48. "prettier": "^1.19.1",
  49. "rollup": "^2.0.0"
  50. }
  51. }