eu.astrogd.uptime-kuma-push.../package.json

40 lines
1.6 KiB
JSON
Raw Normal View History

2023-09-16 12:16:57 +02:00
{
2023-09-16 12:30:28 +02:00
"name": "@astrogd/eu.astrogd.uptime-kuma-push-monitor",
2023-09-16 15:45:36 +02:00
"version": "1.0.0",
2023-09-16 12:30:28 +02:00
"description": "Handles uptime kuma push monitor uptime requests",
2023-09-16 12:16:57 +02:00
"main": "dist/index.js",
"types": "dist/types/",
"scripts": {
"start": "npm run build && node --enable-source-maps .",
2023-09-16 12:30:28 +02:00
"test": "npm run build && npm run test:style",
2023-09-16 12:16:57 +02:00
"format": "prettier --write .",
"build": "tsc",
"deploy:npm": "npm publish",
"version:dev": "npm version prerelease --preid dev --no-commit-hooks --no-git-tag-version",
"version:patch": "npm version prepatch --preid dev --no-commit-hooks --no-git-tag-version",
"version:minor": "npm version preminor --preid dev --no-commit-hooks --no-git-tag-version",
"version:major": "npm version premajor --preid dev --no-commit-hooks --no-git-tag-version",
"version:release": "npm version patch --no-commit-hooks --no-git-tag-version",
"test:style": "eslint **.ts --fix",
2023-09-16 12:30:28 +02:00
"prepack": "npx rimraf dist && npm run test && npm run build"
2023-09-16 12:16:57 +02:00
},
"author": "AstroGD Lukas Weber <hello@astrogd.eu> (https://www.astrogd.eu/)",
"license": "UNLICENSED",
"repository": {
"type": "git",
2023-09-16 12:30:28 +02:00
"url": "https://git.astrogd.cloud/packages/eu.astrogd.uptime-kuma-push-monitor.git"
2023-09-16 12:16:57 +02:00
},
"devDependencies": {
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.33.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
2023-09-16 13:12:29 +02:00
"axios": "^1.5.0"
2023-09-16 12:16:57 +02:00
}
}