-
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) · 827 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 827 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": "pegjs-syntactic-actions",
"version": "0.1.4",
"description": "A PEG.js plugin to replace actions by syntactic trees",
"main": "index.js",
"scripts": {
"lint": "eslint index.js tests",
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seb35/pegjs-syntactic-actions.git"
},
"keywords": [
"pegjs"
],
"author": "Seb35",
"license": "MIT",
"bugs": {
"url": "https://github.com/seb35/pegjs-syntactic-actions/issues"
},
"homepage": "https://github.com/seb35/pegjs-syntactic-actions#readme",
"peerDependencies": {
"pegjs": "^0.10.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"mocha": "^7.2.0",
"pegjs": "^0.10.0"
},
"files": [
"docs/schema.json",
"index.js"
],
"mocha": {
"ui": "tdd"
}
}