-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "nettime",
"description": "Prints timings of a HTTP/S request, including DNS lookup, TLS handshake etc.",
"version": "5.0.0",
"homepage": "https://github.com/prantlf/nettime",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/nettime.git"
},
"bugs": {
"url": "https://github.com/prantlf/nettime/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/nettime/blob/master/LICENSE"
}
],
"engines": {
"node": ">=14.8"
},
"type": "module",
"main": "lib/nettime.cjs",
"module": "lib/nettime.js",
"exports": {
"require": "./lib/nettime.cjs",
"import": "./lib/nettime.js"
},
"types": "lib/nettime.d.ts",
"bin": {
"nettime": "bin/nettime.cjs"
},
"files": [
"bin",
"lib",
"CHANGELOG.md"
],
"scripts": {
"prepare": "rollup -c && sed -i 's/exports.default = nettime;/module.exports = nettime;/' lib/nettime.cjs && sed -i 's/exports.\\(\\w*\\) = \\w*;//' lib/nettime.cjs",
"check": "teru-cjs tests/cjs.cjs && teru-esm tests/*.js",
"test": "denolint && tsc --noEmit tests/types.ts && teru-cjs tests/cjs.cjs && c8 teru-esm tests/*.js"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"c8": {
"check-coverage": "true",
"reporter": [
"lcov",
"text-summary"
],
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
},
"dependencies": {
"readline-sync": "1.4.10",
"sprintf-js": "1.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@types/node": "18.11.17",
"c8": "7.12.0",
"denolint": "2.0.5",
"nettime": "link:",
"rollup": "3.7.5",
"rollup-plugin-cleanup": "3.2.1",
"tehanu": "1.0.1",
"tehanu-repo-coco": "1.0.0",
"tehanu-teru": "1.0.0",
"typescript": "4.9.4"
},
"keywords": [
"nettime",
"time",
"net",
"http",
"https",
"measure",
"timings",
"request"
]
}