UNPKG

1.84 kBJSONView Raw
1{
2 "name": "gh-release",
3 "description": "Create a GitHub Release for a Node package",
4 "version": "7.0.1",
5 "author": "Nate Goldman <ungoldman@gmail.com> (https://ungoldman.com)",
6 "bin": {
7 "gh-release": "./bin/cli.js"
8 },
9 "bugs": {
10 "url": "https://github.com/ungoldman/gh-release/issues"
11 },
12 "contributors": [
13 "Nate Goldman <ungoldman@gmail.com>",
14 "Bret Comnes <bcomnes@gmail.com>",
15 "Paul C Pederson <paul.c.pederson@gmail.com>",
16 "John Gravois <me@johngravois.com>",
17 "Hawken MacKay Rives <hawkrives@gmail.com>",
18 "Henry Huang <h1886@outlook.com>",
19 "Zeke Sikelianos <zeke@sikelianos.com>",
20 "Belikin Roman <roman.sstu@gmail.com>",
21 "Ted Janeczko <tjaneczko@brightcove.com>"
22 ],
23 "dependencies": {
24 "@octokit/rest": "^19.0.5",
25 "changelog-parser": "^3.0.0",
26 "deep-extend": "^0.6.0",
27 "gauge": "^v5.0.0",
28 "gh-release-assets": "^2.0.0",
29 "ghauth": "^5.0.0",
30 "github-url-to-object": "^4.0.4",
31 "inquirer": "^8.0.0",
32 "shelljs": "^0.8.4",
33 "update-notifier": "^5.0.0",
34 "yargs": "^17.0.0"
35 },
36 "devDependencies": {
37 "git-pull-or-clone": "^2.0.1",
38 "npm-run-all": "^4.1.5",
39 "rimraf": "^3.0.2",
40 "snazzy": "^9.0.0",
41 "standard": "^17.0.0",
42 "tap-arc": "^0.3.4",
43 "tape": "^5.0.1",
44 "tmp": "v0.2.1"
45 },
46 "files": [
47 "bin/",
48 "lib/",
49 "index.js"
50 ],
51 "homepage": "https://github.com/ungoldman/gh-release",
52 "keywords": [
53 "changelog",
54 "github",
55 "release",
56 "semver",
57 "tag"
58 ],
59 "license": "ISC",
60 "main": "index.js",
61 "repository": {
62 "type": "git",
63 "url": "git+https://github.com/ungoldman/gh-release.git"
64 },
65 "engines": {
66 "node": ">=14"
67 },
68 "scripts": {
69 "pretest": "standard | snazzy",
70 "release": "./bin/cli.js && npm publish",
71 "test": "tape test/*.js | tap-arc"
72 }
73}