mc-publish/package.json

64 lines
1.9 KiB
JSON
Raw Normal View History

2021-09-20 07:01:32 -04:00
{
"name": "mc-publish",
2023-05-19 14:55:41 -04:00
"version": "3.3.0",
2021-09-20 07:01:32 -04:00
"description": "GitHub Action that helps you publish your Minecraft mods",
"main": "src/index.ts",
2022-12-01 06:11:12 -05:00
"type": "module",
2021-09-20 07:01:32 -04:00
"scripts": {
2023-05-19 14:37:49 -04:00
"clean": "rimraf dist",
"generate": "ncc run scripts/generate.ts -t",
2023-05-20 08:06:14 -04:00
"strip": "ncc run scripts/strip.ts -t",
2023-05-19 14:37:49 -04:00
"prebuild": "npm run clean && npm run generate",
"build": "ncc build -m -s --license license.txt",
2023-05-20 08:06:14 -04:00
"postbuild": "npm run strip",
2023-05-18 13:33:21 -04:00
"test:lint": "eslint \"@(src|scripts)/**/*.ts\" && eslint --rule \"no-invalid-this: off\" tests/**/*.ts",
2022-11-29 08:12:43 -05:00
"test:unit": "jest --testPathPattern=unit --watchAll=false",
2023-05-18 13:36:21 -04:00
"test:integration": "jest --testPathPattern=integration --watchAll=false --passWithNoTests",
2022-11-29 08:12:43 -05:00
"test": "npm run test:lint && npm run test:unit && npm run test:integration"
2021-09-20 07:01:32 -04:00
},
"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",
2021-09-21 03:22:09 -04:00
"devDependencies": {
2022-11-29 08:12:43 -05:00
"@babel/preset-env": "^7.21.5",
"@types/jest": "^29.5.1",
"@types/mock-fs": "^4.13.1",
2023-05-19 13:43:10 -04:00
"@types/node": "^16.18.31",
2022-08-21 08:16:05 -04:00
"@types/node-fetch": "^2.6.2",
"@types/semver": "^7.3.13",
2021-12-07 14:00:58 -05:00
"@types/yazl": "^2.4.2",
2022-08-21 08:16:05 -04:00
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
2023-05-19 13:43:10 -04:00
"@vercel/ncc": "^0.36.1",
2022-11-29 08:12:43 -05:00
"babel-jest": "^29.5.0",
2022-08-21 08:16:05 -04:00
"eslint": "^8.22.0",
2022-11-29 08:12:43 -05:00
"jest": "^29.5.0",
"mock-fs": "^5.2.0",
"ts-jest": "^29.1.0",
2023-05-19 13:43:10 -04:00
"typescript": "^5.0.4",
2021-12-07 14:00:58 -05:00
"yazl": "^2.5.1"
2021-09-21 03:22:09 -04:00
},
2021-09-22 09:21:12 -04:00
"dependencies": {
2022-05-31 14:17:20 -04:00
"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"
2021-09-22 09:21:12 -04:00
}
2021-09-20 07:01:32 -04:00
}