UNPKG

jest-vue

Version:

Jest Vue transform

77 lines (76 loc) 2.09 kB
{ "name": "jest-vue", "version": "0.8.2", "description": "Jest Vue transform", "main": "jest-vue.js", "keywords": [ "jest", "vue", "jest vue", "jest vue transform", "jest vue preprocessor", "jest-vue", "vue jest", "vue jest transform", "vue jest preprocessor" ], "scripts": { "lint": "eslint lib jest-vue.js test", "lint:fix": "npm run lint -- --fix", "release": "build/release.sh", "release:note": "node build/gen-release-note.js", "test": "npm run lint && ./test.sh", "unit": "./test.sh", "unit:run": "jest test --no-cache --runInBand --coverage --coverageDirectory test/coverage", "preinstall": "echo jest-vue has been renamed to vue-jest. Please install vue-jest for the latest version" }, "author": "Edd Yerburgh", "license": "MIT", "devDependencies": { "babel-jest": "^20.0.3", "babel-plugin-istanbul": "^4.1.4", "clear-module": "^2.1.0", "coffee-script": "^1.12.7", "conventional-changelog": "^1.1.5", "eslint": "^4.3.0", "eslint-plugin-html": "^3.1.1", "eslint-plugin-vue": "^2.1.0", "eslint-plugin-vue-libs": "^1.2.0", "jade": "^1.11.0", "jest": "^20.0.4", "pug": "^2.0.0-rc.3", "typescript": "^2.5.2", "vue": "^2.4.2", "vue-template-compiler": "^2.4.2", "vue-test-utils": "git+https://github.com/vuejs/vue-test-utils.git" }, "peerDependencies": { "vue": "^2.x", "vue-template-compiler": "^2.x" }, "dependencies": { "babel-core": "^6.25.0", "babel-preset-vue-app": "^1.3.1", "chalk": "^2.1.0", "convert-source-map": "^1.5.0", "find-babel-config": "^1.1.0", "js-beautify": "^1.6.14", "node-cache": "^4.1.1", "object-assign": "^4.1.1", "source-map": "^0.5.6", "tsconfig": "^7.0.0", "vue-template-es2015-compiler": "^1.5.3" }, "jest": { "moduleFileExtensions": [ "js", "json", "vue" ], "transform": { "^.+\\.js$": "<rootDir>/node_modules/babel-jest", ".*\\.(vue)$": "<rootDir>/jest-vue.js" }, "mapCoverage": true } }