-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "@peggyjs/eslint-parser",
"version": "2.0.6",
"description": "ESLint-style parser for Peggy grammars",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib src/parser.js",
"parser": "peggy src/parser.peggy",
"ts": "tsc",
"ts:sourcemap": "tsc --inlineSourceMap",
"build": "npm run parser && npm run ts",
"postbuild": "copyfiles -u -a -f src/parser.js src/parser.d.ts lib",
"lint": "eslint .",
"pretest": "npm run build",
"test": "mocha",
"precoverage": "npm run parser && npm run ts:sourcemap",
"coverage": "c8 npm test",
"postcoverage": "npm run ts",
"ci": "npm run coverage"
},
"keywords": [
"eslint",
"parser",
"peg.js",
"peggy",
"plugin"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": "peggyjs/peggyjs-eslint-parser",
"bugs": "https://github.com/peggyjs/peggyjs-eslint-parser/issues",
"devDependencies": {
"@peggyjs/eslint-config": "3.2.4",
"@types/eslint": "8.56.3",
"@types/estree": "1.0.5",
"@types/node": "20.11.20",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"c8": "9.1.0",
"copyfiles": "2.4.1",
"eslint": "8.57.0",
"eslint-plugin-mocha": "10.3.0",
"mocha": "10.3.0",
"peggy": "4.0.2",
"rimraf": "5.0.5",
"source-map-support": "0.5.21",
"typescript": "5.3.3"
},
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=18"
}
}