-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.28 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
{
"name": "request-libcurl",
"version": "4.0.0",
"description": "Extremely stable HTTP request module built on top of libcurl",
"main": "index.js",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"prepublishOnly": "rollup --config rollup.config.js",
"test": "mocha ./test/npm.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veliovgroup/request-extra.git"
},
"keywords": [
"request",
"libcurl",
"curl",
"repeats",
"http",
"http2",
"http3",
"https",
"post",
"get",
"API",
"rest",
"request-libcurl",
"request-extra"
],
"tags": [
"request",
"libcurl",
"curl",
"repeats",
"http",
"http2",
"http3",
"https",
"post",
"get",
"API",
"rest",
"request-libcurl",
"request-extra"
],
"author": "dr.dimitru (https://veliovgroup.com)",
"engines": {
"node": ">=16.14"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/veliovgroup/request-extra/issues"
},
"homepage": "https://github.com/veliovgroup/request-extra#readme",
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.6.0"
},
"dependencies": {
"node-libcurl": "^4.0.0"
}
}