UNPKG

pino-princess

Version:

Prettiest Pino Prettifier in all the land

118 lines (117 loc) 3.15 kB
{ "name": "pino-princess", "version": "1.2.0", "description": "Prettiest Pino Prettifier in all the land", "keywords": [ "pino", "pino-pretty", "ndjson", "prettifier", "pino-colada", "pretty", "prettify" ], "homepage": "https://github.com/spence-s/pino-princess", "bugs": { "url": "https://github.com/spence-s/pino-pretty/issues" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/spence-s/pino-princess.git" }, "license": "MIT", "author": "Spencer Snyder <sasnyde2@gmail.com>", "type": "module", "main": "dist/index.js", "bin": { "pino-princess": "./dist/cli.js" }, "files": [ "dist", "!dist/test" ], "scripts": { "build": "npm run clean && tsc --project tsconfig.build.json", "build:test": "npm run clean && tsc --project tsconfig.json", "build:test:watch": "npm run clean && tsc --project tsconfig.json --watch", "build:watch": "npm run clean && tsc --project tsconfig.build.json --watch", "check": "tsc --project ./tsconfig.json", "clean": "rimraf dist", "dev": "NODE_NO_WARNINGS=1 node --loader ts-node/esm/transpile-only ./src/index.ts", "dev:watch": "NODE_NO_WARNINGS=1 node --watch --loader ts-node/esm/transpile-only ./src/index.ts", "lint": "xo", "lint:fix": "xo --fix", "prepare": "husky", "release": "np", "test": "npm run build:test && c8 ava", "test:watch": "ava --watch", "update": "ncu -i" }, "xo": { "prettier": true, "rules": { "unicorn/prefer-module": "off", "import/extensions": "off", "n/file-extension-in-import": "off", "unicorn/no-array-reduce": "off", "unicorn/prefer-object-from-entries": "off", "no-negated-condition": "off", "unicorn/prevent-abbreviations": "off", "capitalized-comments": "off", "ava/use-test": "off" }, "space": true }, "prettier": { "plugins": [ "prettier-plugin-packagejson" ] }, "ava": { "files": [ "dist/test/**", "!dist/test/fixtures/**", "!dist/test/helpers/**" ], "snapshotDir": "test/snapshots", "verbose": true }, "dependencies": { "chalk": "^5", "cli-highlight": "^2.1.11", "cosmiconfig": "^9.0.0", "date-fns": "^4.1.0", "json-log-line": "^0.0.2", "json-stringify-pretty-compact": "^4.0.0", "meow": "^13.2.0", "on-exit-leak-free": "^2.1.2", "pino-abstract-transport": "^2.0.0", "pretty-ms": "^9", "pump": "^3.0.2", "sonic-boom": "^4.2.0" }, "devDependencies": { "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@types/node": "^22.15.21", "@types/pump": "^1.1.3", "ava": "^6.3.0", "c8": "^10.1.3", "execa": "^9.5.3", "fixpack": "^4.0.0", "husky": "^9.1.7", "lint-staged": "^16.0.0", "np": "^10.2.0", "pino": "^9.7.0", "pino-std-serializers": "^7.0.0", "prettier-plugin-packagejson": "^2.5.14", "rimraf": "^6.0.1", "strip-ansi": "^7.1.0", "ts-node": "^10.9.2", "typescript": "^5.8.3", "xo": "^1.0.0" }, "engines": { "node": ">=18" } }