-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "http-to-curl",
"version": "1.4.4",
"description": "Convert node HTTP request to curl",
"main": "lib/bundle.js",
"author": "Ryan Nixon Salim",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"files": [
"lib"
],
"dependencies": {
"chalk": "^2.4.1",
"monkeypatch": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"axios": "^0.21.1",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.4.3",
"esm": "^3.0.27",
"jest": "^22.4.3",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-babel-minify": "^4.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drgx/http-to-curl.git"
},
"bugs": {
"url": "https://github.com/drgx/http-to-curl/issues"
},
"homepage": "https://github.com/drgx/http-to-curl#readme",
"keywords": [
"curl",
"axios",
"fetch",
"http",
"request-http",
"debug"
],
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}