-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.66 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
64
65
{
"name": "@eliasnorrby/commitlint-config",
"version": "2.3.37",
"description": "My commitlint config",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8"
},
"files": [
"index.js",
"setup.js",
".gitmessage"
],
"main": "index.js",
"bin": "setup.js",
"scripts": {
"lint": "tsc",
"semantic-release": "semantic-release",
"check-format": "prettier --list-different '**/*.{js,jsx,ts,tsx,html,vue,css,less,scss,graphql,yaml,yml,json,md,mdx}'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,html,vue,css,less,scss,graphql,yaml,yml,json,md,mdx}'"
},
"repository": {
"type": "git",
"url": "https://github.com/eliasnorrby/commitlint-config.git"
},
"keywords": [
"config",
"commitlint"
],
"author": "Elias Norrby",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliasnorrby/commitlint-config/issues"
},
"homepage": "https://github.com/eliasnorrby/commitlint-config#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@eliasnorrby/prettier-config": "^4.0.0",
"@eliasnorrby/semantic-release-config": "^3.0.0",
"@types/yargs": "^15.0.0",
"husky": "^4.0.10",
"prettier": "^2.0.2",
"semantic-release": "^17.0.4",
"typescript": "^4.0.2"
},
"peerDependencies": {
"@commitlint/cli": "8.x || 9.x || 10.x || 11.x",
"husky": "3.x || 4.x"
},
"dependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@eliasnorrby/log-util": "^1.1.0",
"execa": "^4.0.0",
"has-yarn": "^2.1.0",
"ora": "^5.0.0",
"yargs": "^16.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}