@nivinjoseph/n-log
Version:
Logging framework
60 lines (59 loc) • 2.17 kB
JSON
{
"name": "@nivinjoseph/n-log",
"version": "3.0.4",
"description": "Logging framework",
"packageManager": "yarn@4.0.2",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"ts-compile": "tsc -p .",
"ts-lint": "eslint . --ext .ts",
"ts-build": "yarn ts-compile && yarn ts-lint",
"ts-build-dist": "yarn ts-build && tsc -p ./dist",
"test": "yarn ts-build && node --test --enable-source-maps ./test",
"clean-src": "find ./src -name '*.js' -delete -o -name '*.map' -delete",
"clean-test": "find ./test -name '*.js' -delete -o -name '*.map' -delete",
"clean-dist": "find ./dist -name '*.js' -delete -o -name '*.map' -delete -o -name '*.ts' -delete",
"clean-all": "yarn clean-src && yarn clean-test && yarn clean-dist",
"publish-package": "yarn ts-build-dist && git add . && git commit -m 'preparing to publish new version' && npm version patch && git push && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nivinjoseph/n-log.git"
},
"keywords": [
"log",
"logging framework"
],
"author": "NiviN",
"license": "MIT",
"bugs": {
"url": "https://github.com/nivinjoseph/n-log/issues"
},
"homepage": "https://github.com/nivinjoseph/n-log#readme",
"devDependencies": {
"@types/luxon": "^3.3.6",
"@types/node": "^20.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-plugin-require-extensions": "^0.1.3",
"typescript": "^5.3.3"
},
"dependencies": {
"@nivinjoseph/n-config": "^2.0.1",
"@nivinjoseph/n-defensive": "^2.0.1",
"@nivinjoseph/n-exception": "^2.0.1",
"@nivinjoseph/n-ext": "^2.0.1",
"@nivinjoseph/n-util": "^2.0.1",
"@opentelemetry/api": "^1.9.0",
"@slack/bolt": "^3.17.0",
"chalk": "^5.3.0",
"luxon": "^3.4.4"
},
"engineStrict": true,
"engines": {
"node": ">=20.10"
}
}