forked from finom/deploy-to-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"name": "deploy-to-git",
"version": "0.0.0-auto",
"description": "Automatically deploy build artifacts to a Git repository",
"bin": "index.js",
"scripts": {
"test": "eslint .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"upgrade": "ncu -a && npm install"
},
"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": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"ghooks": "^2.0.0",
"npm-check-updates": "^2.12.1",
"semantic-release": "^8.0.3",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"object.entries": "^1.0.4"
}
}