Files
openstapps/package.json
Rainer Killinger e486d25537 0.7.0
2021-05-18 20:11:50 +02:00

86 lines
2.5 KiB
JSON

{
"name": "@openstapps/logger",
"version": "0.7.0",
"description": "A cli logger with colors, loglevels and the possibility to use a transport system for errors",
"repository": {
"type": "git",
"url": "git@gitlab.com:openstapps/logger.git"
},
"license": "GPL-3.0-only",
"scripts": {
"build": "npm run tslint && npm run compile",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
"check-configuration": "openstapps-configuration",
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
"postversion": "npm run changelog",
"prepublishOnly": "npm ci && npm run build",
"preversion": "npm run prepublishOnly",
"push": "git push && git push origin \"v$npm_package_version\"",
"test": "nyc mocha --require ts-node/register --ui mocha-typescript 'test/**/*.spec.ts'",
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
},
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
"contributors": [
"Anselm Stordeur <anselmstordeur@gmail.com>",
"Jovan Krunic <jovan.krunic@gmail.com>",
"Rainer Killinger <mail-openstapps@killinger.co>"
],
"typings": "./lib/logger.d.ts",
"main": "./lib/logger.js",
"nyc": {
"all": true,
"branches": 95,
"check-coverage": true,
"exclude": [
"src/smtp.ts",
"src/cli.ts"
],
"extension": [
".ts"
],
"functions": 95,
"include": [
"src"
],
"lines": 95,
"per-file": true,
"reporter": [
"html",
"text-summary"
],
"require": [
"ts-node/register"
],
"statements": 95
},
"devDependencies": {
"@openstapps/configuration": "0.27.0",
"@types/chai": "4.2.18",
"@types/chai-as-promised": "7.1.4",
"@types/chai-spies": "1.0.3",
"@types/mocha": "8.2.2",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"chai-spies": "1.0.0",
"conventional-changelog-cli": "2.1.1",
"mocha": "8.4.0",
"mocha-typescript": "1.1.17",
"nyc": "15.1.0",
"prepend-file-cli": "1.0.6",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typedoc": "0.18.0",
"typescript": "3.8.3"
},
"dependencies": {
"@types/node": "14.14.45",
"@types/nodemailer": "6.4.1",
"chalk": "4.1.1",
"flatted": "3.1.1",
"moment": "2.29.1",
"nodemailer": "6.6.0"
}
}