forked from hg-pyun/axios-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "axios-logger",
"version": "2.8.1",
"description": "Beautify Axios Logging Messages",
"main": "lib/index.js",
"keywords": [
"javascript",
"nodejs",
"network",
"axios",
"http",
"log",
"logger",
"beautify",
"library",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hg-pyun/axios-logger.git"
},
"author": "Haegul Pyun",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/hg-pyun/axios-logger/issues"
},
"homepage": "https://github.com/hg-pyun/axios-logger#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/dateformat": "^3.0.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.19.9",
"axios": "^1.4.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cross-env": "^5.2.1",
"express": "^4.17.1",
"husky": "^2.7.0",
"jest": "^29.7.0",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"typescript": "^5.1.6"
},
"dependencies": {
"chalk": "^4.1.0",
"dateformat": "^3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "rm -rf ./lib && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "cross-env BABEL_ENV=production babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest --silent",
"test:watch": "jest --watchAll",
"test:server": "node ./test/server.js",
"prepare": "npm run build",
"deploy": "npm test && npm publish"
}
}