-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathpackage.json
78 lines (78 loc) · 1.67 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
{
"name": "@vue/vue2-jest",
"version": "29.2.6",
"description": "Jest transformer for Vue 2",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"jest",
"vue",
"jest vue",
"jest vue transform",
"jest vue preprocessor",
"vue jest",
"vue jest",
"vue jest transform",
"vue jest preprocessor"
],
"scripts": {
"release": "semantic-release",
"test": "echo \"There are no unit tests yet. Run e2e/2.x/ tests instead.\""
},
"author": "Edd Yerburgh",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@vue/test-utils": "^1.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "29.x",
"conventional-changelog": "^1.1.5",
"jest": "29.x",
"semantic-release": "^15.13.2",
"typescript": "^4.6.4",
"vue": "^2.7.7",
"vue-template-compiler": "^2.7.7"
},
"peerDependencies": {
"@babel/core": "7.x",
"babel-jest": "29.x",
"jest": "29.x",
"typescript": ">= 4.3",
"vue": "^2.x",
"vue-template-compiler": "^2.x"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@vue/component-compiler-utils": "^3.1.0",
"chalk": "^2.1.0",
"css-tree": "^2.0.1",
"source-map": "0.5.6",
"tsconfig": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-jest.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,vue}": [
"yarn format",
"git add"
]
},
"engines": {
"node": ">10"
}
}