-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.15 KB
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
48
49
50
51
52
{
"name": "crane-parser",
"type": "module",
"version": "0.2.1",
"description": "Push-based JS parser-generator for LR grammars",
"main": "./src/index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=13.0.0"
},
"dependencies": {
"acorn": "^5.0.3",
"commander": "^2.11.0",
"escodegen": "^1.8.1",
"estemplate": "^0.5.1",
"lexie": "^1.0.4",
"livescript": "^1.5.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"colors": "^1.1.2",
"esprima": "^4.0.1",
"esprima-ast-utils": "0.0.7",
"esvalidate": "^0.1.3",
"rollup": "^0.49.2"
},
"bin": {
"crane": "./bin/compile.js"
},
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GabrielRatener/crane-js.git"
},
"keywords": [
"parser",
"javascript",
"grammar"
],
"author": "Gabriel Ratener",
"license": "MIT",
"bugs": {
"url": "https://github.com/GabrielRatener/crane-js/issues"
},
"homepage": "https://github.com/GabrielRatener/crane-js#readme"
}