forked from request/request-promise-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "@automattic/request-promise-native",
"version": "2.3.0",
"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",
"types": "./lib/request.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha test/spec && mocha deps/promise-core/test/spec",
"check-dependencies": "npx [email protected]",
"check-dts": "npx check-dts lib/*.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/request-promise-native.git"
},
"author": "Nicolai Kamenzky (https://github.com/analog-nico)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Automattic/request-promise-native/issues"
},
"homepage": "https://github.com/Automattic/request-promise-native#readme",
"engines": {
"node": ">=18.x"
},
"dependencies": {
"lodash": "^4.17.19",
"request": "npm:@cypress/request@^3.0.7",
"stealthy-require": "^1.1.1"
},
"devDependencies": {
"@types/caseless": "^0.12.5",
"@types/node": "^22.13.1",
"bluebird": "^3.7.2",
"body-parser": "~1.20.3",
"chai": "^4.5.0",
"eslint": "^9.19.0",
"globals": "^16.0.0",
"mocha": "^11.1.0",
"tough-cookie": "^5.1.1"
}
}