-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
91 lines (91 loc) · 2.32 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
{
"name": "@testing-library/vue",
"version": "1.2.0",
"description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.",
"main": "dist/vue-testing-library.js",
"scripts": {
"lint": "eslint --ext .js,.vue .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublishOnly": "babel src --out-dir dist"
},
"files": [
"dist",
"cleanup-after-each.js"
],
"repository": {
"type": "git",
"url": "https://github.com/testing-library/vue-testing-library"
},
"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": {
"@testing-library/dom": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.29"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@testing-library/jest-dom": "^4.0.0",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"husky": "^3.0.3",
"jest": "^24.8.0",
"jest-in-case": "^1.0.2",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"vee-validate": "^2.2.13",
"vue": "^2.6.10",
"vue-i18n": "^8.13.0",
"vue-jest": "^3.0.4",
"vue-router": "^3.1.2",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1"
},
"peerDependencies": {
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
],
"*.{md,html}": [
"prettier --write",
"git add"
]
}
}