forked from release-it/release-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.74 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
122
{
"name": "release-it",
"version": "16.2.1",
"description": "Generic CLI tool to automate versioning and package publishing-related tasks.",
"keywords": [
"build",
"changelog",
"commit",
"distribution",
"git",
"github",
"gitlab",
"interactive",
"ci",
"npm",
"publish",
"push",
"release",
"release-it",
"repository",
"script",
"shell",
"tag",
"tool",
"version",
"semver",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/release-it/release-it.git"
},
"homepage": "https://github.com/release-it/release-it#readme",
"bugs": "https://github.com/release-it/release-it/issues",
"bin": {
"release-it": "bin/release-it.js"
},
"type": "module",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json",
"./test/util/index.js": "./test/util/index.js"
},
"files": [
"bin",
"config",
"lib",
"test"
],
"scripts": {
"knip": "knip",
"lint": "eslint lib test",
"format": "prettier --write \"{lib,test}/**/*.js\"",
"docs": "remark README.md 'docs/**/*.md' '.github/*.md' -o",
"test": "ava --no-worker-threads",
"release": "./bin/release-it.js"
},
"author": {
"email": "[email protected]",
"name": "Lars Kappert"
},
"license": "MIT",
"dependencies": {
"@iarna/toml": "2.2.5",
"@octokit/rest": "19.0.13",
"async-retry": "1.3.3",
"chalk": "5.3.0",
"cosmiconfig": "8.3.6",
"execa": "7.2.0",
"git-url-parse": "13.1.0",
"globby": "13.2.2",
"got": "13.0.0",
"inquirer": "9.2.11",
"is-ci": "3.0.1",
"issue-parser": "6.0.0",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"new-github-release-url": "2.0.0",
"node-fetch": "3.3.2",
"open": "9.1.0",
"ora": "7.0.1",
"os-name": "5.1.0",
"promise.allsettled": "1.0.7",
"proxy-agent": "6.3.1",
"semver": "7.5.4",
"shelljs": "0.8.5",
"update-notifier": "6.0.2",
"url-join": "5.0.0",
"wildcard-match": "5.1.2",
"yargs-parser": "21.1.1"
},
"devDependencies": {
"@octokit/request-error": "3.0.3",
"ava": "5.3.1",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"fs-monkey": "1.0.5",
"knip": "2.29.0",
"memfs": "4.5.0",
"mock-stdio": "1.0.3",
"nock": "13.3.3",
"prettier": "3.0.3",
"remark-cli": "11.0.0",
"remark-preset-webpro": "0.0.3",
"sinon": "16.0.0",
"strip-ansi": "7.1.0"
},
"overrides": {
"@octokit/plugin-rest-endpoint-methods": "7.2.2"
},
"engines": {
"node": ">=16"
},
"remarkConfig": {
"plugins": [
"preset-webpro"
]
}
}