CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json121 linesDownload Raw Back to pino
1{2  "name": "pino",3  "version": "9.6.0",4  "description": "super fast, all natural json logger",5  "main": "pino.js",6  "type": "commonjs",7  "types": "pino.d.ts",8  "browser": "./browser.js",9  "scripts": {10    "docs": "docsify serve",11    "browser-test": "airtap --local 8080 test/browser*test.js",12    "lint": "eslint .",13    "prepublishOnly": "tap --no-check-coverage test/internals/version.test.js",14    "test": "npm run lint && npm run transpile && tap --ts && jest test/jest && npm run test-types",15    "test-ci": "npm run lint && npm run transpile && tap --ts --no-check-coverage --coverage-report=lcovonly && npm run test-types",16    "test-ci-pnpm": "pnpm run lint && npm run transpile && tap --ts --no-coverage --no-check-coverage && pnpm run test-types",17    "test-ci-yarn-pnp": "yarn run lint && npm run transpile && tap --ts --no-check-coverage --coverage-report=lcovonly",18    "test-types": "tsc && tsd && ts-node test/types/pino.ts",19    "test:smoke": "smoker smoke:pino && smoker smoke:browser && smoker smoke:file",20    "smoke:pino": "node ./pino.js",21    "smoke:browser": "node ./browser.js",22    "smoke:file": "node ./file.js",23    "transpile": "node ./test/fixtures/ts/transpile.cjs",24    "cov-ui": "tap --ts --coverage-report=html",25    "bench": "node benchmarks/utils/runbench all",26    "bench-basic": "node benchmarks/utils/runbench basic",27    "bench-object": "node benchmarks/utils/runbench object",28    "bench-deep-object": "node benchmarks/utils/runbench deep-object",29    "bench-multi-arg": "node benchmarks/utils/runbench multi-arg",30    "bench-longs-tring": "node benchmarks/utils/runbench long-string",31    "bench-child": "node benchmarks/utils/runbench child",32    "bench-child-child": "node benchmarks/utils/runbench child-child",33    "bench-child-creation": "node benchmarks/utils/runbench child-creation",34    "bench-formatters": "node benchmarks/utils/runbench formatters",35    "update-bench-doc": "node benchmarks/utils/generate-benchmark-doc > docs/benchmarks.md"36  },37  "bin": {38    "pino": "./bin.js"39  },40  "precommit": "test",41  "repository": {42    "type": "git",43    "url": "git+https://github.com/pinojs/pino.git"44  },45  "keywords": [46    "fast",47    "logger",48    "stream",49    "json"50  ],51  "author": "Matteo Collina <hello@matteocollina.com>",52  "contributors": [53    "David Mark Clements <huperekchuno@googlemail.com>",54    "James Sumners <james.sumners@gmail.com>",55    "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)"56  ],57  "license": "MIT",58  "bugs": {59    "url": "https://github.com/pinojs/pino/issues"60  },61  "homepage": "https://getpino.io",62  "devDependencies": {63    "@types/flush-write-stream": "^1.0.0",64    "@types/node": "^22.0.0",65    "@types/tap": "^15.0.6",66    "@yao-pkg/pkg": "6.1.1",67    "airtap": "5.0.0",68    "benchmark": "^2.1.4",69    "bole": "^5.0.5",70    "bunyan": "^1.8.14",71    "debug": "^4.3.4",72    "docsify-cli": "^4.4.4",73    "eslint": "^8.17.0",74    "eslint-config-standard": "^17.0.0",75    "eslint-plugin-import": "^2.26.0",76    "eslint-plugin-n": "15.7.0",77    "eslint-plugin-node": "^11.1.0",78    "eslint-plugin-promise": "^6.0.0",79    "execa": "^5.0.0",80    "fastbench": "^1.0.1",81    "flush-write-stream": "^2.0.0",82    "import-fresh": "^3.2.1",83    "jest": "^29.0.3",84    "log": "^6.0.0",85    "loglevel": "^1.6.7",86    "midnight-smoker": "1.1.1",87    "pino-pretty": "^11.0.0",88    "pre-commit": "^1.2.2",89    "proxyquire": "^2.1.3",90    "pump": "^3.0.0",91    "rimraf": "^6.0.1",92    "semver": "^7.3.7",93    "split2": "^4.0.0",94    "steed": "^1.1.3",95    "strip-ansi": "^6.0.0",96    "tap": "^16.2.0",97    "tape": "^5.5.3",98    "through2": "^4.0.0",99    "ts-node": "^10.9.1",100    "tsd": "^0.31.0",101    "typescript": "~5.7.2",102    "winston": "^3.7.2"103  },104  "dependencies": {105    "atomic-sleep": "^1.0.0",106    "fast-redact": "^3.1.1",107    "on-exit-leak-free": "^2.1.0",108    "pino-abstract-transport": "^2.0.0",109    "pino-std-serializers": "^7.0.0",110    "process-warning": "^4.0.0",111    "quick-format-unescaped": "^4.0.3",112    "real-require": "^0.2.0",113    "safe-stable-stringify": "^2.3.1",114    "sonic-boom": "^4.0.1",115    "thread-stream": "^3.0.0"116  },117  "tsd": {118    "directory": "test/types"119  }120}121