forked from b12k/branch-name-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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.0.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": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@release-it/conventional-changelog": "^4.1.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vercel/ncc": "^0.33.1",
"chalk": "^5.0.0",
"cosmiconfig": "^7.0.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsc": "^2.0.0",
"eslint-plugin-unicorn": "^40.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"path-to-regexp": "^6.2.0",
"release-it": "^14.12.1",
"typescript": "^4.5.4"
}
}