diff --git a/.gitignore b/.gitignore index 7a9fec6..010b1aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ .DS_Store -.editorconfig -.nyc_output -.vscode -coverage -dist -node_modules +/.babelrc +/.editorconfig +/.eslintrc.json +/.nyc_output +/.vscode +/coverage +/dist +/node_modules diff --git a/.gitpod.yml b/.gitpod.yml index a3c4673..82c7318 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,5 +1,5 @@ tasks: - - init: yarn + - init: yarn && yarn prepublishOnly vscode: extensions: diff --git a/.renovaterc.json b/.renovaterc.json index a0655ec..7222662 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -1,3 +1,6 @@ { - "rangeStrategy": "update-lockfile" + "lockFileMaintenance": { + "enabled": true, + "schedule": "at any time" + } } diff --git a/.travis.yml b/.travis.yml index 850b747..cd64692 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ -version: ~> 1.0 +language: node_js +node_js: + - 11 -import: dword-design/travis-config:dist/index.yml@master +after_script: "yarn add coveralls && cat ./coverage/lcov.info | coveralls" diff --git a/package.json b/package.json index 5929167..d2cf46f 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,22 @@ { "name": "@dword-design/babel-config", "version": "1.0.2", - "main": "dist/index.js", + "bugs": { + "url": "https://github.com/dword-design/babel-config/issues" + }, + "repository": "dword-design/babel-config", + "license": "MIT", + "author": "Sebastian Landwehr ", + "contributors": [ + "dword-design (http://www.dword-design.de)", + "Renovate Bot (http://renovatebot.com)" + ], "files": [ "dist" ], - "repository": "dword-design/babel-config", - "author": "Sebastian Landwehr ", - "license": "MIT", + "main": "dist/index.js", "scripts": { - "prepare": "base-node prepare", + "prepublishOnly": "base-node build", "start": "base-node start", "test": "base-node test" }, @@ -28,12 +35,5 @@ "expect": "^24.9.0", "with-local-tmp-dir": "^2.1.0" }, - "maintainers": [], - "contributors": [ - "dword-design (http://www.dword-design.de)", - "Renovate Bot (http://renovatebot.com)" - ], - "bugs": { - "url": "https://github.com/dword-design/babel-config/issues" - } + "maintainers": [] }