This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@devintent/verdaccio-prometheus-middleware",
"version": "2.0.2",
"description": "Verdaccio middleware plugin used to collect prometheus compatible metrics",
"keywords": [
"verdaccio",
"plugin",
"middleware",
"metrics",
"prometheus"
],
"author": {
"name": "Ed Clement",
"email": "ed@devintent.com"
},
"license": "MIT",
"homepage": "https://devintent.com",
"repository": {
"type": "git",
"url": "https://github.com/devintent/verdaccio-prometheus-middleware"
},
"bugs": {
"url": "https://github.com/devintent/verdaccio-prometheus-middleware/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "npm run lint && npm run unitTest",
"unitTest": "jest",
"lint": "eslint \"**/*.{js,ts}\"",
"prettier": "prettier --write '**/*.{js,ts,json,md}'",
"changelog": "conventional-changelog ---preset angular ---infile CHANGELOG.md --same-file",
"release": "HUSKY=0 standard-version --no-verify",
"prepublishOnly": "npm run build"
},
"overrides": {
"commitizen": {
"minimist": "1.2.6"
}
},
"dependencies": {
"prom-client": "14.0.1"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/chance": "1.1.3",
"@types/express": "4.17.13",
"@types/jest": "28.1.6",
"@types/node": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.30.6",
"@verdaccio/types": "10.5.1",
"chance": "1.1.8",
"commitizen": "4.2.5",
"conventional-changelog-cli": "2.2.2",
"cz-conventional-changelog": "^3.0.1",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"express": "4.18.1",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-junit": "14.0.0",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"standard-version": "9.5.0",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}