Skip to content

Commit

Permalink
refactor: restructure the package file
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed Apr 25, 2019
1 parent 3d458e1 commit 0ba5f05
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,34 @@
"name": "semantic-release-git-branches",
"description": "A fork of @semantic-release/git that uses a more gitflow approach for releases",
"version": "1.2.1",
"keywords": [
"semantic",
"release",
"git",
"flow",
"bycedric"
],
"author": "Cedric van Putten <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/bycedric/semantic-release-git-branches#readme",
"repository": {
"type": "git",
"url": "https://github.com/bycedric/semantic-release-git-branches.git"
},
"bugs": {
"url": "https://github.com/bycedric/semantic-release-git-branches/issues"
},
"files": [
"lib",
"index.js"
],
"main": "index.js",
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"test": "nyc ava -v"
},
"dependencies": {
"@semantic-release/error": "^2.1.0",
"aggregate-error": "^1.0.0",
Expand Down Expand Up @@ -43,49 +67,6 @@
"engines": {
"node": ">=8.3"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/bycedric/semantic-release-git-branches#readme",
"keywords": [
"semantic",
"release",
"git",
"flow",
"bycedric"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/bycedric/semantic-release-git-branches.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"test": "nyc ava -v"
},
"xo": {
"prettier": true
},
"config": {
"commitizen": {
"path": "@peakfijn/config-commitizen"
Expand All @@ -108,9 +89,6 @@
]
}
},
"release": {
"extends": "@peakfijn/config-release"
},
"greenkeeper": {
"commitMessages": {
"initialBadge": "documentation: add greenkeeper badge",
Expand All @@ -129,5 +107,27 @@
"basicPR": "refactor: upgrade ${dependency} to version ${version}",
"groupPR": "refactor(${group}): upgrade ${dependency} to version ${version}"
}
},
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"release": {
"extends": "@peakfijn/config-release"
},
"xo": {
"prettier": true
}
}

0 comments on commit 0ba5f05

Please sign in to comment.