-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.67 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "abnf",
"description": "Augmented Backus-Naur Form (ABNF) parsing. See RFC 5234.",
"version": "5.0.4",
"license": "Apache-2.0",
"author": "Joe Hildebrand <joe-github@cursive.net>",
"contributors": [
{
"name": "Dominique Hazaël-Massieux",
"email": "dom@w3.org"
},
{
"name": "ZP-ZPanda",
"email": "zp.zpanda@gmail.com"
},
{
"name": "Steven R. Loomis",
"email": "srl295@codehivetx.us"
}
],
"homepage": "https://github.com/hildjj/node-abnf",
"repository": {
"url": "git://github.com/hildjj/node-abnf.git"
},
"keywords": [
"grammar",
"parser",
"generator",
"abnf",
"Backus–Naur",
"rfc",
"rfc5234",
"rfc7405"
],
"bin": {
"abnf_check": "bin/abnf_check.js",
"abnf_ast": "bin/abnf_ast.js",
"abnf_gen": "bin/abnf_gen.js",
"abnf_test": "bin/abnf_test.js"
},
"main": "lib/abnf.js",
"type": "module",
"files": [
"bin/",
"lib/",
"examples/core.abnf"
],
"scripts": {
"lint": "eslint .",
"build": "peggy --format es lib/abnfp.peggy",
"pretest": "npm run build",
"test": "ava",
"precoverage": "npm run build",
"coverage": "c8 ava",
"ci": "npm run coverage && npm run lint"
},
"dependencies": {
"commander": "^14.0.3",
"peggy": "^5.1.0"
},
"devDependencies": {
"@peggyjs/coverage": "^2.0.5",
"@peggyjs/eslint-config": "^6.0.13",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"ava": "^7.0.0",
"eslint": "^10.0.3",
"superc8": "^12.3.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20"
}
}