forked from web3-storage/parse-link-header
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.04 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
{
"name": "@web3-storage/parse-link-header",
"version": "3.1.0",
"description": "Parses a link header and returns paging information for each contained link.",
"main": "index.js",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "tap test/*.js",
"build": "npm run build:cjs",
"build:cjs": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git://github.com/web3-storage/parse-link-header.git"
},
"homepage": "https://github.com/web3-storage/parse-link-header",
"devDependencies": {
"rollup": "^2.68.0",
"tap": "^15.1.6",
"tape": "^5.5.2"
},
"keywords": [
"parse",
"link",
"header",
"weblink",
"web",
"link",
"rel"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=14"
},
"files": [
"index.js",
"index.d.ts",
"dist"
]
}