UNPKG

3.36 kBJSONView Raw
1{
2 "name": "@vue/test-utils",
3 "version": "2.4.6",
4 "license": "MIT",
5 "main": "dist/vue-test-utils.cjs.js",
6 "unpkg": "dist/vue-test-utils.browser.js",
7 "types": "dist/index.d.ts",
8 "module": "dist/vue-test-utils.esm-bundler.mjs",
9 "exports": {
10 ".": {
11 "types": "./dist/index.d.ts",
12 "node": "./dist/vue-test-utils.cjs.js",
13 "import": "./dist/vue-test-utils.esm-bundler.mjs",
14 "browser": "./dist/vue-test-utils.browser.js",
15 "require": "./dist/vue-test-utils.cjs.js",
16 "default": "./dist/vue-test-utils.cjs.js"
17 },
18 "./package.json": "./package.json"
19 },
20 "files": [
21 "dist",
22 "README.md",
23 "dist/index.d.ts"
24 ],
25 "dependencies": {
26 "js-beautify": "^1.14.9",
27 "vue-component-type-helpers": "^2.0.0"
28 },
29 "devDependencies": {
30 "@rollup/plugin-commonjs": "25.0.7",
31 "@rollup/plugin-json": "6.1.0",
32 "@rollup/plugin-node-resolve": "15.2.3",
33 "@rollup/plugin-replace": "5.0.5",
34 "@rollup/plugin-typescript": "11.1.6",
35 "@types/js-beautify": "1.14.3",
36 "@types/node": "20.12.8",
37 "@typescript-eslint/eslint-plugin": "7.8.0",
38 "@typescript-eslint/parser": "7.8.0",
39 "@vitejs/plugin-vue": "5.0.4",
40 "@vitejs/plugin-vue-jsx": "3.1.0",
41 "@vitest/coverage-v8": "1.5.3",
42 "@vue/compat": "3.4.26",
43 "@vue/compiler-dom": "3.4.26",
44 "@vue/compiler-sfc": "3.4.26",
45 "@vue/server-renderer": "3.4.26",
46 "eslint": "8.57.0",
47 "eslint-config-prettier": "9.1.0",
48 "eslint-plugin-prettier": "5.1.3",
49 "husky": "9.0.11",
50 "jsdom": "24.0.0",
51 "jsdom-global": "3.0.2",
52 "lint-staged": "15.2.2",
53 "prettier": "3.2.5",
54 "reflect-metadata": "0.2.2",
55 "rollup": "4.17.2",
56 "tslib": "2.6.2",
57 "typescript": "5.4.5",
58 "unplugin-vue-components": "0.27.0",
59 "vite": "5.2.10",
60 "vitepress": "1.1.4",
61 "vitepress-translation-helper": "0.2.1",
62 "vitest": "1.5.3",
63 "vue": "3.4.26",
64 "vue-class-component": "8.0.0-rc.1",
65 "vue-router": "4.3.2",
66 "vue-tsc": "2.0.16",
67 "vuex": "4.1.0"
68 },
69 "author": {
70 "name": "Lachlan Miller",
71 "email": "lachlan.miller.1990@outlook.com"
72 },
73 "husky": {
74 "hooks": {
75 "pre-commit": "lint-staged"
76 }
77 },
78 "lint-staged": {
79 "*.ts": [
80 "eslint --fix"
81 ],
82 "*.md": [
83 "prettier --write"
84 ]
85 },
86 "repository": {
87 "type": "git",
88 "url": "git+https://github.com/vuejs/test-utils.git"
89 },
90 "homepage": "https://github.com/vuejs/test-utils",
91 "scripts": {
92 "test": "vitest",
93 "test:coverage": "vitest --coverage",
94 "test:watch": "vitest --watch",
95 "test:build": "vitest --mode test-build",
96 "tsd": "tsc -p test-dts/tsconfig.tsd.json",
97 "build": "rollup -c rollup.config.ts --bundleConfigAsCjs",
98 "lint": "eslint --ext .ts src/ tests/",
99 "lint:fix": "pnpm run lint --fix",
100 "docs:dev": "vitepress dev docs",
101 "docs:build": "vitepress build docs",
102 "docs:translation:compare": "v-translation compare --status-file=docs/.vitepress/translation-status.json --path={docs/index.md,docs/guide,docs/installation,docs/migration}",
103 "docs:translation:update": "v-translation update --status-file=docs/.vitepress/translation-status.json",
104 "docs:translation:status": "v-translation status --status-file=docs/.vitepress/translation-status.json",
105 "vue-tsc": "vue-tsc --noEmit -p tsconfig.volar.json"
106 }
107}
\No newline at end of file