-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "@b12k/branch-name-lint",
"version": "1.1.0",
"description": "Flexible git branch name linter with some extra validating features",
"main": "bin/index.js",
"bin": {
"branch-name-lint": "./bin/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "ncc run src/index.ts",
"build": "ncc build src/index.ts -m -o bin",
"lint": "eslint src/**/*.ts --fix",
"prepare": "husky install",
"release": "release-it",
"husky:commit-msg": "commitlint",
"husky:pre-commit": "tsc --noEmit && lint-staged"
},
"keywords": [
"lint",
"validate",
"branch",
"name",
"git",
"conventonal",
"lint branch name",
"conventional branch name",
"branch name linter",
"branch name validator"
],
"author": "Bogdan Kolesnyk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/b12k/branch-name-lint.git"
},
"homepage": "https://github.com/b12k/branch-name-lint",
"bugs": {
"url": "https://github.com/b12k/branch-name-lint/issues"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@release-it/conventional-changelog": "^5.1.1",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vercel/ncc": "^0.36.1",
"chalk": "^5.2.0",
"cosmiconfig": "^8.2.0",
"eslint": "^8.43.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsc": "^2.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"path-to-regexp": "^6.2.1",
"release-it": "^15.11.0",
"typescript": "^5.1.5"
}
}