-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"version": "0.0.0-development",
"name": "cz-customizable",
"description": "Commitizen customizable adapter following the conventional-changelog format.",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"cz-customizable": "./standalone.js",
"cz-cust": "./standalone.js"
},
"scripts": {
"lint": "npx eslint *.js __tests__/**.js",
"test": "jest",
"test:watch": "jest -- --watch",
"semantic-release": "semantic-release",
"prettier": "prettier --single-quote --trailing-comma es5 --write '*.js' 'spec/**/*.js'",
"commit": "npm run lint && npm run test && ./standalone.js"
},
"homepage": "https://github.com/leoforfree/cz-customizable",
"repository": {
"type": "git",
"url": "https://github.com/leoforfree/cz-customizable.git"
},
"author": "Leonardo Correa <[email protected]>",
"contributors": [
"Aleksey Guryanov <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">=24"
},
"dependencies": {
"editor": "1.0.0",
"find-config": "^1.0.0",
"inquirer": "^6.3.1",
"lodash": "^4.17.23",
"temp": "^0.9.4",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-jest": "^28.1.2",
"commitizen": "^4.2.4",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.2.1",
"ghooks": "^2.0.4",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3"
},
"overrides": {
"minimatch": "^3.1.5"
},
"config": {
"commitizen": {
"path": "./index.js"
},
"cz-customizable": {
"config": "cz-config-EXAMPLE.js"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}