UNPKG

standard-commit

Version:
98 lines (97 loc) 2.72 kB
{ "name": "standard-commit", "version": "4.3.0", "description": "conventional commit", "author": { "name": "Sebastien Tasson", "email": "sebastien.tasson@gmail.com" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/stasson/standard-commit.git" }, "bugs": { "url": "https://github.com/stasson/standard-commit/issues" }, "keywords": [ "commit", "conventional", "conventional-changelog", "standard-version", "commitizen" ], "main": "index.js", "files": [ "bin", "dist" ], "bin": { "standard-commit": "bin/commit.js", "standard-commithook": "bin/commithook.js", "standard-commitlint": "bin/commitlint.js" }, "scripts": { "start": "ts-node src/cli/commit.ts", "tdd": "jest --runInBand --watch", "format": "prettier --write src/**/* test/**", "test": "run-s test:*", "test:unit": "jest --runInBand", "test:lint": "cross-env NODE_ENV=production tslint src/**/*.ts -t verbose", "build": "run-s build:*", "build:clean": "rimraf dist", "build:lib": "tsc -p tsconfig.dist.json", "prepublishOnly": "run-s build:*", "release": "run-s release:*", "release:checks": "run-s test:*", "release:version": "standard-version", "release:publish": "git push --follow-tags && npm publish", "prepare": "husky install .githooks" }, "gitHooks": { "commit-msg": "ts-node src/cli/commithook.ts" }, "devDependencies": { "@types/jest": "^28.1.1", "@types/meow": "^5.0.0", "@types/node": "^14", "@types/update-notifier": "^5.0.0", "cross-env": "^7.0.3", "husky": "^8.0.0", "jest": "^28.1.1", "mock-stdin": "^1.0.0", "npm-run-all": "^4.1.5", "prettier": "^2.2.1", "standard-version": "^9.1.1", "ts-jest": "^28.0.5", "ts-node-dev": "^1.1.6", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "tslint-plugin-prettier": "^2.3.0", "typescript": "^4.2.3" }, "dependencies": { "@commitlint/config-conventional": "^12.0.1", "@commitlint/format": "^12.0.1", "@commitlint/lint": "^12.0.1", "@commitlint/load": "^12.0.1", "@commitlint/read": "^12.0.1", "@commitlint/rules": "^12.0.1", "ansi-colors": "^4.1.1", "conventional-changelog-conventionalcommits": "^4.3.1", "cosmiconfig": "^7.0.0", "enquirer": "^2.3.6", "execa": "^5.0.0", "fs-extra": "^9.1.0", "import-local": "^3.0.2", "linewrap": "^0.2.1", "loud-rejection": "^2.2.0", "meow": "^9.0.0", "read-pkg-up": "^7.0.1", "write-pkg": "^4.0.0" }, "engines": { "node": ">=14" }, "homepage": "https://github.com/stasson/standard-commit#readme" }