xpm
Version:
The xPack project manager command line tool
70 lines (69 loc) • 2.03 kB
JSON
{
"name": "@xpack/logger",
"version": "5.0.4",
"description": "A generic console logger class",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"fix": "ts-standard --fix src && standard --fix tests",
"compile": "tsc -p ./",
"compile-watch": "tsc -watch -p ./",
"outdated": "npm outdated",
"update": "npm update",
"install ": "npm install",
"version-patch": "npm version patch",
"version-minor": "npm version minor",
"postversion": "git push origin --all && git push origin --tags",
"pack": "npm pack",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"lint": "ts-standard src",
"tap": "tap --ts --reporter=spec --timeout 300 --no-coverage",
"test-tap": "tap --ts --reporter=classic --timeout 300 --no-coverage \"tests/tap/*.js\"",
"test-tap100": "tap --ts --reporter=classic --timeout 300 --100 \"tests/tap/*.js\"",
"test-coverage": "tap --ts --coverage --reporter=classic --timeout 600 --no-check-coverage \"tests/tap/*.js\"",
"test": "npm run test-tap100 -s",
"pretest": "npm run compile && npm run lint",
"prepare": "npm run compile && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/xpack/logger-ts.git"
},
"keywords": [
"cli",
"logger",
"log",
"console",
"level",
"silent",
"error",
"warn",
"info",
"verbose",
"debug",
"trace"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack/logger-ts/issues/"
},
"homepage": "https://github.com/xpack/logger-ts/",
"devDependencies": {
"@types/node": "^18.13.0",
"@types/tap": "^15.0.8",
"standard": "^17.0.0",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^4.9.5"
},
"bundledDependencies": [],
"engines": {
"node": " >=14.13.1 || >=15.3.0 || >=16.0.0"
}
}