UNPKG

2.16 kBJSONView Raw
1{
2 "version": "6.4.0",
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 },
10 "scripts": {
11 "lint": "node_modules/eslint/bin/eslint.js *.js __tests__/**.js",
12 "test": "jest",
13 "test:coverage": "istanbul cover -x cz-config-EXAMPLE.js node_modules/jasmine-node/bin/jasmine-node spec/",
14 "test:check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
15 "test:watch": "node_modules/jasmine-node/bin/jasmine-node --color --autotest spec/ --watch .",
16 "report-coverage": "cat ./coverage/lcov.info | codecov",
17 "semantic-release": "semantic-release",
18 "prettier": "prettier --single-quote --trailing-comma es5 --write '*.js' 'spec/**/*.js'",
19 "commit": "./standalone.js"
20 },
21 "homepage": "https://github.com/leoforfree/cz-customizable",
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/leoforfree/cz-customizable.git"
25 },
26 "author": "Leonardo Correa <leonardoanalista@gmail.com>",
27 "contributors": [
28 "Aleksey Guryanov <gurianov@gmail.com>"
29 ],
30 "license": "MIT",
31 "dependencies": {
32 "editor": "1.0.0",
33 "find-config": "^1.0.0",
34 "inquirer": "^6.3.1",
35 "lodash": "^4.17.19",
36 "temp": "^0.9.0",
37 "word-wrap": "^1.2.3"
38 },
39 "devDependencies": {
40 "codecov.io": "0.1.6",
41 "commitizen": "^3.1.1",
42 "eslint": "^5.16.0",
43 "eslint-config-airbnb-base": "^13.1.0",
44 "eslint-config-prettier": "^4.2.0",
45 "eslint-plugin-import": "^2.22.0",
46 "eslint-plugin-nada": "^1.1.1",
47 "eslint-plugin-prettier": "^3.1.4",
48 "ghooks": "^2.0.4",
49 "istanbul": "^0.4.5",
50 "jasmine-node": "^3.0.0",
51 "jest": "^28.1.1",
52 "prettier": "^1.17.1",
53 "rewire": "^4.0.1",
54 "semantic-release": "^19.0.3",
55 "travis-deploy-once": "^5.0.11"
56 },
57 "config": {
58 "commitizen": {
59 "path": "./index.js"
60 },
61 "cz-customizable": {
62 "config": "cz-config-EXAMPLE.js"
63 },
64 "ghooks": {
65 "pre-commit": "npm run lint && npm run test"
66 }
67 }
68}