-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 KB
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
{
"name": "@pitcher/eslint-config",
"version": "1.2.1",
"description": "Code style guide and ESLint configuration for JavaScript & Vue projects",
"author": "Pitcher AG",
"license": "ISC",
"homepage": "https://github.com/PitcherAG/pitcher-code-style#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PitcherAG/pitcher-code-style.git"
},
"bugs": {
"url": "https://github.com/PitcherAG/pitcher-code-style/issues"
},
"keywords": [
"pitcher",
"code style",
"eslint",
"eslintconfig"
],
"main": "index.js",
"files": [
"index.js",
"javascript.js",
"vue.js",
"pitcher.config.js",
"prettier.config.js"
],
"scripts": {
"lint": "eslint . --fix --ignore-pattern node_modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@vue/eslint-config-prettier": ">=6.0.0",
"babel-eslint": ">=10.1.0",
"eslint": ">=7.14.0",
"eslint-plugin-import": ">=2.26.0",
"eslint-plugin-node": ">=11.1.0",
"eslint-plugin-prettier": ">=3.1.4",
"eslint-plugin-sort-imports-es6-autofix": ">=0.6.0",
"eslint-plugin-vue": ">=7.1.0",
"prettier": ">=1.9.1"
},
"peerDependencies": {
"@vue/eslint-config-prettier": ">=6.0.0",
"babel-eslint": ">=10.1.0",
"eslint": ">=7.14.0",
"eslint-plugin-import": ">=2.26.0",
"eslint-plugin-node": ">=11.1.0",
"eslint-plugin-prettier": ">=3.1.4",
"eslint-plugin-sort-imports-es6-autofix": ">=0.6.0",
"eslint-plugin-vue": ">=7.1.0",
"prettier": ">=1.9.1"
}
}