forked from release-it/release-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.66 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
{
"name": "release-it",
"version": "14.11.5",
"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"
},
"main": "./lib/index.js",
"files": [
"bin",
"config",
"lib",
"test"
],
"scripts": {
"lint": "eslint lib test",
"format": "prettier --write \"{lib,test}/**/*.js\"",
"test": "ava",
"coverage": "nyc --reporter=lcov --reporter=html --config=config/.codecov.yml npm test",
"codecov": "nyc --reporter=json --config=config/.codecov.yml npm test && codecov -f coverage/coverage-final.json",
"readme": "markdown-toc README.md -i --maxdepth=2 --bullets=-",
"release": "./bin/release-it.js"
},
"author": {
"email": "[email protected]",
"name": "Lars Kappert"
},
"license": "MIT",
"dependencies": {
"@iarna/toml": "2.2.5",
"@octokit/rest": "18.9.0",
"async-retry": "1.3.1",
"chalk": "4.1.2",
"cosmiconfig": "7.0.0",
"debug": "4.3.2",
"deprecated-obj": "2.0.0",
"execa": "5.1.1",
"form-data": "4.0.0",
"git-url-parse": "11.5.0",
"globby": "11.0.4",
"got": "11.8.2",
"import-cwd": "3.0.0",
"inquirer": "8.1.2",
"is-ci": "3.0.0",
"lodash": "4.17.21",
"mime-types": "2.1.32",
"new-github-release-url": "1.0.0",
"open": "7.4.2",
"ora": "5.4.1",
"os-name": "4.0.1",
"parse-json": "5.2.0",
"semver": "7.3.5",
"shelljs": "0.8.4",
"update-notifier": "5.1.0",
"url-join": "4.0.1",
"uuid": "8.3.2",
"yaml": "1.10.2",
"yargs-parser": "20.2.9"
},
"devDependencies": {
"@octokit/request-error": "2.1.0",
"ava": "3.15.0",
"codecov": "3.8.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-ava": "12.0.0",
"eslint-plugin-import": "2.24.0",
"eslint-plugin-prettier": "3.4.0",
"markdown-toc": "1.2.0",
"mock-fs": "5.0.0",
"mock-stdio": "1.0.3",
"nock": "13.1.1",
"nyc": "15.1.0",
"prettier": "2.3.2",
"proxyquire": "2.1.3",
"sinon": "11.1.2",
"strip-ansi": "6.0.0"
},
"engines": {
"node": ">=10"
}
}