-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.82 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
{
"name": "eslint-config-vue-tc",
"version": "0.0.0",
"description": "ESLint shareable config for Vue projects",
"keywords": [
"eslintconfig",
"code",
"quality",
"style",
"lint",
"linter",
"eslint",
"code style",
"vue"
],
"homepage": "https://github.com/tclindner/eslint-config-vue-tc",
"bugs": {
"url": "https://github.com/tclindner/eslint-config-vue-tc/issues"
},
"author": "Thomas Lindner",
"repository": {
"type": "git",
"url": "https://github.com/tclindner/eslint-config-vue-tc.git"
},
"files": [
"index.js",
"rules",
"CONTRIBUTING.md"
],
"main": "index.js",
"scripts": {
"eslint": "eslint . --ignore-pattern=test/example-files/**",
"lint": "npm run npmpackagejsonlint && npm run eslint",
"npmpackagejsonlint": "npmPkgJsonLint .",
"test": "jest --testPathIgnorePatterns=test/example-files/test-file-with-multiple-components.test.js"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"enhanced-resolve": "^5.17.1",
"eslint": "^8.57.0",
"eslint-config-tc": "^23.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-test-id": "^2.3.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vue": "^9.28.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"is-plain-obj": "^3.0.0",
"jest": "^29.7.0",
"npm-package-json-lint": "^7.1.0",
"npm-package-json-lint-config-tc": "^7.0.0",
"prettier": "^2.8.8"
},
"peerDependencies": {
"eslint": "^8.0.0",
"eslint-plugin-test-id": "^2.3.0",
"eslint-plugin-vue": "^9.0.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"license": "MIT"
}