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:
70
package.json
70
package.json
@@ -1,8 +1,30 @@
|
|||||||
{
|
{
|
||||||
"name": "inno-setup-action",
|
"name": "inno-setup-action",
|
||||||
"version": "1.2.4",
|
|
||||||
"description": "GitHub action to compile .iss (Inno Setup Script) files.",
|
"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",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
"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": {
|
"scripts": {
|
||||||
"bundle": "npm run format:write && npm run package",
|
"bundle": "npm run format:write && npm run package",
|
||||||
"format:write": "prettier --write **/*.js",
|
"format:write": "prettier --write **/*.js",
|
||||||
@@ -13,20 +35,50 @@
|
|||||||
"test": "jest",
|
"test": "jest",
|
||||||
"all": "npm run format:write && npm run lint && npm run test && npm run package"
|
"all": "npm run format:write && npm run lint && npm run test && npm run package"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"license": "MIT",
|
||||||
"author": "",
|
"eslintConfig": {
|
||||||
"license": "ISC",
|
"extends": "./.github/linters/.eslintrc.yml"
|
||||||
"dependencies": {
|
},
|
||||||
"@actions/core": "^1.10.1",
|
"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": {
|
"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",
|
||||||
|
"@babel/core": "^7.23.7",
|
||||||
|
"@babel/eslint-parser": "^7.23.3",
|
||||||
|
"@babel/preset-env": "^7.23.7",
|
||||||
"@vercel/ncc": "^0.38.1",
|
"@vercel/ncc": "^0.38.1",
|
||||||
|
"babel-preset-jest": "^29.6.3",
|
||||||
"eslint": "^8.56.0",
|
"eslint": "^8.56.0",
|
||||||
"eslint-plugin-github": "^4.1.3",
|
"eslint-plugin-github": "^4.10.1",
|
||||||
"eslint-plugin-jest": "^24.3.6",
|
"eslint-plugin-jest": "^27.6.0",
|
||||||
"jest": "^27.0.6",
|
"jest": "^29.7.0",
|
||||||
|
"prettier": "^3.1.1",
|
||||||
"semantic-release": "^22.0.12"
|
"semantic-release": "^22.0.12"
|
||||||
},
|
},
|
||||||
"release": {
|
"release": {
|
||||||
|
|||||||
Reference in New Issue
Block a user