Skip to content

Commit

Permalink
feat(deps): update prom-client to 14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SkeLLLa committed Apr 14, 2023
1 parent 90f4874 commit 2e25347
Show file tree
Hide file tree
Showing 4 changed files with 911 additions and 960 deletions.
34 changes: 20 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,35 @@
"test": "src/__tests__"
},
"scripts": {
"build": "pnpm run build:node",
"build:node": "tsc -p tsconfig.json",
"docs": "pnpm run build && api-extractor run -l && api-documenter markdown -i ./temp -o ./docs && pretty-quick",
"build": "pnpm run build:node && pnpm run build:docs",
"build:docs": "api-extractor run -l && api-documenter markdown -i ./temp -o ./docs/api && pretty-quick",
"build:node": "tsc -p tsconfig.build.json",
"example:ts": "ts-node examples/example.ts",
"get-changelog": "conventional-changelog -r 2 -p angular",
"lint": "eslint .",
"release": "pnpm run docs && git add -A && standard-version -a",
"test": "pnpm audit --production && pnpm run lint && pnpm run unit",
"format": "npx prettier --write **/*.ts",
"unit": "jest",
"version:update": "echo v$npm_package_version > VERSION"
"lint": "pnpm run lint:types && pnpm run lint:codestyle && pnpm run lint:packages",
"lint:codestyle": "eslint . --ext js,jsx,ts,tsx",
"lint:packages": "pnpm audit --prod --audit-level=high",
"lint:types": "tsc -p tsconfig.json",
"release": "semantic-release",
"test": "npm run lint && pnpm run test:unit",
"test:unit": "jest --passWithNoTests"
},
"dependencies": {
"fastify-plugin": "^4.3.0",
"prom-client": "^14.1.0"
"prom-client": "^14.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@jest/globals": "^29.2.0",
"@microsoft/api-documenter": "^7.19.22",
"@microsoft/api-extractor": "^7.33.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
Expand All @@ -64,20 +71,19 @@
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"fastify": "^4.9.2",
"husky": "^8.0.1",
"jest": "^29.2.0",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-organize-imports": "^3.1.1",
"prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-sort-json": "0.0.3",
"pretty-quick": "^3.1.3",
"standard-version": "^9.5.0",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.8.4"
},
"peerDependencies": {
"fastify": "^4.9.2"
"fastify": ">=4"
}
}
Loading

0 comments on commit 2e25347

Please sign in to comment.