forked from conventional-changelog/commitlint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.52 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.52 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
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
{
"name": "@commitlint/root",
"description": "Lint commit messages",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "lerna run build --stream --parallel --include-filtered-dependencies",
"clean": "npx lerna clean --yes && npx lerna run clean --stream --parallel --include-filtered-dependencies",
"commit": "node @commitlint/prompt-cli/cli.js",
"commitmsg": "node @commitlint/cli/lib/cli.js -e $GIT_PARAMS",
"deps": "lerna run deps",
"docs": "docsify serve docs",
"lint": "lerna run lint",
"precommit": "lint-staged",
"publish": "lerna publish --conventional-commits",
"reinstall": "yarn clean && yarn install",
"start": "lerna run start --stream --parallel --include-filtered-dependencies",
"test": "lerna run test --stream --parallel --include-filtered-dependencies"
},
"commitlint": {
"extends": [
"./@commitlint/config-conventional",
"./@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"*.js": [
"npx prettier --write --use-tabs --single-quote --no-bracket-spacing",
"npx xo --fix",
"git add"
]
},
"renovate": {
"dependencies": {
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"extends": [
"config:base"
],
"pin": {
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"semanticPrefix": "chore:",
"semanticCommitScope": ""
},
"xo": {
"extends": [
"prettier"
],
"ignores": [
"lib/**",
"node_modules/**"
],
"rules": {
"import/prefer-default-export": "off",
"ava/no-ignored-test-files": "off"
}
},
"workspaces": [
"@alias/*",
"@commitlint/*",
"@packages/*"
],
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/marionebl/commitlint.git"
},
"bugs": {
"url": "https://github.com/marionebl/commitlint/issues"
},
"homepage": "https://github.com/marionebl/commitlint#readme",
"keywords": [
"conventional",
"conventional-changelog",
"log",
"changelog",
"lint",
"check"
],
"author": {
"name": "Mario Nebl",
"email": "hello@herebecode.com"
},
"dependencies": {
"@marionebl/sander": "0.6.1"
},
"devDependencies": {
"docsify-cli": "4.1.12",
"eslint": "4.13.1",
"eslint-config-prettier": "2.9.0",
"husky": "0.14.3",
"lerna": "2.5.1",
"lint-staged": "6.0.0",
"npx": "9.7.1",
"prettier": "1.9.2",
"xo": "0.18.2",
"yarn": "1.3.2"
}
}