-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 911 Bytes
/
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
{
"name": "request-to-curl",
"version": "0.1.5",
"description": "Adds a .toCurl() method to http.ClientRequest to generate output equivalent to the 'Copy as Curl' option in the WebKit debugger",
"main": "index.js",
"scripts": {
"test": "mocha --expose-gc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmealo/node-request-to-curl.git"
},
"keywords": [
"curl",
"http",
"request",
"debugging",
"copy",
"as",
"webkit"
],
"author": "Jeffrey Mealo <[email protected]> (http://jeffreymealo.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmealo/node-request-to-curl/issues"
},
"homepage": "https://github.com/jmealo/node-request-to-curl#readme",
"dependencies": {
"http-parser-js": "^0.5.1"
},
"devDependencies": {
"bluebird": "^3.5.5",
"mocha": "^6.2.0",
"request": "^2.88.0"
}
}