axios-logger
Advanced tools
Comparing version 1.0.0 to 2.0.0
114
package.json
{ | ||
"name": "axios-logger", | ||
"version": "1.0.0", | ||
"description": "Beautify Axios Logging Messages", | ||
"main": "src/index.js", | ||
"keywords": [ | ||
"javascript", | ||
"nodejs", | ||
"network", | ||
"axios", | ||
"http", | ||
"log", | ||
"logger", | ||
"beautify" | ||
], | ||
"repo,sitory": { | ||
"type": "git", | ||
"url": "git+https://github.com/hg-pyun/axios-intercept-logger.git" | ||
}, | ||
"author": "Haegul Pyun", | ||
"email": "phg2491@gmail.com", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/hg-pyun/axios-intercept-logger/issues" | ||
}, | ||
"homepage": "https://github.com/hg-pyun/axios-intercept-logger#readme", | ||
"devDependencies": { | ||
"axios": "^0.18.0", | ||
"body-parser": "^1.18.3", | ||
"compression": "^1.7.2", | ||
"cookie-parser": "^1.4.3", | ||
"cross-env": "^5.1.6", | ||
"eslint": "^4.19.1", | ||
"express": "^4.16.3", | ||
"nodemon": "^1.17.5" | ||
}, | ||
"dependencies": { | ||
"chalk": "^2.4.1" | ||
}, | ||
"scripts": { | ||
"dev": "nodemon --exec babel-node test/server.js", | ||
"lint": "eslint --fix src/**" | ||
} | ||
"name": "axios-logger", | ||
"version": "2.0.0", | ||
"description": "Beautify Axios Logging Messages", | ||
"main": "lib/index.js", | ||
"keywords": [ | ||
"javascript", | ||
"nodejs", | ||
"network", | ||
"axios", | ||
"http", | ||
"log", | ||
"logger", | ||
"beautify" | ||
], | ||
"repo,sitory": { | ||
"type": "git", | ||
"url": "git+https://github.com/hg-pyun/axios-intercept-logger.git" | ||
}, | ||
"author": "Haegul Pyun", | ||
"email": "phg2491@gmail.com", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/hg-pyun/axios-intercept-logger/issues" | ||
}, | ||
"homepage": "https://github.com/hg-pyun/axios-intercept-logger#readme", | ||
"devDependencies": { | ||
"@babel/cli": "^7.4.4", | ||
"@babel/core": "^7.4.5", | ||
"@babel/plugin-proposal-class-properties": "^7.4.4", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.4.4", | ||
"@babel/preset-env": "^7.4.5", | ||
"@babel/preset-typescript": "^7.3.3", | ||
"@types/jest": "^24.0.15", | ||
"@types/node": "^12.0.10", | ||
"axios": "^0.18.0", | ||
"body-parser": "^1.19.0", | ||
"compression": "^1.7.4", | ||
"cookie-parser": "^1.4.4", | ||
"cross-env": "^5.2.0", | ||
"express": "^4.17.1", | ||
"husky": "^2.4.1", | ||
"jest": "^24.8.0", | ||
"lint-staged": "^8.2.1", | ||
"prettier": "^1.18.2", | ||
"typescript": "^3.5.2" | ||
}, | ||
"dependencies": { | ||
"@types/dateformat": "^3.0.0", | ||
"chalk": "^2.4.1", | ||
"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" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47378
37
801
3
19
1
+ Added@types/dateformat@^3.0.0
+ Addeddateformat@^3.0.3
+ Added@types/dateformat@3.0.1(transitive)
+ Addeddateformat@3.0.3(transitive)