-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.52 KB
/
package.json
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
{
"name": "@metrics/client",
"version": "2.5.4",
"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": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.3.5",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@sinonjs/fake-timers": "11.2.2",
"benchmark": "2.1.4",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.9.0",
"prettier": "3.3.3",
"semantic-release": "24.1.2",
"tap": "18.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/metrics-js/client.git"
}
}