-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.39 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
{
"name": "promlite",
"version": "1.1.0",
"description": "A Prometheus client is a library that lets applications define and collect metrics (counters, gauges, histograms, summaries) and expose them on an HTTP endpoint (usually /metrics) in the Prometheus text format so that Prometheus can scrape and store them.",
"keywords": [
"prometheus",
"prometheus-client"
],
"license": "ISC",
"author": "Aditya Singh",
"repository": {
"type": "git",
"url": "https://github.com/iaadi4/Promlite.git"
},
"type": "module",
"main": "index.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"build": "tsc",
"type-check": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"check": "npm run type-check && npm run lint && npm run format:check"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}