Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
fix: 🐜 simplify package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Jun 4, 2018
1 parent 2f8a392 commit ea20619
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 24 deletions.
8 changes: 8 additions & 0 deletions lib/cli.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const {prompter} = require('.');

const cz = {};
const onCommit = (data) => {
console.log('receibed for commit', data);
};

prompter(cz, onCommit);
Empty file added lib/steps/breakingChanges.js
Empty file.
Empty file added lib/steps/issues.js
Empty file.
Empty file added lib/steps/lerna.js
Empty file.
Empty file added lib/steps/scope.js
Empty file.
Empty file added lib/steps/title.js
Empty file.
Empty file added lib/steps/type.js
Empty file.
36 changes: 12 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,30 @@
{
"name": "mol-conventional-changelog",
"version": "0.0.0-semantically-released",
"description": "MOL Commitizen adapter following the conventional-changelog format",
"main": "index.js",
"scripts": {
"test": "echo \"No test specified\" && exit 0",
"lint": "eslint {prompt/**,.}/*.js",
"precommit": "npm run lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
"name": "git-cz",
"version": "0.1.0",
"description": "Semantic emojified git commit",
"main": "lib/index.js",
"bin": {
"ci": "./bin/git-cz.js"
},
"author": "MailOnline <fe@mailonline.co.uk>",
"homepage": "https://github.com/MailOnline/mol-conventional-changelog",
"repository": {
"type": "git",
"url": "git@github.com:MailOnline/mol-conventional-changelog.git"
"url": "git+ssh://git@github.com/streamich/git-cz.git"
},
"license": "UNLICENSED",
"homepage": "https://github.com/streamich/git-cz",
"license": "Unlicense",
"dependencies": {
"app-root-path": "^2.0.1",
"inquirer": "^3.1.1",
"shelljs": "^0.8.2",
"word-wrap": "^1.2.3",
"pad-right": "^0.2.2",
"signale": "^1.1.0"
},
"optionalDependencies": {
"lerna": "^2.0.0-rc.5"
},
"peerDependencies": {
"lerna": "^2.0.0-rc.5"
"signale": "^1.1.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"commitizen": "^2.9.6",
"eslint": "^4.19.1",
"eslint-config-mailonline": "^9.0.0",
"husky": "^0.14.3",
"lerna": "^2.0.0-rc.5",
"semantic-release": "^6.3.6"
"husky": "^0.14.3"
},
"config": {
"commitizen": {
Expand Down

0 comments on commit ea20619

Please sign in to comment.