forked from vuejs/vue-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.2 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
{
"name": "vue-jest-babel",
"version": "28.0.1",
"private": true,
"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"
],
"engines": {
"node": ">=10",
"yarn": "^1.17.3"
},
"scripts": {
"format": "prettier --no-semi --single-quote --write \"**/*.{js,json,md}\"",
"format:check": "prettier --no-semi --single-quote --check \"**/*.{js,json,md}\"",
"lint": "eslint --ignore-path .gitignore \"{,!(node_modules)/**/}*.js\"",
"lint:fix": "yarn lint --fix",
"test": "yarn lint && yarn format:check && yarn workspaces run test"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"nanoid": "3.3.3",
"husky": "^1.1.4",
"lint-staged": "^8.0.5",
"postcss": "8.4.12",
"prettier": "^1.16.1",
"@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": "^28.0.2",
"conventional-changelog": "^1.1.5",
"jest": "^28.0.2",
"semantic-release": "^15.13.2",
"ts-jest": "^28.0.1",
"typescript": "^4.6.4",
"vue": "^2.4.2",
"vue-template-babel-compiler": "^1.2.0"
},
"peerDependencies": {
"@babel/core": "7.x",
"babel-jest": ">= 28 < 29",
"jest": "28.x",
"ts-jest": ">= 28 < 29",
"vue": "^2.x",
"vue-template-babel-compiler": "^1.2.0"
},
"peerDependenciesMeta": {
"ts-jest": {
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,vue}": [
"yarn format",
"git add"
]
}
}