We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 482ae19 commit 5c263deCopy full SHA for 5c263de
commitlint.config.js
@@ -0,0 +1 @@
1
+module.exports = { extends: ['@commitlint/config-conventional'] };
package.json
@@ -2,8 +2,12 @@
2
"name": "saml",
3
"version": "0.14.0",
4
"devDependencies": {
5
+ "@commitlint/cli": "^9.1.2",
6
+ "@commitlint/config-conventional": "^9.1.2",
7
+ "husky": "^4.3.0",
8
"mocha": "3.5.3",
- "should": "~1.2.1"
9
+ "should": "~1.2.1",
10
+ "standard-version": "^9.0.0"
11
},
12
"main": "./lib",
13
"repository": "https://github.com/auth0/node-saml",
@@ -24,6 +28,12 @@
24
28
"xpath": "0.0.5"
25
29
26
30
"scripts": {
31
+ "release": "standard-version",
27
32
"test": "mocha"
33
+ },
34
+ "husky": {
35
+ "hooks": {
36
+ "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
37
+ }
38
}
39
0 commit comments