mc-publish/package.json

58 lines
1.6 KiB
JSON
Raw Normal View History

2021-09-20 07:01:32 -04:00
{
"name": "mc-publish",
2022-08-21 08:18:22 -04:00
"version": "3.2.0",
2021-09-20 07:01:32 -04:00
"description": "GitHub Action that helps you publish your Minecraft mods",
"main": "src/index.ts",
"scripts": {
"build": "ncc build --source-map --license license.txt && ncc run scripts/index.ts",
2021-12-10 09:08:12 -05:00
"test:lint": "eslint src/**/*.ts && eslint test/**/*.ts",
2022-11-29 08:12:43 -05:00
"test:unit": "jest --testPathPattern=unit --watchAll=false",
"test:integration": "jest --testPathPattern=integration",
"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",
"@types/node": "^16.11.7",
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",
2022-05-31 14:17:20 -04:00
"@vercel/ncc": "^0.34.0",
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",
2022-08-21 08:16:05 -04:00
"typescript": "^4.7.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
}