-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "parse-retry-after",
"version": "0.1.2",
"description": "Parses an HTTP Retry-After header and returns delay time in seconds.",
"main": "parse-retry-after.js",
"scripts": {
"test": "node --experimental-modules ./test/test.mjs",
"coverage": "nyc --reporter=text-lcov report | coveralls",
"lint": "eslint --parser-options=sourceType:module *.js *.mjs"
},
"nyc": {
"extension": [
".mjs"
],
"reporter": [
"lcov"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MorganConrad/parse-retry-after.git"
},
"keywords": [
"Retry-After",
"HTTP",
"headers",
"fetch"
],
"devDependencies": {
"coveralls": "^3.1",
"nyc": "^15.1.0",
"tape": "^5.2"
},
"author": "Morgan Conrad <flyingspaniel@gmail.com> (http://flyingspaniel.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MorganConrad/parse-retry-after/issues"
},
"homepage": "https://github.com/MorganConrad/parse-retry-after#readme"
}