-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ed4613
commit 65142f3
Showing
1 changed file
with
73 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,73 @@ | ||
{ | ||
"name": "vb6-antlr4", | ||
"version": "1.0.50", | ||
"description": "A Visual Basic 6 lexer & parser that provides both visitor and listener patterns to traverse the parse tree.", | ||
"files": [ | ||
"lib/**/*" | ||
], | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"test": "jest", | ||
"build.cpygrammars": "cpy \"./proleap-vb6/src/main/antlr4/io/proleap/vb6/VisualBasic6.g4\" ./antlr4ts_out", | ||
"build.antlr4ts": "antlr4ts -visitor \"./antlr4ts_out/VisualBasic6.g4\"", | ||
"postbuild.antlr4ts": "rimraf \"./antlr4ts_out/VisualBasic6.g4\"", | ||
"build.tsc": "tsc", | ||
"build": "npm run build.cpygrammars && npm run build.antlr4ts && npm run build.tsc", | ||
"prepublishOnly": "npm run build && npm run test", | ||
"postversion": "git push && git push --tags", | ||
"semantic-release": "semantic-release --debug", | ||
"semantic-release-dry-run": "semantic-release --dry-run --debug" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/brucificus/vb6-antlr4-typescript.git" | ||
}, | ||
"author": "Ulrich Wolffgang, Bruce Markham", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/brucificus/vb6-antlr4-typescript/issues" | ||
}, | ||
"homepage": "https://github.com/brucificus/vb6-antlr4-typescript#readme", | ||
"keywords": [ | ||
"vb6", | ||
"visual basic", | ||
"visual basic 6", | ||
"lexer", | ||
"parser", | ||
"antlr", | ||
"antlr4", | ||
"antlr4ts" | ||
], | ||
"devDependencies": { | ||
"@commitlint/core": "^17.8.1", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^9.2.5", | ||
"@tsconfig/node16": "^16.1.1", | ||
"@types/jest": "^29.5.11", | ||
"antlr4ts-cli": "^0.5.0-alpha.4", | ||
"commitlint-config-gitmoji": "^2.3.1", | ||
"cpy-cli": "^5.0.0", | ||
"cz-gitmoji": "0.0.7", | ||
"husky": "^8.0.3", | ||
"jest": "^29.7.0", | ||
"rimraf": "^5.0.5", | ||
"semantic-release": "^22.0.10", | ||
"semantic-release-gitmoji": "^1.3.3", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^5.3.3" | ||
}, | ||
"dependencies": { | ||
"antlr4ts": "^0.5.0-alpha.4" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-gitmoji" | ||
} | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
} | ||
} | ||
{ | ||
"name": "vb6-antlr4", | ||
"version": "1.0.50", | ||
"description": "A Visual Basic 6 lexer & parser that provides both visitor and listener patterns to traverse the parse tree.", | ||
"files": [ | ||
"lib/**/*" | ||
], | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"test": "jest", | ||
"build.cpygrammars": "cpy \"./proleap-vb6/src/main/antlr4/io/proleap/vb6/*.g4\" --flat ./antlr4ts_out", | ||
"build.antlr4ts": "cd ./antlr4ts_out/ && antlr4ts -visitor \"VisualBasic6.g4\"", | ||
"postbuild.antlr4ts": "rimraf \"./antlr4ts_out/VisualBasic6.g4\"", | ||
"build.tsc": "tsc", | ||
"build": "npm run build.cpygrammars && npm run build.antlr4ts && npm run build.tsc", | ||
"prepublishOnly": "npm run build && npm run test", | ||
"postversion": "git push && git push --tags", | ||
"semantic-release": "semantic-release --debug", | ||
"semantic-release-dry-run": "semantic-release --dry-run --debug" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/brucificus/vb6-antlr4-typescript.git" | ||
}, | ||
"author": "Ulrich Wolffgang, Bruce Markham", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/brucificus/vb6-antlr4-typescript/issues" | ||
}, | ||
"homepage": "https://github.com/brucificus/vb6-antlr4-typescript#readme", | ||
"keywords": [ | ||
"vb6", | ||
"visual basic", | ||
"visual basic 6", | ||
"lexer", | ||
"parser", | ||
"antlr", | ||
"antlr4", | ||
"antlr4ts" | ||
], | ||
"devDependencies": { | ||
"@commitlint/core": "^17.8.1", | ||
"@semantic-release/git": "^10.0.1", | ||
"@semantic-release/github": "^9.2.5", | ||
"@tsconfig/node16": "^16.1.1", | ||
"@types/jest": "^29.5.11", | ||
"antlr4ts-cli": "^0.5.0-alpha.4", | ||
"commitlint-config-gitmoji": "^2.3.1", | ||
"cpy-cli": "^5.0.0", | ||
"cz-gitmoji": "0.0.7", | ||
"husky": "^8.0.3", | ||
"jest": "^29.7.0", | ||
"rimraf": "^5.0.5", | ||
"semantic-release": "^22.0.10", | ||
"semantic-release-gitmoji": "^1.3.3", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^5.3.3" | ||
}, | ||
"dependencies": { | ||
"antlr4ts": "^0.5.0-alpha.4" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-gitmoji" | ||
} | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
} | ||
} |