forked from conventional-changelog/commitlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.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
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
{
"name": "@commitlint/root",
"description": "Lint commit messages",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"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": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix",
"format": "prettier **/*.{ts,js,json,yml,md} -l",
"format-fix": "prettier **/*.{ts,js,json,yml,md} --write",
"publish": "lerna publish --conventional-commits",
"reinstall": "yarn clean && yarn install",
"start": "yarn watch",
"test": "cross-env HOME=$PWD jest",
"test-ci": "cross-env HOME=$PWD jest --runInBand",
"postinstall": "yarn husky install"
},
"commitlint": {
"extends": [
"./@commitlint/config-conventional",
"./@commitlint/config-lerna-scopes"
]
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"lint-staged": {
"*.{ts,js,json,yml,md}": [
"prettier --write"
]
},
"renovate": {
"rangeStrategy": "update-lockfile",
"ignorePaths": [
"**/fixtures/**/package.json"
],
"extends": [
"config:base",
":semanticCommitType(chore)",
":semanticCommitScopeDisabled"
],
"ignoreDeps": [
"@commitlint/test",
"@commitlint/test-environment",
"@commitlint/utils"
]
},
"workspaces": [
"@alias/*",
"@commitlint/*",
"@packages/*"
],
"engines": {
"node": ">=v14"
},
"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": "hello@herebecode.com"
},
"devDependencies": {
"@lerna/project": "^6.0.0",
"@swc/core": "^1.2.207",
"@swc/jest": "^0.2.21",
"@types/jest": "^29.0.0",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cross-env": "^7.0.3",
"docsify-cli": "^4.4.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^27.0.0",
"husky": "^8.0.0",
"jest": "^29.0.1",
"lerna": "^6.0.0",
"lint-staged": "13.1.2",
"prettier": "^2.0.5",
"typescript": "^5.0.2"
}
}