UNPKG

docker-hub-tags

Version:

NodeJS lib, with which you can easily find the latest version of Docker Hub images

65 lines (64 loc) 1.84 kB
{ "name": "docker-hub-tags", "version": "1.0.1", "description": "NodeJS lib, with which you can easily find the latest version of Docker Hub images", "author": "BCsabaEngine <csaba@balazs-magyar.hu>", "license": "MIT", "main": "./dist/index.js", "types": "./dist/index.d.ts", "engines": { "node": ">=20", "npm": ">=10" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts" ], "repository": { "type": "git", "url": "git+https://github.com/BCsabaEngine/docker-hub-tags.git" }, "bugs": { "url": "https://github.com/BCsabaEngine/docker-hub-tags/issues" }, "homepage": "https://github.com/BCsabaEngine/docker-hub-tags", "keywords": [ "nodejs", "typescript", "versions", "dockerhub" ], "scripts": { "dev": "nodemon ./example/simpleGet.ts", "clean": "tsc --build --clean", "build": "tsc --build --clean && tsc --build --force", "format:check": "prettier --check .", "format:fix": "prettier --write .", "lint:check": "eslint .", "lint:fix": "eslint --fix .", "test": "jest", "all": "npm run format:fix && npm run lint:fix && npm run test", "npm-publish-patch": "npm run build && npm version patch && npm publish && npm run clean && git push", "npm-publish-minor": "npm run build && npm version minor && npm publish && npm run clean && git push" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-sonarjs": "^0.23.0", "eslint-plugin-unicorn": "^50.0.1", "jest": "^29.7.0", "nodemon": "^3.0.2", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "dependencies": { "zod": "^3.22.4" } }