Files
openstapps/package.json
2019-02-14 13:20:36 +01:00

73 lines
1.9 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.6.0",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@types/sinon": "7.0.6",
"chai": "4.2.0",
"conventional-changelog-cli": "2.0.11",
"mocha": "5.2.0",
"mocha-typescript": "1.1.17",
"nyc": "13.2.0",
"sinon": "7.2.3",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"typedoc": "0.14.2",
"typescript": "3.3.3"
},
"dependencies": {
"@types/node": "11.9.3",
"@types/nodemailer": "4.6.6",
"flatted": "2.0.0",
"nodemailer": "5.1.1"
}
}