-
Notifications
You must be signed in to change notification settings - Fork 292
/
package.json
36 lines (36 loc) · 881 Bytes
/
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
{
"name": "izing.open.io",
"version": "2.0.1",
"description": "izing.open.io - sistema de atendimentos multicanal",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:ldurans/izing.io.git"
},
"scripts": {
"release": "semantic-release --no-ci",
"husk": "husky install"
},
"author": "Durans ([email protected])",
"license": "AGPL-3.0-or-later",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"husky": "^7.0.4",
"semantic-release": "^18.0.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}