mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-10 21:01:41 +00:00
update
This commit is contained in:
21
node_modules/file-exists-dazinatorfork/LICENSE
generated
vendored
Normal file
21
node_modules/file-exists-dazinatorfork/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Scott Corgan
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
48
node_modules/file-exists-dazinatorfork/README.md
generated
vendored
Normal file
48
node_modules/file-exists-dazinatorfork/README.md
generated
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
# file-exists
|
||||
|
||||
Check if filepath exists and is a file. Returns false for directories.
|
||||
|
||||
_(Requires node >=6.0.0)_
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
npm install file-exists --save
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const fileExists = require('file-exists');
|
||||
|
||||
fileExists('/index.html', (err, exists) => console.log(exists)) // OUTPUTS: true or false
|
||||
|
||||
fileExists('/index.html').then(exists => {
|
||||
console.log(exists) // OUTPUTS: true or false
|
||||
})
|
||||
|
||||
const exists = await fileExists('/index.html')
|
||||
|
||||
console.log(fileExists.sync('/index.html')) // OUTPUTS: true or false
|
||||
```
|
||||
|
||||
### Options
|
||||
|
||||
#### fileExists(filepath[, options, callback])
|
||||
|
||||
* `filepath` - the path to the file to check if it exists
|
||||
* `options` - an object of options
|
||||
* `root` - the root directory to look in (or cwd)
|
||||
* `callback(err, exists)` - gets called when checking is done
|
||||
|
||||
#### fileExists.sync(filepath[, options])
|
||||
* `filepath` - the path to the file to check if it exists
|
||||
* `options` - an object of options
|
||||
* `root` - the root directory to look in (or cwd)
|
||||
|
||||
## Run Tests
|
||||
|
||||
```
|
||||
npm install
|
||||
npm test
|
||||
```
|
15
node_modules/file-exists-dazinatorfork/appveyor.yml
generated
vendored
Normal file
15
node_modules/file-exists-dazinatorfork/appveyor.yml
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
environment:
|
||||
#nodejs_version: 6
|
||||
npm_authtoken:
|
||||
secure: ZFDpQDP37rVIg8if7QBpgVgCYhEtuaB6k/7Kd5VdZf5X9Eyi3wtdBZxnYLPpIVnH
|
||||
build: off
|
||||
|
||||
install:
|
||||
#- ps: Install-Product node $env:nodejs_version
|
||||
- ps: npm install --loglevel=error
|
||||
- ps: '"//registry.npmjs.org/:_authToken=$env:npm_authtoken`n" | out-file "$env:userprofile\.npmrc" -Encoding ASCII'
|
||||
- ps: npm whoami
|
||||
|
||||
deploy_script:
|
||||
- ps: npm --no-git-tag-version version %APPVEYOR_BUILD_VERSION%
|
||||
- ps: npm publish --loglevel=error
|
64
node_modules/file-exists-dazinatorfork/index.js
generated
vendored
Normal file
64
node_modules/file-exists-dazinatorfork/index.js
generated
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
|
||||
function fileExists (filepath, options, done) {
|
||||
if (typeof options === 'function') {
|
||||
done = options
|
||||
options = {}
|
||||
}
|
||||
|
||||
var fileSystem = fs;
|
||||
if(options && options.fileSystem)
|
||||
{
|
||||
fileSystem = options.fileSystem
|
||||
}
|
||||
|
||||
if (!done) {
|
||||
return new Promise((resolve, reject) => {
|
||||
fileSystem.stat(fullPath(filepath, options), (err, stats) => {
|
||||
if (err) {
|
||||
return err.code === 'ENOENT'
|
||||
? resolve(false)
|
||||
: reject(err)
|
||||
}
|
||||
resolve(stats.isFile())
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
fileSystem.stat(fullPath(filepath, options), (err, stats) => {
|
||||
if (err) {
|
||||
return err.code === 'ENOENT'
|
||||
? done(null, false)
|
||||
: done(err)
|
||||
}
|
||||
|
||||
done(null, stats.isFile())
|
||||
})
|
||||
}
|
||||
|
||||
fileExists.sync = function fileExistsSync (filepath, options) {
|
||||
const _filepath = filepath || '';
|
||||
const _options = options || {};
|
||||
try {
|
||||
var fileSystem = _options.fileSystem || fs;
|
||||
return fileSystem.statSync(fullPath(_filepath, _options)).isFile()
|
||||
}
|
||||
catch (e) {
|
||||
// Check exception. If ENOENT - no such file or directory ok, file doesn't exist.
|
||||
// Otherwise something else went wrong, we don't have rights to access the file, ...
|
||||
if (e.code != 'ENOENT') {
|
||||
throw e
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
function fullPath (filepath, options) {
|
||||
const _options = options || {};
|
||||
const root = _options.root;
|
||||
return (root) ? path.join(root, filepath) : filepath
|
||||
}
|
||||
|
||||
module.exports = fileExists
|
70
node_modules/file-exists-dazinatorfork/package.json
generated
vendored
Normal file
70
node_modules/file-exists-dazinatorfork/package.json
generated
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"file-exists-dazinatorfork@1.0.2",
|
||||
"/Users/tatiana/selfdefined"
|
||||
]
|
||||
],
|
||||
"_from": "file-exists-dazinatorfork@1.0.2",
|
||||
"_id": "file-exists-dazinatorfork@1.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-r70c72ln2YHzQINNfxDp02hAhbGkt1HffZ+Du8oetWDLjDtFja/Lm10lUaSh9e+wD+7VDvPee0b0C9SAy8pWZg==",
|
||||
"_location": "/file-exists-dazinatorfork",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "file-exists-dazinatorfork@1.0.2",
|
||||
"name": "file-exists-dazinatorfork",
|
||||
"escapedName": "file-exists-dazinatorfork",
|
||||
"rawSpec": "1.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/module-lookup-amd"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/file-exists-dazinatorfork/-/file-exists-dazinatorfork-1.0.2.tgz",
|
||||
"_spec": "1.0.2",
|
||||
"_where": "/Users/tatiana/selfdefined",
|
||||
"author": {
|
||||
"name": "Scott Corgan"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/dazinator/file-exists/issues"
|
||||
},
|
||||
"description": "Check if filepath exists and is a file. Note this is a fork of file-exists dpenedency with some ammendments.",
|
||||
"devDependencies": {
|
||||
"@tap-format/spec": "^0.2.0",
|
||||
"async": "^2.1.4",
|
||||
"memfs": "^2.14.1",
|
||||
"mkdirp": "0.5.1",
|
||||
"rmdir": "1.2.0",
|
||||
"tape": "4.6.3"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/dazinator/file-exists",
|
||||
"keywords": [
|
||||
"file",
|
||||
"exists",
|
||||
"fs",
|
||||
"isfile",
|
||||
"is-file"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "file-exists-dazinatorfork",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/dazinator/file-exists.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "node test/index.js | tap-format-spec"
|
||||
},
|
||||
"version": "1.0.2"
|
||||
}
|
76
node_modules/file-exists-dazinatorfork/test/index.js
generated
vendored
Normal file
76
node_modules/file-exists-dazinatorfork/test/index.js
generated
vendored
Normal file
@ -0,0 +1,76 @@
|
||||
const fileExists = require('../')
|
||||
const test = require('tape')
|
||||
const fs = require('fs')
|
||||
const mkdirp = require('mkdirp')
|
||||
const rmdir = require('rmdir')
|
||||
const async = require('async')
|
||||
const memfs = require('memfs')
|
||||
|
||||
test('async', t => {
|
||||
mkdirp.sync('.tmp')
|
||||
fs.writeFileSync('.tmp/index.html', 'test', 'utf8')
|
||||
|
||||
async.parallel([
|
||||
done => {
|
||||
fileExists('.tmp/index.html', (err, exists) => {
|
||||
t.ok(exists, 'file does exist')
|
||||
done()
|
||||
})
|
||||
},
|
||||
done => {
|
||||
fileExists('/index.html', {root: '.tmp'}, (err, exists) => {
|
||||
t.ok(exists, 'file exists in given root directory')
|
||||
done()
|
||||
})
|
||||
},
|
||||
done => {
|
||||
fileExists('.tmp', (err, exists) => {
|
||||
t.notOk(exists, 'directory is not a file')
|
||||
done()
|
||||
})
|
||||
},
|
||||
done => {
|
||||
fileExists('not.here', (err, exists) => {
|
||||
t.notOk(err, 'non-existing file doesn\'t throw')
|
||||
t.notOk(exists, 'non-existing file doesn\'t exist')
|
||||
done()
|
||||
})
|
||||
},
|
||||
done => {
|
||||
fileExists('promise-not.here').then(exists => {
|
||||
t.notOk(exists, 'promise: non-existing file doesn\'t exist')
|
||||
done()
|
||||
})
|
||||
},
|
||||
done => {
|
||||
fileExists('.tmp/index.html').then(exists => {
|
||||
t.ok(exists, 'promise: existing file exists')
|
||||
done()
|
||||
})
|
||||
},
|
||||
done => {
|
||||
var testVolume = memfs.Volume.fromJSON({'./mem.html':'test'}, 'app');
|
||||
fileExists('app/mem.html', {fileSystem: testVolume}).then(exists => {
|
||||
t.ok(exists, 'promise: existing file in alternative fs exists')
|
||||
done()
|
||||
})
|
||||
}
|
||||
], err => {
|
||||
rmdir('.tmp', () => t.end())
|
||||
})
|
||||
})
|
||||
|
||||
test('sync', t => {
|
||||
mkdirp.sync('.tmp')
|
||||
fs.writeFileSync('.tmp/index.html', 'test', 'utf8')
|
||||
|
||||
t.ok(fileExists.sync('.tmp/index.html'), 'file does exist')
|
||||
t.ok(fileExists.sync('/index.html', {root: '.tmp'}), 'file exists in given root directory')
|
||||
t.notOk(fileExists.sync('.tmp'), 'directory is not a file')
|
||||
t.notOk(fileExists.sync('not.here'), 'non-existing file doesn\'t exist')
|
||||
|
||||
var testVolume = memfs.Volume.fromJSON({'./mem.html':'test'}, 'app');
|
||||
t.ok(fileExists.sync('app/mem.html', {fileSystem: testVolume}), 'file does exist')
|
||||
|
||||
rmdir('.tmp', () => t.end())
|
||||
})
|
454
node_modules/file-exists-dazinatorfork/yarn.lock
generated
vendored
Normal file
454
node_modules/file-exists-dazinatorfork/yarn.lock
generated
vendored
Normal file
@ -0,0 +1,454 @@
|
||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
|
||||
|
||||
"@tap-format/exit@0.2.0":
|
||||
version "0.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@tap-format/exit/-/exit-0.2.0.tgz#b58736bc55d30802c012c5adfca51b47040310cd"
|
||||
dependencies:
|
||||
ramda "^0.18.0"
|
||||
rx "^4.0.7"
|
||||
|
||||
"@tap-format/failures@0.2.0":
|
||||
version "0.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@tap-format/failures/-/failures-0.2.0.tgz#bb6f5edc3bc3c57c62885bc7c214cc7abdfc2a07"
|
||||
dependencies:
|
||||
chalk "^1.1.1"
|
||||
diff "^2.2.1"
|
||||
figures "^1.4.0"
|
||||
ramda "^0.18.0"
|
||||
rx "^4.0.7"
|
||||
|
||||
"@tap-format/parser@0.2.0":
|
||||
version "0.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@tap-format/parser/-/parser-0.2.0.tgz#bdc1d95e694781157593283bb3c3fec132a3115d"
|
||||
dependencies:
|
||||
duplexer "^0.1.1"
|
||||
js-yaml "^3.4.6"
|
||||
ramda "^0.18.0"
|
||||
readable-stream "^2.0.4"
|
||||
rx "^4.0.7"
|
||||
rx-node "^1.0.1"
|
||||
split "^1.0.0"
|
||||
|
||||
"@tap-format/results@0.2.0":
|
||||
version "0.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@tap-format/results/-/results-0.2.0.tgz#192d64ac41f146fa2722db1c0a22ed80478f54fd"
|
||||
dependencies:
|
||||
chalk "^1.1.1"
|
||||
hirestime "^1.0.6"
|
||||
pretty-ms "^2.1.0"
|
||||
rx "^4.0.7"
|
||||
|
||||
"@tap-format/spec@^0.2.0":
|
||||
version "0.2.0"
|
||||
resolved "https://registry.yarnpkg.com/@tap-format/spec/-/spec-0.2.0.tgz#93f7d2f0dcefe526b4776800b9bd7f80db5aaec7"
|
||||
dependencies:
|
||||
"@tap-format/exit" "0.2.0"
|
||||
"@tap-format/failures" "0.2.0"
|
||||
"@tap-format/parser" "0.2.0"
|
||||
"@tap-format/results" "0.2.0"
|
||||
chalk "^1.1.1"
|
||||
figures "^1.4.0"
|
||||
rx "^4.0.7"
|
||||
|
||||
ansi-regex@^2.0.0:
|
||||
version "2.1.1"
|
||||
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
|
||||
|
||||
ansi-styles@^2.2.1:
|
||||
version "2.2.1"
|
||||
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
||||
|
||||
argparse@^1.0.7:
|
||||
version "1.0.9"
|
||||
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
|
||||
dependencies:
|
||||
sprintf-js "~1.0.2"
|
||||
|
||||
async@^2.1.4:
|
||||
version "2.6.0"
|
||||
resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
|
||||
dependencies:
|
||||
lodash "^4.14.0"
|
||||
|
||||
balanced-match@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
|
||||
|
||||
brace-expansion@^1.1.7:
|
||||
version "1.1.8"
|
||||
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
|
||||
dependencies:
|
||||
balanced-match "^1.0.0"
|
||||
concat-map "0.0.1"
|
||||
|
||||
chalk@^1.1.1:
|
||||
version "1.1.3"
|
||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
||||
dependencies:
|
||||
ansi-styles "^2.2.1"
|
||||
escape-string-regexp "^1.0.2"
|
||||
has-ansi "^2.0.0"
|
||||
strip-ansi "^3.0.0"
|
||||
supports-color "^2.0.0"
|
||||
|
||||
concat-map@0.0.1:
|
||||
version "0.0.1"
|
||||
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
||||
|
||||
core-util-is@~1.0.0:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
||||
|
||||
deep-equal@~1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
|
||||
|
||||
define-properties@^1.1.2:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
|
||||
dependencies:
|
||||
foreach "^2.0.5"
|
||||
object-keys "^1.0.8"
|
||||
|
||||
defined@~1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
|
||||
|
||||
diff@^2.2.1:
|
||||
version "2.2.3"
|
||||
resolved "https://registry.yarnpkg.com/diff/-/diff-2.2.3.tgz#60eafd0d28ee906e4e8ff0a52c1229521033bf99"
|
||||
|
||||
duplexer@^0.1.1:
|
||||
version "0.1.1"
|
||||
resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
|
||||
|
||||
es-abstract@^1.5.0:
|
||||
version "1.10.0"
|
||||
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
|
||||
dependencies:
|
||||
es-to-primitive "^1.1.1"
|
||||
function-bind "^1.1.1"
|
||||
has "^1.0.1"
|
||||
is-callable "^1.1.3"
|
||||
is-regex "^1.0.4"
|
||||
|
||||
es-to-primitive@^1.1.1:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
|
||||
dependencies:
|
||||
is-callable "^1.1.1"
|
||||
is-date-object "^1.0.1"
|
||||
is-symbol "^1.0.1"
|
||||
|
||||
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
|
||||
version "1.0.5"
|
||||
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
||||
|
||||
esprima@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
|
||||
|
||||
figures@^1.4.0:
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
|
||||
dependencies:
|
||||
escape-string-regexp "^1.0.5"
|
||||
object-assign "^4.1.0"
|
||||
|
||||
for-each@~0.3.2:
|
||||
version "0.3.2"
|
||||
resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.2.tgz#2c40450b9348e97f281322593ba96704b9abd4d4"
|
||||
dependencies:
|
||||
is-function "~1.0.0"
|
||||
|
||||
foreach@^2.0.5:
|
||||
version "2.0.5"
|
||||
resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
|
||||
|
||||
fs.realpath@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
||||
|
||||
function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.0:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
||||
|
||||
glob@~7.1.1:
|
||||
version "7.1.2"
|
||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
||||
dependencies:
|
||||
fs.realpath "^1.0.0"
|
||||
inflight "^1.0.4"
|
||||
inherits "2"
|
||||
minimatch "^3.0.4"
|
||||
once "^1.3.0"
|
||||
path-is-absolute "^1.0.0"
|
||||
|
||||
has-ansi@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
||||
dependencies:
|
||||
ansi-regex "^2.0.0"
|
||||
|
||||
has@^1.0.1, has@~1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28"
|
||||
dependencies:
|
||||
function-bind "^1.0.2"
|
||||
|
||||
hirestime@^1.0.6:
|
||||
version "1.0.7"
|
||||
resolved "https://registry.yarnpkg.com/hirestime/-/hirestime-1.0.7.tgz#2d5271ea84356cec3f25da8c56a9402f8fc0a700"
|
||||
|
||||
inflight@^1.0.4:
|
||||
version "1.0.6"
|
||||
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
||||
dependencies:
|
||||
once "^1.3.0"
|
||||
wrappy "1"
|
||||
|
||||
inherits@2, inherits@~2.0.3:
|
||||
version "2.0.3"
|
||||
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
||||
|
||||
is-callable@^1.1.1, is-callable@^1.1.3:
|
||||
version "1.1.3"
|
||||
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
|
||||
|
||||
is-date-object@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
|
||||
|
||||
is-finite@^1.0.1:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
|
||||
dependencies:
|
||||
number-is-nan "^1.0.0"
|
||||
|
||||
is-function@~1.0.0:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5"
|
||||
|
||||
is-regex@^1.0.4:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
|
||||
dependencies:
|
||||
has "^1.0.1"
|
||||
|
||||
is-symbol@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572"
|
||||
|
||||
is@~0.2.6:
|
||||
version "0.2.7"
|
||||
resolved "https://registry.yarnpkg.com/is/-/is-0.2.7.tgz#3b34a2c48f359972f35042849193ae7264b63562"
|
||||
|
||||
isarray@~1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
||||
|
||||
js-yaml@^3.4.6:
|
||||
version "3.10.0"
|
||||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
|
||||
dependencies:
|
||||
argparse "^1.0.7"
|
||||
esprima "^4.0.0"
|
||||
|
||||
lodash@^4.14.0:
|
||||
version "4.17.4"
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
||||
|
||||
minimatch@^3.0.4:
|
||||
version "3.0.4"
|
||||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
||||
dependencies:
|
||||
brace-expansion "^1.1.7"
|
||||
|
||||
minimist@0.0.8:
|
||||
version "0.0.8"
|
||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
||||
|
||||
minimist@~1.2.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
||||
|
||||
mkdirp@0.5.1:
|
||||
version "0.5.1"
|
||||
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
||||
dependencies:
|
||||
minimist "0.0.8"
|
||||
|
||||
node.extend@1.0.8:
|
||||
version "1.0.8"
|
||||
resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-1.0.8.tgz#bab04379f7383f4587990c9df07b6a7f65db772b"
|
||||
dependencies:
|
||||
is "~0.2.6"
|
||||
object-keys "~0.4.0"
|
||||
|
||||
node.flow@1.2.3:
|
||||
version "1.2.3"
|
||||
resolved "https://registry.yarnpkg.com/node.flow/-/node.flow-1.2.3.tgz#e1c44a82aeca8d78b458a77fb3dc642f2eba2649"
|
||||
dependencies:
|
||||
node.extend "1.0.8"
|
||||
|
||||
number-is-nan@^1.0.0:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
|
||||
|
||||
object-assign@^4.1.0:
|
||||
version "4.1.1"
|
||||
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
||||
|
||||
object-inspect@~1.2.1:
|
||||
version "1.2.2"
|
||||
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.2.tgz#c82115e4fcc888aea14d64c22e4f17f6a70d5e5a"
|
||||
|
||||
object-keys@^1.0.8:
|
||||
version "1.0.11"
|
||||
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
|
||||
|
||||
object-keys@~0.4.0:
|
||||
version "0.4.0"
|
||||
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336"
|
||||
|
||||
once@^1.3.0:
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
||||
dependencies:
|
||||
wrappy "1"
|
||||
|
||||
parse-ms@^1.0.0:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d"
|
||||
|
||||
path-is-absolute@^1.0.0:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
||||
|
||||
plur@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/plur/-/plur-1.0.0.tgz#db85c6814f5e5e5a3b49efc28d604fec62975156"
|
||||
|
||||
pretty-ms@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-2.1.0.tgz#4257c256df3fb0b451d6affaab021884126981dc"
|
||||
dependencies:
|
||||
is-finite "^1.0.1"
|
||||
parse-ms "^1.0.0"
|
||||
plur "^1.0.0"
|
||||
|
||||
process-nextick-args@~1.0.6:
|
||||
version "1.0.7"
|
||||
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
|
||||
|
||||
ramda@^0.18.0:
|
||||
version "0.18.0"
|
||||
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.18.0.tgz#c6e3c5d4b9ab1f7906727fdeeb039152a85d4db3"
|
||||
|
||||
readable-stream@^2.0.4:
|
||||
version "2.3.3"
|
||||
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c"
|
||||
dependencies:
|
||||
core-util-is "~1.0.0"
|
||||
inherits "~2.0.3"
|
||||
isarray "~1.0.0"
|
||||
process-nextick-args "~1.0.6"
|
||||
safe-buffer "~5.1.1"
|
||||
string_decoder "~1.0.3"
|
||||
util-deprecate "~1.0.1"
|
||||
|
||||
resolve@~1.1.7:
|
||||
version "1.1.7"
|
||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
||||
|
||||
resumer@~0.0.0:
|
||||
version "0.0.0"
|
||||
resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759"
|
||||
dependencies:
|
||||
through "~2.3.4"
|
||||
|
||||
rmdir@1.2.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/rmdir/-/rmdir-1.2.0.tgz#4fe0357cb06168c258e73e968093dc4e8a0f3253"
|
||||
dependencies:
|
||||
node.flow "1.2.3"
|
||||
|
||||
rx-node@^1.0.1:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/rx-node/-/rx-node-1.0.2.tgz#151240725a79e857360ab06cc626799965e094de"
|
||||
dependencies:
|
||||
rx "*"
|
||||
|
||||
rx@*, rx@^4.0.7:
|
||||
version "4.1.0"
|
||||
resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
|
||||
|
||||
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
|
||||
version "5.1.1"
|
||||
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
|
||||
|
||||
split@^1.0.0:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
|
||||
dependencies:
|
||||
through "2"
|
||||
|
||||
sprintf-js@~1.0.2:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
||||
|
||||
string.prototype.trim@~1.1.2:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea"
|
||||
dependencies:
|
||||
define-properties "^1.1.2"
|
||||
es-abstract "^1.5.0"
|
||||
function-bind "^1.0.2"
|
||||
|
||||
string_decoder@~1.0.3:
|
||||
version "1.0.3"
|
||||
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab"
|
||||
dependencies:
|
||||
safe-buffer "~5.1.0"
|
||||
|
||||
strip-ansi@^3.0.0:
|
||||
version "3.0.1"
|
||||
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
|
||||
dependencies:
|
||||
ansi-regex "^2.0.0"
|
||||
|
||||
supports-color@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
||||
|
||||
tape@4.6.3:
|
||||
version "4.6.3"
|
||||
resolved "https://registry.yarnpkg.com/tape/-/tape-4.6.3.tgz#637e77581e9ab2ce17577e9bd4ce4f575806d8b6"
|
||||
dependencies:
|
||||
deep-equal "~1.0.1"
|
||||
defined "~1.0.0"
|
||||
for-each "~0.3.2"
|
||||
function-bind "~1.1.0"
|
||||
glob "~7.1.1"
|
||||
has "~1.0.1"
|
||||
inherits "~2.0.3"
|
||||
minimist "~1.2.0"
|
||||
object-inspect "~1.2.1"
|
||||
resolve "~1.1.7"
|
||||
resumer "~0.0.0"
|
||||
string.prototype.trim "~1.1.2"
|
||||
through "~2.3.8"
|
||||
|
||||
through@2, through@~2.3.4, through@~2.3.8:
|
||||
version "2.3.8"
|
||||
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
|
||||
|
||||
util-deprecate@~1.0.1:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
||||
|
||||
wrappy@1:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
Reference in New Issue
Block a user