package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "babel-plugin-macros",
  3. "version": "3.1.0",
  4. "description": "Allows you to build compile-time libraries",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "build": "kcd-scripts build",
  8. "lint": "kcd-scripts lint",
  9. "setup": "npm install && npm run validate -s",
  10. "test": "kcd-scripts test",
  11. "test:update": "npm test -- --updateSnapshot --coverage",
  12. "validate": "kcd-scripts validate"
  13. },
  14. "files": [
  15. "dist"
  16. ],
  17. "keywords": [
  18. "babel-plugin",
  19. "macros",
  20. "macro",
  21. "babel-macro",
  22. "babel-plugin-macro",
  23. "babel-macros",
  24. "babel-plugin-macros"
  25. ],
  26. "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
  27. "license": "MIT",
  28. "dependencies": {
  29. "@babel/runtime": "^7.12.5",
  30. "cosmiconfig": "^7.0.0",
  31. "resolve": "^1.19.0"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "^7.12.9",
  35. "@babel/parser": "^7.12.7",
  36. "@babel/types": "^7.12.7",
  37. "ast-pretty-print": "^2.0.1",
  38. "babel-plugin-tester": "^10.0.0",
  39. "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
  40. "cpy": "^8.1.1",
  41. "kcd-scripts": "^7.1.0"
  42. },
  43. "eslintConfig": {
  44. "extends": "./node_modules/kcd-scripts/eslint.js"
  45. },
  46. "eslintIgnore": [
  47. "node_modules",
  48. "coverage",
  49. "dist"
  50. ],
  51. "babel": {
  52. "presets": [
  53. "./other/babel-config.js"
  54. ]
  55. },
  56. "repository": {
  57. "type": "git",
  58. "url": "https://github.com/kentcdodds/babel-plugin-macros"
  59. },
  60. "bugs": {
  61. "url": "https://github.com/kentcdodds/babel-plugin-macros/issues"
  62. },
  63. "homepage": "https://github.com/kentcdodds/babel-plugin-macros#readme",
  64. "engines": {
  65. "node": ">=10",
  66. "npm": ">=6"
  67. }
  68. }