1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 09:31:19 +01:00
Files
inno-setup/package.json
dependabot[bot] be2447650d chore(deps): bump the npm_and_yarn group across 1 directory with 2 updates (#122)
Bumps the npm_and_yarn group with 2 updates in the / directory: [ajv](https://github.com/ajv-validator/ajv) and [eslint](https://github.com/eslint/eslint).


Updates `ajv` from 5.5.2 to 6.12.6
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](https://github.com/ajv-validator/ajv/compare/v5.5.2...v6.12.6)

Updates `eslint` from 4.19.1 to 9.29.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v4.19.1...v9.29.0)

---
updated-dependencies:
- dependency-name: ajv
  dependency-version: 6.12.6
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: eslint
  dependency-version: 9.29.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-18 20:29:16 +02:00

110 lines
2.6 KiB
JSON

{
"name": "inno-setup-action",
"description": "GitHub action to compile .iss (Inno Setup Script) files.",
"version": "1.2.5",
"author": "Minionguyjpro",
"type": "module",
"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": ">=21"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"format:write": "prettier --write **/*.js",
"format:check": "prettier --check **/*.js",
"lint": "eslint src/**/*.js",
"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",
"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.11.1",
"eslintrc": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.5",
"@babel/preset-env": "^7.27.2",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.38.3",
"babel-preset-jest": "^29.6.3",
"eslint": "^9.29.0",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^28.13.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"semantic-release": "^24.2.5"
},
"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}"
}
]
]
}
}