Install yarn
This commit is contained in:
parent
0453e84836
commit
1fde8a81be
1927 changed files with 82144 additions and 83317 deletions
15
node_modules/fancy-log/node_modules/.bin/color-support
generated
vendored
Normal file
15
node_modules/fancy-log/node_modules/.bin/color-support
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||
|
||||
case `uname` in
|
||||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||
esac
|
||||
|
||||
if [ -x "$basedir/node" ]; then
|
||||
"$basedir/node" "$basedir/../../../color-support/bin.js" "$@"
|
||||
ret=$?
|
||||
else
|
||||
node "$basedir/../../../color-support/bin.js" "$@"
|
||||
ret=$?
|
||||
fi
|
||||
exit $ret
|
7
node_modules/fancy-log/node_modules/.bin/color-support.cmd
generated
vendored
Normal file
7
node_modules/fancy-log/node_modules/.bin/color-support.cmd
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
@IF EXIST "%~dp0\node.exe" (
|
||||
"%~dp0\node.exe" "%~dp0\..\..\..\color-support\bin.js" %*
|
||||
) ELSE (
|
||||
@SETLOCAL
|
||||
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||
node "%~dp0\..\..\..\color-support\bin.js" %*
|
||||
)
|
100
node_modules/fancy-log/package.json
generated
vendored
100
node_modules/fancy-log/package.json
generated
vendored
|
@ -1,64 +1,35 @@
|
|||
{
|
||||
"_args": [
|
||||
[
|
||||
"fancy-log@1.3.3",
|
||||
"F:\\laragon\\www\\wishthis"
|
||||
]
|
||||
],
|
||||
"_from": "fancy-log@1.3.3",
|
||||
"_id": "fancy-log@1.3.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==",
|
||||
"_location": "/fancy-log",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "fancy-log@1.3.3",
|
||||
"name": "fancy-log",
|
||||
"escapedName": "fancy-log",
|
||||
"rawSpec": "1.3.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.3.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/gulp-autoprefixer",
|
||||
"/gulp-cli",
|
||||
"/gulp-debug",
|
||||
"/gulp-git",
|
||||
"/gulp-notify",
|
||||
"/gulp-plumber",
|
||||
"/gulp-print",
|
||||
"/gulp-util"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz",
|
||||
"_spec": "1.3.3",
|
||||
"_where": "F:\\laragon\\www\\wishthis",
|
||||
"author": {
|
||||
"name": "Gulp Team",
|
||||
"email": "team@gulpjs.com",
|
||||
"url": "http://gulpjs.com/"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/gulpjs/fancy-log/issues"
|
||||
},
|
||||
"name": "fancy-log",
|
||||
"version": "1.3.3",
|
||||
"description": "Log things, prefixed with a timestamp.",
|
||||
"author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Blaine Bublitz",
|
||||
"email": "blaine.bublitz@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Aman Mittal",
|
||||
"url": "http://amandeepmittal.github.io/"
|
||||
}
|
||||
"Blaine Bublitz <blaine.bublitz@gmail.com>",
|
||||
"Aman Mittal (http://amandeepmittal.github.io/)"
|
||||
],
|
||||
"repository": "gulpjs/fancy-log",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.10"
|
||||
},
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
"LICENSE",
|
||||
"index.js"
|
||||
],
|
||||
"scripts": {
|
||||
"lint": "eslint .",
|
||||
"pretest": "npm run lint",
|
||||
"test": "mocha --async-only",
|
||||
"cover": "istanbul cover _mocha --report lcovonly",
|
||||
"coveralls": "npm run cover && istanbul-coveralls"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-gray": "^0.1.1",
|
||||
"color-support": "^1.1.3",
|
||||
"parse-node-version": "^1.0.0",
|
||||
"time-stamp": "^1.0.0"
|
||||
},
|
||||
"description": "Log things, prefixed with a timestamp.",
|
||||
"devDependencies": {
|
||||
"eslint": "^2.13.0",
|
||||
"eslint-config-gulp": "^3.0.1",
|
||||
|
@ -67,14 +38,6 @@
|
|||
"istanbul-coveralls": "^1.0.3",
|
||||
"mocha": "^3.5.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.10"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE",
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/gulpjs/fancy-log#readme",
|
||||
"keywords": [
|
||||
"console.log",
|
||||
"log",
|
||||
|
@ -82,20 +45,5 @@
|
|||
"logging",
|
||||
"pretty",
|
||||
"timestamp"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "fancy-log",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/gulpjs/fancy-log.git"
|
||||
},
|
||||
"scripts": {
|
||||
"cover": "istanbul cover _mocha --report lcovonly",
|
||||
"coveralls": "npm run cover && istanbul-coveralls",
|
||||
"lint": "eslint .",
|
||||
"pretest": "npm run lint",
|
||||
"test": "mocha --async-only"
|
||||
},
|
||||
"version": "1.3.3"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue