{ "name": "inno-setup-action", "description": "GitHub action to compile .iss (Inno Setup Script) files.", "version": "1.2.4", "author": "Minionguyjpro", "private": false, "homepage": "https://github.com/Minionguyjpro/Inno-Setup-Action#readme", "repository": { "type": "git", "url": "git+https://github.com/Minionguyjpro/Inno-Setup-Action.git" }, "bugs": { "url": "https://github.com/Minionguyjpro/Inno-Setup-Action/issues" }, "keywords": [ "GitHub", "Actions", "JavaScript", "Inno-Setup" ], "exports": { ".": "./dist/index.js" }, "engines": { "node": ">=20" }, "scripts": { "bundle": "npm run format:write && npm run package", "format:write": "prettier --write **/*.js", "format:check": "prettier --check **/*.js", "lint": "npx eslint . -c ./.github/linters/.eslintrc.yml", "package": "ncc build src/index.js --license licenses.txt", "package:watch": "npm run package -- --watch", "test": "jest", "all": "npm run format:write && npm run lint && npm run package" }, "license": "MIT", "eslintConfig": { "extends": "./.github/linters/.eslintrc.yml" }, "jest": { "verbose": true, "clearMocks": true, "testEnvironment": "node", "moduleFileExtensions": [ "js" ], "testMatch": [ "**/*.test.js" ], "testPathIgnorePatterns": [ "/node_modules/", "/dist/" ], "coverageReporters": [ "json-summary", "text", "lcov" ], "collectCoverage": true, "collectCoverageFrom": [ "./src/**" ] }, "dependencies": { "@actions/core": "^1.10.1" }, "devDependencies": { "@babel/core": "^7.24.3", "@babel/eslint-parser": "^7.23.10", "@babel/preset-env": "^7.24.4", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", "@vercel/ncc": "^0.38.1", "babel-preset-jest": "^29.6.3", "eslint": "^8.56.0", "eslint-plugin-github": "^4.10.1", "eslint-plugin-jest": "^27.9.0", "jest": "^29.7.0", "prettier": "^3.2.5", "semantic-release": "^23.0.8" }, "release": { "branches": "main", "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/github", [ "@semantic-release/exec", { "prepare": "npm run package" } ], [ "@semantic-release/git", { "assets": [ "dist", "dist/index.js", "package.json", "package-lock.json" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] ] } }