-
Notifications
You must be signed in to change notification settings - Fork 200
/
package.json
63 lines (63 loc) · 1.74 KB
/
package.json
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
{
"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",
"dependencies": {
"editor": "1.0.0",
"find-config": "^1.0.0",
"inquirer": "^6.3.1",
"lodash": "^4.17.19",
"temp": "^0.9.0",
"word-wrap": "^1.2.3"
},
"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"
},
"config": {
"commitizen": {
"path": "./index.js"
},
"cz-customizable": {
"config": "cz-config-EXAMPLE.js"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}