This repository has been archived by the owner on Nov 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.5 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
{
"name": "vue-test-utils-compat",
"version": "0.0.5",
"description": "Compat layer for @vue/[email protected]",
"main": "src/index.js",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/xanf/vue-test-utils-compat.git"
},
"keywords": [
"vue-test-utils",
"vue-compat",
"vue"
],
"eslintConfig": {
"env": {
"node": true,
"browser": true
},
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"rules": {
"import/prefer-default-export": 0,
"import/extensions": [
"error",
"always"
]
}
},
"prettier": {
"printWidth": 120
},
"author": "Illya Klymov <[email protected]>",
"license": "MIT",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"**/*.js": [
"eslint",
"prettier -c"
],
"**/*.md": [
"prettier -c"
]
},
"devDependencies": {
"@jest/globals": "^27.3.1",
"@vue/compiler-dom": "^3.2.23",
"@vue/test-utils": "^2.0.0-rc.17",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.3.1",
"lint-staged": "^12.0.2",
"prettier": "^2.5.0",
"simple-git-hooks": "^2.7.0",
"vue": "^3.2.23"
}
}