-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
92 lines (92 loc) · 2.39 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
{
"name": "@testing-library/vue",
"version": "0.0.0-semantically-released",
"description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"format": "kcd-scripts format",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"setup": "npm install && npm run validate -s"
},
"engines": {
"node": ">10.18"
},
"files": [
"types",
"dist",
"cleanup-after-each.js"
],
"homepage": "https://github.com/testing-library/vue-testing-library#readme",
"bugs": {
"url": "https://github.com/testing-library/vue-testing-library/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/vue-testing-library.git"
},
"keywords": [
"vue.js",
"vue.js testing",
"vue",
"vue testing",
"vue.js 2",
"vue.js 2 testing",
"vue 2",
"vue 2 testing",
"vue.js 3",
"vue.js 3 testing",
"vue 3",
"vue 3 testing"
],
"author": "Daniel Cook",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.12.1",
"@testing-library/dom": "^7.28.1",
"@vue/test-utils": "^2.0.0-beta.12",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/user-event": "^12.4.0",
"@types/estree": "0.0.45",
"@vue/compiler-sfc": "^3.0.4",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"axios": "^0.20.0",
"dtslint": "^4.0.6",
"eslint-plugin-vue": "^7.1.0",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"isomorphic-unfetch": "^3.1.0",
"jest-serializer-vue": "^2.0.2",
"kcd-scripts": "^7.5.1",
"msw": "^0.21.3",
"portal-vue": "^2.1.7",
"typescript": "^4.1.2",
"vee-validate": "^4.0.2",
"vue": "^3.0.4",
"vue-apollo": "^3.0.5",
"vue-i18n": "^9.0.0-beta.6",
"vue-jest": "^5.0.0-alpha.7",
"vue-router": "^4.0.0-rc.6",
"vuetify": "^2.3.19",
"vuex": "^4.0.0-rc.2"
},
"peerDependencies": {
"vue": ">= 3",
"@vue/compiler-sfc": ">= 3"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
}
}