package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "vue-jest",
  3. "version": "1.4.0",
  4. "description": "Jest Vue transform",
  5. "main": "vue-jest.js",
  6. "keywords": [
  7. "jest",
  8. "vue",
  9. "jest vue",
  10. "jest vue transform",
  11. "jest vue preprocessor",
  12. "vue jest",
  13. "vue jest",
  14. "vue jest transform",
  15. "vue jest preprocessor"
  16. ],
  17. "scripts": {
  18. "lint": "eslint lib vue-jest.js test",
  19. "lint:fix": "npm run lint -- --fix",
  20. "release": "build/release.sh",
  21. "release:note": "node build/gen-release-note.js",
  22. "test": "npm run lint && ./test.sh",
  23. "unit": "./test.sh",
  24. "unit:run": "jest test --no-cache --runInBand --coverage --coverageDirectory test/coverage"
  25. },
  26. "author": "Edd Yerburgh",
  27. "license": "MIT",
  28. "devDependencies": {
  29. "babel-jest": "^20.0.3",
  30. "babel-plugin-istanbul": "^4.1.4",
  31. "clear-module": "^2.1.0",
  32. "coffeescript": "^2.0.3",
  33. "conventional-changelog": "^1.1.5",
  34. "eslint": "^4.3.0",
  35. "eslint-plugin-html": "^3.1.1",
  36. "eslint-plugin-vue": "^2.1.0",
  37. "eslint-plugin-vue-libs": "^1.2.0",
  38. "hamljs": "^0.6.2",
  39. "jade": "^1.11.0",
  40. "jest": "^20.0.4",
  41. "pug": "^2.0.0-rc.3",
  42. "typescript": "^2.5.2",
  43. "vue": "^2.4.2",
  44. "vue-template-compiler": "^2.4.2",
  45. "vue-test-utils": "git+https://github.com/vuejs/vue-test-utils.git"
  46. },
  47. "peerDependencies": {
  48. "vue": "^2.x",
  49. "vue-template-compiler": "^2.x"
  50. },
  51. "dependencies": {
  52. "babel-core": "^6.25.0",
  53. "babel-preset-vue-app": "^1.3.1",
  54. "chalk": "^2.1.0",
  55. "find-babel-config": "^1.1.0",
  56. "js-beautify": "^1.6.14",
  57. "node-cache": "^4.1.1",
  58. "object-assign": "^4.1.1",
  59. "source-map": "^0.5.6",
  60. "tsconfig": "^7.0.0",
  61. "vue-template-es2015-compiler": "^1.5.3"
  62. },
  63. "jest": {
  64. "moduleFileExtensions": [
  65. "js",
  66. "json",
  67. "vue"
  68. ],
  69. "transform": {
  70. "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
  71. ".*\\.(vue)$": "<rootDir>/vue-jest.js"
  72. },
  73. "mapCoverage": true
  74. },
  75. "repository": {
  76. "type": "git",
  77. "url": "git+https://github.com/eddyerburgh/vue-jest.git"
  78. }
  79. }