forked from request/request-promise-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
{
"name": "@implydata/request-promise-native",
"version": "1.0.10",
"publishConfig": {
"access": "public"
},
"description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.",
"keywords": [
"xhr",
"http",
"https",
"promise",
"request",
"then",
"thenable",
"native"
],
"main": "./lib/rp.js",
"typings": "./index.d.ts",
"scripts": {
"test": "mocha test/spec/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/request/request-promise-native.git"
},
"author": "Nicolai Kamenzky (https://github.com/analog-nico)",
"license": "ISC",
"bugs": {
"url": "https://github.com/request/request-promise-native/issues"
},
"homepage": "https://github.com/request/request-promise-native#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"extend": "^3.0.2"
},
"peerDependencies": {
"@implydata/request": "^2.88.3"
},
"devDependencies": {
"@implydata/request": "^2.88.3",
"body-parser": "^1.20.2",
"chai": "~3.5.0",
"chalk": "~1.1.3",
"mocha": "^10.2.0",
"lodash": "^4.17.21",
"rimraf": "~2.5.3",
"run-sequence": "~1.2.2",
"tough-cookie": "^4.1.3"
},
"volta": {
"node": "20.9.0"
}
}