-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 2.45 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
64
65
66
{
"name": "java2typescript",
"version": "1.1.0",
"description": "Convert Java Code to Typescript",
"keywords": [
"Java",
"Typescript",
"ANTLR4",
"JRE",
"JDK"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mike-lischke/java2typescript.git"
},
"bugs": {
"url": "https://github.com/mike-lischke/java2typescript/issues"
},
"homepage": "https://github.com/mike-lischke/java2typescript",
"author": "Mike Lischke",
"license": "MIT",
"type": "module",
"bin": {
"java2ts": "output/src/convert.js"
},
"main": "output/src/convert.js",
"dependencies": {
"antlr4-c3": "^3.4.1",
"antlr4ng": "^3.0.3",
"glob": "10.3.10",
"jree": "1.2.2"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/jest": "29.5.12",
"@types/jsdom": "21.1.6",
"@types/node": "20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"antlr4ng-cli": "^2.0.0",
"esbuild": "0.20.1",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"jest": "29.7.0",
"jsdom": "24.0.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tsc-hooks": "1.1.2",
"typescript": "5.3.3"
},
"scripts": {
"build": "tsc && esbuild ./src/index.ts --main-fields=module,main --bundle --outfile=dist/index.js --format=esm --platform=node",
"build-minified": "npm run build -- --minify",
"build-watch": "npm run build -- --sourcemap --watch",
"fetch-apis": "ts-node-esm tools/fetchJavaApis.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=./tests/jest.config.ts --no-coverage --watchAll=false",
"test-ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=./tests/jest.config.ts --no-coverage --watchAll=false --silent",
"test-coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config=./tests/jest.config.ts --coverage",
"lint": "eslint \"./src/**/*.ts\"",
"generate": "antlr4ng -Dlanguage=TypeScript -Xexact-output-dir ./parser/JavaLexer.g4 ./parser/JavaParser.g4 -visitor -o ./parser/generated",
"link": "npm link",
"unlink": "npm unlink ."
}
}