package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "babel-plugin-import",
  3. "version": "1.13.3",
  4. "description": "Component modular import plugin for babel.",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/ant-design/babel-plugin-import"
  8. },
  9. "main": "lib/index.js",
  10. "scripts": {
  11. "build": "father-next",
  12. "test": "umi-test --coverage",
  13. "debug": "umi-test",
  14. "lint": "eslint --ext .js src",
  15. "coveralls": "cat ./coverage/lcov.info | coveralls",
  16. "prepack": "npm run build",
  17. "prepublishOnly": "npm run build && np --no-cleanup --yolo --no-publish --any-branch"
  18. },
  19. "husky": {
  20. "hooks": {
  21. "pre-commit": "lint-staged"
  22. }
  23. },
  24. "lint-staged": {
  25. "*.js": [
  26. "eslint",
  27. "prettier --write"
  28. ]
  29. },
  30. "keywords": [
  31. "babel-plugin",
  32. "antd"
  33. ],
  34. "author": "chencheng <sorrycc@gmail.com>",
  35. "license": "MIT",
  36. "devDependencies": {
  37. "@babel/core": "^7.0.0",
  38. "@babel/preset-react": "^7.0.0",
  39. "@umijs/test": "^3.2.28",
  40. "babel-core": "^7.0.0-0",
  41. "babel-preset-umi": "^1.0.0",
  42. "coveralls": "^3.0.6",
  43. "eslint": "^7.1.0",
  44. "eslint-config-airbnb": "^18.1.0",
  45. "eslint-config-prettier": "^6.11.0",
  46. "eslint-plugin-import": "^2.20.2",
  47. "eslint-plugin-prettier": "^3.1.3",
  48. "father-next": "^3.0.0-alpha.3",
  49. "husky": "^4.2.5",
  50. "lint-staged": "^10.2.8",
  51. "material-ui": "^0.20.2",
  52. "np": "^6.2.0",
  53. "prettier": "^2.0.5",
  54. "react-toolbox": "^1.2.5"
  55. },
  56. "babel": {
  57. "presets": [
  58. "umi"
  59. ]
  60. },
  61. "files": [
  62. "src",
  63. "lib",
  64. "package.json",
  65. "README.md"
  66. ],
  67. "dependencies": {
  68. "@babel/helper-module-imports": "^7.0.0",
  69. "@babel/runtime": "^7.0.0"
  70. }
  71. }