@obsidize/logger
Version:
A tiny javascript logging library
73 lines (72 loc) • 2.09 kB
JSON
{
"name": "@obsidize/logger",
"version": "2.0.4",
"description": "A tiny javascript logging library",
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"typings": "./index.d.ts",
"scripts": {
"test": "jest",
"build:clean": "rimraf ./dist",
"build:tsc": "tsc",
"build:webpack": "webpack --config webpack.config.js",
"copy:assets": "tsx ./scripts/copy-build-assets.ts",
"build": "run-s -l build:clean build:tsc build:webpack copy:assets",
"coverage:clean": "rimraf ./coverage",
"coverage:open": "open-cli ./coverage/lcov-report/index.html",
"coverage": "run-s coverage:clean test coverage:open",
"docs": "typedoc ./src/index.ts --out ./docs --excludePrivate",
"docs:open": "open-cli ./docs/index.html",
"git:publish": "tsx ./scripts/release-publish.ts",
"dist:publish": "npm publish ./dist",
"dist:pack": "tsx ./scripts/release-pack.ts",
"dist:bundle": "run-s -l build coverage docs dist:pack",
"version": "npm run dist:bundle",
"version:patch": "npm version patch",
"version:publish": "run-s git:publish dist:publish",
"bump": "run-s version:patch version:publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jospete/obsidize-logger.git"
},
"keywords": [
"obsidize",
"log",
"logger",
"console",
"browser",
"transport",
"filter",
"events"
],
"author": "obsidize@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jospete/obsidize-logger/issues"
},
"homepage": "https://github.com/jospete/obsidize-logger#readme",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "29.5.14",
"@types/yargs": "17.0.20",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "25.0.1",
"npm-run-all": "4.1.5",
"open-cli": "7.1.0",
"rimraf": "4.1.1",
"ts-loader": "9.4.2",
"ts-node": "10.9.2",
"tsx": "^4.20.2",
"typedoc": "0.23.24",
"typescript": "4.9.4",
"webpack": "^5.99.9",
"webpack-cli": "5.0.1",
"yargs": "17.6.2"
}
}