forked from vuejs/test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@vue/test-utils",
"version": "2.4.0-alpha.0",
"license": "MIT",
"main": "dist/vue-test-utils.cjs.js",
"unpkg": "dist/vue-test-utils.browser.js",
"types": "dist/index.d.ts",
"module": "dist/vue-test-utils.esm-bundler.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-test-utils.esm-bundler.mjs",
"browser": "./dist/vue-test-utils.browser.js",
"require": "./dist/vue-test-utils.cjs.js",
"default": "./dist/vue-test-utils.cjs.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"dist/index.d.ts"
],
"dependencies": {
"js-beautify": "1.14.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.2",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-typescript": "11.1.0",
"@types/js-beautify": "1.13.3",
"@types/node": "18.15.11",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"@vitejs/plugin-vue": "4.1.0",
"@vitejs/plugin-vue-jsx": "3.0.1",
"@vitest/coverage-c8": "0.30.1",
"@vue/compat": "3.2.47",
"@vue/compiler-dom": "3.2.47",
"@vue/compiler-sfc": "3.2.47",
"@vue/server-renderer": "3.2.47",
"c8": "7.13.0",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jsdom": "21.1.1",
"jsdom-global": "3.0.2",
"lint-staged": "13.2.1",
"prettier": "2.8.7",
"reflect-metadata": "0.1.13",
"rollup": "3.20.2",
"tslib": "2.5.0",
"typescript": "4.9.5",
"unplugin-vue-components": "0.24.1",
"vite": "4.2.1",
"vitepress": "0.22.4",
"vitest": "0.30.1",
"vue": "3.2.47",
"vue-class-component": "8.0.0-rc.1",
"vue-component-type-helpers": "1.3.14-patch.2",
"vue-router": "4.1.6",
"vue-tsc": "1.3.14",
"vuex": "4.1.0"
},
"peerDependencies": {
"@vue/compiler-dom": "^3.0.1",
"@vue/server-renderer": "^3.0.1",
"vue": "^3.0.1"
},
"optionalDependencies": {
"@vue/compiler-dom": "^3.0.1",
"@vue/server-renderer": "^3.0.1"
},
"author": {
"name": "Lachlan Miller",
"email": "[email protected]"
},
"scripts": {
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"test:build": "vitest --mode test-build",
"tsd": "tsc -p test-dts/tsconfig.tsd.json",
"build": "rollup -c rollup.config.ts --bundleConfigAsCjs",
"prepare": "rollup -c rollup.config.ts --bundleConfigAsCjs",
"lint": "eslint --ext .ts src/ tests/",
"lint:fix": "pnpm run lint --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"vue-tsc": "vue-tsc --noEmit -p tsconfig.volar.json",
"prepublishOnly": "pnpm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"tsd": {
"directory": "test-dts",
"compilerOptions": {
"strict": false,
"lib": [
"esnext",
"dom"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/test-utils.git"
},
"homepage": "https://github.com/vuejs/test-utils",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom"
]
}
}
}