mirror of
https://github.com/brucificus/vb6-antlr4-typescript.git
synced 2025-12-16 20:07:03 +03:00
Some checks failed
Release / release (push) Has been cancelled
Bumps [@semantic-release/github](https://github.com/semantic-release/github) from 11.0.6 to 12.0.0. - [Release notes](https://github.com/semantic-release/github/releases) - [Commits](https://github.com/semantic-release/github/compare/v11.0.6...v12.0.0) --- updated-dependencies: - dependency-name: "@semantic-release/github" dependency-version: 12.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
74 lines
2.2 KiB
JSON
74 lines
2.2 KiB
JSON
{
|
|
"name": "vb6-antlr4",
|
|
"version": "1.1.0",
|
|
"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": "^20.0.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^12.0.0",
|
|
"@tsconfig/node16": "^16.1.1",
|
|
"@types/jest": "^30.0.0",
|
|
"antlr4ts-cli": "^0.5.0-alpha.4",
|
|
"commitlint-config-gitmoji": "^2.3.1",
|
|
"cpy-cli": "^6.0.0",
|
|
"cz-gitmoji": "0.0.7",
|
|
"husky": "^9.0.2",
|
|
"jest": "^30.0.0",
|
|
"rimraf": "^6.0.0",
|
|
"semantic-release": "^24.0.0",
|
|
"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"
|
|
}
|
|
}
|
|
}
|