Skip to content

Commit

Permalink
Merge pull request #3 from ekino/release
Browse files Browse the repository at this point in the history
chore(v0.2.0): bump version to 0.2.0
  • Loading branch information
bnadim committed Jun 23, 2017
2 parents 3720c68 + 61f352a commit 2aed851
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 50 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,23 @@

_@ekino/config is a lightweight configuration module powered by yaml_

## v0.1.0 v ( Fri Jun 09 2017 17:54:17 GMT+0200 (CEST) )
## v0.2.0 v0.1.0 ( Fri Jun 23 2017 10:39:33 GMT+0200 (CEST) )


## Features

- **cast**
- Adding support for env value boolean casting.
([6764dd36](git@github.com:ekino/node-config/commit/6764dd36d655ac7ef8f0196f61358117236dac97))




## Pull requests merged
- Merge pull request #2 from MohamedJeffal/envparam_booleancast
([3720c685](git@github.com:ekino/node-config/commit/3720c685210150914f3a9e7b966d8cf87ef3ca3e))





Expand Down
98 changes: 49 additions & 49 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
{
"name": "@ekino/config",
"version": "0.1.0",
"description": "lightweight configuration module powered by yaml",
"homepage": "https://github.com/ekino/node-config",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ekino/node-logger.git"
},
"maintainers": [
{
"name": "Raphaël Benitte"
},
{
"name": "Nadim El-Boustani"
}
],
"author": "ekino OSS <oss@ekino.com>",
"license": "MIT",
"tags": [
"config",
"yaml",
"lightweight"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"js-yaml": "3.x.x",
"lodash": "4.x.x"
},
"devDependencies": {
"ava": "0.19.1",
"coveralls": "2.x.x",
"eslint": "3.x.x",
"git-changelog": "1.x.x",
"nyc": "11.x.x",
"prettier": "1.x.x"
},
"scripts": {
"fmt": "prettier --print-width 140 --tab-width=4 --single-quote --bracket-spacing --no-semi --color --write index.js test/*.js test/**/*.js",
"check-fmt": "prettier --print-width 140 --tab-width=4 --single-quote --bracket-spacing --no-semi --list-different index.js test/*.js test/**/*.js",
"test": "ava",
"test-cover": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"changelog": "git-changelog -t false -n v${npm_package_version}",
"version": "echo ${npm_package_version}",
"lint": "eslint ."
}
"name": "@ekino/config",
"version": "0.2.0",
"description": "lightweight configuration module powered by yaml",
"homepage": "https://github.com/ekino/node-config",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ekino/node-logger.git"
},
"maintainers": [
{
"name": "Raphaël Benitte"
},
{
"name": "Nadim El-Boustani"
}
],
"author": "ekino OSS <oss@ekino.com>",
"license": "MIT",
"tags": [
"config",
"yaml",
"lightweight"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"js-yaml": "3.x.x",
"lodash": "4.x.x"
},
"devDependencies": {
"ava": "0.19.1",
"coveralls": "2.x.x",
"eslint": "3.x.x",
"git-changelog": "1.x.x",
"nyc": "11.x.x",
"prettier": "1.x.x"
},
"scripts": {
"fmt": "prettier --print-width 140 --tab-width=4 --single-quote --bracket-spacing --no-semi --color --write index.js test/*.js test/**/*.js",
"check-fmt": "prettier --print-width 140 --tab-width=4 --single-quote --bracket-spacing --no-semi --list-different index.js test/*.js test/**/*.js",
"test": "ava",
"test-cover": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"changelog": "git-changelog -t false -n v${npm_package_version}",
"version": "echo ${npm_package_version}",
"lint": "eslint ."
}
}

0 comments on commit 2aed851

Please sign in to comment.