-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "git-is-branch-protected-cli",
"version": "1.0.2",
"description": "CLI to check whether a Git branch is protected",
"license": "MIT",
"repository": "https://github.com/tobiasbueschel/git-is-branch-protected-cli",
"author": "https://github.com/tobiasbueschel",
"bugs": {
"url": "https://github.com/tobiasbueschel/git-is-branch-protected-cli/issues"
},
"bin": {
"gibp": "cli.js"
},
"engines": {
"node": ">=8"
},
"files": [
"cli.js",
"index.js"
],
"keywords": [
"git",
"branch",
"branches"
],
"scripts": {
"lint": "eslint '*.js'",
"test": "jest index.test.js",
"test:watch": "jest --watch index.test.js",
"test:coverage": "jest --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"git-is-branch-protected": "^1.0.0",
"meow": "^5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"commitlint": "^8.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.0.1",
"git-branch": "^2.0.1",
"husky": "^3.0.0",
"jest": "^24.7.1",
"lint-staged": "^9.0.0",
"prettier": "^1.17.0",
"semantic-release": "^15.13.3"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true
}
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 140
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"message": "chore: release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}