-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@springtree/check-git-branch-name",
"version": "1.0.10",
"private": false,
"description": "Validates the current git branch name matches company naming policy",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"test": "jest --silent --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpringTree/check-git-branch-name.git"
},
"keywords": [
"springtree",
"git",
"gitflow"
],
"author": "Mark Doeswijk <[email protected]> (http://www.springtree.eu)",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^10.0.1",
"jsonfile": "^6.1.0"
}
}