-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
49 lines (49 loc) · 1.61 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
{
"name": "axios-curlirize",
"version": "2.0.0",
"description": "Axios third-party module to print all axios requests as curl commands in the console. This repository is forked from axios-curlirize <https://www.npmjs.com/package/axios-curlirize> and supports use with Node JS without having to enable ES6 imports. This repo was inspired by an issue <https://github.com/delirius325/axios-curlirize/issues/20> raised on the origional repository <https://github.com/delirius325/axios-curlirize>. Special thanks to Anthony Gauthier <https://github.com/delirius325>, the author of axios-curlirize",
"main": "src/main.js",
"type": "module",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --recursive --exit tests/**/*.spec.js*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delirius325/axios-curlirize.git"
},
"keywords": [
"axios",
"curl",
"debug"
],
"author": "delirius325",
"contributors": [
{
"name": "Justin \"jayceekay\"",
"url": "https://github.com/jayceekay"
},
{
"name": "Peter \"binggg\" Zhao",
"url": "https://github.com/binggg"
},
{
"name": "Abhishek Rajeshirke <[email protected]>",
"url": "https://github.com/colidarity"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/delirius325/axios-curlirize/issues"
},
"homepage": "https://github.com/delirius325/axios-curlirize#readme",
"dependencies": {
},
"devDependencies": {
"axios": ">=0.21.2",
"eslint": "^7.29.0",
"expect": "^27.0.6",
"express": "^4.17.3",
"mocha": "^9.0.1",
"qs": "^6.10.3"
}
}