mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-06 21:42:49 +00:00
76 lines
2.0 KiB
JSON
76 lines
2.0 KiB
JSON
{
|
|
"name": "@openstapps/logger",
|
|
"version": "0.0.5",
|
|
"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 && npm run documentation",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
"check-configuration": "openstapps-configuration",
|
|
"compile": "tsc",
|
|
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "nyc mocha --require ts-node/register --ui mocha-typescript 'test/*.ts'",
|
|
"tslint": "tslint '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/test/**/*.spec.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.8.0",
|
|
"@types/chai": "4.1.7",
|
|
"@types/chai-as-promised": "7.1.0",
|
|
"@types/mocha": "5.2.6",
|
|
"@types/sinon": "7.0.11",
|
|
"chai": "4.2.0",
|
|
"chai-as-promised": "7.1.1",
|
|
"conventional-changelog-cli": "2.0.12",
|
|
"mocha": "6.0.2",
|
|
"mocha-typescript": "1.1.17",
|
|
"nyc": "13.3.0",
|
|
"sinon": "7.3.1",
|
|
"ts-node": "8.0.3",
|
|
"tslint": "5.14.0",
|
|
"typedoc": "0.14.2",
|
|
"typescript": "3.4.1"
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "10.14.4",
|
|
"@types/nodemailer": "4.6.7",
|
|
"chalk": "2.4.2",
|
|
"flatted": "2.0.0",
|
|
"nodemailer": "6.0.0"
|
|
}
|
|
}
|