package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "babel-plugin-module-resolver",
  3. "version": "3.2.0",
  4. "main": "lib/index.js",
  5. "description": "Module resolver plugin for Babel",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/tleunen/babel-plugin-module-resolver.git"
  9. },
  10. "engines": {
  11. "node": ">= 6.0.0"
  12. },
  13. "files": [
  14. "lib"
  15. ],
  16. "author": {
  17. "name": "Tommy Leunen",
  18. "email": "tommy.leunen@gmail.com",
  19. "url": "http://tommyleunen.com"
  20. },
  21. "license": "MIT",
  22. "keywords": [
  23. "babel",
  24. "babel-plugin",
  25. "module",
  26. "resolver",
  27. "alias",
  28. "rewrite",
  29. "resolve",
  30. "rename",
  31. "mapping",
  32. "require",
  33. "import"
  34. ],
  35. "dependencies": {
  36. "find-babel-config": "^1.1.0",
  37. "glob": "^7.1.2",
  38. "pkg-up": "^2.0.0",
  39. "reselect": "^3.0.1",
  40. "resolve": "^1.4.0"
  41. },
  42. "devDependencies": {
  43. "@babel/cli": "^7.1.0",
  44. "@babel/core": "^7.1.0",
  45. "@babel/plugin-syntax-dynamic-import": "^7.0.0",
  46. "@babel/plugin-transform-modules-commonjs": "^7.1.0",
  47. "@babel/preset-env": "^7.1.0",
  48. "babel-core": "^7.0.0-bridge.0",
  49. "babel-jest": "^23.6.0",
  50. "common-tags": "^1.4.0",
  51. "eslint": "^4.19.0",
  52. "eslint-config-airbnb-base": "^12.1.0",
  53. "eslint-config-prettier": "^2.9.0",
  54. "eslint-plugin-import": "^2.9.0",
  55. "husky": "^0.14.3",
  56. "jest": "^23.6.0",
  57. "lint-staged": "^7.0.0",
  58. "prettier-eslint-cli": "^4.7.1",
  59. "standard-version": "^4.2.0"
  60. },
  61. "scripts": {
  62. "lint": "eslint src test",
  63. "compile": "babel src --out-dir lib",
  64. "pretest": "npm run lint",
  65. "test": "jest",
  66. "test:coverage": "jest --coverage",
  67. "test:watch": "jest --watch",
  68. "prepublish": "npm run compile",
  69. "release": "standard-version",
  70. "precommit": "lint-staged"
  71. },
  72. "lint-staged": {
  73. "*.{js}": [
  74. "prettier-eslint --write",
  75. "git add"
  76. ]
  77. },
  78. "jest": {
  79. "testEnvironment": "node",
  80. "testRegex": "/test/.*\\.test\\.js$",
  81. "collectCoverageFrom": [
  82. "src/**/*.js",
  83. "!src/log.js"
  84. ]
  85. }
  86. }