-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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": "axios-debug-log",
"version": "1.0.0",
"description": "Axios interceptor of logging requests & responses by debug.",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"enable.js"
],
"scripts": {
"lint": "standard",
"typing": "tsc",
"test": "mocha",
"coverage": "nyc mocha",
"postcoverage": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gerhut/axios-debug-log.git"
},
"keywords": [
"axios",
"debug",
"logging"
],
"author": "George Cheng <Gerhut@GMail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Gerhut/axios-debug-log/issues"
},
"homepage": "https://github.com/Gerhut/axios-debug-log#readme",
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"@types/debug": "^4.0.0",
"debug": "^4.0.0"
},
"devDependencies": {
"axios": ">=1.0.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"should": "^13.1.3",
"should-sinon": "0.0.6",
"sinon": "^13.0.2",
"standard": "^17.1.0",
"typescript": "^5.0.3"
},
"peerDependencies": {
"axios": ">=1.0.0"
}
}