-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@block65/server-timing",
"version": "2.1.0",
"private": false,
"description": "Track and log timing metrics during async request-response cycles and surface them as a Server-Timing header",
"homepage": "https://github.com/block65/server-timing#readme",
"bugs": {
"url": "https://github.com/block65/server-timing/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/block65/server-timing"
},
"license": "UNLICENSED",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./express": {
"types": "./dist/src/express.d.ts",
"default": "./dist/src/express.js"
}
},
"files": [
"dist/lib/*.js",
"dist/lib/*.d.ts",
"dist/src/*.js",
"dist/src/*.d.ts"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@block65/eslint-config": "^8.0.0",
"@jest/globals": "^29.0.3",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.19",
"@types/on-headers": "^1.0.0",
"@typescript-eslint/eslint-plugin": ">=5.38.0",
"@typescript-eslint/parser": ">=5.38.0",
"eslint": ">=8.24.0",
"eslint-plugin-import": ">=2.26.0",
"eslint-plugin-prettier": ">=4.2.1",
"express": "^4.18.1",
"get-port": "^6.1.2",
"jest": "^29.0.3",
"on-headers": "^1.0.2",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"peerDependencies": {
"express": "^4.18.1",
"on-headers": "^1.0.2"
},
"engines": {
"node": ">=16.0.0"
}
}