Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Release 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
smolijar committed Feb 18, 2019
1 parent 2ce835c commit 1ac2b6c
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 68 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.5.4] - 2019-02-18
### Added
- Headers logging for Microservice

Expand Down Expand Up @@ -139,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `conf.json`
- `jsconfig.json`

[Unreleased]: https://github.com/AckeeCZ/desmond/compare/v0.5.3...HEAD
[Unreleased]: https://github.com/AckeeCZ/desmond/compare/v0.5.4...HEAD
[0.5.4]: https://github.com/AckeeCZ/desmond/compare/v0.5.3...v0.5.4
[0.5.3]: https://github.com/AckeeCZ/desmond/compare/v0.5.2...v0.5.3
[0.5.2]: https://github.com/AckeeCZ/desmond/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/AckeeCZ/desmond/compare/v0.5.0...v0.5.1
Expand Down
134 changes: 67 additions & 67 deletions package.json
@@ -1,69 +1,69 @@
{
"name": "desmond",
"description": "Desmond is a caretaker of boilerplate code for node back-end development, providing a set of maintained tools.",
"version": "0.5.3",
"author": "Jaroslav Šmolík <grissius@gmail.com>",
"contributors": [
"Jiří Šmolík <smolikjirka@gmail.com>"
],
"main": "./dist/main.js",
"engines": {
"node": "^8.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/desmond"
},
"license": "MIT",
"keywords": [
"utility",
"tools",
"ackee",
"express",
"promise",
"knex",
"hash"
],
"scripts": {
"build": "tsc",
"test": "NODE_PATH=src jest",
"test:coverage": "npm run test -- --collectCoverage",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "tslint -t codeFrame -p .",
"prepare": "npm run build",
"docs": "typedoc --options typedoc.json src/lib/*.ts src/lib/internal/types.ts",
"check": "npm-check -i app -i errors -i config -i index & exit 0"
},
"dependencies": {
"@types/bookshelf": "^0.9.9",
"@types/knex": "^0.15.1",
"@types/request-promise": "^4.1.42",
"bcrypt": "^3.0.1",
"lodash.camelcase": "^4.3.0",
"lodash.defaultsdeep": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.snakecase": "^4.1.1",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jest": "^23.3.5",
"@types/lodash.camelcase": "^4.3.4",
"@types/lodash.defaultsdeep": "^4.6.4",
"@types/lodash.isempty": "^4.4.4",
"@types/lodash.snakecase": "^4.1.4",
"@types/nock": "^9.3.0",
"coveralls": "^3.0.2",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.3",
"nock": "^10.0.1",
"npm-check": "^5.8.0",
"prettier": "^1.15.3",
"prettier-config-ackee": "^0.0.13",
"ts-jest": "^23.10.4",
"tslint-config-ackee": "^0.2.5",
"typedoc": "^0.13.0",
"typescript": "^3.1.2"
}
"name": "desmond",
"description": "Desmond is a caretaker of boilerplate code for node back-end development, providing a set of maintained tools.",
"version": "0.5.4",
"author": "Jaroslav Šmolík <grissius@gmail.com>",
"contributors": [
"Jiří Šmolík <smolikjirka@gmail.com>"
],
"main": "./dist/main.js",
"engines": {
"node": "^8.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/desmond"
},
"license": "MIT",
"keywords": [
"utility",
"tools",
"ackee",
"express",
"promise",
"knex",
"hash"
],
"scripts": {
"build": "tsc",
"test": "NODE_PATH=src jest",
"test:coverage": "npm run test -- --collectCoverage",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "tslint -t codeFrame -p .",
"prepare": "npm run build",
"docs": "typedoc --options typedoc.json src/lib/*.ts src/lib/internal/types.ts",
"check": "npm-check -i app -i errors -i config -i index & exit 0"
},
"dependencies": {
"@types/bookshelf": "^0.9.9",
"@types/knex": "^0.15.1",
"@types/request-promise": "^4.1.42",
"bcrypt": "^3.0.1",
"lodash.camelcase": "^4.3.0",
"lodash.defaultsdeep": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.snakecase": "^4.1.1",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jest": "^23.3.5",
"@types/lodash.camelcase": "^4.3.4",
"@types/lodash.defaultsdeep": "^4.6.4",
"@types/lodash.isempty": "^4.4.4",
"@types/lodash.snakecase": "^4.1.4",
"@types/nock": "^9.3.0",
"coveralls": "^3.0.2",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.3",
"nock": "^10.0.1",
"npm-check": "^5.8.0",
"prettier": "^1.15.3",
"prettier-config-ackee": "^0.0.13",
"ts-jest": "^23.10.4",
"tslint-config-ackee": "^0.2.5",
"typedoc": "^0.13.0",
"typescript": "^3.1.2"
}
}

0 comments on commit 1ac2b6c

Please sign in to comment.