1
0

package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "babel-plugin-preval",
  3. "version": "4.0.0",
  4. "description": "Pre-evaluate code at build-time",
  5. "engines": {
  6. "node": ">=8",
  7. "npm": ">=6"
  8. },
  9. "main": "dist/index.js",
  10. "scripts": {
  11. "build": "kcd-scripts build",
  12. "lint": "kcd-scripts lint",
  13. "test": "kcd-scripts test",
  14. "test:update": "npm test -- --updateSnapshot --coverage",
  15. "validate": "kcd-scripts validate"
  16. },
  17. "husky": {
  18. "hooks": {
  19. "pre-commit": "kcd-scripts pre-commit"
  20. }
  21. },
  22. "files": [
  23. "dist",
  24. "macro.js"
  25. ],
  26. "keywords": [
  27. "babel",
  28. "babel-plugin",
  29. "eval",
  30. "precompile",
  31. "babel-plugin-macros"
  32. ],
  33. "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
  34. "license": "MIT",
  35. "dependencies": {
  36. "@babel/runtime": "^7.7.2",
  37. "babel-plugin-macros": "^2.6.1",
  38. "require-from-string": "^2.0.2"
  39. },
  40. "devDependencies": {
  41. "ast-pretty-print": "^2.0.1",
  42. "babel-plugin-tester": "^7.0.3",
  43. "kcd-scripts": "^1.11.0"
  44. },
  45. "eslintConfig": {
  46. "extends": "./node_modules/kcd-scripts/eslint.js"
  47. },
  48. "eslintIgnore": [
  49. "node_modules",
  50. "coverage",
  51. "dist"
  52. ],
  53. "babel": {
  54. "presets": [
  55. "kcd-scripts/babel"
  56. ]
  57. },
  58. "repository": {
  59. "type": "git",
  60. "url": "https://github.com/kentcdodds/babel-plugin-preval.git"
  61. },
  62. "bugs": {
  63. "url": "https://github.com/kentcdodds/babel-plugin-preval/issues"
  64. },
  65. "homepage": "https://github.com/kentcdodds/babel-plugin-preval#readme"
  66. }