-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 1.97 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
{
"name": "@saithodev/semantic-release-gitea",
"version": "2.1.0",
"description": "Publish release notes to Gitea",
"main": "index.js",
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"semantic-release": "semantic-release",
"test": "nyc ava -v",
"commit": "git-cz"
},
"engines": {
"node": "^10 || ^11 || ^12 || >=14"
},
"dependencies": {
"@semantic-release/error": "^2.2.0",
"aggregate-error": "^3.0.0",
"debug": "^4.0.0",
"dir-glob": "^3.0.0",
"form-data": "^3.0.0",
"fs-extra": "^8.0.0",
"globby": "^10.0.0",
"got": "^10.0.1",
"lodash": "^4.17.21",
"querystring": "^0.2.0",
"url-join": "^4.0.0"
},
"devDependencies": {
"@saithodev/semantic-release-sharedconf-npm": "^2.0.2",
"ava": "^2.0.0",
"clear-module": "^4.0.0",
"codecov": "^3.5.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"nock": "^11.1.0",
"nyc": "^15.0.0",
"proxyquire": "^2.0.0",
"semantic-release": "^17.4.2",
"sinon": "^8.0.0",
"tempy": "^0.3.0",
"xo": "^0.38.2"
},
"repository": {
"type": "git",
"url": "https://github.com/saitho/semantic-release-gitea"
},
"author": "Mario Lubenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/saitho/semantic-release-gitea/issues"
},
"homepage": "https://github.com/saitho/semantic-release-gitea#readme",
"keywords": [
"git",
"gitea",
"publish",
"pull-request",
"release",
"semantic-release",
"version"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"lcov",
"text",
"html"
],
"all": true
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
]
}
}
}