-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 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
{
"name": "rock-req",
"description": "Ultra-light (150 LOC, No dependencies) & Ultra-fast request library with reliable retry on failure, http/https, redirects, gzip/deflate/brotli, extensible, proxy, streams, JSON mode, forms, timeout",
"version": "5.1.3",
"author": {
"name": "David Grelaud & Feross Aboukhadijeh"
},
"devDependencies": {
"self-signed-https": "1.0.5",
"standard": "*",
"string-to-stream": "3.0.1",
"tape": "5.6.3"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js"
],
"keywords": [
"request",
"http",
"get request",
"http.get",
"redirects",
"retry",
"follow redirects",
"gzip",
"deflate",
"https",
"stream",
"simple request",
"light request",
"kiss request",
"tiny request",
"simple get"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/carboneio/rock-req.git"
},
"scripts": {
"test": "tape test/*.js",
"standard": "node_modules/.bin/standard"
}
}