UNPKG

java-ast

Version:

Java Parser for JavaScript/TypeScript, based on antlr4ts

64 lines (63 loc) 1.43 kB
{ "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" ] } }