forked from ungoldman/gh-release
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.8 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
{
"name": "gh-release",
"description": "Create a GitHub Release for a Node package",
"version": "7.0.2",
"author": "Nate Goldman <[email protected]> (https://ungoldman.com)",
"bin": {
"gh-release": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/ungoldman/gh-release/issues"
},
"contributors": [
"Nate Goldman <[email protected]>",
"Bret Comnes <[email protected]>",
"Paul C Pederson <[email protected]>",
"John Gravois <[email protected]>",
"Hawken MacKay Rives <[email protected]>",
"Henry Huang <[email protected]>",
"Zeke Sikelianos <[email protected]>",
"Belikin Roman <[email protected]>",
"Ted Janeczko <[email protected]>"
],
"dependencies": {
"@octokit/rest": "^19.0.5",
"deep-extend": "^0.6.0",
"gauge": "^v5.0.0",
"gh-release-assets": "^2.0.0",
"ghauth": "^5.0.0",
"github-url-to-object": "^4.0.4",
"inquirer": "^8.0.0",
"shelljs": "^0.8.4",
"update-notifier": "^5.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"git-pull-or-clone": "^2.0.1",
"npm-run-all": "^4.1.5",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap-arc": "^0.3.4",
"tape": "^5.0.1",
"tmp": "v0.2.1"
},
"engines": {
"node": ">=14"
},
"files": [
"bin/",
"lib/",
"index.js"
],
"homepage": "https://github.com/ungoldman/gh-release",
"keywords": [
"changelog",
"github",
"release",
"semver",
"tag"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ungoldman/gh-release.git"
},
"scripts": {
"pretest": "standard | snazzy",
"release": "git fetch --all --prune && git push && git push --tags && ./bin/cli.js && npm publish",
"test": "tape test/*.js | tap-arc"
}
}