package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "jest-serializer-vue",
  3. "description": "A jest serializer for Vue snapshots",
  4. "version": "0.3.0",
  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. "release": "build/release.sh",
  13. "release:note": "node build/gen-release-note.js",
  14. "test": "npm run lint && npm run unit",
  15. "unit": "jest"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/eddyerburgh/jest-serializer-vue.git"
  20. },
  21. "keywords": [
  22. "jest"
  23. ],
  24. "author": "Edd Yerburgh",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/eddyerburgh/jest-serializer-vue/issues"
  28. },
  29. "homepage": "https://github.com/eddyerburgh/jest-serializer-vue#readme",
  30. "devDependencies": {
  31. "babel-jest": "21.2.0",
  32. "babel-preset-es2015": "6.24.1",
  33. "conventional-changelog": "1.1.6",
  34. "eslint": "4.10.0",
  35. "eslint-config-standard": "10.2.1",
  36. "eslint-plugin-import": "2.8.0",
  37. "eslint-plugin-node": "5.2.1",
  38. "eslint-plugin-promise": "3.6.0",
  39. "eslint-plugin-standard": "^3.0.1",
  40. "eslint-plugin-vue": "beta",
  41. "jest": "21.2.1",
  42. "vue": "2.5.3",
  43. "vue-jest": "1.0.2",
  44. "vue-server-renderer": "2.5.3",
  45. "vue-template-compiler": "2.5.3",
  46. "vue-test-utils": "1.0.0-beta.4"
  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. }