-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 864 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
{
"name": "http-link-header",
"version": "1.1.3",
"description": "Parse & format HTTP link headers according to RFC 8288",
"author": "Jonas Hermsmeier <[email protected]> (https://jhermsmeier.de)",
"license": "MIT",
"keywords": [
"rfc5988",
"rfc8288",
"rfc",
"5988",
"8288",
"http",
"link",
"header"
],
"main": "lib/link.js",
"scripts": {
"benchmark": "node benchmark",
"test": "control"
},
"devDependencies": {
"@jhermsmeier/control": "2.0.2",
"nanobench": "2.1.1"
},
"homepage": "https://github.com/jhermsmeier/node-http-link-header",
"repository": {
"type": "git",
"url": "git+https://github.com/jhermsmeier/node-http-link-header.git"
},
"bugs": {
"url": "https://github.com/jhermsmeier/node-http-link-header/issues"
},
"engines": {
"node": ">=6.0.0"
}
}