-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "java-ast",
"version": "0.4.1",
"description": "Java Parser for JavaScript/TypeScript, based on antlr4ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": "https://github.com/urish/java-ast",
"author": "Uri Shaked <uri@codemagic.co.il>",
"keywords": [
"ast",
"java",
"parser",
"antlr",
"antlr4ts",
"abstract syntax tree",
"parse java",
"java parser"
],
"files": [
"dist"
],
"scripts": {
"build": "ts-node build.ts",
"update": "ts-node update.ts",
"format": "prettier --write build.ts update.ts src/**.ts **/*.json",
"prepublish": "yarn build",
"test": "jest"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.22",
"@types/node-fetch": "^2.5.7",
"@types/rimraf": "^3.0.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^4.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}