-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
40
41
42
43
44
45
{
"name": "ralph-parser-ts",
"version": "0.1.0",
"description": "A Ralph language parser",
"private": false,
"license": "GNU3",
"author": "suyanlong <syl416419@gmail.com>",
"bugs": {
"url": "https://github.com/suyanlong/ralph-parser-ts/issues"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"homepage": "https://github.com/suyanlong/ralph-parser-ts#readme.md",
"repository": "git+https://github.com/suyanlong/ralph-parser-ts.git",
"keywords": [
"ralph",
"parser",
"lexer",
"alephium",
"antlr",
"antlr4",
"antlr4ts"
],
"scripts": {
"build": "tsc",
"release": "tsc && npm publish",
"antlr4ts": "antlr4ts -visitor ./src/*.g4",
"lint": "eslint src --ext ts",
"fmt": "yarn prettier --write ."
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"antlr4ts-cli": "^0.5.0-alpha.4",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}