@plugjs/eslint 0.6.5 → 0.6.7
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/README.md +1 -1
- package/package.json +22 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
ESLint Plugin for the PlugJS Build System
|
|
2
2
|
=========================================
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
This plugin uses ESLint v9 to analyize and produce linting report on sources.
|
|
5
5
|
|
|
6
6
|
* [Copyright Notice](https://github.com/plugjs/plug/blob/main/NOTICE.md)
|
|
7
7
|
* [License](https://github.com/plugjs/plug/blob/main/LICENSE.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plugjs/eslint",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -33,11 +33,30 @@
|
|
|
33
33
|
"eslint": "9.5.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@plugjs/plug": "0.6.
|
|
36
|
+
"@plugjs/plug": "0.6.7"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
39
|
"*.md",
|
|
40
40
|
"dist/",
|
|
41
41
|
"src/"
|
|
42
|
-
]
|
|
42
|
+
],
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+ssh://git@github.com/plugjs/plug.git"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"build",
|
|
49
|
+
"compile",
|
|
50
|
+
"ecmascript",
|
|
51
|
+
"eslint",
|
|
52
|
+
"javascript",
|
|
53
|
+
"node",
|
|
54
|
+
"plugjs",
|
|
55
|
+
"transpile",
|
|
56
|
+
"typescript"
|
|
57
|
+
],
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/plugjs/plug/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://github.com/plugjs/plug/blob/main/workspaces/eslint/#readme"
|
|
43
62
|
}
|