@plugjs/eslint-plugin 0.1.2 → 0.1.4

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.
@@ -178,12 +178,12 @@ module.exports = {
178
178
  files: [ '*.cjs' ],
179
179
  parserOptions: {
180
180
  'sourceType': 'script',
181
- }
181
+ },
182
182
  }, {
183
183
  files: [ '*.mjs' ],
184
184
  parserOptions: {
185
185
  'sourceType': 'module',
186
- }
186
+ },
187
187
  } ],
188
188
 
189
189
  }
package/package.json CHANGED
@@ -1,19 +1,22 @@
1
1
  {
2
2
  "name": "@plugjs/eslint-plugin",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Shared ESLint configurations and extras",
5
5
  "main": "./index.cjs",
6
6
  "author": "Team Juit <developers@juit.com>",
7
7
  "license": "Apache-2.0",
8
+ "scripts": {
9
+ "build": "eslint *.cjs configs/*.cjs"
10
+ },
8
11
  "peerDependencies": {
9
12
  "@typescript-eslint/eslint-plugin": ">=5",
10
13
  "@typescript-eslint/parser": ">=5"
11
14
  },
12
15
  "dependencies": {
13
16
  "eslint-config-google": "^0.14.0",
14
- "eslint-import-resolver-typescript": "^3.5.3",
17
+ "eslint-import-resolver-typescript": "^3.5.4",
15
18
  "eslint-plugin-import": "^2.27.5",
16
- "eslint-plugin-unicorn": "^45.0.2"
19
+ "eslint-plugin-unicorn": "^46.0.0"
17
20
  },
18
21
  "files": [
19
22
  "*.md",