-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.52 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
60
{
"name": "@peggyjs/eslint-plugin",
"version": "2.1.2",
"description": "",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib coverage",
"pretest": "npm run build",
"test": "mocha",
"precoverage": "npm run build:sourcemap",
"coverage": "c8 mocha",
"postcoverage": "npm run build",
"lint": "eslint .",
"build": "tsc",
"build:sourcemap": "tsc --inlineSourceMap"
},
"keywords": [
"eslint",
"eslintplugin",
"grammar",
"lint",
"peg.js",
"peggy"
],
"author": "Joe Hildebrand <[email protected]>",
"license": "MIT",
"dependencies": {
"enhanced-resolve": "5.15.1"
},
"repository": "peggyjs/peggyjs-eslint-plugin",
"bugs": "https://github.com/peggyjs/peggyjs-eslint-plugin/issues",
"devDependencies": {
"@peggyjs/eslint-config": "3.2.4",
"@peggyjs/eslint-parser": "^2.0.6",
"@types/debug": "4.1.12",
"@types/eslint": "8.56.5",
"@types/estree": "1.0.5",
"@types/node": "20.11.24",
"@types/requireindex": "1.2.4",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"c8": "9.1.0",
"debug": "4.3.4",
"eslint": "8.57.0",
"eslint-plugin-eslint-plugin": "5.4.0",
"eslint-plugin-mocha": "10.3.0",
"mocha": "10.3.0",
"rimraf": "5.0.5",
"source-map-support": "0.5.21",
"typescript": "5.3.3"
},
"peerDependencies": {
"@peggyjs/eslint-parser": "^2.0.6",
"eslint": ">=8.57.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.8"
}
}