90 lines
2.4 KiB
JSON
90 lines
2.4 KiB
JSON
{
|
|
"name": "git-cz",
|
|
"version": "4.9.0",
|
|
"description": "Semantic emojified git commit, git-cz.",
|
|
"main": "dist/cz.js",
|
|
"bin": {
|
|
"git-cz": "./bin/git-cz.js",
|
|
"gitcz": "./bin/git-cz.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/streamich/git-cz.git"
|
|
},
|
|
"homepage": "https://github.com/streamich/git-cz",
|
|
"license": "Unlicense",
|
|
"scripts": {
|
|
"lint": "yarn eslint",
|
|
"clean": "rimraf dist binaries",
|
|
"build": "yarn build:cli && yarn build:cz",
|
|
"build:cli": "browserify --node -o dist/cli.js lib/cli.js",
|
|
"build:cz": "browserify --node -o dist/cz.js --standalone prompter lib/cz.js",
|
|
"build:readme": "mmarkdown",
|
|
"build:binaries": "mkdirp binaries && pkg lib/cli.js --out-path binaries",
|
|
"test": "jest --maxWorkers 2",
|
|
"test:dev": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"release": "semantic-release",
|
|
"eslint": "eslint lib/*.js"
|
|
},
|
|
"devDependencies": {
|
|
"@semantic-release/changelog": "6.0.1",
|
|
"@semantic-release/git": "10.0.1",
|
|
"any-shell-escape": "0.1.1",
|
|
"browserify": "17.0.0",
|
|
"chai": "4.3.6",
|
|
"chalk": "4.1.2",
|
|
"commitizen": "4.2.4",
|
|
"eslint": "7.32.0",
|
|
"eslint-plugin-babel": "5.3.1",
|
|
"eslint-plugin-filenames": "1.3.2",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"eslint-plugin-jest": "26.2.1",
|
|
"eslint-plugin-jsdoc": "39.2.9",
|
|
"eslint-plugin-no-use-extend-native": "0.5.0",
|
|
"eslint-plugin-promise": "6.0.0",
|
|
"eslint-plugin-unicorn": "23.0.0",
|
|
"fuzzy": "0.1.3",
|
|
"global": "4.4.0",
|
|
"husky": "8.0.1",
|
|
"inquirer": "8.2.4",
|
|
"inquirer-list-search-prompt": "1.0.2",
|
|
"jest": "28.1.0",
|
|
"minimist": "1.2.6",
|
|
"mocha": "10.0.0",
|
|
"pkg": "5.6.0",
|
|
"rimraf": "3.0.2",
|
|
"semantic-release": "19.0.2",
|
|
"signale": "1.4.0",
|
|
"spawncommand": "2.2.0",
|
|
"word-wrap": "1.2.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yarn lint",
|
|
"prepare-commit-msg": "exec < /dev/tty && node ./lib/cli.js --hook || true"
|
|
}
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./dist/cz.js"
|
|
}
|
|
},
|
|
"mmarkdown": {
|
|
"src": "./build/readme.md",
|
|
"out": "./README.md",
|
|
"scripts": "./build/readme.js",
|
|
"backup": false
|
|
},
|
|
"release": {
|
|
"verifyConditions": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/git"
|
|
],
|
|
"prepare": [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/git"
|
|
]
|
|
}
|
|
}
|