-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "@axieinfinity/apg-js",
"version": "4.1.3",
"description": "JavaScript APG, an ABNF Parser Generator",
"main": "index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"test": "cat ./dist/desc.txt",
"apg": "./bin/apg.sh",
"apg-conv": "./bin/apg-conv.sh",
"bundle-apg-conv-api": "./bin/apg-conv-api-bundle.sh",
"bundle-apg-lib": "./bin/apg-lib-bundle.sh",
"bundle-apg-api": "./bin/apg-api-bundle.sh",
"bundle-apg-exp": "./bin/apg-exp-bundle.sh",
"bundle-apg-lib-css": "./dev/apg-lib-bundle-css.sh",
"build": "npm run apg && npm run apg-conv && npm run bundle-apg-conv-api && npm run bundle-apg-lib && npm run bundle-apg-api && npm run bundle-apg-exp && npm run bundle-apg-lib-css"
},
"files": [
"src",
"bin",
"dist",
"dev",
"index.js",
"index.md",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ldthomas/apg-js.git"
},
"keywords": [
"APG",
"parser",
"generator",
"ABNF",
"SABNF",
"pattern-matching",
"regex",
"RegExp"
],
"author": "Lowell D. Thomas <[email protected]> (https://sabnf.com/)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ldthomas/apg-js/issues"
},
"homepage": "https://github.com/ldthomas/apg-js#readme",
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0"
}
}