-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "@batch/git-tools",
"author": "Josh Smith <josh@batch.nz>",
"bin": {
"batch-commit": "bin/commit.js"
},
"dependencies": {
"@batch/semantic-release-gitlab-config": "^2.0.0",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^12.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"semantic-release": "^21.0.7"
},
"description": "Sets up your project with Batch's Git Tools.",
"devDependencies": {
"chalk": "^5.3.0",
"lodash": "^4.17.21",
"husky": "^8.0.3"
},
"license": "MIT",
"scripts": {
"postinstall": "./scripts/install.js",
"postuninstall": "./scripts/uninstall.js",
"prepare": "husky install",
"publish-and-tag": "git push --tags && git push origin master",
"version:patch": "npm version patch && npm run publish-and-tag",
"version:minor": "npm version minor && npm run publish-and-tag",
"version:marjor": "npm version major && npm run publish-and-tag"
},
"version": "2.0.2",
"main": "scripts/install.js",
"repository": {
"type": "git",
"url": "git+https://github.com/batchnz/git-tools.git"
},
"bugs": {
"url": "https://github.com/batchnz/git-tools/issues"
},
"homepage": "https://github.com/batchnz/git-tools#readme"
}