@automattic/request-promise-native 1.1.1 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -4
- package/deps/promise-core/LICENSE +15 -0
- package/deps/promise-core/README.md +130 -0
- package/deps/promise-core/configure/request-next.js +65 -0
- package/deps/promise-core/configure/request2.js +72 -0
- package/deps/promise-core/errors.js +1 -0
- package/deps/promise-core/lib/errors.js +59 -0
- package/deps/promise-core/lib/plumbing.js +165 -0
- package/deps/promise-core/package-lock.json +2507 -0
- package/deps/promise-core/package.json +45 -0
- package/package.json +7 -14
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "request-promise-core",
|
|
3
|
+
"version": "1.1.4",
|
|
4
|
+
"description": "Core Promise support implementation for the simplified HTTP request client 'request'.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"xhr",
|
|
7
|
+
"http",
|
|
8
|
+
"https",
|
|
9
|
+
"promise",
|
|
10
|
+
"request",
|
|
11
|
+
"then",
|
|
12
|
+
"thenable",
|
|
13
|
+
"core"
|
|
14
|
+
],
|
|
15
|
+
"main": "./lib/plumbing.js",
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "mocha -R spec test/spec",
|
|
18
|
+
"check-dependencies": "npx depcheck@1.4.7"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/request/promise-core.git"
|
|
23
|
+
},
|
|
24
|
+
"author": "Nicolai Kamenzky (https://github.com/analog-nico)",
|
|
25
|
+
"license": "ISC",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/request/promise-core/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/request/promise-core#readme",
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"lodash": "^4.17.19",
|
|
35
|
+
"request": "npm:@cypress/request@^3.0.7"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"bluebird": "~3.4.1",
|
|
39
|
+
"body-parser": "^1.20.3",
|
|
40
|
+
"chai": "^4.5.0",
|
|
41
|
+
"mocha": "^11.1.0",
|
|
42
|
+
"node-version": "^3.0.0",
|
|
43
|
+
"stealthy-require": "~1.0.0"
|
|
44
|
+
}
|
|
45
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/request-promise-native",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xhr",
|
|
@@ -21,28 +21,21 @@
|
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/
|
|
24
|
+
"url": "git+https://github.com/Automattic/request-promise-native.git"
|
|
25
25
|
},
|
|
26
26
|
"author": "Nicolai Kamenzky (https://github.com/analog-nico)",
|
|
27
27
|
"license": "ISC",
|
|
28
28
|
"bugs": {
|
|
29
|
-
"url": "https://github.com/
|
|
29
|
+
"url": "https://github.com/Automattic/request-promise-native/issues"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://github.com/
|
|
31
|
+
"homepage": "https://github.com/Automattic/request-promise-native#readme",
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=18.x"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"request": "
|
|
37
|
-
"request-promise-core": "
|
|
38
|
-
"stealthy-require": "^1.1.1"
|
|
39
|
-
"tough-cookie": "^5.1.0"
|
|
40
|
-
},
|
|
41
|
-
"overrides": {
|
|
42
|
-
"request": {
|
|
43
|
-
"tough-cookie": "^5.1.0",
|
|
44
|
-
"uuid": "^7.0.0"
|
|
45
|
-
}
|
|
36
|
+
"request": "npm:@cypress/request@^3.0.7",
|
|
37
|
+
"request-promise-core": "file:deps/promise-core",
|
|
38
|
+
"stealthy-require": "^1.1.1"
|
|
46
39
|
},
|
|
47
40
|
"devDependencies": {
|
|
48
41
|
"body-parser": "~1.20.3",
|