Files
openstapps/package.json
Karl-Philipp Wulfert b2053c116e 0.3.1
2019-06-05 11:45:02 +02:00

83 lines
2.4 KiB
JSON

{
"name": "@openstapps/logger",
"version": "0.3.1",
"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/*.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>"
],
"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"
],
"statements": 95
},
"devDependencies": {
"@openstapps/configuration": "0.18.0",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/chai-spies": "1.0.0",
"@types/mocha": "5.2.7",
"@types/sinon": "7.0.12",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-spies": "1.0.0",
"conventional-changelog-cli": "2.0.21",
"mocha": "6.1.4",
"mocha-typescript": "1.1.17",
"nyc": "14.1.1",
"prepend-file-cli": "1.0.6",
"rimraf": "2.6.3",
"sinon": "7.3.2",
"ts-node": "8.2.0",
"tslint": "5.17.0",
"typedoc": "0.14.2",
"typescript": "3.5.1"
},
"dependencies": {
"@types/node": "10.14.8",
"@types/nodemailer": "6.2.0",
"chalk": "2.4.2",
"flatted": "2.0.0",
"nodemailer": "6.2.1"
}
}