-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 KB
/
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
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
{
"name": "@ezycourse/eslint-plugin",
"version": "0.1.0",
"private": false,
"description": "Eslint rules for ezycourse",
"keywords": [
"eslint",
"ezycourse",
"ezy-eslint-plugin"
],
"author": "Najmus Sakib",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"files": [
"lib",
"docs"
],
"scripts": {
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "eslint-doc-generator --check",
"lint:js": "eslint .",
"test": "mocha tests --recursive",
"update:eslint-docs": "eslint-doc-generator",
"prepublish": "npm run lint && npm run test"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.3.2",
"eslint-plugin-n": "^17.14.0",
"mocha": "^11.0.1",
"npm-run-all2": "^7.0.1"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"peerDependencies": {
"eslint": ">=8.57.0"
},
"license": "MIT",
"packageManager": "[email protected]",
"homepage": "https://github.com/AppifyLab/eslint-plugin#readme",
"bugs": {
"url": "https://github.com/AppifyLab/eslint-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppifyLab/eslint-plugin.git"
},
"publishConfig": {
"access": "public"
}
}