bat2js
Version:
Batch to JavaScript compiler
47 lines (46 loc) • 1.07 kB
JSON
{
"name": "bat2js",
"version": "1.1.0",
"description": "Batch to JavaScript compiler",
"keywords": [
"batch",
"batchfile",
"js",
"javascript",
"transpile",
"transpiler",
"compile",
"compiler",
"typescript",
"ts",
"bat"
],
"homepage": "https://github.com/benja2998/bat2js#readme",
"bugs": {
"url": "https://github.com/benja2998/bat2js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benja2998/bat2js.git"
},
"license": "GPL-3.0-or-later",
"author": "benja2998",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"program": "npm run build && node . hello.bat"
},
"bin": {
"bat2js": "dist/index.js"
},
"devDependencies": {
"@types/node": "^22.15.30",
"coveralls-next": "^4.2.1",
"jest": "^29.7.0",
"typescript": "^5.8.3"
}
}