strapi/packages/utils/logger/package.json
2023-03-29 14:33:56 +02:00

51 lines
1.1 KiB
JSON

{
"name": "@strapi/logger",
"version": "4.9.0",
"description": "Strapi's logger",
"homepage": "https://strapi.io",
"bugs": {
"url": "https://github.com/strapi/strapi/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/strapi/strapi.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"build": "tsc",
"build:ts": "tsc",
"watch": "tsc -w --preserveWatchOutput",
"clean": "rimraf ./dist",
"prepublishOnly": "yarn clean && yarn build",
"lint": "eslint ."
},
"dependencies": {
"lodash": "4.17.21",
"winston": "3.3.3"
},
"devDependencies": {
"rimraf": "3.0.2"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
}
}