-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "apg-exp",
"version": "2.1.0",
"description": "Pattern-matching alternative to RegExp. Replaces the regular expression syntax with ABNF. Adds APG parser features such as User Defined Terminals (hand-written pattern matchers) and access to the AST.",
"main": "./src/apg-exp.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"src",
"guide",
"apg-exp.js",
"apg-exp-min.js",
"apg-exp.css",
"apg-exp-min.css",
"index.md",
"docco-gen"
],
"dependencies": {
"apg-api": "1.0.x",
"apg-lib": "3.1.x"
},
"repository": {
"type": "git",
"url": "https://github.com/ldthomas/apg-js2-exp.git"
},
"bugs": {
"url": "https://github.com/ldthomas/apg-js2-exp/issues"
},
"keywords": [
"regexp",
"regex",
"patterns",
"pattern-matching",
"abnf",
"search",
"apg"
],
"author": "Lowell D. Thomas <[email protected]> (http://coasttocoastresearch.com)",
"license": "BSD-3-Clause"
}