1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 19:02:14 +00:00
libs/packages/logger/package.json
Florian Bouillon 7ce7daf751
Upgrade Jest to 27 (#43)
* test

Signed-off-by: Avior <github@avior.me>

* Fixed

Signed-off-by: Avior <github@avior.me>

* Fix

Signed-off-by: Avior <github@avior.me>
2021-09-29 11:49:41 +02:00

29 lines
702 B
JSON

{
"name": "@dzeio/logger",
"version": "3.0.0",
"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",
"types": "./dist/Logger.d.ts",
"dependencies": {
"ansi-colors": "^4.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.4.0",
"parcel": "1.12.3"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "parcel build src/index.ts --out-file browser.js --experimental-scope-hoisting && tsc",
"test": "ts-node test"
}
}