-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 1.66 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
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": "4.3.1",
"license": "Apache-2.0",
"author": "Joe Hildebrand <[email protected]>",
"contributors": [
{
"name": "Dominique Hazaël-Massieux",
"email": "[email protected]"
},
{
"name": "ZP-ZPanda",
"email": "[email protected]"
},
{
"name": "Steven R. Loomis",
"email": "[email protected]"
}
],
"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": "^13.0.0",
"peggy": "^4.2.0"
},
"devDependencies": {
"@peggyjs/coverage": "1.3.2",
"@peggyjs/eslint-config": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"ava": "6.2.0",
"c8": "10.1.3",
"eslint": "^9.18.0",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}