forked from release-it/release-it
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.05 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.05 KB
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
{
"name": "release-it",
"version": "7.7.0",
"description": "CLI release tool for Git repos and npm packages.",
"keywords": [
"build",
"commit",
"distribution",
"git",
"github",
"interactive",
"npm",
"publish",
"push",
"release",
"repository",
"script",
"shell",
"tag",
"tool",
"version"
],
"repository": {
"type": "git",
"url": "https://github.com/webpro/release-it.git"
},
"homepage": "https://github.com/webpro/release-it#release-it",
"bugs": "https://github.com/webpro/release-it/issues",
"bin": "./bin/release-it.js",
"main": "./lib/index.js",
"files": [
"bin",
"conf",
"lib",
".babelrc"
],
"scripts": {
"lint": "eslint lib test",
"format": "prettier --write \"{lib,test}/**/*.js\"",
"test": "tape -r babel-register -r ./test/util/setup test/*.js",
"coverage": "nyc --reporter=lcov npm test"
},
"author": {
"email": "lars@webpro.nl",
"name": "Lars Kappert"
},
"license": "MIT",
"dependencies": {
"@octokit/rest": "15.10.0",
"async-retry": "1.2.1",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"bump-file": "1.0.0",
"chalk": "2.4.1",
"conventional-changelog": "2.0.3",
"conventional-recommended-bump": "4.0.1",
"cpy": "7.0.1",
"debug": "3.1.0",
"globby": "8.0.1",
"got": "8.3.2",
"inquirer": "6.2.0",
"is-ci": "1.2.0",
"lodash": "4.17.10",
"mime-types": "2.1.20",
"ora": "3.0.0",
"os-name": "2.0.1",
"parse-repo": "1.0.4",
"semver": "5.5.1",
"shelljs": "0.8.2",
"supports-color": "5.5.0",
"tmp-promise": "1.0.5",
"update-notifier": "2.5.0",
"uuid": "3.3.2",
"window-size": "1.1.1",
"yargs-parser": "10.1.0"
},
"devDependencies": {
"eslint": "5.5.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-prettier": "2.6.2",
"mock-stdio": "1.0.3",
"nyc": "13.0.1",
"prettier": "1.14.2",
"proxyquire": "2.1.0",
"sinon": "6.1.5",
"tape": "4.9.1"
},
"engines": {
"node": ">=6"
}
}