mc-publish/package.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2021-09-20 07:01:32 -04:00
{
"name": "mc-publish",
"version": "1.0.0",
"description": "GitHub Action that helps you publish your Minecraft mods",
"main": "src/index.ts",
"scripts": {
2021-09-21 03:22:09 -04:00
"build": "ncc build --source-map --license license.txt",
2021-09-21 03:24:10 -04:00
"test:lint": "eslint src/** && eslint test/**",
2021-09-21 03:27:32 -04:00
"test:unit": "jest",
"test": "npm run test:lint && npm run test:unit"
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": {
2021-09-21 03:27:32 -04:00
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
2021-09-21 03:22:09 -04:00
"@types/node": "^16.10.1",
2021-09-21 03:24:10 -04:00
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
2021-09-21 03:22:09 -04:00
"@vercel/ncc": "^0.31.1",
2021-09-21 03:27:32 -04:00
"babel-jest": "^27.2.2",
2021-09-21 03:24:10 -04:00
"eslint": "^7.32.0",
2021-09-21 03:27:32 -04:00
"jest": "^27.2.2",
2021-09-21 03:22:09 -04:00
"typescript": "^4.4.3"
},
2021-09-22 09:21:12 -04:00
"dependencies": {
2021-09-22 12:20:00 -04:00
"@actions/core": "^1.5.0",
2021-09-24 07:58:19 -04:00
"@actions/github": "^5.0.0",
"fast-glob": "^3.2.7",
"formdata-node": "^4.2.2",
"node-fetch": "^3.0.0"
2021-09-22 09:21:12 -04:00
}
2021-09-20 07:01:32 -04:00
}