-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "deploy-to-git",
"version": "0.4.1",
"description": "Automatically deploy build artifacts to a Git repository",
"bin": "index.js",
"scripts": {
"test": "eslint .",
"upgrade": "npx npm-check-updates -u && npm install",
"patch": "npm version patch && npm publish && git push && git push --tags",
"minor": "npm version minor && npm publish && git push && git push --tags"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"refactor",
"perf",
"test",
"chore",
"revert"
]
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"repository": {
"type": "git",
"url": "https://github.com/finom/deploy-to-git.git"
},
"keywords": [
"CI",
"deploy",
"git",
"github",
"gitlab",
"bitbucket",
"artifacts"
],
"author": "Andrey Gubanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/finom/deploy-to-git/issues"
},
"homepage": "https://github.com/finom/deploy-to-git#readme",
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"ghooks": "^2.0.4",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"yargs": "^17.3.1"
}
}