@microgamma/loggator
Advanced tools
Comparing version 1.12.3 to 1.15.2
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
## [1.15.2](https://github.com/davidecavaliere/-microgamma/compare/v1.15.1...v1.15.2) (2020-01-23) | ||
**Note:** Version bump only for package @microgamma/loggator | ||
# Change Log | ||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
@@ -4,0 +17,0 @@ |
{ | ||
"name": "@microgamma/loggator", | ||
"version": "1.12.3", | ||
"description": "visionmedia/debug wrapped like a candy for typescript", | ||
"version": "1.15.2", | ||
"description": "visionmedia's debug wrapped like a candy", | ||
"main": "lib/index.js", | ||
@@ -28,3 +28,2 @@ "typings": "lib/index.d.ts", | ||
"scripts": { | ||
"info": "npm-scripts-info", | ||
"build": "run-s clean && run-p build:*", | ||
@@ -36,25 +35,4 @@ "build:main": "tsc -p tsconfig.json", | ||
"test:lint": "tslint --project . ", | ||
"cov:send": "jest --coverage && codecov -F loggator", | ||
"doc": "run-s doc:html && opn build/docs/index.html", | ||
"doc:html": "typedoc src/ --target ES6 --mode file --out build/docs", | ||
"doc:json": "typedoc src/ --target ES6 --mode file --json build/docs/typedoc.json", | ||
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs", | ||
"reset": "git clean -dfx && git reset --hard && npm i", | ||
"clean": "trash lib", | ||
"all": "run-s reset test cov:check doc:html", | ||
"prepare-release": "run-s all version doc:publish" | ||
"clean": "trash lib" | ||
}, | ||
"scripts-info": { | ||
"info": "Display information about the package scripts", | ||
"build": "Clean and rebuild the project", | ||
"fix": "Try to automatically fix any linting problems", | ||
"test": "Lint and unit test the project", | ||
"watch": "Watch and rebuild the project on save, then rerun relevant tests", | ||
"cov": "Rebuild, run tests, then create and open the coverage report", | ||
"doc": "Generate HTML API documentation and open it in a browser", | ||
"doc:json": "Generate API documentation in typedoc JSON format", | ||
"changelog": "Bump package.json version, update CHANGELOG.md, tag release", | ||
"reset": "Delete all untracked files and reset the repo to the last commit", | ||
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release" | ||
}, | ||
"engines": { | ||
@@ -96,7 +74,9 @@ "node": ">=8.9" | ||
"**/*.ts", | ||
"!**/index.ts" | ||
"!**/index.ts", | ||
"!**/*.dev.ts", | ||
"!src/integration/*" | ||
], | ||
"coverageDirectory": "./coverage/" | ||
"coverageDirectory": "../../coverage/" | ||
}, | ||
"gitHead": "453e61fb753ced184c7a08d84daf8ce3fe5d7433" | ||
"gitHead": "fe572ef92e301e36db852ccf302227cb5518d702" | ||
} |
10105