package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. {
  2. "_from": "terser-webpack-plugin@4.2.3",
  3. "_id": "terser-webpack-plugin@4.2.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==",
  6. "_location": "/terser-webpack-plugin",
  7. "_phantomChildren": {
  8. "@types/json-schema": "7.0.7",
  9. "ajv": "6.12.6",
  10. "ajv-keywords": "3.5.2",
  11. "commondir": "1.0.1",
  12. "find-up": "4.1.0",
  13. "source-map-support": "0.5.19",
  14. "yocto-queue": "0.1.0"
  15. },
  16. "_requested": {
  17. "type": "version",
  18. "registry": true,
  19. "raw": "terser-webpack-plugin@4.2.3",
  20. "name": "terser-webpack-plugin",
  21. "escapedName": "terser-webpack-plugin",
  22. "rawSpec": "4.2.3",
  23. "saveSpec": null,
  24. "fetchSpec": "4.2.3"
  25. },
  26. "_requiredBy": [
  27. "/react-scripts"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz",
  30. "_shasum": "28daef4a83bd17c1db0297070adc07fc8cfc6a9a",
  31. "_spec": "terser-webpack-plugin@4.2.3",
  32. "_where": "/Users/jane/myproject/node_modules/react-scripts",
  33. "author": {
  34. "name": "webpack Contrib Team"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/webpack-contrib/terser-webpack-plugin/issues"
  38. },
  39. "bundleDependencies": false,
  40. "dependencies": {
  41. "cacache": "^15.0.5",
  42. "find-cache-dir": "^3.3.1",
  43. "jest-worker": "^26.5.0",
  44. "p-limit": "^3.0.2",
  45. "schema-utils": "^3.0.0",
  46. "serialize-javascript": "^5.0.1",
  47. "source-map": "^0.6.1",
  48. "terser": "^5.3.4",
  49. "webpack-sources": "^1.4.3"
  50. },
  51. "deprecated": false,
  52. "description": "Terser plugin for webpack",
  53. "devDependencies": {
  54. "@babel/cli": "^7.11.6",
  55. "@babel/core": "^7.11.6",
  56. "@babel/preset-env": "^7.11.5",
  57. "@commitlint/cli": "^11.0.0",
  58. "@commitlint/config-conventional": "^11.0.0",
  59. "@webpack-contrib/defaults": "^6.3.0",
  60. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  61. "babel-jest": "^26.5.2",
  62. "copy-webpack-plugin": "^6.2.0",
  63. "cross-env": "^7.0.2",
  64. "del": "^6.0.0",
  65. "del-cli": "^3.0.1",
  66. "eslint": "^7.10.0",
  67. "eslint-config-prettier": "^6.12.0",
  68. "eslint-plugin-import": "^2.22.1",
  69. "file-loader": "^6.1.0",
  70. "husky": "^4.3.0",
  71. "jest": "^26.5.2",
  72. "lint-staged": "^10.4.0",
  73. "memfs": "^3.2.0",
  74. "npm-run-all": "^4.1.5",
  75. "prettier": "^2.1.2",
  76. "standard-version": "^9.0.0",
  77. "uglify-js": "^3.11.1",
  78. "webpack": "^4.44.2",
  79. "worker-loader": "^3.0.3"
  80. },
  81. "engines": {
  82. "node": ">= 10.13.0"
  83. },
  84. "files": [
  85. "dist"
  86. ],
  87. "funding": {
  88. "type": "opencollective",
  89. "url": "https://opencollective.com/webpack"
  90. },
  91. "homepage": "https://github.com/webpack-contrib/terser-webpack-plugin",
  92. "keywords": [
  93. "uglify",
  94. "uglify-js",
  95. "uglify-es",
  96. "terser",
  97. "webpack",
  98. "webpack-plugin",
  99. "minification",
  100. "compress",
  101. "compressor",
  102. "min",
  103. "minification",
  104. "minifier",
  105. "minify",
  106. "optimize",
  107. "optimizer"
  108. ],
  109. "license": "MIT",
  110. "main": "dist/cjs.js",
  111. "name": "terser-webpack-plugin",
  112. "peerDependencies": {
  113. "webpack": "^4.0.0 || ^5.0.0"
  114. },
  115. "repository": {
  116. "type": "git",
  117. "url": "git+https://github.com/webpack-contrib/terser-webpack-plugin.git"
  118. },
  119. "scripts": {
  120. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  121. "clean": "del-cli dist",
  122. "commitlint": "commitlint --from=master",
  123. "defaults": "webpack-defaults",
  124. "lint": "npm-run-all -l -p \"lint:**\"",
  125. "lint:js": "eslint --cache .",
  126. "lint:prettier": "prettier --list-different .",
  127. "prebuild": "npm run clean",
  128. "prepare": "npm run build",
  129. "pretest": "npm run lint",
  130. "release": "standard-version",
  131. "security": "npm audit",
  132. "start": "npm run build -- -w",
  133. "test": "npm run test:coverage",
  134. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  135. "test:only": "cross-env NODE_ENV=test jest",
  136. "test:watch": "npm run test:only -- --watch"
  137. },
  138. "version": "4.2.3"
  139. }