-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
{
"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/vue-testing-library.js",
"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"
},
"files": [
"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"
],
"author": "Daniel Cook",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.8.4",
"@testing-library/dom": "^6.13.0",
"@types/testing-library__vue": "*",
"@vue/test-utils": "^1.0.0-beta.31"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.8.3",
"@testing-library/jest-dom": "^5.1.1",
"axios": "^0.19.2",
"eslint-plugin-vue": "^6.2.1",
"jest-serializer-vue": "^2.0.2",
"kcd-scripts": "^5.3.0",
"lodash.merge": "^4.6.2",
"vee-validate": "^2.2.15",
"vue": "^2.6.11",
"vue-i18n": "^8.15.4",
"vue-jest": "^4.0.0-beta.2",
"vue-router": "^3.1.6",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.2.15",
"vuex": "^3.1.2"
},
"peerDependencies": {
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
}
}