mirror of
https://github.com/brucificus/vb6-antlr4-typescript.git
synced 2025-12-16 20:07:03 +03:00
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "vb6-antlr4",
|
|
"version": "0.0.0-development",
|
|
"description": "",
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 0",
|
|
"build.cpygrammars": "cpy proleap-vb6/src/main/antlr4/io/proleap/vb6/*.g4 ./antlr4ts_out/",
|
|
"build.antlr4ts": "antlr4ts -visitor antlr4ts_out/*.g4",
|
|
"postbuild.antlr4ts": "rimraf antlr4ts_out/*.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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/brucificus/vb6-antlr4-typescript.git"
|
|
},
|
|
"author": "Bruce Markham",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/brucificus/vb6-antlr4-typescript/issues"
|
|
},
|
|
"homepage": "https://github.com/brucificus/vb6-antlr4-typescript#readme",
|
|
"devDependencies": {
|
|
"@semantic-release/git": "^9.0.0",
|
|
"@semantic-release/github": "^7.0.5",
|
|
"antlr4ts-cli": "^0.5.0-alpha.3",
|
|
"cpy-cli": "^3.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "^17.0.4",
|
|
"semantic-release-gitmoji": "^1.3.3",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"antlr4ts": "^0.5.0-alpha.3"
|
|
}
|
|
}
|