-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "eslint-plugin-maxpat",
"description": "Linter for *.maxpat files ",
"version": "1.0.5",
"author": "Jan Forst",
"bugs": "https://github.com/darosh/eslint-plugin-maxpat/issues",
"dependencies": {
"chalk": "^5.6.0",
"cli-table3": "^0.6.5",
"jsonc-eslint-parser": "^2.4.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"eslint": "^9.34.0",
"eslint-doc-generator": "^2.2.2",
"eslint-plugin-eslint-plugin": "^7.0.0",
"eslint-plugin-n": "^17.21.3",
"npm-run-all2": "^8.0.4",
"vitest": "^3.2.4"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"exports": "./lib/index.js",
"files": [
"lib"
],
"homepage": "https://github.com/darosh/eslint-plugin-maxpat",
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin"
],
"license": "MIT",
"main": "./lib/index.js",
"peerDependencies": {
"eslint": ">=9.0.0"
},
"repository": "https://github.com/darosh/eslint-plugin-maxpat.git",
"scripts": {
"init:eslint-docs": "eslint-doc-generator --init-rule-docs --rule-doc-section-options --rule-list-columns=name,description,configsError,configsWarn,options,fixable",
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"test": "vitest",
"update:eslint-docs": "eslint-doc-generator --rule-list-columns=name,description,configsError,configsWarn,options,fixable"
},
"type": "module"
}