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.61 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": "13.0.2",
"description": "CLI release tool for Git repos and npm packages.",
"keywords": [
"build",
"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": "./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 npm test",
"codecov": "nyc --reporter=json 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.3",
"@octokit/rest": "17.0.0",
"async-retry": "1.3.1",
"chalk": "3.0.0",
"cosmiconfig": "6.0.0",
"debug": "4.1.1",
"deprecated-obj": "1.0.1",
"detect-repo-changelog": "1.0.1",
"execa": "4.0.0",
"find-up": "4.1.0",
"form-data": "3.0.0",
"git-url-parse": "11.1.2",
"globby": "11.0.0",
"got": "10.6.0",
"import-cwd": "3.0.0",
"inquirer": "7.0.6",
"is-ci": "2.0.0",
"lodash": "4.17.15",
"mime-types": "2.1.26",
"ora": "4.0.3",
"os-name": "3.1.0",
"parse-json": "5.0.0",
"semver": "7.1.3",
"shelljs": "0.8.3",
"supports-color": "7.1.0",
"update-notifier": "4.1.0",
"url-join": "4.0.1",
"uuid": "7.0.2",
"window-size": "1.1.1",
"yaml": "1.8.0",
"yargs-parser": "18.1.0"
},
"devDependencies": {
"@octokit/request-error": "1.2.1",
"ava": "3.5.0",
"codecov": "3.6.5",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-ava": "10.2.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-prettier": "3.1.2",
"markdown-toc": "1.2.0",
"mock-fs": "4.11.0",
"mock-stdio": "1.0.3",
"nock": "12.0.2",
"nyc": "15.0.0",
"prettier": "1.19.1",
"proxyquire": "2.1.3",
"shelljs": "0.8.3",
"sinon": "9.0.0",
"strip-ansi": "6.0.0"
},
"engines": {
"node": ">=10"
}
}