-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "server-timing",
"version": "3.3.2",
"description": "This module can add `ServerTiming` Header to http response, and be able to use express middleware",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "eater --require .loader.js",
"lint": "standard",
"cov": "nyc npm test",
"coveralls": "npm run cov && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yosuke-furukawa/server-timing.git"
},
"keywords": [
"server-timing",
"express",
"middleware",
"performance"
],
"author": "yosuke-furukawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/yosuke-furukawa/server-timing/issues"
},
"homepage": "https://github.com/yosuke-furukawa/server-timing#readme",
"dependencies": {
"minimist": "^1.2.5",
"on-headers": "^1.0.2"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/node": "^18.0.0",
"assert-stream": "1.1.1",
"coveralls": "3.1.1",
"eater": "4.0.4",
"espower-loader": "1.2.2",
"express": "4.18.2",
"must-call": "1.0.0",
"nyc": "15.1.0",
"power-assert": "1.6.1",
"standard": "17.0.0"
}
}