package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "jest-serializer-vue",
  3. "description": "A jest serializer for Vue snapshots",
  4. "version": "2.0.2",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "lint": "eslint --ext .js,.vue .",
  11. "lint:fix": "npm run lint -- --fix",
  12. "publish": "semantic-release",
  13. "test": "npm run lint && npm run unit",
  14. "unit": "jest"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/eddyerburgh/jest-serializer-vue.git"
  19. },
  20. "keywords": [
  21. "jest"
  22. ],
  23. "author": "Edd Yerburgh",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/eddyerburgh/jest-serializer-vue/issues"
  27. },
  28. "homepage": "https://github.com/eddyerburgh/jest-serializer-vue#readme",
  29. "devDependencies": {
  30. "@vue/test-utils": "^1.0.0-beta.12",
  31. "babel-core": "^6.26.0",
  32. "babel-jest": "^22.4.1",
  33. "babel-preset-env": "^1.6.1",
  34. "conventional-changelog": "1.1.6",
  35. "eslint": "4.10.0",
  36. "eslint-config-standard": "10.2.1",
  37. "eslint-plugin-import": "2.8.0",
  38. "eslint-plugin-node": "5.2.1",
  39. "eslint-plugin-promise": "3.6.0",
  40. "eslint-plugin-standard": "^3.0.1",
  41. "eslint-plugin-vue": "beta",
  42. "jest": "^22.4.2",
  43. "semantic-release": "^15.5.0",
  44. "vue": "2.5.3",
  45. "vue-jest": "1.0.2",
  46. "vue-template-compiler": "2.5.3"
  47. },
  48. "jest": {
  49. "moduleFileExtensions": [
  50. "js",
  51. "json",
  52. "vue"
  53. ],
  54. "transform": {
  55. "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
  56. ".*\\.vue$": "<rootDir>/node_modules/vue-jest"
  57. },
  58. "snapshotSerializers": [
  59. "<rootDir>/index.js"
  60. ]
  61. },
  62. "dependencies": {
  63. "pretty": "2.0.0"
  64. }
  65. }