-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 779 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 779 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
{
"name": "pegparse",
"version": "0.0.11",
"description": "A PEG parser for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha test/tests.js",
"docs": "documentation build lib/** -f md > docs/api.md",
"lint": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/s-leroux/Pegparse.git"
},
"keywords": [
"parser",
"peg",
"grammar"
],
"author": "Sylvain Leroux <sylvain@chicoree.fr>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/s-leroux/Pegparse/issues"
},
"homepage": "https://github.com/s-leroux/Pegparse#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.19.0",
"mocha": "^8.2.1"
},
"dependencies": {
"debug": "^4.3.1"
}
}