-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
28 lines (28 loc) · 856 Bytes
/
package.json
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
{
"name": "eslint-plugin-more-naming-conventions",
"version": "1.0.2",
"description": "A plugin for the ESLint linter that adds more naming conventions for variables and functions.",
"keywords": [
"eslint",
"eslint-plugin",
"snake-case",
"snakecase",
"snake_case",
"underscore-case",
"underscore_case",
"upper-camel-case",
"upper-camelcase"
],
"homepage": "https://github.com/TheKoopaKingdom/eslint-plugin-more-naming-conventions",
"bugs": "https://github.com/TheKoopaKingdom/eslint-plugin-more-naming-conventions/issues",
"license": "GPL-3.0",
"author": "TheKoopaKingdom <[email protected]>",
"main": "Source/Index.js",
"repository": "TheKoopaKingdom/eslint-plugin-more-naming-conventions",
"scripts": {
"test": "eslint Source"
},
"dependencies": {
"eslint": "^8.25.0"
}
}