1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 19:02:14 +00:00
libs/packages/logger/package.json
2020-06-26 15:39:47 +02:00

32 lines
712 B
JSON

{
"name": "@dzeio/logger",
"version": "1.0.1",
"description": "My Personnal Logger",
"repository": {
"type": "git",
"url": "https://github.com/dzeiocom/libs.git",
"directory": "packages/Logger"
},
"author": "Aviortheking",
"license": "MIT",
"main": "./dist/Logger.js",
"browser": "./dist/browser.js",
"types": "./dist/Logger.d.ts",
"dependencies": {
"chalk": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babel-loader": "^8.1.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "webpack --mode=\"production\" && tsc"
}
}