1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00

Update package.json

This commit is contained in:
Minionguyjpro
2024-01-02 17:11:03 +01:00
committed by GitHub
parent 9da33ad31f
commit f60c631e7d

View File

@@ -1,11 +1,15 @@
{ {
"name": "inno-setup-action", "name": "inno-setup-action",
"version": "1.0.0", "version": "1.2.4",
"description": "GitHub action to compile .iss (Inno Setup Script) files.", "description": "GitHub action to compile .iss (Inno Setup Script) files.",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "format": "prettier --write **/*.js",
"package": "ncc build --source-map" "format-check": "prettier --check **/*.js",
"lint": "eslint "./dist/**"",
"package": "ncc build --source-map".
"test": "jest",
"all": "npm run format && npm run format && npm run lint && npm run package && npm run test"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
@@ -18,7 +22,11 @@
"devDependencies": { "devDependencies": {
"@semantic-release/exec": "^6.0.3", "@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1", "@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.28.6",
"eslint": "^8.56.0", "eslint": "^8.56.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.6",
"semantic-release": "^22.0.12" "semantic-release": "^22.0.12"
}, },
"release": { "release": {