-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 848 Bytes
/
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
{
"name": "teslang-compiler",
"version": "1.0.0",
"description": "",
"main": "src/run.ts",
"scripts": {
"tes": "npx ts-node src/run.ts",
"cg": "nearleyc src/syntax-analyzer/tes-lang.grammar.ne -o src/syntax-analyzer/tes-lang.grammar.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm.cmd run compile",
"pretest": "npm.cmd run compile",
"posttest": "npm.cmd run lint"
},
"keywords": [],
"author": "younes_nb",
"license": "ISC",
"dependencies": {
"@types/moo": "^0.5.5",
"@types/nearley": "^2.11.2",
"@types/node": "^18.13.0",
"chalk": "^4.1.2",
"gts": "^3.1.1",
"moo": "^0.5.2",
"nearley": "^2.20.1",
"ts-tree-structure": "^1.0.2"
},
"devDependencies": {
"gts": "^3.1.1",
"typescript": "^4.9.5"
}
}