-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "java2ts-examples",
"version": "1.0.0",
"description": "A project to demonstrate the use of java2typescript",
"scripts": {
"simple": "java2ts src/simple/simple.json",
"antlr4": "java2ts src/antlr4/antlr4.json",
"jdk-tests": "ts-node-esm src/jdk-tests/convertJDKTests.ts",
"link java2ts": "npm link java2typescript",
"unlink java2ts": "npm unlink java2typescript",
"eslint": "eslint ."
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mike-lischke/java2ts-examples.git"
},
"keywords": [
"java",
"jdk",
"java2typescript",
"typescript",
"JRE"
],
"author": "Mike Lischke",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike-lischke/java2ts-examples/issues"
},
"homepage": "https://github.com/mike-lischke/java2ts-examples#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"eslint": "8.37.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "40.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"java2typescript": "1.0.2",
"ts-node": "10.9.1"
},
"dependencies": {
"jree": "1.2.2"
}
}