-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "@metrics/client",
"version": "2.5.5",
"description": "A streaming metric producer. Allows producing counters, gauges, histograms and summaries in a way that is independent of your metrics system.",
"main": "lib/client.js",
"types": "client.d.ts",
"files": [
"lib",
"client.d.ts"
],
"scripts": {
"bench": "node benchmark/benchmark.js",
"test": "tap test/*.js --disable-coverage --allow-empty-coverage",
"test:coverage": "tap test/*.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Richard Walker <richard.walker@finn.no>",
"license": "MIT",
"keywords": [
"server-statistics",
"server-stats",
"statistics",
"metrics",
"monitoring"
],
"dependencies": {
"@metrics/metric": "^2.3.2",
"@types/readable-stream": "^4.0.0",
"readable-stream": "^3.4.0",
"time-span": "^4.0.0"
},
"devDependencies": {
"@metrics/semantic-release-config": "1.0.0",
"@sinonjs/fake-timers": "11.2.2",
"benchmark": "2.1.4",
"eslint": "9.35.0",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-prettier": "5.5.4",
"globals": "15.15.0",
"prettier": "3.6.2",
"semantic-release": "25.0.2",
"tap": "18.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/metrics-js/client.git"
}
}