-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
42 lines (42 loc) · 929 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
37
38
39
40
41
42
{
"name": "fetch-to-curl",
"version": "0.6.0",
"description": "Convert fetch HTTP request to curl",
"main": "lib/bundle.js",
"author": "Leonard Krause",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"files": [
"lib/bundle.js",
"types"
],
"types": "types/main.d.ts",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leoek/fetch-to-curl.git"
},
"bugs": {
"url": "https://github.com/leoek/fetch-to-curl/issues"
},
"homepage": "https://github.com/leoek/fetch-to-curl#readme",
"keywords": [
"curl",
"fetch",
"http",
"request-http",
"debug",
"react-native"
]
}