Skip to content

Commit

Permalink
Merge pull request #807 from blackflux/dev
Browse files Browse the repository at this point in the history
[Gally]: master <- dev
  • Loading branch information
simlu committed Aug 21, 2019
2 parents 0fd4788 + 88d0d85 commit 03f2555
Show file tree
Hide file tree
Showing 3 changed files with 146 additions and 110 deletions.
4 changes: 3 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{"release": "major", "breaking": true},
{"release": "patch", "revert": true},
{"type": "feat", "release": "minor"},
{"type": "fix", "release": "patch"},
{"type": "perf", "release": "patch"},
{"type": "docs", "release": "patch"},
{"type": "chore", "release": false},
{"type": "test", "release": false},
{"type": "refactor", "release": false},
{"type": "ci", "release": false},
{"release": false, "type": "ci"},
{"type": "amend", "release": false},
{"scope": "no-release", "release": false}
],
Expand Down
58 changes: 39 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@
"url": "https://github.com/blackflux/s3-cached/blob/master/LICENSE"
}
],
"bugs": {"url": "https://github.com/blackflux/s3-cached/issues"},
"bugs": {
"url": "https://github.com/blackflux/s3-cached/issues"
},
"homepage": "https://github.com/blackflux/s3-cached#readme",
"dependencies": {
"aws-sdk-wrap": "3.1.2",
"aws-sdk-wrap": "3.1.3",
"cache-manager": "2.10.0",
"cache-manager-fs": "1.0.8",
"lodash.defaults": "4.2.0",
Expand All @@ -55,28 +57,34 @@
"@babel/core": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.5.5",
"@babel/register": "7.5.5",
"@blackflux/eslint-plugin-rules": "1.3.1",
"@blackflux/robo-config-plugin": "2.5.4",
"aws-sdk": "2.512.0",
"@blackflux/eslint-plugin-rules": "1.3.4",
"@blackflux/robo-config-plugin": "2.5.9",
"aws-sdk": "2.514.0",
"babel-eslint": "10.0.2",
"chai": "4.2.0",
"coveralls": "3.0.6",
"eslint": "6.2.0",
"eslint": "6.2.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jasmine": "2.10.1",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-markdown": "1.0.0",
"eslint-plugin-mocha": "6.0.0",
"js-gardener": "2.0.68",
"js-gardener": "2.0.75",
"mocha": "6.2.0",
"node-tdd": "1.12.2",
"node-tdd": "2.0.3",
"nyc": "14.1.1",
"semantic-release": "15.13.21",
"eslint-plugin-jasmine": "2.10.1",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-markdown": "1.0.0"
"semantic-release": "15.13.21"
},
"engines": {
"node": ">= 6.10.3"
},
"files": [
"lib"
],
"peerDependencies": {
"aws-sdk": "^2.289.0"
},
"engines": {"node": ">= 6.10.3"},
"files": ["lib"],
"peerDependencies": {"aws-sdk": "^2.289.0"},
"nyc": {
"tempDir": "./coverage/.nyc_output",
"report-dir": "./coverage",
Expand All @@ -86,10 +94,22 @@
"statements": 100,
"functions": 100,
"branches": 100,
"include": ["**/*.js"],
"exclude": ["gardener.js", "node_modules/*", "coverage/*", "lib/*"],
"reporter": ["lcov", "text-summary"],
"require": ["@babel/register"],
"include": [
"**/*.js"
],
"exclude": [
"gardener.js",
"node_modules/*",
"coverage/*",
"lib/*"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"extension": [],
"cache": true,
"all": true,
Expand Down
Loading

0 comments on commit 03f2555

Please sign in to comment.