-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.73 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@garvae/eslint-plugin-comments",
"version": "1.0.7",
"description": "Various rules for ESLint to work with comments",
"author": "Garvae",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"find-deadcode": "npx unimported --no-cache",
"install:husky": "[ ! -d \"/node_modules/is-ci/\" ] || is-ci || [ ! -d \"/node_modules/husky/\" ] || husky install",
"lint": "eslint lib/** tests/**",
"postinstall": "yarn install:husky",
"prepare": "yarn install:husky",
"publish": "npm publish",
"test": "node tests/lib/rules/no-line-comments/index.js",
"version:patch": "npm version patch && node scripts/plugin-version-update.js"
},
"keywords": [
"comment",
"comments",
"eslint",
"eslint-plugin",
"eslintplugin",
"multiline",
"plugin",
"single-line",
"starred"
],
"license": "SEE LICENSE IN THE 'LICENCE' FILE",
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/garvae/eslint-plugin-comments.git"
},
"devDependencies": {
"eslint": "8.22.0",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"lint-staged": "^12.3.7",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/garvae/eslint-plugin-comments/issues"
},
"homepage": "https://github.com/garvae/eslint-plugin-comments#readme",
"peerDependencies": {
"eslint": ">=7"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
}
}