package.json 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. {
  2. "name": "rollup",
  3. "version": "2.64.0",
  4. "description": "Next-generation ES module bundler",
  5. "main": "dist/rollup.js",
  6. "module": "dist/es/rollup.js",
  7. "typings": "dist/rollup.d.ts",
  8. "bin": {
  9. "rollup": "dist/bin/rollup"
  10. },
  11. "scripts": {
  12. "build": "shx rm -rf dist && git rev-parse HEAD > .commithash && rollup --config rollup.config.ts --configPlugin typescript && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
  13. "build:cjs": "shx rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript --configTest && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
  14. "build:bootstrap": "node dist/bin/rollup --config rollup.config.ts --configPlugin typescript && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup",
  15. "ci:lint": "npm run lint:nofix",
  16. "ci:test": "npm run build:cjs && npm run build:bootstrap && npm run test:all",
  17. "ci:test:only": "npm run build:cjs && npm run build:bootstrap && npm run test:only",
  18. "ci:coverage": "npm run build:cjs && npm run build:bootstrap && nyc --reporter lcovonly mocha",
  19. "lint": "eslint . --fix --cache && prettier --write \"**/*.md\"",
  20. "lint:nofix": "eslint . && prettier --check \"**/*.md\"",
  21. "lint:markdown": "prettier --write \"**/*.md\"",
  22. "perf": "npm run build:cjs && node --expose-gc scripts/perf.js",
  23. "perf:debug": "node --inspect-brk scripts/perf-debug.js",
  24. "perf:init": "node scripts/perf-init.js",
  25. "_postinstall": "husky install",
  26. "postpublish": "pinst --enable && git push && git push --tags",
  27. "prepare": "husky install && npm run build",
  28. "prepublishOnly": "pinst --disable",
  29. "security": "npm audit",
  30. "test": "npm run build && npm run test:all",
  31. "test:cjs": "npm run build:cjs && npm run test:only",
  32. "test:quick": "mocha -b test/test.js",
  33. "test:all": "npm run test:only && npm run test:browser && npm run test:typescript && npm run test:leak && npm run test:package",
  34. "test:coverage": "npm run build:cjs && shx rm -rf coverage/* && nyc --reporter html mocha test/test.js",
  35. "test:coverage:browser": "npm run build && shx rm -rf coverage/* && nyc mocha test/browser/index.js",
  36. "test:leak": "node --expose-gc test/leak/index.js",
  37. "test:package": "node scripts/test-package.js",
  38. "test:only": "mocha test/test.js",
  39. "test:typescript": "shx rm -rf test/typescript/dist && shx cp -r dist test/typescript/ && tsc --noEmit -p test/typescript && tsc --noEmit",
  40. "test:browser": "mocha test/browser/index.js",
  41. "watch": "rollup --config rollup.config.ts --configPlugin typescript --watch"
  42. },
  43. "repository": "rollup/rollup",
  44. "keywords": [
  45. "modules",
  46. "bundler",
  47. "bundling",
  48. "es6",
  49. "optimizer"
  50. ],
  51. "author": "Rich Harris",
  52. "license": "MIT",
  53. "bugs": {
  54. "url": "https://github.com/rollup/rollup/issues"
  55. },
  56. "homepage": "https://rollupjs.org/",
  57. "optionalDependencies": {
  58. "fsevents": "~2.3.2"
  59. },
  60. "devDependencies": {
  61. "@rollup/plugin-alias": "^3.1.8",
  62. "@rollup/plugin-buble": "^0.21.3",
  63. "@rollup/plugin-commonjs": "^21.0.1",
  64. "@rollup/plugin-json": "^4.1.0",
  65. "@rollup/plugin-node-resolve": "^13.1.1",
  66. "@rollup/plugin-replace": "^3.0.0",
  67. "@rollup/plugin-typescript": "^8.2.5",
  68. "@rollup/pluginutils": "^4.1.2",
  69. "@types/node": "^10.17.60",
  70. "@types/require-relative": "^0.8.0",
  71. "@types/signal-exit": "^3.0.1",
  72. "@types/yargs-parser": "^20.2.1",
  73. "@typescript-eslint/eslint-plugin": "^5.7.0",
  74. "@typescript-eslint/parser": "^5.7.0",
  75. "acorn": "^8.6.0",
  76. "acorn-jsx": "^5.3.2",
  77. "acorn-walk": "^8.2.0",
  78. "buble": "^0.20.0",
  79. "chokidar": "^3.5.2",
  80. "colorette": "^2.0.16",
  81. "core-js": "^3.20.0",
  82. "date-time": "^4.0.0",
  83. "es5-shim": "^4.6.2",
  84. "es6-shim": "^0.35.6",
  85. "eslint": "^8.4.1",
  86. "eslint-config-prettier": "^8.3.0",
  87. "eslint-plugin-import": "^2.25.3",
  88. "eslint-plugin-prettier": "^4.0.0",
  89. "execa": "^5.1.1",
  90. "fixturify": "^2.1.1",
  91. "hash.js": "^1.1.7",
  92. "husky": "^7.0.4",
  93. "is-reference": "^3.0.0",
  94. "lint-staged": "^10.5.4",
  95. "locate-character": "^2.0.5",
  96. "magic-string": "^0.25.7",
  97. "mocha": "^9.1.3",
  98. "nyc": "^15.1.0",
  99. "pinst": "^2.1.6",
  100. "prettier": "^2.5.1",
  101. "pretty-bytes": "^5.6.0",
  102. "pretty-ms": "^7.0.1",
  103. "require-relative": "^0.8.7",
  104. "requirejs": "^2.3.6",
  105. "rollup": "^2.61.1",
  106. "rollup-plugin-license": "^2.5.0",
  107. "rollup-plugin-string": "^3.0.0",
  108. "rollup-plugin-terser": "^7.0.2",
  109. "rollup-plugin-thatworks": "^1.0.4",
  110. "sander": "^0.6.0",
  111. "shx": "^0.3.3",
  112. "signal-exit": "^3.0.6",
  113. "source-map": "^0.7.3",
  114. "source-map-support": "^0.5.21",
  115. "sourcemap-codec": "^1.4.8",
  116. "systemjs": "^6.11.0",
  117. "terser": "^5.10.0",
  118. "tslib": "^2.3.1",
  119. "typescript": "^4.5.4",
  120. "weak-napi": "^2.0.2",
  121. "yargs-parser": "^20.2.9"
  122. },
  123. "files": [
  124. "dist/**/*.js",
  125. "dist/*.d.ts",
  126. "dist/bin/rollup",
  127. "dist/es/package.json",
  128. "dist/rollup.browser.js.map"
  129. ],
  130. "engines": {
  131. "node": ">=10.0.0"
  132. },
  133. "exports": {
  134. ".": {
  135. "node": {
  136. "require": "./dist/rollup.js",
  137. "import": "./dist/es/rollup.js"
  138. },
  139. "default": "./dist/es/rollup.browser.js"
  140. },
  141. "./dist/": "./dist/"
  142. }
  143. }