package.json 912 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "vue-jscodeshift-adapter",
  3. "version": "2.2.1",
  4. "description": "Run jscodeshift on Vue single file components",
  5. "main": "src/index.js",
  6. "scripts": {
  7. "test": "jest"
  8. },
  9. "keywords": [
  10. "vue",
  11. "sfc",
  12. "component",
  13. "refactor",
  14. "codemod",
  15. "jscodeshift"
  16. ],
  17. "author": "Paul Salaets <psalaets@gmail.com>",
  18. "license": "MIT",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/psalaets/vue-jscodeshift-adapter.git"
  22. },
  23. "homepage": "https://github.com/psalaets/vue-jscodeshift-adapter",
  24. "bugs": {
  25. "url": "https://github.com/psalaets/vue-jscodeshift-adapter/issues"
  26. },
  27. "devDependencies": {
  28. "jest": "^23.6.0",
  29. "jscodeshift": "^0.9.0",
  30. "jscodeshift-helper": "^1.1.0"
  31. },
  32. "dependencies": {
  33. "vue-sfc-descriptor-to-string": "^1.0.0",
  34. "vue-template-compiler": "^2.5.13"
  35. },
  36. "jest": {
  37. "testEnvironment": "node"
  38. }
  39. }