1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00
Files
inno-setup/package.json
Minionguyjpro c5757597dd Add eslintrc dependency
Signed-off-by: Minionguyjpro <minionguyjpro@gmail.com>
2025-06-07 18:59:19 +02:00

113 lines
2.7 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": "npx eslint . -c ./.github/linters/eslint.config.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",
"eslintConfig": {
"extends": "./.github/linters/eslint.config.js"
},
"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.28.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}"
}
]
]
}
}