@newhighsco/eslint-config 3.1.21 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -62
package/package.json
CHANGED
@@ -1,30 +1,27 @@
|
|
1
1
|
{
|
2
2
|
"name": "@newhighsco/eslint-config",
|
3
3
|
"description": "New High Score shareable config for ESLint",
|
4
|
-
"version": "3.1
|
4
|
+
"version": "3.2.1",
|
5
5
|
"author": "New High Score <hello@newhighsco.re>",
|
6
6
|
"license": "ISC",
|
7
|
+
"private": false,
|
7
8
|
"repository": {
|
8
9
|
"type": "git",
|
9
|
-
"url": "https://github.com/newhighsco/
|
10
|
+
"url": "https://github.com/newhighsco/config.git",
|
11
|
+
"directory": "packages/eslint-config"
|
10
12
|
},
|
11
|
-
"homepage": "https://github.com/newhighsco/eslint-config#readme",
|
13
|
+
"homepage": "https://github.com/newhighsco/config/tree/main/packages/eslint-config#readme",
|
12
14
|
"bugs": {
|
13
|
-
"url": "https://github.com/newhighsco/
|
15
|
+
"url": "https://github.com/newhighsco/config/issues"
|
14
16
|
},
|
15
17
|
"main": "index.js",
|
16
18
|
"scripts": {
|
17
|
-
"
|
18
|
-
"test": "yarn lint",
|
19
|
-
"lint": "npm-run-all --parallel lint:*",
|
20
|
-
"lint:js": "eslint --ignore-path .gitignore --ext .js,.json,.jsx,.mdx,.ts,.tsx .",
|
21
|
-
"format": "npm-run-all --parallel format:*",
|
22
|
-
"format:js": "yarn lint:js --fix"
|
19
|
+
"test": "eslint --format tap __tests__"
|
23
20
|
},
|
24
21
|
"files": [],
|
25
22
|
"dependencies": {
|
26
|
-
"@typescript-eslint/eslint-plugin": "5.
|
27
|
-
"@typescript-eslint/parser": "5.
|
23
|
+
"@typescript-eslint/eslint-plugin": "5.17.0",
|
24
|
+
"@typescript-eslint/parser": "5.17.0",
|
28
25
|
"eslint-config-prettier": "8.5.0",
|
29
26
|
"eslint-config-standard-jsx": "10.0.0",
|
30
27
|
"eslint-config-standard-react": "11.0.1",
|
@@ -40,62 +37,15 @@
|
|
40
37
|
"eslint-plugin-tsc": "2.0.0"
|
41
38
|
},
|
42
39
|
"devDependencies": {
|
43
|
-
"@commitlint/cli": "16.2.3",
|
44
|
-
"@newhighsco/commitlint-config": "1.0.24",
|
45
|
-
"@newhighsco/editor-config": "1.1.2",
|
46
|
-
"@newhighsco/prettier-config": "2.0.18",
|
47
|
-
"@newhighsco/release-config": "1.1.6",
|
48
40
|
"@types/react": "17.0.43",
|
49
|
-
"eslint": "8.12.0"
|
50
|
-
"husky": "7.0.4",
|
51
|
-
"npm-run-all": "4.1.5",
|
52
|
-
"prettier": "2.6.1",
|
53
|
-
"semantic-release": "19.0.2"
|
41
|
+
"eslint": "8.12.0"
|
54
42
|
},
|
55
43
|
"peerDependencies": {
|
56
44
|
"eslint": "8.12.0",
|
57
|
-
"prettier": "2.6.
|
58
|
-
},
|
59
|
-
"resolutions": {
|
60
|
-
"@typescript-eslint/parser": "5.16.0"
|
61
|
-
},
|
62
|
-
"commitlint": {
|
63
|
-
"extends": [
|
64
|
-
"@newhighsco"
|
65
|
-
]
|
45
|
+
"prettier": "2.6.2"
|
66
46
|
},
|
67
47
|
"eslintConfig": {
|
48
|
+
"root": true,
|
68
49
|
"extends": "."
|
69
|
-
},
|
70
|
-
"husky": {
|
71
|
-
"hooks": {
|
72
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
73
|
-
}
|
74
|
-
},
|
75
|
-
"prettier": "@newhighsco/prettier-config",
|
76
|
-
"release": {
|
77
|
-
"extends": "@newhighsco/release-config",
|
78
|
-
"branches": [
|
79
|
-
"main"
|
80
|
-
]
|
81
|
-
},
|
82
|
-
"renovate": {
|
83
|
-
"extends": [
|
84
|
-
"@newhighsco"
|
85
|
-
],
|
86
|
-
"packageRules": [
|
87
|
-
{
|
88
|
-
"extends": [
|
89
|
-
"packages:eslint"
|
90
|
-
],
|
91
|
-
"baseBranches": [
|
92
|
-
"main"
|
93
|
-
],
|
94
|
-
"packageNames": [
|
95
|
-
"prettier"
|
96
|
-
],
|
97
|
-
"semanticCommitType": "fix"
|
98
|
-
}
|
99
|
-
]
|
100
50
|
}
|
101
51
|
}
|