-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1001 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
29
{
"name": "eslint-plugin-comments-analyser",
"version": "1.2.4",
"description": "This ESLint plugin provides two rules: `function`, to ensure that each function is preceded by a comment explaining its purpose, and `file`, to verify that each script file contains at least one comment.",
"main": "src/rules/comments.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/EliteWise/eslint-plugin-comments-analyser.git"
},
"keywords": ["eslint", "eslintplugin", "eslint-plugin", "comments"],
"author": "EliteWise",
"license": "ISC",
"devDependencies": {
"@types/eslint": "^8.56.2",
"@types/node": "^20.11.17",
"@typescript-eslint/experimental-utils": "^5.62.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"eslint": ">=8.0.0",
"typescript": ">=4.0.0",
"@typescript-eslint/experimental-utils": "^5.62.0"
},
"type": "module"
}