{ "name": "mc-publish", "version": "3.2.0", "description": "GitHub Action that helps you publish your Minecraft mods", "main": "src/index.ts", "type": "module", "scripts": { "generate": "ncc run scripts/generate.ts -t", "prebuild": "npm run generate", "build": "ncc build -s --license license.txt", "test:lint": "eslint \"@(src|scripts)/**/*.ts\" && eslint --rule \"no-invalid-this: off\" tests/**/*.ts", "test:unit": "jest --testPathPattern=unit --watchAll=false", "test:integration": "jest --testPathPattern=integration --watchAll=false --passWithNoTests", "test": "npm run test:lint && npm run test:unit && npm run test:integration" }, "repository": { "type": "git", "url": "git+https://github.com/Kir-Antipov/mc-publish.git" }, "keywords": [ "github", "actions", "minecraft", "minecraft-mod", "publish" ], "author": "Kir-Antipov", "license": "MIT", "bugs": { "url": "https://github.com/Kir-Antipov/mc-publish/issues" }, "homepage": "https://github.com/Kir-Antipov/mc-publish#readme", "devDependencies": { "@babel/preset-env": "^7.21.5", "@types/jest": "^29.5.1", "@types/mock-fs": "^4.13.1", "@types/node": "^16.11.7", "@types/node-fetch": "^2.6.2", "@types/semver": "^7.3.13", "@types/yazl": "^2.4.2", "@typescript-eslint/eslint-plugin": "^5.33.1", "@typescript-eslint/parser": "^5.33.1", "@vercel/ncc": "^0.34.0", "babel-jest": "^29.5.0", "eslint": "^8.22.0", "jest": "^29.5.0", "mock-fs": "^5.2.0", "ts-jest": "^29.1.0", "typescript": "^4.7.4", "yazl": "^2.5.1" }, "dependencies": { "fast-glob": "^3.2.11", "node-fetch": "^3.3.1", "node-stream-zip": "^1.15.0", "semver": "^7.5.0", "toml": "^3.0.0", "yaml": "^2.2.2" } }