-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 816 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 816 Bytes
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
{
"name": "peq",
"version": "0.2.0-0",
"description": "JavaScript parsing expressions query library",
"main": "src/parser.js",
"scripts": {
"test": "mocha ./src/**"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ralekna/peq.git"
},
"keywords": [
"peq",
"parsing expressions query",
"topdown",
"top-down",
"Recursive descent parser",
"parser",
"PEG",
"parsing expression grammar",
"generator",
"compiler"
],
"author": "Rytis Alekna <r.alekna@gmail.com>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/ralekna/peq/issues"
},
"homepage": "https://github.com/ralekna/peq#readme",
"engines": {
"node": ">= 10.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.0.1"
}
}