-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "commitlint-config-b2broker",
"version": "1.0.7",
"description": "Shareable commitlint config",
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"engines": {
"node": ">=16.14.2",
"npm": ">=8.5.0"
},
"scripts": {
"commitlint": "commitlint --verbose",
"commitlint:all": "npm run commitlint -- --from=$( git rev-list --max-parents=0 $( git rev-parse --abbrev-ref HEAD ) )",
"install:clean": "rm -fr node_modules && rm -f package-lock.json && npm install",
"lint": "eslint --ext .ts,.js ./",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prettier": "prettier -c .",
"prettier:write": "npm run prettier -- --write",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b2broker/commitlint-config.git"
},
"keywords": [
"commitlint",
"config",
"b2broker"
],
"author": "Sergey Bakulin <sbakulin@b2broker.net>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/b2broker/commitlint-config/issues"
},
"homepage": "https://github.com/b2broker/commitlint-config#readme",
"peerDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"commitlint": "^16.2.1"
},
"devDependencies": {
"@b2broker/tsconfig": "^1.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"eslint-config-b2broker-ts": "^2.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
}
}