mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-08-29 14:28:29 +00:00
Compare commits
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
patreon: crazymax
|
github: crazy-max
|
||||||
custom: https://www.paypal.me/crazyws
|
custom: https://www.paypal.me/crazyws
|
||||||
|
|||||||
@@ -29,7 +29,9 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
-
|
-
|
||||||
name: Set up Go
|
name: Set up Go
|
||||||
uses: actions/setup-go@master
|
uses: actions/setup-go@v1
|
||||||
|
with:
|
||||||
|
go-version: 1.13.x
|
||||||
-
|
-
|
||||||
name: GoReleaser
|
name: GoReleaser
|
||||||
uses: ./
|
uses: ./
|
||||||
|
|||||||
@@ -2,19 +2,22 @@ name: lint
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- releases/*
|
|
||||||
paths:
|
paths:
|
||||||
- src/*
|
- '.github/workflows/lint.yml'
|
||||||
|
- 'src/*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
|
# https://github.com/actions/checkout
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
-
|
||||||
|
# https://github.com/actions/setup-node
|
||||||
|
name: Set up Node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
-
|
-
|
||||||
name: Setup TS
|
name: Setup TS
|
||||||
run: npm install tslint typescript -g
|
run: npm install tslint typescript -g
|
||||||
|
|||||||
@@ -1,15 +1,18 @@
|
|||||||
name: release
|
name: release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
create:
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- '**'
|
||||||
tags:
|
tags:
|
||||||
- v*.*.*
|
- 'v*.*.*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
|
# https://github.com/actions/checkout
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
-
|
-
|
||||||
@@ -38,6 +41,10 @@ jobs:
|
|||||||
if [ -n "${{ steps.prepare.outputs.major_exists }}" ]; then
|
if [ -n "${{ steps.prepare.outputs.major_exists }}" ]; then
|
||||||
git branch --set-upstream-to=origin/releases/${{ steps.prepare.outputs.major_tag }} releases/${{ steps.prepare.outputs.major_tag }}
|
git branch --set-upstream-to=origin/releases/${{ steps.prepare.outputs.major_tag }} releases/${{ steps.prepare.outputs.major_tag }}
|
||||||
fi
|
fi
|
||||||
|
-
|
||||||
|
# https://github.com/actions/setup-node
|
||||||
|
name: Set up Node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
-
|
-
|
||||||
name: NPM production deps
|
name: NPM production deps
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -27,11 +27,3 @@ jobs:
|
|||||||
-
|
-
|
||||||
name: Test
|
name: Test
|
||||||
run: npm run test
|
run: npm run test
|
||||||
-
|
|
||||||
name: Check for uncommitted changes
|
|
||||||
# Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed.
|
|
||||||
run: |
|
|
||||||
git diff --exit-code --stat -- . ':!node_modules' \
|
|
||||||
|| (echo "##[error] found changed files after build. please 'npm run build && npm run format'" \
|
|
||||||
"and check in all changes" \
|
|
||||||
&& exit 1)
|
|
||||||
|
|||||||
+10
-10
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"printWidth": 80,
|
"printWidth": 120,
|
||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
"useTabs": false,
|
"useTabs": false,
|
||||||
"semi": true,
|
"semi": true,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "none",
|
"trailingComma": "none",
|
||||||
"bracketSpacing": false,
|
"bracketSpacing": false,
|
||||||
"arrowParens": "avoid",
|
"arrowParens": "avoid",
|
||||||
"parser": "typescript"
|
"parser": "typescript"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,14 +7,12 @@
|
|||||||
<a href="https://github.com/marketplace/actions/goreleaser-action"><img alt="GitHub marketplace" src="https://img.shields.io/badge/marketplace-goreleaser--action-blue?logo=github&style=flat-square"></a>
|
<a href="https://github.com/marketplace/actions/goreleaser-action"><img alt="GitHub marketplace" src="https://img.shields.io/badge/marketplace-goreleaser--action-blue?logo=github&style=flat-square"></a>
|
||||||
<a href="https://github.com/goreleaser/goreleaser-action/actions?workflow=release"><img alt="Release workflow" src="https://github.com/goreleaser/goreleaser-action/workflows/release/badge.svg"></a>
|
<a href="https://github.com/goreleaser/goreleaser-action/actions?workflow=release"><img alt="Release workflow" src="https://github.com/goreleaser/goreleaser-action/workflows/release/badge.svg"></a>
|
||||||
<a href="https://github.com/goreleaser/goreleaser-action/actions?workflow=test"><img alt="Test workflow" src="https://github.com/goreleaser/goreleaser-action/workflows/test/badge.svg"></a>
|
<a href="https://github.com/goreleaser/goreleaser-action/actions?workflow=test"><img alt="Test workflow" src="https://github.com/goreleaser/goreleaser-action/workflows/test/badge.svg"></a>
|
||||||
<a href="https://www.patreon.com/crazymax"><img alt="Support CrazyMax on Patreon" src="https://img.shields.io/badge/crazymax-patreon-f96854.svg?logo=patreon&style=flat-square"></a>
|
<a href="https://github.com/sponsors/crazy-max"><img src="https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square" alt="Become a sponsor"></a>
|
||||||
</p>
|
</p>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
> **:warning: Note:** To use this action, you must have access to the [GitHub Actions](https://github.com/features/actions) feature. GitHub Actions are currently only available in public beta. You can [apply for the GitHub Actions beta here](https://github.com/features/actions/signup/).
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Below is a simple snippet to use this action. A [live example](https://github.com/goreleaser/goreleaser-action/actions) is also available for this repository.
|
Below is a simple snippet to use this action. A [live example](https://github.com/goreleaser/goreleaser-action/actions) is also available for this repository.
|
||||||
@@ -32,10 +30,12 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@v1
|
||||||
-
|
-
|
||||||
name: Set up Go
|
name: Set up Go
|
||||||
uses: actions/setup-go@master
|
uses: actions/setup-go@v1
|
||||||
|
with:
|
||||||
|
go-version: 1.13.x
|
||||||
-
|
-
|
||||||
name: Run GoReleaser
|
name: Run GoReleaser
|
||||||
uses: goreleaser/goreleaser-action@v1
|
uses: goreleaser/goreleaser-action@v1
|
||||||
@@ -53,11 +53,12 @@ jobs:
|
|||||||
|
|
||||||
Following inputs can be used as `step.with` keys
|
Following inputs can be used as `step.with` keys
|
||||||
|
|
||||||
| Name | Type | Default | Description |
|
| Name | Type | Default | Description |
|
||||||
|---------------|---------|-----------|------------------------------------------|
|
|---------------|---------|-----------|-------------------------------------------|
|
||||||
| `version` | String | `latest` | GoReleaser version. Example: `v0.117.0` |
|
| `version` | String | `latest` | GoReleaser version. Example: `v0.117.0` |
|
||||||
| `args` | String | | Arguments to pass to GoReleaser |
|
| `args` | String | | Arguments to pass to GoReleaser |
|
||||||
| `key` | String | | Private key to import |
|
| `key` | String | | Private key to import |
|
||||||
|
| `workdir` | String | `.` | Working directory (below repository root) |
|
||||||
|
|
||||||
### Signing
|
### Signing
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,9 @@ inputs:
|
|||||||
description: 'Arguments to pass to GoReleaser'
|
description: 'Arguments to pass to GoReleaser'
|
||||||
key:
|
key:
|
||||||
description: 'Private key to import'
|
description: 'Private key to import'
|
||||||
|
workdir:
|
||||||
|
description: 'Working directory (below repository root)'
|
||||||
|
default: '.'
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node12'
|
||||||
|
|||||||
+6
-2
@@ -26,10 +26,14 @@ function run(silent) {
|
|||||||
const version = core.getInput('version') || 'latest';
|
const version = core.getInput('version') || 'latest';
|
||||||
const args = core.getInput('args');
|
const args = core.getInput('args');
|
||||||
const key = core.getInput('key');
|
const key = core.getInput('key');
|
||||||
|
const workdir = core.getInput('workdir') || '.';
|
||||||
const goreleaser = yield installer.getGoReleaser(version);
|
const goreleaser = yield installer.getGoReleaser(version);
|
||||||
|
if (workdir && workdir !== '.') {
|
||||||
|
console.log(`📂 Using ${workdir} as working directory...`);
|
||||||
|
process.chdir(workdir);
|
||||||
|
}
|
||||||
let snapshot = '';
|
let snapshot = '';
|
||||||
if (!process.env.GITHUB_REF ||
|
if (!process.env.GITHUB_REF || !process.env.GITHUB_REF.startsWith('refs/tags/')) {
|
||||||
!process.env.GITHUB_REF.startsWith('refs/tags/')) {
|
|
||||||
console.log(`⚠️ No tag found. Snapshot forced`);
|
console.log(`⚠️ No tag found. Snapshot forced`);
|
||||||
if (!args.includes('--snapshot')) {
|
if (!args.includes('--snapshot')) {
|
||||||
snapshot = ' --snapshot';
|
snapshot = ' --snapshot';
|
||||||
|
|||||||
+33
@@ -104,4 +104,37 @@ const result = await core.group('Do something async', async () => {
|
|||||||
const response = await doSomeHTTPRequest()
|
const response = await doSomeHTTPRequest()
|
||||||
return response
|
return response
|
||||||
})
|
})
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Action state
|
||||||
|
|
||||||
|
You can use this library to save state and get state for sharing information between a given wrapper action:
|
||||||
|
|
||||||
|
**action.yml**
|
||||||
|
```yaml
|
||||||
|
name: 'Wrapper action sample'
|
||||||
|
inputs:
|
||||||
|
name:
|
||||||
|
default: 'GitHub'
|
||||||
|
runs:
|
||||||
|
using: 'node12'
|
||||||
|
main: 'main.js'
|
||||||
|
post: 'cleanup.js'
|
||||||
|
```
|
||||||
|
|
||||||
|
In action's `main.js`:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const core = require('@actions/core');
|
||||||
|
|
||||||
|
core.saveState("pidToKill", 12345);
|
||||||
|
```
|
||||||
|
|
||||||
|
In action's `cleanup.js`:
|
||||||
|
```js
|
||||||
|
const core = require('@actions/core');
|
||||||
|
|
||||||
|
var pid = core.getState("pidToKill");
|
||||||
|
|
||||||
|
process.kill(pid);
|
||||||
```
|
```
|
||||||
+14
@@ -96,3 +96,17 @@ export declare function endGroup(): void;
|
|||||||
* @param fn The function to wrap in the group
|
* @param fn The function to wrap in the group
|
||||||
*/
|
*/
|
||||||
export declare function group<T>(name: string, fn: () => Promise<T>): Promise<T>;
|
export declare function group<T>(name: string, fn: () => Promise<T>): Promise<T>;
|
||||||
|
/**
|
||||||
|
* Saves state for current action, the state can only be retrieved by this action's post job execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to store
|
||||||
|
* @param value value to store
|
||||||
|
*/
|
||||||
|
export declare function saveState(name: string, value: string): void;
|
||||||
|
/**
|
||||||
|
* Gets the value of an state set by this action's main execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to get
|
||||||
|
* @returns string
|
||||||
|
*/
|
||||||
|
export declare function getState(name: string): string;
|
||||||
|
|||||||
+23
@@ -169,4 +169,27 @@ function group(name, fn) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.group = group;
|
exports.group = group;
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
// Wrapper action state
|
||||||
|
//-----------------------------------------------------------------------
|
||||||
|
/**
|
||||||
|
* Saves state for current action, the state can only be retrieved by this action's post job execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to store
|
||||||
|
* @param value value to store
|
||||||
|
*/
|
||||||
|
function saveState(name, value) {
|
||||||
|
command_1.issueCommand('save-state', { name }, value);
|
||||||
|
}
|
||||||
|
exports.saveState = saveState;
|
||||||
|
/**
|
||||||
|
* Gets the value of an state set by this action's main execution.
|
||||||
|
*
|
||||||
|
* @param name name of the state to get
|
||||||
|
* @returns string
|
||||||
|
*/
|
||||||
|
function getState(name) {
|
||||||
|
return process.env[`STATE_${name}`] || '';
|
||||||
|
}
|
||||||
|
exports.getState = getState;
|
||||||
//# sourceMappingURL=core.js.map
|
//# sourceMappingURL=core.js.map
|
||||||
+1
-1
@@ -1 +1 @@
|
|||||||
{"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"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"}
|
{"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"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"}
|
||||||
+12
-12
@@ -1,34 +1,34 @@
|
|||||||
{
|
{
|
||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/core@1.1.3",
|
"@actions/core@1.2.0",
|
||||||
"."
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/core@1.1.3",
|
"_from": "@actions/core@1.2.0",
|
||||||
"_id": "@actions/core@1.1.3",
|
"_id": "@actions/core@1.2.0",
|
||||||
"_inBundle": false,
|
"_inBundle": false,
|
||||||
"_integrity": "sha512-2BIib53Jh4Cfm+1XNuZYYGTeRo8yiWEAUMoliMh1qQGMaqTF4VUlhhcsBylTu4qWmUx45DrY0y0XskimAHSqhw==",
|
"_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==",
|
||||||
"_location": "/@actions/core",
|
"_location": "/@actions/core",
|
||||||
"_phantomChildren": {},
|
"_phantomChildren": {},
|
||||||
"_requested": {
|
"_requested": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"registry": true,
|
"registry": true,
|
||||||
"raw": "@actions/core@1.1.3",
|
"raw": "@actions/core@1.2.0",
|
||||||
"name": "@actions/core",
|
"name": "@actions/core",
|
||||||
"escapedName": "@actions%2fcore",
|
"escapedName": "@actions%2fcore",
|
||||||
"scope": "@actions",
|
"scope": "@actions",
|
||||||
"rawSpec": "1.1.3",
|
"rawSpec": "1.2.0",
|
||||||
"saveSpec": null,
|
"saveSpec": null,
|
||||||
"fetchSpec": "1.1.3"
|
"fetchSpec": "1.2.0"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/",
|
"/",
|
||||||
"/@actions/tool-cache"
|
"/@actions/tool-cache"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.1.3.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz",
|
||||||
"_spec": "1.1.3",
|
"_spec": "1.2.0",
|
||||||
"_where": ".",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
@@ -64,5 +64,5 @@
|
|||||||
"test": "echo \"Error: run tests from root\" && exit 1",
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
||||||
"tsc": "tsc"
|
"tsc": "tsc"
|
||||||
},
|
},
|
||||||
"version": "1.1.3"
|
"version": "1.2.0"
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/exec@1.0.1",
|
"@actions/exec@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/exec@1.0.1",
|
"_from": "@actions/exec@1.0.1",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/io@1.0.1",
|
"@actions/io@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/io@1.0.1",
|
"_from": "@actions/io@1.0.1",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+8
-6
@@ -1,4 +1,10 @@
|
|||||||
{
|
{
|
||||||
|
"_args": [
|
||||||
|
[
|
||||||
|
"@actions/tool-cache@1.1.2",
|
||||||
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
|
]
|
||||||
|
],
|
||||||
"_from": "@actions/tool-cache@1.1.2",
|
"_from": "@actions/tool-cache@1.1.2",
|
||||||
"_id": "@actions/tool-cache@1.1.2",
|
"_id": "@actions/tool-cache@1.1.2",
|
||||||
"_inBundle": false,
|
"_inBundle": false,
|
||||||
@@ -17,17 +23,14 @@
|
|||||||
"fetchSpec": "1.1.2"
|
"fetchSpec": "1.1.2"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"#USER",
|
|
||||||
"/"
|
"/"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.1.2.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.1.2.tgz",
|
||||||
"_shasum": "304d44cecb9547324731e03ca004a3905e6530d2",
|
"_spec": "1.1.2",
|
||||||
"_spec": "@actions/tool-cache@1.1.2",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
},
|
},
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.1.0",
|
"@actions/core": "^1.1.0",
|
||||||
"@actions/exec": "^1.0.1",
|
"@actions/exec": "^1.0.1",
|
||||||
@@ -36,7 +39,6 @@
|
|||||||
"typed-rest-client": "^1.4.0",
|
"typed-rest-client": "^1.4.0",
|
||||||
"uuid": "^3.3.2"
|
"uuid": "^3.3.2"
|
||||||
},
|
},
|
||||||
"deprecated": false,
|
|
||||||
"description": "Actions tool-cache lib",
|
"description": "Actions tool-cache lib",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/nock": "^10.0.3",
|
"@types/nock": "^10.0.3",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@sindresorhus/is@0.7.0",
|
"@sindresorhus/is@0.7.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@sindresorhus/is@0.7.0",
|
"_from": "@sindresorhus/is@0.7.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz",
|
"_resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz",
|
||||||
"_spec": "0.7.0",
|
"_spec": "0.7.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@4.4.0",
|
"file-type@4.4.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@4.4.0",
|
"_from": "file-type@4.4.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz",
|
||||||
"_spec": "4.4.0",
|
"_spec": "4.4.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"archive-type@4.0.0",
|
"archive-type@4.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "archive-type@4.0.0",
|
"_from": "archive-type@4.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz",
|
||||||
"_spec": "4.0.0",
|
"_spec": "4.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"base64-js@1.3.1",
|
"base64-js@1.3.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "base64-js@1.3.1",
|
"_from": "base64-js@1.3.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
|
"_resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz",
|
||||||
"_spec": "1.3.1",
|
"_spec": "1.3.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "T. Jameson Little",
|
"name": "T. Jameson Little",
|
||||||
"email": "t.jameson.little@gmail.com"
|
"email": "t.jameson.little@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"bl@1.2.2",
|
"bl@1.2.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "bl@1.2.2",
|
"_from": "bl@1.2.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
|
"_resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz",
|
||||||
"_spec": "1.2.2",
|
"_spec": "1.2.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Rod Vagg <rod@vagg.org> (https://github.com/rvagg)",
|
"Rod Vagg <rod@vagg.org> (https://github.com/rvagg)",
|
||||||
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
|
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-alloc-unsafe@1.1.0",
|
"buffer-alloc-unsafe@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-alloc-unsafe@1.1.0",
|
"_from": "buffer-alloc-unsafe@1.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/LinusU/buffer-alloc-unsafe/issues"
|
"url": "https://github.com/LinusU/buffer-alloc-unsafe/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-alloc@1.2.0",
|
"buffer-alloc@1.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-alloc@1.2.0",
|
"_from": "buffer-alloc@1.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
||||||
"_spec": "1.2.0",
|
"_spec": "1.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/LinusU/buffer-alloc/issues"
|
"url": "https://github.com/LinusU/buffer-alloc/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-crc32@0.2.13",
|
"buffer-crc32@0.2.13",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-crc32@0.2.13",
|
"_from": "buffer-crc32@0.2.13",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
|
||||||
"_spec": "0.2.13",
|
"_spec": "0.2.13",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Brian J. Brennan",
|
"name": "Brian J. Brennan",
|
||||||
"email": "brianloveswords@gmail.com"
|
"email": "brianloveswords@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer-fill@1.0.0",
|
"buffer-fill@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer-fill@1.0.0",
|
"_from": "buffer-fill@1.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/LinusU/buffer-fill/issues"
|
"url": "https://github.com/LinusU/buffer-fill/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"buffer@5.4.3",
|
"buffer@5.4.3",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "buffer@5.4.3",
|
"_from": "buffer@5.4.3",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz",
|
"_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz",
|
||||||
"_spec": "5.4.3",
|
"_spec": "5.4.3",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Feross Aboukhadijeh",
|
"name": "Feross Aboukhadijeh",
|
||||||
"email": "feross@feross.org",
|
"email": "feross@feross.org",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"lowercase-keys@1.0.0",
|
"lowercase-keys@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "lowercase-keys@1.0.0",
|
"_from": "lowercase-keys@1.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"cacheable-request@2.1.4",
|
"cacheable-request@2.1.4",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "cacheable-request@2.1.4",
|
"_from": "cacheable-request@2.1.4",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz",
|
"_resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz",
|
||||||
"_spec": "2.1.4",
|
"_spec": "2.1.4",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Luke Childs",
|
"name": "Luke Childs",
|
||||||
"email": "lukechilds123@gmail.com",
|
"email": "lukechilds123@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"caw@2.0.1",
|
"caw@2.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "caw@2.0.1",
|
"_from": "caw@2.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz",
|
||||||
"_spec": "2.0.1",
|
"_spec": "2.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"clone-response@1.0.2",
|
"clone-response@1.0.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "clone-response@1.0.2",
|
"_from": "clone-response@1.0.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
"_resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
||||||
"_spec": "1.0.2",
|
"_spec": "1.0.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Luke Childs",
|
"name": "Luke Childs",
|
||||||
"email": "lukechilds123@gmail.com",
|
"email": "lukechilds123@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"commander@2.8.1",
|
"commander@2.8.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "commander@2.8.1",
|
"_from": "commander@2.8.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
|
"_resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
|
||||||
"_spec": "2.8.1",
|
"_spec": "2.8.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "TJ Holowaychuk",
|
"name": "TJ Holowaychuk",
|
||||||
"email": "tj@vision-media.ca"
|
"email": "tj@vision-media.ca"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"config-chain@1.1.12",
|
"config-chain@1.1.12",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "config-chain@1.1.12",
|
"_from": "config-chain@1.1.12",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz",
|
"_resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz",
|
||||||
"_spec": "1.1.12",
|
"_spec": "1.1.12",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Dominic Tarr",
|
"name": "Dominic Tarr",
|
||||||
"email": "dominic.tarr@gmail.com",
|
"email": "dominic.tarr@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"safe-buffer@5.1.2",
|
"safe-buffer@5.1.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "safe-buffer@5.1.2",
|
"_from": "safe-buffer@5.1.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
"_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
||||||
"_spec": "5.1.2",
|
"_spec": "5.1.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Feross Aboukhadijeh",
|
"name": "Feross Aboukhadijeh",
|
||||||
"email": "feross@feross.org",
|
"email": "feross@feross.org",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"content-disposition@0.5.3",
|
"content-disposition@0.5.3",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "content-disposition@0.5.3",
|
"_from": "content-disposition@0.5.3",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
"_resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
||||||
"_spec": "0.5.3",
|
"_spec": "0.5.3",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Douglas Christopher Wilson",
|
"name": "Douglas Christopher Wilson",
|
||||||
"email": "doug@somethingdoug.com"
|
"email": "doug@somethingdoug.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"core-util-is@1.0.2",
|
"core-util-is@1.0.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "core-util-is@1.0.2",
|
"_from": "core-util-is@1.0.2",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
"_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
||||||
"_spec": "1.0.2",
|
"_spec": "1.0.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Isaac Z. Schlueter",
|
"name": "Isaac Z. Schlueter",
|
||||||
"email": "i@izs.me",
|
"email": "i@izs.me",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decode-uri-component@0.2.0",
|
"decode-uri-component@0.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decode-uri-component@0.2.0",
|
"_from": "decode-uri-component@0.2.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
|
||||||
"_spec": "0.2.0",
|
"_spec": "0.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sam Verschueren",
|
"name": "Sam Verschueren",
|
||||||
"email": "sam.verschueren@gmail.com",
|
"email": "sam.verschueren@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-response@3.3.0",
|
"decompress-response@3.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-response@3.3.0",
|
"_from": "decompress-response@3.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
|
||||||
"_spec": "3.3.0",
|
"_spec": "3.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/sindresorhus/decompress-response/issues"
|
"url": "https://github.com/sindresorhus/decompress-response/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@5.2.0",
|
"file-type@5.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@5.2.0",
|
"_from": "file-type@5.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
||||||
"_spec": "5.2.0",
|
"_spec": "5.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-tar@4.1.1",
|
"decompress-tar@4.1.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-tar@4.1.1",
|
"_from": "decompress-tar@4.1.1",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz",
|
||||||
"_spec": "4.1.1",
|
"_spec": "4.1.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@6.2.0",
|
"file-type@6.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@6.2.0",
|
"_from": "file-type@6.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz",
|
||||||
"_spec": "6.2.0",
|
"_spec": "6.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-tarbz2@4.1.1",
|
"decompress-tarbz2@4.1.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-tarbz2@4.1.1",
|
"_from": "decompress-tarbz2@4.1.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz",
|
||||||
"_spec": "4.1.1",
|
"_spec": "4.1.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@5.2.0",
|
"file-type@5.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@5.2.0",
|
"_from": "file-type@5.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz",
|
||||||
"_spec": "5.2.0",
|
"_spec": "5.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-targz@4.1.1",
|
"decompress-targz@4.1.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-targz@4.1.1",
|
"_from": "decompress-targz@4.1.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz",
|
||||||
"_spec": "4.1.1",
|
"_spec": "4.1.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@3.9.0",
|
"file-type@3.9.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@3.9.0",
|
"_from": "file-type@3.9.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz",
|
||||||
"_spec": "3.9.0",
|
"_spec": "3.9.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"get-stream@2.3.1",
|
"get-stream@2.3.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "get-stream@2.3.1",
|
"_from": "get-stream@2.3.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
|
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz",
|
||||||
"_spec": "2.3.1",
|
"_spec": "2.3.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"pify@2.3.0",
|
"pify@2.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "pify@2.3.0",
|
"_from": "pify@2.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
||||||
"_spec": "2.3.0",
|
"_spec": "2.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress-unzip@4.0.1",
|
"decompress-unzip@4.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress-unzip@4.0.1",
|
"_from": "decompress-unzip@4.0.1",
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz",
|
||||||
"_spec": "4.0.1",
|
"_spec": "4.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"pify@2.3.0",
|
"pify@2.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "pify@2.3.0",
|
"_from": "pify@2.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
||||||
"_spec": "2.3.0",
|
"_spec": "2.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"decompress@4.2.0",
|
"decompress@4.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "decompress@4.2.0",
|
"_from": "decompress@4.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz",
|
||||||
"_spec": "4.2.0",
|
"_spec": "4.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"download@7.1.0",
|
"download@7.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "download@7.1.0",
|
"_from": "download@7.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz",
|
||||||
"_spec": "7.1.0",
|
"_spec": "7.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"duplexer3@0.1.4",
|
"duplexer3@0.1.4",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "duplexer3@0.1.4",
|
"_from": "duplexer3@0.1.4",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
|
"_resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
|
||||||
"_spec": "0.1.4",
|
"_spec": "0.1.4",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Conrad Pankoff",
|
"name": "Conrad Pankoff",
|
||||||
"email": "deoxxa@fknsrs.biz",
|
"email": "deoxxa@fknsrs.biz",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"end-of-stream@1.4.1",
|
"end-of-stream@1.4.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "end-of-stream@1.4.1",
|
"_from": "end-of-stream@1.4.1",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
|
"_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
|
||||||
"_spec": "1.4.1",
|
"_spec": "1.4.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Mathias Buus",
|
"name": "Mathias Buus",
|
||||||
"email": "mathiasbuus@gmail.com"
|
"email": "mathiasbuus@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"escape-string-regexp@1.0.5",
|
"escape-string-regexp@1.0.5",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "escape-string-regexp@1.0.5",
|
"_from": "escape-string-regexp@1.0.5",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
||||||
"_spec": "1.0.5",
|
"_spec": "1.0.5",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ext-list@2.2.2",
|
"ext-list@2.2.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ext-list@2.2.2",
|
"_from": "ext-list@2.2.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
|
"_resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz",
|
||||||
"_spec": "2.2.2",
|
"_spec": "2.2.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ext-name@5.0.0",
|
"ext-name@5.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ext-name@5.0.0",
|
"_from": "ext-name@5.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz",
|
||||||
"_spec": "5.0.0",
|
"_spec": "5.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"fd-slicer@1.1.0",
|
"fd-slicer@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "fd-slicer@1.1.0",
|
"_from": "fd-slicer@1.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Andrew Kelley",
|
"name": "Andrew Kelley",
|
||||||
"email": "superjoe30@gmail.com"
|
"email": "superjoe30@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"file-type@8.1.0",
|
"file-type@8.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "file-type@8.1.0",
|
"_from": "file-type@8.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz",
|
||||||
"_spec": "8.1.0",
|
"_spec": "8.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"filename-reserved-regex@2.0.0",
|
"filename-reserved-regex@2.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "filename-reserved-regex@2.0.0",
|
"_from": "filename-reserved-regex@2.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
|
||||||
"_spec": "2.0.0",
|
"_spec": "2.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"filenamify@2.1.0",
|
"filenamify@2.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "filenamify@2.1.0",
|
"_from": "filenamify@2.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz",
|
||||||
"_spec": "2.1.0",
|
"_spec": "2.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"from2@2.3.0",
|
"from2@2.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "from2@2.3.0",
|
"_from": "from2@2.3.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
|
||||||
"_spec": "2.3.0",
|
"_spec": "2.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Hugh Kennedy",
|
"name": "Hugh Kennedy",
|
||||||
"email": "hughskennedy@gmail.com",
|
"email": "hughskennedy@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"fs-constants@1.0.0",
|
"fs-constants@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "fs-constants@1.0.0",
|
"_from": "fs-constants@1.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Mathias Buus",
|
"name": "Mathias Buus",
|
||||||
"url": "@mafintosh"
|
"url": "@mafintosh"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"get-proxy@2.1.0",
|
"get-proxy@2.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "get-proxy@2.1.0",
|
"_from": "get-proxy@2.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz",
|
||||||
"_spec": "2.1.0",
|
"_spec": "2.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Mårtensson",
|
"name": "Kevin Mårtensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"get-stream@3.0.0",
|
"get-stream@3.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "get-stream@3.0.0",
|
"_from": "get-stream@3.0.0",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
|
||||||
"_spec": "3.0.0",
|
"_spec": "3.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"got@8.3.2",
|
"got@8.3.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "got@8.3.2",
|
"_from": "got@8.3.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz",
|
"_resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz",
|
||||||
"_spec": "8.3.2",
|
"_spec": "8.3.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"ava": {
|
"ava": {
|
||||||
"concurrency": 4
|
"concurrency": 4
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"graceful-fs@4.2.2",
|
"graceful-fs@4.2.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "graceful-fs@4.2.2",
|
"_from": "graceful-fs@4.2.2",
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz",
|
"_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz",
|
||||||
"_spec": "4.2.2",
|
"_spec": "4.2.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/isaacs/node-graceful-fs/issues"
|
"url": "https://github.com/isaacs/node-graceful-fs/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"graceful-readlink@1.0.1",
|
"graceful-readlink@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "graceful-readlink@1.0.1",
|
"_from": "graceful-readlink@1.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "zhiyelee"
|
"name": "zhiyelee"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"has-symbol-support-x@1.4.2",
|
"has-symbol-support-x@1.4.2",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "has-symbol-support-x@1.4.2",
|
"_from": "has-symbol-support-x@1.4.2",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
|
"_resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz",
|
||||||
"_spec": "1.4.2",
|
"_spec": "1.4.2",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Graham Fairweather",
|
"name": "Graham Fairweather",
|
||||||
"email": "xotic750@gmail.com"
|
"email": "xotic750@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"has-to-string-tag-x@1.4.1",
|
"has-to-string-tag-x@1.4.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "has-to-string-tag-x@1.4.1",
|
"_from": "has-to-string-tag-x@1.4.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
|
"_resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz",
|
||||||
"_spec": "1.4.1",
|
"_spec": "1.4.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Graham Fairweather",
|
"name": "Graham Fairweather",
|
||||||
"email": "xotic750@gmail.com"
|
"email": "xotic750@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"http-cache-semantics@3.8.1",
|
"http-cache-semantics@3.8.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "http-cache-semantics@3.8.1",
|
"_from": "http-cache-semantics@3.8.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
|
"_resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
|
||||||
"_spec": "3.8.1",
|
"_spec": "3.8.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kornel Lesiński",
|
"name": "Kornel Lesiński",
|
||||||
"email": "kornel@geekhood.net",
|
"email": "kornel@geekhood.net",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ieee754@1.1.13",
|
"ieee754@1.1.13",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ieee754@1.1.13",
|
"_from": "ieee754@1.1.13",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
|
"_resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz",
|
||||||
"_spec": "1.1.13",
|
"_spec": "1.1.13",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Feross Aboukhadijeh",
|
"name": "Feross Aboukhadijeh",
|
||||||
"email": "feross@feross.org",
|
"email": "feross@feross.org",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"inherits@2.0.4",
|
"inherits@2.0.4",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "inherits@2.0.4",
|
"_from": "inherits@2.0.4",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
"_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
||||||
"_spec": "2.0.4",
|
"_spec": "2.0.4",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"browser": "./inherits_browser.js",
|
"browser": "./inherits_browser.js",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/isaacs/inherits/issues"
|
"url": "https://github.com/isaacs/inherits/issues"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"ini@1.3.5",
|
"ini@1.3.5",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "ini@1.3.5",
|
"_from": "ini@1.3.5",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
|
"_resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
|
||||||
"_spec": "1.3.5",
|
"_spec": "1.3.5",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Isaac Z. Schlueter",
|
"name": "Isaac Z. Schlueter",
|
||||||
"email": "i@izs.me",
|
"email": "i@izs.me",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"into-stream@3.1.0",
|
"into-stream@3.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "into-stream@3.1.0",
|
"_from": "into-stream@3.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz",
|
||||||
"_spec": "3.1.0",
|
"_spec": "3.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-natural-number@4.0.1",
|
"is-natural-number@4.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-natural-number@4.0.1",
|
"_from": "is-natural-number@4.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
|
||||||
"_spec": "4.0.1",
|
"_spec": "4.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Shinnosuke Watanabe",
|
"name": "Shinnosuke Watanabe",
|
||||||
"url": "https://github.com/shinnn"
|
"url": "https://github.com/shinnn"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-object@1.0.1",
|
"is-object@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-object@1.0.1",
|
"_from": "is-object@1.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Raynos",
|
"name": "Raynos",
|
||||||
"email": "raynos2@gmail.com"
|
"email": "raynos2@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-plain-obj@1.1.0",
|
"is-plain-obj@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-plain-obj@1.1.0",
|
"_from": "is-plain-obj@1.1.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-retry-allowed@1.2.0",
|
"is-retry-allowed@1.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-retry-allowed@1.2.0",
|
"_from": "is-retry-allowed@1.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
|
||||||
"_spec": "1.2.0",
|
"_spec": "1.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Vsevolod Strukchinsky",
|
"name": "Vsevolod Strukchinsky",
|
||||||
"email": "floatdrop@gmail.com",
|
"email": "floatdrop@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"is-stream@1.1.0",
|
"is-stream@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "is-stream@1.1.0",
|
"_from": "is-stream@1.1.0",
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"isarray@1.0.0",
|
"isarray@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "isarray@1.0.0",
|
"_from": "isarray@1.0.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Julian Gruber",
|
"name": "Julian Gruber",
|
||||||
"email": "mail@juliangruber.com",
|
"email": "mail@juliangruber.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"isurl@1.0.0",
|
"isurl@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "isurl@1.0.0",
|
"_from": "isurl@1.0.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Steven Vachon",
|
"name": "Steven Vachon",
|
||||||
"email": "contact@svachon.com",
|
"email": "contact@svachon.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"json-buffer@3.0.0",
|
"json-buffer@3.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "json-buffer@3.0.0",
|
"_from": "json-buffer@3.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
|
||||||
"_spec": "3.0.0",
|
"_spec": "3.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Dominic Tarr",
|
"name": "Dominic Tarr",
|
||||||
"email": "dominic.tarr@gmail.com",
|
"email": "dominic.tarr@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"keyv@3.0.0",
|
"keyv@3.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "keyv@3.0.0",
|
"_from": "keyv@3.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz",
|
||||||
"_spec": "3.0.0",
|
"_spec": "3.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Luke Childs",
|
"name": "Luke Childs",
|
||||||
"email": "lukechilds123@gmail.com",
|
"email": "lukechilds123@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"lowercase-keys@1.0.1",
|
"lowercase-keys@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "lowercase-keys@1.0.1",
|
"_from": "lowercase-keys@1.0.1",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"make-dir@1.3.0",
|
"make-dir@1.3.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "make-dir@1.3.0",
|
"_from": "make-dir@1.3.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
|
"_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
|
||||||
"_spec": "1.3.0",
|
"_spec": "1.3.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"mime-db@1.41.0",
|
"mime-db@1.41.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "mime-db@1.41.0",
|
"_from": "mime-db@1.41.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.41.0.tgz",
|
"_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.41.0.tgz",
|
||||||
"_spec": "1.41.0",
|
"_spec": "1.41.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/jshttp/mime-db/issues"
|
"url": "https://github.com/jshttp/mime-db/issues"
|
||||||
},
|
},
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"mimic-response@1.0.1",
|
"mimic-response@1.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "mimic-response@1.0.1",
|
"_from": "mimic-response@1.0.1",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
|
||||||
"_spec": "1.0.1",
|
"_spec": "1.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"sort-keys@2.0.0",
|
"sort-keys@2.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "sort-keys@2.0.0",
|
"_from": "sort-keys@2.0.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz",
|
||||||
"_spec": "2.0.0",
|
"_spec": "2.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"normalize-url@2.0.1",
|
"normalize-url@2.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "normalize-url@2.0.1",
|
"_from": "normalize-url@2.0.1",
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz",
|
||||||
"_spec": "2.0.1",
|
"_spec": "2.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"npm-conf@1.1.3",
|
"npm-conf@1.1.3",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "npm-conf@1.1.3",
|
"_from": "npm-conf@1.1.3",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
|
"_resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
|
||||||
"_spec": "1.1.3",
|
"_spec": "1.1.3",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kevin Martensson",
|
"name": "Kevin Martensson",
|
||||||
"email": "kevinmartensson@gmail.com",
|
"email": "kevinmartensson@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"object-assign@4.1.1",
|
"object-assign@4.1.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "object-assign@4.1.1",
|
"_from": "object-assign@4.1.1",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
"_resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
||||||
"_spec": "4.1.1",
|
"_spec": "4.1.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"once@1.4.0",
|
"once@1.4.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "once@1.4.0",
|
"_from": "once@1.4.0",
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
"_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
||||||
"_spec": "1.4.0",
|
"_spec": "1.4.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Isaac Z. Schlueter",
|
"name": "Isaac Z. Schlueter",
|
||||||
"email": "i@izs.me",
|
"email": "i@izs.me",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"p-cancelable@0.4.1",
|
"p-cancelable@0.4.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "p-cancelable@0.4.1",
|
"_from": "p-cancelable@0.4.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz",
|
"_resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz",
|
||||||
"_spec": "0.4.1",
|
"_spec": "0.4.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"p-event@2.3.1",
|
"p-event@2.3.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "p-event@2.3.1",
|
"_from": "p-event@2.3.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz",
|
"_resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz",
|
||||||
"_spec": "2.3.1",
|
"_spec": "2.3.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"p-finally@1.0.0",
|
"p-finally@1.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "p-finally@1.0.0",
|
"_from": "p-finally@1.0.0",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
|
||||||
"_spec": "1.0.0",
|
"_spec": "1.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"p-is-promise@1.1.0",
|
"p-is-promise@1.1.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "p-is-promise@1.1.0",
|
"_from": "p-is-promise@1.1.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz",
|
"_resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz",
|
||||||
"_spec": "1.1.0",
|
"_spec": "1.1.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"p-timeout@2.0.1",
|
"p-timeout@2.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "p-timeout@2.0.1",
|
"_from": "p-timeout@2.0.1",
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz",
|
||||||
"_spec": "2.0.1",
|
"_spec": "2.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"pend@1.2.0",
|
"pend@1.2.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "pend@1.2.0",
|
"_from": "pend@1.2.0",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
|
||||||
"_spec": "1.2.0",
|
"_spec": "1.2.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Andrew Kelley",
|
"name": "Andrew Kelley",
|
||||||
"email": "superjoe30@gmail.com"
|
"email": "superjoe30@gmail.com"
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"pify@3.0.0",
|
"pify@3.0.0",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "pify@3.0.0",
|
"_from": "pify@3.0.0",
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
|
"_resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
|
||||||
"_spec": "3.0.0",
|
"_spec": "3.0.0",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Sindre Sorhus",
|
"name": "Sindre Sorhus",
|
||||||
"email": "sindresorhus@gmail.com",
|
"email": "sindresorhus@gmail.com",
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"pinkie-promise@2.0.1",
|
"pinkie-promise@2.0.1",
|
||||||
"X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser"
|
"X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "pinkie-promise@2.0.1",
|
"_from": "pinkie-promise@2.0.1",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
|
"_resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
|
||||||
"_spec": "2.0.1",
|
"_spec": "2.0.1",
|
||||||
"_where": "X:\\dev\\neard\\www\\github\\ghaction\\ghaction-goreleaser",
|
"_where": "X:\\dev\\neard\\www\\github\\goreleaser\\goreleaser-action",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Vsevolod Strukchinsky",
|
"name": "Vsevolod Strukchinsky",
|
||||||
"email": "floatdrop@gmail.com",
|
"email": "floatdrop@gmail.com",
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user