forked from conventional-changelog/commitlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@commitlint/root",
"description": "Lint commit messages",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc -b && lerna run build --stream --parallel --include-filtered-dependencies",
"watch": "lerna run watch --stream --parallel --include-filtered-dependencies",
"clean": "tsc -b --clean && lerna clean --yes && lerna exec 'git clean -xdf lib' && git clean -xdf node_modules",
"commit": "node @commitlint/prompt-cli/cli.js",
"deps": "lerna run deps",
"pkg": "lerna run pkg",
"docs": "docsify serve docs",
"lint": "prettier @{alias,commitlint,packages}/**/*.{ts,js} -l",
"publish": "lerna publish --conventional-commits",
"reinstall": "yarn clean && yarn install",
"start": "lerna run start --stream --parallel --include-filtered-dependencies",
"test": "jest && lerna run test --stream --parallel --include-filtered-dependencies"
},
"commitlint": {
"extends": [
"./@commitlint/config-conventional",
"./@commitlint/config-lerna-scopes"
]
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"bracketSpacing": false
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"git add"
]
},
"renovate": {
"dependencies": {
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"extends": [
"config:base"
],
"pin": {
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"workspaces": [
"@alias/*",
"@commitlint/*",
"@packages/*"
],
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/commitlint.git"
},
"bugs": {
"url": "https://github.com/conventional-changelog/commitlint/issues"
},
"homepage": "https://github.com/conventional-changelog/commitlint#readme",
"keywords": [
"conventional",
"conventional-changelog",
"log",
"changelog",
"lint",
"check"
],
"author": {
"name": "Mario Nebl",
"email": "[email protected]"
},
"dependencies": {
"@marionebl/sander": "0.6.1"
},
"devDependencies": {
"@lerna/project": "3.16.0",
"@types/jest": "24.0.18",
"docsify-cli": "4.3.0",
"husky": "3.0.5",
"jest": "24.8.0",
"lerna": "3.16.4",
"lint-staged": "8.2.1",
"prettier": "1.17.1",
"ts-jest": "24.1.0",
"typescript": "3.5.3"
},
"husky": {
"hooks": {
"commit-msg": "node @commitlint/cli/lib/cli.js -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"resolutions": {
"**/lodash": "4.17.14",
"docsify-cli/**/randomatic": "3",
"docsify-cli/**/stringstream": "0.0.6",
"docsify-cli/**/sshpk": "1.14.1",
"docsify-cli/**/marked": "0.3.9",
"docsify-cli/**/hoek": "5.0.3",
"docsify-cli/**/braces": "2.3.1",
"deep-extend": "0.5.1",
"moment": "2.19.3",
"js-yaml": ">=3.13.0"
}
}