web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.7 KiB

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