Compare commits
94 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ae91116974 | |||
| a064acd92f | |||
| 248e32e2dc | |||
| dbf18c0caa | |||
| cc99612739 | |||
| 519ecbc91a | |||
| 6853112f92 | |||
| b038593209 | |||
| 17b251323d | |||
| 3b83313b06 | |||
| 0fa14ed821 | |||
| 7f0ace66d4 | |||
| 14114217b7 | |||
| 1e36ec7676 | |||
| 0f1932feb9 | |||
| e51f63510f | |||
| 8438b632fe | |||
| e2b1fb1afa | |||
| 19921987e2 | |||
| a5a95c4bca | |||
| 2d0ff442ad | |||
| 866b1ed08a | |||
| e168969095 | |||
| 8aa4d84d75 | |||
| 38358f3e1c | |||
| fa0f7d8a09 | |||
| cd9873b50d | |||
| 729a515e86 | |||
| 60658d2ff9 | |||
| 72c6ee4788 | |||
| 7080ff369f | |||
| 63e2be37b1 | |||
| 2adf8b9bc9 | |||
| 9dfafaf56f | |||
| dde6a4296a | |||
| 5a856d6e0c | |||
| caee01d53c | |||
| b53ad49306 | |||
| 39f62d81b2 | |||
| 15a27535c3 | |||
| 26c280015d | |||
| 2d1fff81f5 | |||
| f63abc8fa3 | |||
| a190eb96a1 | |||
| 038b8c207c | |||
| 851a4f4afc | |||
| 059805cebd | |||
| f801ea37ff | |||
| 48662f5c93 | |||
| c6ba900c9f | |||
| 16e76380fd | |||
| 2bdf3cf655 | |||
| 4d43e28b3d | |||
| 368feadc01 | |||
| 177645e723 | |||
| 31cc5ebc86 | |||
| 4b7dc0d264 | |||
| 055c69b3f5 | |||
| 5ddd5a444b | |||
| d9a21a69f7 | |||
| 0bb75e34c6 | |||
| 000c61779f | |||
| b80012105d | |||
| 5c589d8aca | |||
| 3a2343b928 | |||
| 07ef0a0731 | |||
| 82227fde4d | |||
| 5eccc7da6a | |||
| b234afe7ad | |||
| ca4088ce3c | |||
| 091251d72a | |||
| 81475f2b41 | |||
| 78fb46fd57 | |||
| 8dd74aadcd | |||
| d16ebcda53 | |||
| 6e698b2706 | |||
| 9282e43e4a | |||
| 7b5dbc7e21 | |||
| 9c14d757c5 | |||
| e8edf31809 | |||
| 8f46901738 | |||
| a075c524ae | |||
| aa2d946c6d | |||
| 1da5c4fc79 | |||
| 6244eb512f | |||
| 255030d81f | |||
| 3ab37cdb5c | |||
| 737955dcfb | |||
| 2b8c1fb21e | |||
| ecf334e572 | |||
| 8847c70db3 | |||
| deed20fab3 | |||
| 2ca4c3be3f | |||
| 22dccb2fc8 |
@@ -1,18 +0,0 @@
|
||||
name: CI 🔨
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: ["main"]
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: npm install --production
|
||||
- run: "./test.sh"
|
||||
@@ -1,72 +0,0 @@
|
||||
# For most projects, this workflow file will not need changing; you simply need
|
||||
# to commit it to your repository.
|
||||
#
|
||||
# You may wish to alter this file to override the set of languages analyzed,
|
||||
# or to provide custom queries or build logic.
|
||||
#
|
||||
# ******** NOTE ********
|
||||
# We have attempted to detect the languages in your repository. Please check
|
||||
# the `language` matrix defined below to confirm you have the correct set of
|
||||
# supported CodeQL languages.
|
||||
#
|
||||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '21 9 * * 1'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'javascript' ]
|
||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
||||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
|
||||
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
||||
# queries: security-extended,security-and-quality
|
||||
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||
|
||||
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
||||
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
||||
|
||||
# - run: |
|
||||
# echo "Run, Build Application using script"
|
||||
# ./location_of_script_within_repo/buildscript.sh
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2
|
||||
@@ -1,62 +0,0 @@
|
||||
name: Deploy 🚀
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Pages
|
||||
uses: actions/configure-pages@v5
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm i --production
|
||||
|
||||
- name: Build Site
|
||||
run: |
|
||||
mkdir ./_site
|
||||
cp favicon.ico ./_site
|
||||
touch ./_site/.nojekyll
|
||||
node action.js html ./_site/index.html
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: "./_site"
|
||||
|
||||
# Deployment job
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
@@ -1,2 +0,0 @@
|
||||
node_modules
|
||||
_site
|
||||
@@ -1 +0,0 @@
|
||||
* @actions/maintainers
|
||||
@@ -1,24 +0,0 @@
|
||||
# GitHub Actions humans.txt
|
||||
|
||||
[Lists out](https://actions.github.io/humans.txt) the humans who work, or worked, on the GitHub Actions product.
|
||||
|
||||
## Contributing
|
||||
|
||||
Add yourself via PR if you work or worked on the product ❤️
|
||||
|
||||
To respect each individual's privacy, do not add anyone to this list without asking them first.
|
||||
|
||||
## Inputs
|
||||
|
||||
### `format`
|
||||
|
||||
Options: `txt`, `json`, `shell`
|
||||
|
||||
- txt - a plaintext list of humans
|
||||
- json - a list of humans formatted for computers or humans who like their information computery
|
||||
- shell - a lovely colourful list of humans making full use of advanced terminal escape-code technology
|
||||
- html - a gh-pages friendly html output, which looks like a plaintext humans.txt
|
||||
|
||||
## humans.txt
|
||||
|
||||
This automatically deploys to https://actions.github.io/humans.txt.
|
||||
@@ -1,76 +0,0 @@
|
||||
'use strict'
|
||||
|
||||
const fs = require('fs')
|
||||
const yaml = require('yaml')
|
||||
const chalk = require('chalk')
|
||||
|
||||
const formatters = {
|
||||
txt: txtFormatter,
|
||||
html: htmlFormatter,
|
||||
json: jsonFormatter,
|
||||
shell: (data, opts) => txtFormatter(data, { ...opts, colors: true}),
|
||||
}
|
||||
|
||||
main()
|
||||
|
||||
function main() {
|
||||
const format = process.argv[2] || ((process.env.GITHUB_ACTION || process.stdout.isTTY) ? "shell" : "txt")
|
||||
const output = process.argv[3] ? fs.openSync(process.argv[3], "w+") : 1;
|
||||
|
||||
const formatter = formatters[format]
|
||||
if (!formatter) {
|
||||
invalidFormat(format)
|
||||
return
|
||||
}
|
||||
|
||||
const data = yaml.parse(fs.readFileSync(__dirname + "/humans.txt.yaml", {encoding: "utf8"}))
|
||||
|
||||
data.humans = data.humans.sort((a,b) => a.name > b.name ? 1 : -1)
|
||||
|
||||
formatter(data, {output})
|
||||
}
|
||||
|
||||
function invalidFormat(format) {
|
||||
const list = Object.keys(formatters).sort().join(",")
|
||||
console.error(`'${format}' is not one of the accepted formats ${list}`)
|
||||
process.exitCode = 1
|
||||
return
|
||||
}
|
||||
|
||||
function jsonFormatter({humans}, {output}) {
|
||||
fs.writeSync(output, JSON.stringify(humans, null, 4))
|
||||
}
|
||||
|
||||
function txtFormatter({humans}, {colors = false, output} = {}) {
|
||||
let active = humans.filter(h => !h.alum).map(h => h.name)
|
||||
let alum = humans.filter(h => h.alum).map(h => h.name)
|
||||
|
||||
if(colors) {
|
||||
const total = active.length + alum.length
|
||||
active = mapColorRange(active, 0, total)
|
||||
alum = mapColorRange(alum, active.length, total)
|
||||
}
|
||||
|
||||
fs.writeSync(output, "Current humans\n")
|
||||
fs.writeSync(output,"==============\n\n")
|
||||
fs.writeSync(output,active.join("\n"))
|
||||
fs.writeSync(output,"\n\n")
|
||||
|
||||
fs.writeSync(output,"Human alumni\n")
|
||||
fs.writeSync(output,"============\n\n")
|
||||
fs.writeSync(output,alum.join("\n"))
|
||||
}
|
||||
|
||||
function mapColorRange(strings, base, total) {
|
||||
return strings.map((n, i) => chalk.hsl(((i + base) / total) * 360, 100, 50)(n))
|
||||
}
|
||||
|
||||
function htmlFormatter(data, opts) {
|
||||
fs.writeSync(opts.output, `<!doctype html>
|
||||
<meta charset='utf8' />
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
<title>Actions - humans.txt</title>
|
||||
<body><pre>`)
|
||||
txtFormatter(data, opts)
|
||||
fs.writeSync(opts.output, "</pre></body>")
|
||||
}
|
||||
-165
@@ -1,165 +0,0 @@
|
||||
# add yourself to this list as a yaml
|
||||
# object with the following keys:
|
||||
# - name - string - your name
|
||||
# - alum - boolean - whether you no longer work on Actions
|
||||
humans:
|
||||
- name: "Adrian Mato Gondelle"
|
||||
- name: "Ajay Krishna Nalisetty"
|
||||
alum: true
|
||||
- name: "Alberto Gimeno"
|
||||
alum: true
|
||||
- name: "Allan Guigou"
|
||||
- name: "Amarilis Dias"
|
||||
alum: true
|
||||
- name: "Andrew Appleton"
|
||||
alum: true
|
||||
- name: "Angela Rivera"
|
||||
alum: true
|
||||
- name: "Anna Rosenthal"
|
||||
alum: true
|
||||
- name: "Anthony Sterling"
|
||||
alum: true
|
||||
- name: "Antoine Grondin"
|
||||
alum: true
|
||||
- name: "Aris Acoba"
|
||||
- name: "Bassem Dghaidi"
|
||||
- name: "Belinda Vennam"
|
||||
alum: true
|
||||
- name: "Beth Brennan"
|
||||
- name: "Bethany Janos"
|
||||
alum: true
|
||||
- name: "Brian Cristante"
|
||||
alum: true
|
||||
- name: "Brittany Ellich"
|
||||
alum: true
|
||||
- name: "Bryan MacFarlane"
|
||||
- name: "Cameron Booth"
|
||||
alum: true
|
||||
- name: "Catherine Osadciw"
|
||||
alum: true
|
||||
- name: "Cedric Wille"
|
||||
alum: true
|
||||
- name: "Chad Kimes"
|
||||
alum: true
|
||||
- name: "Christina Guo"
|
||||
alum: true
|
||||
- name: "Christopher Schleiden"
|
||||
alum: true
|
||||
- name: "Cory Miller"
|
||||
alum: true
|
||||
- name: "Crystal Tenn"
|
||||
alum: true
|
||||
- name: "Dan Rigby"
|
||||
alum: true
|
||||
- name: "David Daly"
|
||||
alum: true
|
||||
- name: "Dylan Smith"
|
||||
alum: true
|
||||
- name: "Edwin Sirko"
|
||||
- name: "Erez Testiler"
|
||||
alum: true
|
||||
- name: "Eric Sciple"
|
||||
- name: "Erika Eggemeyer"
|
||||
alum: true
|
||||
- name: "Felipe Suero"
|
||||
alum: true
|
||||
- name: "Florian Wagner"
|
||||
alum: true
|
||||
- name: "Francesco Renzi"
|
||||
alum: true
|
||||
- name: "Guðmundur Bjarni Ólafsson"
|
||||
alum: true
|
||||
- name: "Hayden Faulds"
|
||||
alum: true
|
||||
- name: "Iheanyi Ekechukwu"
|
||||
alum: true
|
||||
- name: "Isaac Shalom"
|
||||
alum: true
|
||||
- name: "Jacob Wallraff"
|
||||
- name: "Jason Long"
|
||||
alum: true
|
||||
- name: "Javier Perez"
|
||||
alum: true
|
||||
- name: "Jean-Philippe André"
|
||||
alum: true
|
||||
- name: "Jeff Martin"
|
||||
- name: "Jeroen Rietveld"
|
||||
alum: true
|
||||
- name: "Joanna Krzek-Lubowiecka"
|
||||
- name: "Johanan Idicula"
|
||||
alum: true
|
||||
- name: "Joel Ambass"
|
||||
alum: true
|
||||
- name: "Jonathan Clem"
|
||||
alum: true
|
||||
- name: "Jonathan Tamsut"
|
||||
alum: true
|
||||
- name: "John Mills"
|
||||
alum: true
|
||||
- name: "John Wesley Walker III"
|
||||
- name: "Joris Abalea"
|
||||
alum: true
|
||||
- name: "Josh Gross"
|
||||
alum: true
|
||||
- name: "Julian Dunn"
|
||||
alum: true
|
||||
- name: "Julio Barba"
|
||||
alum: true
|
||||
- name: "Kamil Grzebien"
|
||||
alum: true
|
||||
- name: "Konrad Pabjan"
|
||||
alum: true
|
||||
- name: "Laura Yu"
|
||||
alum: true
|
||||
- name: "Liela Rotschy"
|
||||
alum: true
|
||||
- name: "Maggie Spletzer"
|
||||
alum: true
|
||||
- name: "Matt Burke"
|
||||
alum: true
|
||||
- name: "Melissa Xie"
|
||||
alum: true
|
||||
- name: "Mike Coutermarsh"
|
||||
alum: true
|
||||
- name: Mona Lisa Octocat
|
||||
honorary_human: true
|
||||
- name: "Nicholas Bergesen"
|
||||
alum: true
|
||||
- name: "Parker Moore"
|
||||
alum: true
|
||||
- name: "Patrick Ellis"
|
||||
- name: "Patrick Marsceill"
|
||||
alum: true
|
||||
- name: "Pete Wagner"
|
||||
alum: true
|
||||
- name: "Peter Tasker"
|
||||
alum: true
|
||||
- name: "Phani Raj"
|
||||
alum: true
|
||||
- name: "Philip Gai"
|
||||
- name: "PJ Quirk"
|
||||
- name: "Ryan Troost"
|
||||
- name: "Rob Herley"
|
||||
alum: true
|
||||
- name: "Ross Brodbeck"
|
||||
alum: true
|
||||
- name: "Seth Rylan Gainey"
|
||||
alum: true
|
||||
- name: "Sneha Kripanandan"
|
||||
- name: "Soe Tun"
|
||||
alum: true
|
||||
- name: "Sven Pfleiderer"
|
||||
alum: true
|
||||
- name: "Thomas Brumley"
|
||||
alum: true
|
||||
- name: "Tim Ruffles"
|
||||
alum: true
|
||||
- name: "Vallie Joseph"
|
||||
alum: true
|
||||
- name: "Yaswanth Anantharaju"
|
||||
- name: "Yang Cao"
|
||||
- name: "Yena Kim"
|
||||
alum: true
|
||||
- name: "Yujin Shin"
|
||||
alum: true
|
||||
- name: "Zachary Taylor"
|
||||
+89
@@ -0,0 +1,89 @@
|
||||
<!doctype html>
|
||||
<meta charset='utf8' />
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
<title>Actions - humans.txt</title>
|
||||
<body><pre>Current humans
|
||||
==============
|
||||
|
||||
Adrian Mato Gondelle
|
||||
Allan Guigou
|
||||
Amarilis Dias
|
||||
Antoine Grondin
|
||||
Aris Acoba
|
||||
Bassem Dghaidi
|
||||
Belinda Vennam
|
||||
Beth Brennan
|
||||
Bethany Janos
|
||||
Brian Cristante
|
||||
Brittany Ellich
|
||||
Bryan MacFarlane
|
||||
Cameron Booth
|
||||
Cedric Wille
|
||||
Chad Kimes
|
||||
Christina Guo
|
||||
Christopher Schleiden
|
||||
Crystal Tenn
|
||||
Dan Rigby
|
||||
Dylan Smith
|
||||
Erez Testiler
|
||||
Eric Sciple
|
||||
Felipe Suero
|
||||
Francesco Renzi
|
||||
Isaac Shalom
|
||||
Jacob Wallraff
|
||||
Javier Perez
|
||||
Jeff Martin
|
||||
Joanna Krzek-Lubowiecka
|
||||
Johanan Idicula
|
||||
John Mills
|
||||
Jonathan Clem
|
||||
Jonathan Tamsut
|
||||
Josh Gross
|
||||
Julian Dunn
|
||||
Julio Barba
|
||||
Kamil Grzebien
|
||||
Konrad Pabjan
|
||||
Maggie Spletzer
|
||||
Mona Lisa Octocat
|
||||
PJ Quirk
|
||||
Peter Tasker
|
||||
Philip Gai
|
||||
Rob Herley
|
||||
Ross Brodbeck
|
||||
Ryan Troost
|
||||
Seth Rylan Gainey
|
||||
Soe Tun
|
||||
Sven Pfleiderer
|
||||
Thomas Brumley
|
||||
Yang Cao
|
||||
Yaswanth Anantharaju
|
||||
|
||||
Human alumni
|
||||
============
|
||||
|
||||
Ajay Krishna Nalisetty
|
||||
Alberto Gimeno
|
||||
Andrew Appleton
|
||||
Angela Rivera
|
||||
Anna Rosenthal
|
||||
Anthony Sterling
|
||||
Catherine Osadciw
|
||||
Florian Wagner
|
||||
Guðmundur Bjarni Ólafsson
|
||||
Hayden Faulds
|
||||
Iheanyi Ekechukwu
|
||||
Jason Long
|
||||
Jean-Philippe André
|
||||
Jeroen Rietveld
|
||||
Joris Abalea
|
||||
Matt Burke
|
||||
Melissa Xie
|
||||
Mike Coutermarsh
|
||||
Nicholas Bergesen
|
||||
Parker Moore
|
||||
Patrick Marsceill
|
||||
Pete Wagner
|
||||
Phani Raj
|
||||
Tim Ruffles
|
||||
Yena Kim
|
||||
Yujin Shin</pre></body>
|
||||
Generated
-97
@@ -1,97 +0,0 @@
|
||||
{
|
||||
"name": "humans.txt",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"dependencies": {
|
||||
"chalk": "3.0.0",
|
||||
"yaml": "1.7.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/runtime": {
|
||||
"version": "7.27.3",
|
||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.3.tgz",
|
||||
"integrity": "sha512-7EYtGezsdiDMyY80+65EzwiGmcJqpmcZCojSXaRgdrBaGtWTgDZKq69cPIVped6MkIM78cTQ2GOiEYjwOlG4xw==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/color-name": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
|
||||
"integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
|
||||
},
|
||||
"node_modules/ansi-styles": {
|
||||
"version": "4.2.0",
|
||||
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.0.tgz",
|
||||
"integrity": "sha512-7kFQgnEaMdRtwf6uSfUnVr9gSGC7faurn+J/Mv90/W+iTtN0405/nLdopfMWwchyxhbGYl6TC4Sccn9TUkGAgg==",
|
||||
"dependencies": {
|
||||
"@types/color-name": "^1.1.1",
|
||||
"color-convert": "^2.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/chalk": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
||||
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
||||
"dependencies": {
|
||||
"ansi-styles": "^4.1.0",
|
||||
"supports-color": "^7.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/color-convert": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
||||
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
||||
"dependencies": {
|
||||
"color-name": "~1.1.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=7.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/color-name": {
|
||||
"version": "1.1.4",
|
||||
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
||||
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
||||
},
|
||||
"node_modules/has-flag": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
||||
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/supports-color": {
|
||||
"version": "7.1.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
||||
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
||||
"dependencies": {
|
||||
"has-flag": "^4.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/yaml": {
|
||||
"version": "1.7.2",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.7.2.tgz",
|
||||
"integrity": "sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.6.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 6"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"chalk": "3.0.0",
|
||||
"yaml": "1.7.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user