-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 885 Bytes
/
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
{
"name": "apg",
"version": "3.2.0",
"description": "An ABNF Parser Generator - generates recursive-descent parsers from grammars written in a superset of Augmented Backus-Naur Form (ABNF)",
"main": "./src/apg.js",
"scripts": {
"test": "apg -v"
},
"bin": {
"apg": "./bin/apg"
},
"files": [
"src",
"bin",
"index.md",
"SABNF.md",
"RELEASE-NOTES.md",
"docco-gen",
"apg.html",
"main.js"
],
"dependencies": {
"apg-api": "1.0.x",
"apg-conv-api": "1.0.x",
"apg-lib": "3.2.x"
},
"repository": {
"type": "git",
"url": "https://github.com/ldthomas/apg-js2.git"
},
"bugs": {
"url": "https://github.com/ldthomas/apg-js2/issues"
},
"keywords": [
"apg",
"parser",
"generator",
"ABNF"
],
"author": "Lowell D. Thomas <[email protected]>",
"license": "BSD-3-Clause"
}