forked from vuejs/vue-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.62 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
{
"name": "@vue/vue3-jest",
"version": "27.0.0-alpha.3",
"description": "Jest Vue transform",
"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/3.x/ tests instead.\""
},
"author": "Edd Yerburgh",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.0",
"conventional-changelog": "^1.1.5",
"jest": "^27.0.0",
"jest-cli": "^27.0.0",
"semantic-release": "^15.13.2",
"ts-jest": "^27.0.1",
"typescript": "^4.1.2",
"vue": "^3.2.19"
},
"peerDependencies": {
"@babel/core": "7.x",
"babel-jest": "27.x",
"jest": "27.x",
"ts-jest": "27.x",
"typescript": ">= 3.x",
"vue": "^3.0.0-0"
},
"peerDependenciesMeta": {
"ts-jest": {
"optional": true
},
"typescript": {
"optional": true
}
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"chalk": "^2.1.0",
"convert-source-map": "^1.6.0",
"extract-from-css": "^0.4.4",
"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"
]
}
}