-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 956 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
43
44
45
46
47
{
"name": "imparse",
"version": "0.1.5",
"description": "Lightweight infinite-lookahead parser generator that supports basic grammars defined in a JSON format.",
"homepage": "https://imparse.org",
"repository": {
"type": "git",
"url": "https://github.com/lapets/imparse"
},
"bugs": {
"url": "https://github.com/lapets/imparse/issues"
},
"keywords": [
"parse",
"parser",
"parsers",
"parsing"
],
"author": {
"name": "Andrei Lapets",
"email": "[email protected]"
},
"contributors": [
{
"name": "Glenn Xavier",
"email": "[email protected]"
},
{
"name": "Weston Vial",
"email": "[email protected]"
},
{
"name": "Vidhu Nath",
"email": "[email protected]"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"main": "lib/imparse.js",
"dependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1"
},
"scripts": {
"test": "mocha test"
}
}