forked from semantic-release/semantic-release
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
121 lines (121 loc) · 3.14 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "semantic-release-plus",
"description": "Fork of Automated semver compliant package publishing to enable additional features",
"version": "0.0.0-development",
"author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
"ava": {
"files": [
"test/**/*.test.js"
],
"timeout": "2m"
},
"bin": {
"semantic-release": "bin/semantic-release.js",
"semantic-release-plus": "bin/semantic-release.js"
},
"bugs": {
"url": "https://github.com/semantic-release-plus/semantic-release/issues"
},
"contributors": [
"Gregor Martynus (https://twitter.com/gr2m)",
"Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
"Justin Dietz (https://twitter.com/@skigeek)"
],
"dependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/error": "^3.0.0",
"@semantic-release/github": "^8.0.0",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.0",
"aggregate-error": "^3.0.0",
"cosmiconfig": "^7.0.0",
"debug": "^4.0.0",
"env-ci": "^5.0.0",
"execa": "^5.0.0",
"figures": "^3.0.0",
"find-versions": "^4.0.0",
"get-stream": "^6.0.0",
"git-log-parser": "^1.2.0",
"hook-std": "^2.0.0",
"hosted-git-info": "^2.8.8",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"marked-terminal": "^5.0.0",
"micromatch": "^4.0.2",
"p-each-series": "^2.1.0",
"p-reduce": "^2.0.0",
"read-pkg-up": "^7.0.0",
"resolve-from": "^5.0.0",
"semver": "^7.3.2",
"semver-diff": "^3.1.1",
"signale": "^1.2.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"ava": "3.15.0",
"clear-module": "4.1.2",
"codecov": "3.8.3",
"delay": "5.0.0",
"dockerode": "3.3.5",
"eslint": "8.49.0",
"eslint-config-prettier": "8.10.0",
"file-url": "3.0.0",
"fs-extra": "9.1.0",
"got": "11.8.6",
"husky": "7.0.4",
"js-yaml": "4.1.0",
"lint-staged": "12.5.0",
"mockserver-client": "5.15.0",
"nock": "13.3.3",
"nyc": "15.1.0",
"prettier": "2.5.1",
"p-retry": "4.6.2",
"proxyquire": "2.1.3",
"sinon": "12.0.1",
"stream-buffers": "3.0.2",
"tempy": "1.0.1"
},
"engines": {
"node": ">=16 || ^14.17"
},
"files": [
"bin",
"docs",
"lib",
"index.js",
"cli.js"
],
"homepage": "https://github.com/semantic-release-plus/semantic-release#readme",
"keywords": [
"author",
"automation",
"changelog",
"module",
"package",
"publish",
"release",
"semver",
"version"
],
"license": "MIT",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semantic-release-plus/semantic-release.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"prepare": "husky install",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write .",
"pretest": "npm run lint",
"semantic-release": "node ./bin/semantic-release.js",
"test": "nyc ava -v",
"test:ci": "nyc ava -v"
}
}