UNPKG

1.79 kBJSONView Raw
1{
2 "version": "6.9.1",
3 "name": "cz-customizable",
4 "description": "Commitizen customizable adapter following the conventional-changelog format.",
5 "main": "index.js",
6 "types": "index.d.ts",
7 "bin": {
8 "cz-customizable": "./standalone.js",
9 "cz-cust": "./standalone.js"
10 },
11 "scripts": {
12 "lint": "node_modules/eslint/bin/eslint.js *.js __tests__/**.js",
13 "test": "jest",
14 "test:watch": "jest -- --watch",
15 "semantic-release": "semantic-release",
16 "prettier": "prettier --single-quote --trailing-comma es5 --write '*.js' 'spec/**/*.js'",
17 "commit": "npm run lint && npm run test && ./standalone.js"
18 },
19 "homepage": "https://github.com/leoforfree/cz-customizable",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/leoforfree/cz-customizable.git"
23 },
24 "author": "Leonardo Correa <leonardoanalista@gmail.com>",
25 "contributors": [
26 "Aleksey Guryanov <gurianov@gmail.com>"
27 ],
28 "license": "MIT",
29 "dependencies": {
30 "editor": "1.0.0",
31 "find-config": "^1.0.0",
32 "inquirer": "^8.0.0",
33 "lodash": "^4.17.19",
34 "temp": "^0.9.0",
35 "word-wrap": "^1.2.3"
36 },
37 "devDependencies": {
38 "@babel/core": "^7.18.6",
39 "@babel/preset-env": "^7.18.6",
40 "babel-jest": "^28.1.2",
41 "commitizen": "^4.2.4",
42 "eslint": "^8.19.0",
43 "eslint-config-airbnb-base": "^15.0.0",
44 "eslint-config-prettier": "^8.5.0",
45 "eslint-plugin-import": "^2.22.0",
46 "eslint-plugin-prettier": "^4.2.1",
47 "ghooks": "^2.0.4",
48 "jest": "^28.1.2",
49 "prettier": "^2.7.1",
50 "semantic-release": "^19.0.3"
51 },
52 "config": {
53 "commitizen": {
54 "path": "./index.js"
55 },
56 "cz-customizable": {
57 "config": "cz-config-EXAMPLE.js"
58 },
59 "ghooks": {
60 "pre-commit": "npm run lint && npm run test"
61 }
62 }
63}