-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 966 Bytes
/
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": "http-metrics",
"version": "0.1.1",
"description": "The metrics of the HTTP/HTTPS request process",
"main": "index.js",
"scripts": {
"test": "make test",
"lint": "make lint",
"test-cov": "make test-cov"
},
"author": "taevas <[email protected]> (taevas.space)",
"license": "MIT",
"engines": {
"node": ">=4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zyvas/http-metrics.git"
},
"keywords": [
"namelookup",
"time_namelookup",
"connect",
"time_connect",
"SSL",
"time_appconnect",
"TTFB",
"time_starttransfer",
"download_time",
"time_total"
],
"bugs": {
"url": "https://github.com/zyvas/http-metrics/issues"
},
"dependencies": {
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"istanbul": "^0.4.3",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"should": "^8.3.1"
}
}