-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "@distributive/eslint-plugin",
"version": "1.0.6",
"description": "Plugin containing Distributive style guide rules",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"homepage": "https://github.com/Distributive-Network/eslint-plugin#readme",
"bugs": {
"url": "https://github.com/Distributive-Network/eslint-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Distributive-Network/eslint-plugin.git"
},
"license": "MIT",
"author": "Joash Mathew",
"contributors": [
"Bryan Hoang <[email protected]>"
],
"exports": "./lib/index.js",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
"lint:js": "eslint .",
"test": "vitest",
"update:eslint-docs": "eslint-doc-generator"
},
"devDependencies": {
"@distributive/eslint-config": "2.1.4",
"eslint": "8.57.0",
"eslint-doc-generator": "1.7.1",
"eslint-plugin-eslint-plugin": "5.5.1",
"eslint-plugin-jsdoc": "48.2.5",
"eslint-plugin-n": "17.7.0",
"npm-run-all": "4.1.5",
"vitest": "1.6.0"
},
"peerDependencies": {
"eslint": ">=8.40.0"
},
"engines": {
"node": ">=18",
"npm": ">=7"
}
}