@newhighsco/eslint-config 3.1.22 → 3.2.0

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.
Files changed (1) hide show
  1. package/package.json +9 -59
package/package.json CHANGED
@@ -1,25 +1,22 @@
1
1
  {
2
2
  "name": "@newhighsco/eslint-config",
3
3
  "description": "New High Score shareable config for ESLint",
4
- "version": "3.1.22",
4
+ "version": "3.2.0",
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/eslint-config.git"
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/eslint-config/issues"
15
+ "url": "https://github.com/newhighsco/config/issues"
14
16
  },
15
17
  "main": "index.js",
16
18
  "scripts": {
17
- "prepare": "husky install",
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": {
@@ -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.1.0",
45
- "@newhighsco/editor-config": "1.2.0",
46
- "@newhighsco/prettier-config": "2.0.18",
47
- "@newhighsco/release-config": "1.2.0",
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
45
  "prettier": "2.6.1"
58
46
  },
59
- "resolutions": {
60
- "@typescript-eslint/parser": "5.17.0"
61
- },
62
- "commitlint": {
63
- "extends": [
64
- "@newhighsco"
65
- ]
66
- },
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
  }