-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 KB
/
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
{
"name": "egg-lang",
"version": "1.0.0",
"description": "Lab for language processors",
"main": "grammar.js",
"bin": {
"eggc": "bin/eggc.js"
},
"scripts": {
"test": "npm run build; nyc --reporter=lcov --reporter=text-summary --report-dir=docs/coverage -o docs mocha",
"doc": "npm run build; jsdoc -d docs -c jsdoc.json",
"fun-fun": "npm run compile-funfun && evm examples/fun-fun.json",
"dodef": "npm run compile-dodef && evm examples/dodefsum.json",
"compile-syntax": "npm run build && node bin/eggc.js examples/syntax.egg",
"compile-funfun": "npm run build && node bin/eggc.js examples/fun-fun.egg",
"compile-dodef": "npm run build && node bin/eggc.js examples/dodefsum.egg",
"build": "nearleyc src/egg.ne -o src/grammar.js"
},
"keywords": [
"ULL",
"parsing",
"AST"
],
"author": "Casiano Rodriguez Leon <[email protected]> (https://crguezl.github.io/)",
"license": "ISC",
"dependencies": {
"@crguezl/eloquentjsegg": "^1.2.6",
"commander": "^9.0.0",
"moo-ignore": "^2.5.1",
"nearley": "^2.20.1"
},
"devDependencies": {
"chai": "^4.3.6",
"jsdoc": "^3.6.10",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"tui-jsdoc-template": "^1.2.2"
}
}