-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "eslint-plugin-vue-test-utils",
"version": "1.0.1",
"description": "Linting for Vue Test Utils",
"license": "MIT",
"author": {
"name": "Productiv",
"url": "https://github.com/BeProductiv"
},
"repository": {
"url": "https://github.com/BeProductiv/eslint-plugin-vue-test-utils.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"@vue/test-utils",
"vue",
"test"
],
"main": "src/index.js",
"files": [
"docs",
"src",
"README.md"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"prettier": "prettier -cw ."
},
"dependencies": {
"semver": "^6.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^6.2.1",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^28.1.1",
"prettier": "^2.6.2"
},
"engines": {
"node": "14.x || >= 16"
},
"peerDependencies": {
"eslint": ">=6"
}
}