-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1000 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
37
38
39
40
41
{
"name": "okami-action",
"version": "0.0.0",
"description": "GitHub action to post animal images/gifs on PRs",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Chesire/okami-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Chesire/okami-action/issues"
},
"homepage": "https://github.com/Chesire/okami-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"axios": "^0.21.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.23.0",
"prettier": "2.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"maxHeaderWidth": 72,
"maxMessageWidth": 100
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}