UNPKG

@the-hw-app/logger

Version:

A logger made for internal use by The Homework App.

58 lines 1.67 kB
{ "name": "@the-hw-app/logger", "version": "0.0.1", "description": "A logger made for internal use by The Homework App.", "main": "lib", "author": { "name": "The Homework App", "email": "developer@octoapp.ai" }, "license": "MIT", "keywords": [ "logger", "log", "the-hw-app", "The Homework App", "homework", "homework app" ], "publishConfig": { "registry-url": "https://npm.pkg.github.com/@the-hw-app" }, "repository": "https://github.com/the-hw-app/libraries.git", "bugs": { "url": "https://github.com/the-hw-app/libraries/issues?q=is%3Aissue+is%3Aopen+label%3Alogger" }, "homepage": "https://github.com/the-hw-app/libraries/tree/release/logger", "scripts": { "test": "echo \"Error: no test specified\" && exit 0", "dev": "tsc --watch", "build": "tsc", "format": "prettier --ignore-path .gitignore --write \"src/**/*.ts\"", "lint": "eslint --ignore-path .gitignore --ext .js,.ts .", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "dependencies": { "gelf-pro": "^1.3.8", "lodash": "~4.17", "typescript": "^4.7.4" }, "devDependencies": { "@types/lodash": "^4.14.182", "@types/node": "^18.0.3", "@typescript-eslint/eslint-plugin": "^5.30.6", "@typescript-eslint/parser": "^5.30.6", "eslint": ">=5.16.0", "eslint-config-google": "^0.14.0", "eslint-config-prettier": "^8.5.0", "prettier": "^2.7.1", "ts-node": "^10.8.1" }, "files": [ "lib/**/*" ] }