TheDesk Mio (ver.5)

This commit is contained in:
a a
2018-05-26 21:48:13 +09:00
parent d5f7153464
commit e47a952f0e
251 changed files with 13585 additions and 15770 deletions

0
app/node_modules/hoek/lib/escape.js generated vendored Normal file → Executable file
View File

0
app/node_modules/hoek/lib/index.js generated vendored Normal file → Executable file
View File

76
app/node_modules/hoek/package.json generated vendored
View File

@@ -1,41 +1,25 @@
{
"_args": [
[
{
"raw": "hoek@4.x.x",
"scope": null,
"escapedName": "hoek",
"name": "hoek",
"rawSpec": "4.x.x",
"spec": ">=4.0.0 <5.0.0",
"type": "range"
},
"C:\\Users\\ryuki\\TheDesk\\app\\node_modules\\hawk"
"hoek@4.2.1",
"/Users/aa/TheDesk/app"
]
],
"_from": "hoek@>=4.0.0 <5.0.0",
"_from": "hoek@4.2.1",
"_id": "hoek@4.2.1",
"_inCache": true,
"_inBundle": false,
"_integrity": "sha1-ljRQKqEsRF3Vp8VzS1cruHOKrLs=",
"_location": "/hoek",
"_nodeVersion": "8.9.4",
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/hoek_4.2.1_1518713267203_0.6904772533894958"
},
"_npmUser": {
"name": "nlf",
"email": "quitlahok@gmail.com"
},
"_npmVersion": "5.6.0",
"_phantomChildren": {},
"_requested": {
"raw": "hoek@4.x.x",
"scope": null,
"escapedName": "hoek",
"type": "version",
"registry": true,
"raw": "hoek@4.2.1",
"name": "hoek",
"rawSpec": "4.x.x",
"spec": ">=4.0.0 <5.0.0",
"type": "range"
"escapedName": "hoek",
"rawSpec": "4.2.1",
"saveSpec": null,
"fetchSpec": "4.2.1"
},
"_requiredBy": [
"/boom",
@@ -44,10 +28,8 @@
"/sntp"
],
"_resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz",
"_shasum": "9634502aa12c445dd5a7c5734b572bb8738aacbb",
"_shrinkwrap": null,
"_spec": "hoek@4.x.x",
"_where": "C:\\Users\\ryuki\\TheDesk\\app\\node_modules\\hawk",
"_spec": "4.2.1",
"_where": "/Users/aa/TheDesk/app",
"bugs": {
"url": "https://github.com/hapijs/hoek/issues"
},
@@ -57,46 +39,16 @@
"code": "4.x.x",
"lab": "13.x.x"
},
"directories": {},
"dist": {
"integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==",
"shasum": "9634502aa12c445dd5a7c5734b572bb8738aacbb",
"tarball": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz",
"fileCount": 6,
"unpackedSize": 31593
},
"engines": {
"node": ">=4.0.0"
},
"gitHead": "ebe36809c9808386a9a319ffd8956e94973d5504",
"homepage": "https://github.com/hapijs/hoek#readme",
"keywords": [
"utilities"
],
"license": "BSD-3-Clause",
"main": "lib/index.js",
"maintainers": [
{
"name": "hueniverse",
"email": "eran@hammer.io"
},
{
"name": "marsup",
"email": "nicolas@morel.io"
},
{
"name": "nlf",
"email": "quitlahok@gmail.com"
},
{
"name": "wyatt",
"email": "wpreul@gmail.com"
}
],
"name": "hoek",
"optionalDependencies": {},
"readme": "![hoek Logo](https://raw.github.com/hapijs/hoek/master/images/hoek.png)\n\nUtility methods for the hapi ecosystem. This module is not intended to solve every problem for everyone, but rather as a central place to store hapi-specific methods. If you're looking for a general purpose utility module, check out [lodash](https://github.com/lodash/lodash) or [underscore](https://github.com/jashkenas/underscore).\n\n[![Build Status](https://secure.travis-ci.org/hapijs/hoek.svg)](http://travis-ci.org/hapijs/hoek)\n\n<a href=\"https://andyet.com\"><img src=\"https://s3.amazonaws.com/static.andyet.com/images/%26yet-logo.svg\" align=\"right\" /></a>\n\nLead Maintainer: [Nathan LaFreniere](https://github.com/nlf)\n\n**hoek** is sponsored by [&yet](https://andyet.com)\n\n## Usage\n\nThe *Hoek* library contains some common functions used within the hapi ecosystem. It comes with useful methods for Arrays (clone, merge, applyToDefaults), Objects (removeKeys, copy), Asserting and more.\n\nFor example, to use Hoek to set configuration with default options:\n```javascript\nconst Hoek = require('hoek');\n\nconst default = {url : \"www.github.com\", port : \"8000\", debug : true};\n\nconst config = Hoek.applyToDefaults(default, {port : \"3000\", admin : true});\n\n// In this case, config would be { url: 'www.github.com', port: '3000', debug: true, admin: true }\n```\n\n## Documentation\n\n[**API Reference**](API.md)\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/hapijs/hoek.git"