package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. {
  2. "_from": "@babel/preset-modules@0.1.6-no-external-plugins",
  3. "_id": "@babel/preset-modules@0.1.6-no-external-plugins",
  4. "_inBundle": false,
  5. "_integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
  6. "_location": "/@babel/preset-modules",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "version",
  10. "registry": true,
  11. "raw": "@babel/preset-modules@0.1.6-no-external-plugins",
  12. "name": "@babel/preset-modules",
  13. "escapedName": "@babel%2fpreset-modules",
  14. "scope": "@babel",
  15. "rawSpec": "0.1.6-no-external-plugins",
  16. "saveSpec": null,
  17. "fetchSpec": "0.1.6-no-external-plugins"
  18. },
  19. "_requiredBy": [
  20. "/@babel/preset-env"
  21. ],
  22. "_resolved": "https://registry.npmmirror.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
  23. "_shasum": "ccb88a2c49c817236861fee7826080573b8a923a",
  24. "_spec": "@babel/preset-modules@0.1.6-no-external-plugins",
  25. "_where": "E:\\vue_project\\el-table-column\\node_modules\\@babel\\preset-env",
  26. "authors": [
  27. "Jason Miller <jason@developit.ca>"
  28. ],
  29. "bugs": {
  30. "url": "https://github.com/babel/preset-modules/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {
  34. "@babel/helper-plugin-utils": "^7.0.0",
  35. "@babel/types": "^7.4.4",
  36. "esutils": "^2.0.2"
  37. },
  38. "deprecated": false,
  39. "description": "A Babel preset that targets modern browsers by fixing engine bugs.",
  40. "devDependencies": {
  41. "@babel/cli": "^7.7.0",
  42. "@babel/core": "^7.7.2",
  43. "@babel/helper-fixtures": "^7.6.3",
  44. "@babel/helper-plugin-test-runner": "^7.14.5",
  45. "@babel/plugin-transform-modules-commonjs": "^7.5.0",
  46. "@babel/plugin-transform-react-jsx": "^7.7.0",
  47. "@babel/preset-env": "^7.9.6",
  48. "acorn-jsx": "^5.0.1",
  49. "babel-eslint": "^10.0.3",
  50. "babel-plugin-add-module-exports": "^1.0.2",
  51. "chalk": "^2.4.2",
  52. "concurrently": "^4.1.0",
  53. "eslint": "^6.6.0",
  54. "eslint-config-babel": "^9.0.0",
  55. "eslint-plugin-flowtype": "3",
  56. "eslint-plugin-import": "^2.18.2",
  57. "eslint-plugin-prettier": "^3.1.1",
  58. "gzip-size": "^5.1.1",
  59. "if-env": "^1.0.4",
  60. "jest": "^24.8.0",
  61. "karmatic": "^1.4.0",
  62. "prettier": "^1.19.1",
  63. "pretty-bytes": "^5.2.0",
  64. "rollup": "^1.16.3",
  65. "rollup-plugin-babel": "^4.3.3",
  66. "rollup-plugin-node-resolve": "^5.2.0",
  67. "terser": "^4.0.2",
  68. "webpack": "^4.35.0"
  69. },
  70. "eslintConfig": {
  71. "extends": "developit",
  72. "rules": {
  73. "no-console": 0,
  74. "new-cap": 0
  75. }
  76. },
  77. "eslintIgnore": [
  78. "test/fixtures/**/*",
  79. "test/integration/**/*"
  80. ],
  81. "files": [
  82. "src",
  83. "lib"
  84. ],
  85. "homepage": "https://github.com/babel/preset-modules#readme",
  86. "husky": {
  87. "hooks": {
  88. "pre-commit": "lint-staged"
  89. }
  90. },
  91. "jest": {
  92. "testEnvironment": "node",
  93. "roots": [
  94. "src",
  95. "test"
  96. ]
  97. },
  98. "keywords": [
  99. "babel",
  100. "preset",
  101. "preset-env",
  102. "modern",
  103. "modules",
  104. "ES Modules",
  105. "module/nomodule"
  106. ],
  107. "license": "MIT",
  108. "lint-staged": {
  109. "*.js": [
  110. "eslint --format=codeframe"
  111. ]
  112. },
  113. "main": "lib/index.js",
  114. "name": "@babel/preset-modules",
  115. "peerDependencies": {
  116. "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0"
  117. },
  118. "repository": {
  119. "type": "git",
  120. "url": "git+https://github.com/babel/preset-modules.git"
  121. },
  122. "scripts": {
  123. "build": "babel src -d lib --ignore '**/*.test.js'",
  124. "start": "concurrently -r 'npm:watch:* -s'",
  125. "test": "eslint src test && jest --colors",
  126. "test:browser": "cd test/browser && karmatic --no-coverage --browsers chrome:headless,sauce-chrome-61,sauce-firefox-60,sauce-safari-10,sauce-safari-11,sauce-edge-16,sauce-edge-17 '**/*.js'",
  127. "test:edge": "npm run test:local -- --browsers sauce-edge-16",
  128. "test:local": "cd test/browser && karmatic --no-coverage '**/*.js'",
  129. "test:safari": "npm run test:local -- --browsers sauce-safari-10",
  130. "watch:build": "npm run -s build -- -w",
  131. "watch:test": "jest --watch"
  132. },
  133. "version": "0.1.6-no-external-plugins"
  134. }