├── .gitignore ├── scripts ├── copy.sh ├── build.sh └── join.sh ├── .gitmodules ├── src ├── tsconfig.json └── accountant │ ├── dna │ ├── properties_schema.json │ ├── accountant │ │ ├── serviceLogBatch.json │ │ ├── serviceLog.json │ │ └── accountant.ts │ └── dna.json │ ├── bridge_specs.json │ └── test │ └── serviceLogs.json ├── tslint.json ├── README.md ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | scaffold/ 4 | -------------------------------------------------------------------------------- /scripts/copy.sh: -------------------------------------------------------------------------------- 1 | FLAGS=$1 2 | 3 | cpx $FLAGS "./src/**/*.json" ./build && cpx $FLAGS "./src/**/test" ./build -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "testapp"] 2 | path = testapp 3 | url = git@github.com:Holo-Host/holojs-sample-app.git 4 | -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "types": ["holochain-proto-types"], 5 | "newLine" : "lf" 6 | } 7 | } -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-config-standard", 3 | "linterOptions": { 4 | "exclude": "node_modules/**" 5 | }, 6 | "rules": { 7 | "no-undef": false 8 | } 9 | } -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- 1 | # ZOME=$1 2 | FLAGS=$1 3 | # SRC="src" 4 | 5 | # cp _tsconfig.json $SRC/tsconfig.json 6 | 7 | npx tslint --fix -p src/tsconfig.json src/**/*.ts \ 8 | && tsc $FLAGS -p src --rootDir src --outDir build/ \ 9 | # && rm $SRC/tsconfig.json 10 | -------------------------------------------------------------------------------- /scripts/join.sh: -------------------------------------------------------------------------------- 1 | 2 | rm -fr ~/.holochain/switchboard-dev ~/.holochain/accountant-dev 3 | hcadmin join build/switchboard switchboard-dev 4 | hcadmin join build/accountant accountant-dev 5 | hcadmin bridge switchboard-dev accountant-dev management --bridgeCallerAppData "caller data" --bridgeCalleeAppData "callee data" 6 | -------------------------------------------------------------------------------- /src/accountant/dna/properties_schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Properties Schema", 3 | "type": "object", 4 | "properties": { 5 | "hostedDnaHash": { 6 | "type": "string" 7 | }, 8 | "hostedIdentity": { 9 | "type": "string" 10 | }, 11 | "language": { 12 | "type": "string" 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # holo-host 2 | 3 | The Holo Hosting App suite -- **WIP** 4 | 5 | The holo-hosting suite consists of two interlocking apps: a `switchboard` and an `accountant` app. See the following for much more detail: 6 | 7 | https://hackmd.io/izTLhcWQQBqZHAjXG0r_GA?both 8 | 9 | ## Development 10 | 11 | Attempting a new build strategy here. But to run, just `npm run build`, then `cd build && hcdev web` . -------------------------------------------------------------------------------- /src/accountant/bridge_specs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Path": "../switchboard", 4 | "Side": 0, 5 | "Port": "4001", 6 | "BridgeZome": "management", 7 | "BridgeGenesisCallerData": "QmbZeFchQ3gtc1ZUUpZSSsznZDjyeq1dJMBq12hCohpygH" 8 | }, 9 | { 10 | "Path": "../../../hosted-happs/sample-app-1", 11 | "Side": 1, 12 | "Port": "4005", 13 | "BridgeZome": "accountant" 14 | } 15 | ] -------------------------------------------------------------------------------- /src/accountant/dna/accountant/serviceLogBatch.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/draft-07/schema#", 3 | "type": "object", 4 | "required": [ 5 | "startTime" 6 | ], 7 | "properties": { 8 | "startTime": { 9 | "type": "string", 10 | "pattern": "^(.*)$" 11 | }, 12 | "closeTime": { 13 | "type": "string", 14 | "pattern": "^(.*)$" 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "holo-host", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "scripts": { 7 | "build-common": "scripts/build.sh && scripts/copy.sh", 8 | "build": "mkdir build; rm -rf build/*; npm run build-common", 9 | "build-win": "rm -r build/dna & npm run build-common", 10 | "dev": "npm run build && cd build && hcdev web", 11 | "watch": "scripts/build.sh -w & scripts/copy.sh -w", 12 | "test": "npm run build && cd build/test && hcdev test", 13 | "join": "scripts/join.sh" 14 | }, 15 | "dependencies": { 16 | "cpx": "^1.5.0", 17 | "holochain-proto-types": "^0.2.0", 18 | "typescript": "^3.0.1" 19 | }, 20 | "devDependencies": { 21 | "tslint": "^5.11.0", 22 | "tslint-config-standard": "^8.0.1" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/accountant/test/serviceLogs.json: -------------------------------------------------------------------------------- 1 | { 2 | "Tests": [ 3 | { 4 | "Convey": "Can create service log", 5 | "Zome": "accountant", 6 | "FnName": "createServiceLog", 7 | "Input": { 8 | "agentHash": "def", 9 | "requestPayload": "anything", 10 | "metrics": { 11 | "cpuTime": 440, 12 | "bytesIn": 3000, 13 | "bytesOut": 9000 14 | } 15 | }, 16 | "Output": "%h1%" 17 | }, 18 | { 19 | "Convey": "Can retrieve service logs", 20 | "Zome": "accountant", 21 | "FnName": "getLogBatch", 22 | "Input": null, 23 | "Output": [{"Entry":{"agentHash":"def","metrics":{"bytesIn":3000,"bytesOut":9000,"cpuTime":440},"requestPayload":"anything"},"EntryType":"serviceLog","Hash":"%h1%","Source":"%key%"}] 24 | } 25 | ] 26 | } -------------------------------------------------------------------------------- /src/accountant/dna/accountant/serviceLog.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/draft-07/schema#", 3 | "type": "object", 4 | "required": [ 5 | "agentHash", 6 | "requestPayload", 7 | "metrics" 8 | ], 9 | "properties": { 10 | "agentHash": { 11 | "type": "string", 12 | "description": "Hash of requesting agent", 13 | "pattern": "^(.*)$" 14 | }, 15 | "requestPayload": { 16 | "type": "string", 17 | "description": "Serialized JSON of request payload", 18 | "pattern": "^(.*)$" 19 | }, 20 | "metrics": { 21 | "type": "object", 22 | "description": "Metrics used to calculate costs", 23 | "properties": { 24 | "cpuTime": { 25 | "type": "number" 26 | }, 27 | "bytesIn": { 28 | "type": "number" 29 | }, 30 | "bytesOut": { 31 | "type": "number" 32 | } 33 | } 34 | } 35 | } 36 | } -------------------------------------------------------------------------------- /src/accountant/dna/dna.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "UUID": "4a4beb46-a3cf-476f-8593-e30155186707", 4 | "Name": "holo-host-accountant", 5 | "Properties": { 6 | "hostedDnaHash": "QmbZeFchQ3gtc1ZUUpZSSsznZDjyeq1dJMBq12hCohpygH", 7 | "hostedIdentity": "[Provided by init-chain script]", 8 | "language": "en" 9 | }, 10 | "PropertiesSchemaFile": "properties_schema.json", 11 | "DHTConfig": { 12 | "HashType": "sha2-256" 13 | }, 14 | "Zomes": [ 15 | { 16 | "Name": "accountant", 17 | "Description": "Record service activity and signatures from clients", 18 | "RibosomeType": "js", 19 | "CodeFile": "accountant.js", 20 | "Entries": [ 21 | { 22 | "Name": "serviceLog", 23 | "Required": true, 24 | "DataFormat": "json", 25 | "Sharing": "public", 26 | "SchemaFile": "serviceLog.json" 27 | }, 28 | { 29 | "Name": "serviceLogBatch", 30 | "Required": true, 31 | "DataFormat": "json", 32 | "Sharing": "public", 33 | "SchemaFile": "serviceLogBatch.json" 34 | }, 35 | { 36 | "Name": "serviceLogLink", 37 | "Required": true, 38 | "DataFormat": "links", 39 | "Sharing": "public" 40 | } 41 | ], 42 | "Functions": [ 43 | { 44 | "Name": "targetDnaHash", 45 | "CallingType": "json", 46 | "Exposure": "public" 47 | }, 48 | { 49 | "Name": "handleRequest", 50 | "CallingType": "json", 51 | "Exposure": "public" 52 | }, 53 | { 54 | "Name": "signLog", 55 | "CallingType": "json", 56 | "Exposure": "public" 57 | }, 58 | { 59 | "Name": "getLogBatch", 60 | "CallingType": "json", 61 | "Exposure": "public" 62 | } 63 | ], 64 | "BridgeFuncs": [ 65 | "handleRequest", 66 | "signLog" 67 | ] 68 | } 69 | ] 70 | } -------------------------------------------------------------------------------- /src/accountant/dna/accountant/accountant.ts: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | // TODO: eventually we may want a notion of a "batch" of logs, 4 | // a collection of uninvoiced (or already-invoiced) service log entries. 5 | // For now, just create one and use it all the time. 6 | const startBatch = { startTime: 'now' } 7 | const demoBatch = makeHash('serviceLogBatch', startBatch) 8 | 9 | function info(...msgs) { 10 | debug('[accountant] ' + msgs.join(' ')) 11 | } 12 | 13 | function handleRequest (rpc) { 14 | const dnaHash = property('hostedDnaHash') 15 | const agentHash = property('hostedIdentity') 16 | const { zome, func, args } = rpc 17 | info(`Calling ${zome}/${func} @ ${dnaHash} with args:`) 18 | debug(args) 19 | const responseString = bridge(dnaHash, zome, func, args) 20 | let response 21 | try { 22 | response = JSON.parse(responseString) 23 | } catch { 24 | info("Parsing failed, interpreting response as string") 25 | response = responseString 26 | } 27 | info("response:") 28 | debug(response) 29 | 30 | // TODO: obviously fake metrics for now... 31 | const metrics = { 32 | cpuTime: 100 * Math.random(), 33 | bytesIn: JSON.stringify(rpc).length, 34 | bytesOut: responseString.length 35 | } 36 | 37 | const timestamp = String(Date.now()) 38 | 39 | const requestPayload = JSON.stringify(rpc) 40 | const responseHash = 'TODO' 41 | 42 | const logHash = recordServiceLog({ 43 | timestamp, 44 | metrics, 45 | requestPayload, 46 | responseHash, 47 | }) 48 | 49 | return { response, logHash } 50 | } 51 | 52 | function signLog ({logHash, signature}) { 53 | const entry = get(logHash) 54 | entry.signature = signature 55 | update('serviceLog', entry, logHash) 56 | return "signature received" 57 | } 58 | 59 | function recordServiceLog (entry) { 60 | const hash = commit('serviceLog', entry) 61 | commit('serviceLogLink', { 62 | Links: [{ 63 | Base: demoBatch, 64 | Link: hash, 65 | Tag: 'serviceLog' 66 | }] 67 | }) 68 | return hash 69 | } 70 | 71 | function getLogBatch () { 72 | const links = getLinks(demoBatch, 'serviceLog', { Load: true }) 73 | return links.map(link => link.Entry) 74 | } 75 | 76 | function mockVerifySignature (signature, payloadHash, agentHash) { 77 | return signature !== 'bad signature' 78 | } 79 | 80 | function targetDnaHash () { 81 | return property('targetDnaHash') 82 | } 83 | 84 | // ----------------------------------------------------------------- 85 | // Callbacks 86 | // ----------------------------------------------------------------- 87 | 88 | function genesis () { 89 | const hash = commit('serviceLogBatch', startBatch) 90 | return true 91 | } 92 | 93 | function bridgeGenesis (side, dna, appData) { 94 | info(side, dna, appData) 95 | return true 96 | } 97 | 98 | function validateCommit (entryName, entry, header, pkg, sources) { 99 | switch (entryName) { 100 | case 'serviceLog': 101 | const { signature, payloadHash, agentHash } = entry 102 | // TODO: replace with verifySignature 103 | return !signature || mockVerifySignature(signature, payloadHash, agentHash) 104 | 105 | case 'serviceLogBatch': 106 | return true 107 | 108 | case 'serviceLogLink': 109 | info('serviceLogLink (TODO)') 110 | info(entry) 111 | return true 112 | default: 113 | // invalid entry name 114 | return false 115 | } 116 | } 117 | 118 | function validatePut (entryName, entry, header, pkg, sources) { 119 | switch (entryName) { 120 | case 'serviceLog': 121 | // be sure to consider many edge cases for validating 122 | // do not just flip this to true without considering what that means 123 | // the action will ONLY be successfull if this returns true, so watch out! 124 | return true 125 | case 'serviceLogLink': 126 | // be sure to consider many edge cases for validating 127 | // do not just flip this to true without considering what that means 128 | // the action will ONLY be successfull if this returns true, so watch out! 129 | return true 130 | default: 131 | // invalid entry name 132 | return true 133 | } 134 | } 135 | 136 | function validateMod (entryName, entry, header, replaces, pkg, sources) { 137 | switch (entryName) { 138 | case 'serviceLog': 139 | // be sure to consider many edge cases for validating 140 | // do not just flip this to true without considering what that means 141 | // the action will ONLY be successfull if this returns true, so watch out! 142 | return true 143 | case 'serviceLogLink': 144 | // be sure to consider many edge cases for validating 145 | // do not just flip this to true without considering what that means 146 | // the action will ONLY be successfull if this returns true, so watch out! 147 | return true 148 | default: 149 | // invalid entry name 150 | return true 151 | } 152 | } 153 | 154 | function validateDel (entryName, hash, pkg, sources) { 155 | switch (entryName) { 156 | case 'serviceLog': 157 | // be sure to consider many edge cases for validating 158 | // do not just flip this to true without considering what that means 159 | // the action will ONLY be successfull if this returns true, so watch out! 160 | return true 161 | case 'serviceLogLink': 162 | // be sure to consider many edge cases for validating 163 | // do not just flip this to true without considering what that means 164 | // the action will ONLY be successfull if this returns true, so watch out! 165 | return true 166 | default: 167 | // invalid entry name 168 | return true 169 | } 170 | } 171 | 172 | function validateLink (entryName, baseHash, links, pkg, sources) { 173 | switch (entryName) { 174 | case 'serviceLog': 175 | // be sure to consider many edge cases for validating 176 | // do not just flip this to true without considering what that means 177 | // the action will ONLY be successfull if this returns true, so watch out! 178 | return true 179 | case 'serviceLogLink': 180 | // be sure to consider many edge cases for validating 181 | // do not just flip this to true without considering what that means 182 | // the action will ONLY be successfull if this returns true, so watch out! 183 | return true 184 | default: 185 | // invalid entry name 186 | return true 187 | } 188 | } 189 | 190 | function validatePutPkg (entryName) { 191 | return null 192 | } 193 | 194 | function validateModPkg (entryName) { 195 | return null 196 | } 197 | 198 | function validateDelPkg (entryName) { 199 | return null 200 | } 201 | 202 | function validateLinkPkg (entryName) { 203 | return null 204 | } 205 | 206 | // TypeScript workaround 207 | export = 0 208 | const module = {} 209 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | ansi-regex@^2.0.0: 10 | version "2.1.1" 11 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 12 | 13 | ansi-regex@^3.0.0: 14 | version "3.0.0" 15 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 16 | 17 | ansi-styles@^2.2.1: 18 | version "2.2.1" 19 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 20 | 21 | ansi-styles@^3.2.1: 22 | version "3.2.1" 23 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 24 | dependencies: 25 | color-convert "^1.9.0" 26 | 27 | anymatch@^1.3.0: 28 | version "1.3.2" 29 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 30 | dependencies: 31 | micromatch "^2.1.5" 32 | normalize-path "^2.0.0" 33 | 34 | aproba@^1.0.3: 35 | version "1.2.0" 36 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 37 | 38 | are-we-there-yet@~1.1.2: 39 | version "1.1.5" 40 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 41 | dependencies: 42 | delegates "^1.0.0" 43 | readable-stream "^2.0.6" 44 | 45 | argparse@^1.0.7: 46 | version "1.0.10" 47 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 48 | dependencies: 49 | sprintf-js "~1.0.2" 50 | 51 | arr-diff@^2.0.0: 52 | version "2.0.0" 53 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 54 | dependencies: 55 | arr-flatten "^1.0.1" 56 | 57 | arr-flatten@^1.0.1: 58 | version "1.1.0" 59 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 60 | 61 | array-filter@~0.0.0: 62 | version "0.0.1" 63 | resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" 64 | 65 | array-map@~0.0.0: 66 | version "0.0.0" 67 | resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" 68 | 69 | array-reduce@~0.0.0: 70 | version "0.0.0" 71 | resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" 72 | 73 | array-unique@^0.2.1: 74 | version "0.2.1" 75 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 76 | 77 | async-each@^1.0.0: 78 | version "1.0.1" 79 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 80 | 81 | babel-code-frame@^6.22.0: 82 | version "6.26.0" 83 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 84 | dependencies: 85 | chalk "^1.1.3" 86 | esutils "^2.0.2" 87 | js-tokens "^3.0.2" 88 | 89 | babel-runtime@^6.9.2: 90 | version "6.26.0" 91 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 92 | dependencies: 93 | core-js "^2.4.0" 94 | regenerator-runtime "^0.11.0" 95 | 96 | balanced-match@^1.0.0: 97 | version "1.0.0" 98 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 99 | 100 | binary-extensions@^1.0.0: 101 | version "1.11.0" 102 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 103 | 104 | brace-expansion@^1.1.7: 105 | version "1.1.11" 106 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 107 | dependencies: 108 | balanced-match "^1.0.0" 109 | concat-map "0.0.1" 110 | 111 | braces@^1.8.2: 112 | version "1.8.5" 113 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 114 | dependencies: 115 | expand-range "^1.8.1" 116 | preserve "^0.2.0" 117 | repeat-element "^1.1.2" 118 | 119 | builtin-modules@^1.1.1: 120 | version "1.1.1" 121 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 122 | 123 | chalk@^1.1.3: 124 | version "1.1.3" 125 | resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 126 | dependencies: 127 | ansi-styles "^2.2.1" 128 | escape-string-regexp "^1.0.2" 129 | has-ansi "^2.0.0" 130 | strip-ansi "^3.0.0" 131 | supports-color "^2.0.0" 132 | 133 | chalk@^2.3.0: 134 | version "2.4.1" 135 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 136 | dependencies: 137 | ansi-styles "^3.2.1" 138 | escape-string-regexp "^1.0.5" 139 | supports-color "^5.3.0" 140 | 141 | chokidar@^1.6.0: 142 | version "1.7.0" 143 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 144 | dependencies: 145 | anymatch "^1.3.0" 146 | async-each "^1.0.0" 147 | glob-parent "^2.0.0" 148 | inherits "^2.0.1" 149 | is-binary-path "^1.0.0" 150 | is-glob "^2.0.0" 151 | path-is-absolute "^1.0.0" 152 | readdirp "^2.0.0" 153 | optionalDependencies: 154 | fsevents "^1.0.0" 155 | 156 | chownr@^1.0.1: 157 | version "1.0.1" 158 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 159 | 160 | code-point-at@^1.0.0: 161 | version "1.1.0" 162 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 163 | 164 | color-convert@^1.9.0: 165 | version "1.9.3" 166 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 167 | dependencies: 168 | color-name "1.1.3" 169 | 170 | color-name@1.1.3: 171 | version "1.1.3" 172 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 173 | 174 | commander@^2.12.1: 175 | version "2.17.1" 176 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" 177 | 178 | concat-map@0.0.1: 179 | version "0.0.1" 180 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 181 | 182 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 183 | version "1.1.0" 184 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 185 | 186 | core-js@^2.4.0: 187 | version "2.5.7" 188 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e" 189 | 190 | core-util-is@~1.0.0: 191 | version "1.0.2" 192 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 193 | 194 | cpx@^1.5.0: 195 | version "1.5.0" 196 | resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" 197 | dependencies: 198 | babel-runtime "^6.9.2" 199 | chokidar "^1.6.0" 200 | duplexer "^0.1.1" 201 | glob "^7.0.5" 202 | glob2base "^0.0.12" 203 | minimatch "^3.0.2" 204 | mkdirp "^0.5.1" 205 | resolve "^1.1.7" 206 | safe-buffer "^5.0.1" 207 | shell-quote "^1.6.1" 208 | subarg "^1.0.0" 209 | 210 | debug@^2.1.2: 211 | version "2.6.9" 212 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 213 | dependencies: 214 | ms "2.0.0" 215 | 216 | deep-extend@^0.6.0: 217 | version "0.6.0" 218 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 219 | 220 | delegates@^1.0.0: 221 | version "1.0.0" 222 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 223 | 224 | detect-libc@^1.0.2: 225 | version "1.0.3" 226 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 227 | 228 | diff@^3.2.0: 229 | version "3.5.0" 230 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 231 | 232 | doctrine@0.7.2: 233 | version "0.7.2" 234 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" 235 | dependencies: 236 | esutils "^1.1.6" 237 | isarray "0.0.1" 238 | 239 | duplexer@^0.1.1: 240 | version "0.1.1" 241 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" 242 | 243 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 244 | version "1.0.5" 245 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 246 | 247 | esprima@^4.0.0: 248 | version "4.0.1" 249 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 250 | 251 | esutils@^1.1.6: 252 | version "1.1.6" 253 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" 254 | 255 | esutils@^2.0.2: 256 | version "2.0.2" 257 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 258 | 259 | expand-brackets@^0.1.4: 260 | version "0.1.5" 261 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 262 | dependencies: 263 | is-posix-bracket "^0.1.0" 264 | 265 | expand-range@^1.8.1: 266 | version "1.8.2" 267 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 268 | dependencies: 269 | fill-range "^2.1.0" 270 | 271 | extglob@^0.3.1: 272 | version "0.3.2" 273 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 274 | dependencies: 275 | is-extglob "^1.0.0" 276 | 277 | filename-regex@^2.0.0: 278 | version "2.0.1" 279 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 280 | 281 | fill-range@^2.1.0: 282 | version "2.2.4" 283 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 284 | dependencies: 285 | is-number "^2.1.0" 286 | isobject "^2.0.0" 287 | randomatic "^3.0.0" 288 | repeat-element "^1.1.2" 289 | repeat-string "^1.5.2" 290 | 291 | find-index@^0.1.1: 292 | version "0.1.1" 293 | resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" 294 | 295 | for-in@^1.0.1: 296 | version "1.0.2" 297 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 298 | 299 | for-own@^0.1.4: 300 | version "0.1.5" 301 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 302 | dependencies: 303 | for-in "^1.0.1" 304 | 305 | fs-minipass@^1.2.5: 306 | version "1.2.5" 307 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 308 | dependencies: 309 | minipass "^2.2.1" 310 | 311 | fs.realpath@^1.0.0: 312 | version "1.0.0" 313 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 314 | 315 | fsevents@^1.0.0: 316 | version "1.2.4" 317 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 318 | dependencies: 319 | nan "^2.9.2" 320 | node-pre-gyp "^0.10.0" 321 | 322 | gauge@~2.7.3: 323 | version "2.7.4" 324 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 325 | dependencies: 326 | aproba "^1.0.3" 327 | console-control-strings "^1.0.0" 328 | has-unicode "^2.0.0" 329 | object-assign "^4.1.0" 330 | signal-exit "^3.0.0" 331 | string-width "^1.0.1" 332 | strip-ansi "^3.0.1" 333 | wide-align "^1.1.0" 334 | 335 | glob-base@^0.3.0: 336 | version "0.3.0" 337 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 338 | dependencies: 339 | glob-parent "^2.0.0" 340 | is-glob "^2.0.0" 341 | 342 | glob-parent@^2.0.0: 343 | version "2.0.0" 344 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 345 | dependencies: 346 | is-glob "^2.0.0" 347 | 348 | glob2base@^0.0.12: 349 | version "0.0.12" 350 | resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" 351 | dependencies: 352 | find-index "^0.1.1" 353 | 354 | glob@^7.0.5, glob@^7.1.1: 355 | version "7.1.3" 356 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 357 | dependencies: 358 | fs.realpath "^1.0.0" 359 | inflight "^1.0.4" 360 | inherits "2" 361 | minimatch "^3.0.4" 362 | once "^1.3.0" 363 | path-is-absolute "^1.0.0" 364 | 365 | graceful-fs@^4.1.2: 366 | version "4.1.11" 367 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 368 | 369 | has-ansi@^2.0.0: 370 | version "2.0.0" 371 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 372 | dependencies: 373 | ansi-regex "^2.0.0" 374 | 375 | has-flag@^3.0.0: 376 | version "3.0.0" 377 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 378 | 379 | has-unicode@^2.0.0: 380 | version "2.0.1" 381 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 382 | 383 | holochain-proto-types@^0.2.0: 384 | version "0.2.0" 385 | resolved "https://registry.yarnpkg.com/holochain-proto-types/-/holochain-proto-types-0.2.0.tgz#65e9871c27148c617dbd56163f1d57a5aafa6d64" 386 | 387 | iconv-lite@^0.4.4: 388 | version "0.4.24" 389 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 390 | dependencies: 391 | safer-buffer ">= 2.1.2 < 3" 392 | 393 | ignore-walk@^3.0.1: 394 | version "3.0.1" 395 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 396 | dependencies: 397 | minimatch "^3.0.4" 398 | 399 | inflight@^1.0.4: 400 | version "1.0.6" 401 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 402 | dependencies: 403 | once "^1.3.0" 404 | wrappy "1" 405 | 406 | inherits@2, inherits@^2.0.1, inherits@~2.0.3: 407 | version "2.0.3" 408 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 409 | 410 | ini@~1.3.0: 411 | version "1.3.5" 412 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 413 | 414 | is-binary-path@^1.0.0: 415 | version "1.0.1" 416 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 417 | dependencies: 418 | binary-extensions "^1.0.0" 419 | 420 | is-buffer@^1.1.5: 421 | version "1.1.6" 422 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 423 | 424 | is-dotfile@^1.0.0: 425 | version "1.0.3" 426 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 427 | 428 | is-equal-shallow@^0.1.3: 429 | version "0.1.3" 430 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 431 | dependencies: 432 | is-primitive "^2.0.0" 433 | 434 | is-extendable@^0.1.1: 435 | version "0.1.1" 436 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 437 | 438 | is-extglob@^1.0.0: 439 | version "1.0.0" 440 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 441 | 442 | is-fullwidth-code-point@^1.0.0: 443 | version "1.0.0" 444 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 445 | dependencies: 446 | number-is-nan "^1.0.0" 447 | 448 | is-fullwidth-code-point@^2.0.0: 449 | version "2.0.0" 450 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 451 | 452 | is-glob@^2.0.0, is-glob@^2.0.1: 453 | version "2.0.1" 454 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 455 | dependencies: 456 | is-extglob "^1.0.0" 457 | 458 | is-number@^2.1.0: 459 | version "2.1.0" 460 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 461 | dependencies: 462 | kind-of "^3.0.2" 463 | 464 | is-number@^4.0.0: 465 | version "4.0.0" 466 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 467 | 468 | is-posix-bracket@^0.1.0: 469 | version "0.1.1" 470 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 471 | 472 | is-primitive@^2.0.0: 473 | version "2.0.0" 474 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 475 | 476 | isarray@0.0.1: 477 | version "0.0.1" 478 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 479 | 480 | isarray@1.0.0, isarray@~1.0.0: 481 | version "1.0.0" 482 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 483 | 484 | isobject@^2.0.0: 485 | version "2.1.0" 486 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 487 | dependencies: 488 | isarray "1.0.0" 489 | 490 | js-tokens@^3.0.2: 491 | version "3.0.2" 492 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 493 | 494 | js-yaml@^3.7.0: 495 | version "3.12.0" 496 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" 497 | dependencies: 498 | argparse "^1.0.7" 499 | esprima "^4.0.0" 500 | 501 | jsonify@~0.0.0: 502 | version "0.0.0" 503 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 504 | 505 | kind-of@^3.0.2: 506 | version "3.2.2" 507 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 508 | dependencies: 509 | is-buffer "^1.1.5" 510 | 511 | kind-of@^6.0.0: 512 | version "6.0.2" 513 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 514 | 515 | math-random@^1.0.1: 516 | version "1.0.1" 517 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 518 | 519 | micromatch@^2.1.5: 520 | version "2.3.11" 521 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 522 | dependencies: 523 | arr-diff "^2.0.0" 524 | array-unique "^0.2.1" 525 | braces "^1.8.2" 526 | expand-brackets "^0.1.4" 527 | extglob "^0.3.1" 528 | filename-regex "^2.0.0" 529 | is-extglob "^1.0.0" 530 | is-glob "^2.0.1" 531 | kind-of "^3.0.2" 532 | normalize-path "^2.0.1" 533 | object.omit "^2.0.0" 534 | parse-glob "^3.0.4" 535 | regex-cache "^0.4.2" 536 | 537 | minimatch@^3.0.2, minimatch@^3.0.4: 538 | version "3.0.4" 539 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 540 | dependencies: 541 | brace-expansion "^1.1.7" 542 | 543 | minimist@0.0.8: 544 | version "0.0.8" 545 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 546 | 547 | minimist@^1.1.0, minimist@^1.2.0: 548 | version "1.2.0" 549 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 550 | 551 | minipass@^2.2.1, minipass@^2.3.3: 552 | version "2.3.4" 553 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957" 554 | dependencies: 555 | safe-buffer "^5.1.2" 556 | yallist "^3.0.0" 557 | 558 | minizlib@^1.1.0: 559 | version "1.1.0" 560 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 561 | dependencies: 562 | minipass "^2.2.1" 563 | 564 | mkdirp@^0.5.0, mkdirp@^0.5.1: 565 | version "0.5.1" 566 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 567 | dependencies: 568 | minimist "0.0.8" 569 | 570 | ms@2.0.0: 571 | version "2.0.0" 572 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 573 | 574 | nan@^2.9.2: 575 | version "2.11.0" 576 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.0.tgz#574e360e4d954ab16966ec102c0c049fd961a099" 577 | 578 | needle@^2.2.1: 579 | version "2.2.2" 580 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418" 581 | dependencies: 582 | debug "^2.1.2" 583 | iconv-lite "^0.4.4" 584 | sax "^1.2.4" 585 | 586 | node-pre-gyp@^0.10.0: 587 | version "0.10.3" 588 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 589 | dependencies: 590 | detect-libc "^1.0.2" 591 | mkdirp "^0.5.1" 592 | needle "^2.2.1" 593 | nopt "^4.0.1" 594 | npm-packlist "^1.1.6" 595 | npmlog "^4.0.2" 596 | rc "^1.2.7" 597 | rimraf "^2.6.1" 598 | semver "^5.3.0" 599 | tar "^4" 600 | 601 | nopt@^4.0.1: 602 | version "4.0.1" 603 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 604 | dependencies: 605 | abbrev "1" 606 | osenv "^0.1.4" 607 | 608 | normalize-path@^2.0.0, normalize-path@^2.0.1: 609 | version "2.1.1" 610 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 611 | dependencies: 612 | remove-trailing-separator "^1.0.1" 613 | 614 | npm-bundled@^1.0.1: 615 | version "1.0.5" 616 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 617 | 618 | npm-packlist@^1.1.6: 619 | version "1.1.11" 620 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de" 621 | dependencies: 622 | ignore-walk "^3.0.1" 623 | npm-bundled "^1.0.1" 624 | 625 | npmlog@^4.0.2: 626 | version "4.1.2" 627 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 628 | dependencies: 629 | are-we-there-yet "~1.1.2" 630 | console-control-strings "~1.1.0" 631 | gauge "~2.7.3" 632 | set-blocking "~2.0.0" 633 | 634 | number-is-nan@^1.0.0: 635 | version "1.0.1" 636 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 637 | 638 | object-assign@^4.1.0: 639 | version "4.1.1" 640 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 641 | 642 | object.omit@^2.0.0: 643 | version "2.0.1" 644 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 645 | dependencies: 646 | for-own "^0.1.4" 647 | is-extendable "^0.1.1" 648 | 649 | once@^1.3.0: 650 | version "1.4.0" 651 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 652 | dependencies: 653 | wrappy "1" 654 | 655 | os-homedir@^1.0.0: 656 | version "1.0.2" 657 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 658 | 659 | os-tmpdir@^1.0.0: 660 | version "1.0.2" 661 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 662 | 663 | osenv@^0.1.4: 664 | version "0.1.5" 665 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 666 | dependencies: 667 | os-homedir "^1.0.0" 668 | os-tmpdir "^1.0.0" 669 | 670 | parse-glob@^3.0.4: 671 | version "3.0.4" 672 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 673 | dependencies: 674 | glob-base "^0.3.0" 675 | is-dotfile "^1.0.0" 676 | is-extglob "^1.0.0" 677 | is-glob "^2.0.0" 678 | 679 | path-is-absolute@^1.0.0: 680 | version "1.0.1" 681 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 682 | 683 | path-parse@^1.0.5: 684 | version "1.0.6" 685 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 686 | 687 | preserve@^0.2.0: 688 | version "0.2.0" 689 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 690 | 691 | process-nextick-args@~2.0.0: 692 | version "2.0.0" 693 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 694 | 695 | randomatic@^3.0.0: 696 | version "3.1.0" 697 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116" 698 | dependencies: 699 | is-number "^4.0.0" 700 | kind-of "^6.0.0" 701 | math-random "^1.0.1" 702 | 703 | rc@^1.2.7: 704 | version "1.2.8" 705 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 706 | dependencies: 707 | deep-extend "^0.6.0" 708 | ini "~1.3.0" 709 | minimist "^1.2.0" 710 | strip-json-comments "~2.0.1" 711 | 712 | readable-stream@^2.0.2, readable-stream@^2.0.6: 713 | version "2.3.6" 714 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 715 | dependencies: 716 | core-util-is "~1.0.0" 717 | inherits "~2.0.3" 718 | isarray "~1.0.0" 719 | process-nextick-args "~2.0.0" 720 | safe-buffer "~5.1.1" 721 | string_decoder "~1.1.1" 722 | util-deprecate "~1.0.1" 723 | 724 | readdirp@^2.0.0: 725 | version "2.1.0" 726 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 727 | dependencies: 728 | graceful-fs "^4.1.2" 729 | minimatch "^3.0.2" 730 | readable-stream "^2.0.2" 731 | set-immediate-shim "^1.0.1" 732 | 733 | regenerator-runtime@^0.11.0: 734 | version "0.11.1" 735 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 736 | 737 | regex-cache@^0.4.2: 738 | version "0.4.4" 739 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 740 | dependencies: 741 | is-equal-shallow "^0.1.3" 742 | 743 | remove-trailing-separator@^1.0.1: 744 | version "1.1.0" 745 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 746 | 747 | repeat-element@^1.1.2: 748 | version "1.1.3" 749 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 750 | 751 | repeat-string@^1.5.2: 752 | version "1.6.1" 753 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 754 | 755 | resolve@^1.1.7, resolve@^1.3.2: 756 | version "1.8.1" 757 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26" 758 | dependencies: 759 | path-parse "^1.0.5" 760 | 761 | rimraf@^2.6.1: 762 | version "2.6.2" 763 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 764 | dependencies: 765 | glob "^7.0.5" 766 | 767 | safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 768 | version "5.1.2" 769 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 770 | 771 | "safer-buffer@>= 2.1.2 < 3": 772 | version "2.1.2" 773 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 774 | 775 | sax@^1.2.4: 776 | version "1.2.4" 777 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 778 | 779 | semver@^5.3.0: 780 | version "5.5.1" 781 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" 782 | 783 | set-blocking@~2.0.0: 784 | version "2.0.0" 785 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 786 | 787 | set-immediate-shim@^1.0.1: 788 | version "1.0.1" 789 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 790 | 791 | shell-quote@^1.6.1: 792 | version "1.6.1" 793 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" 794 | dependencies: 795 | array-filter "~0.0.0" 796 | array-map "~0.0.0" 797 | array-reduce "~0.0.0" 798 | jsonify "~0.0.0" 799 | 800 | signal-exit@^3.0.0: 801 | version "3.0.2" 802 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 803 | 804 | sprintf-js@~1.0.2: 805 | version "1.0.3" 806 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 807 | 808 | string-width@^1.0.1: 809 | version "1.0.2" 810 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 811 | dependencies: 812 | code-point-at "^1.0.0" 813 | is-fullwidth-code-point "^1.0.0" 814 | strip-ansi "^3.0.0" 815 | 816 | "string-width@^1.0.2 || 2": 817 | version "2.1.1" 818 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 819 | dependencies: 820 | is-fullwidth-code-point "^2.0.0" 821 | strip-ansi "^4.0.0" 822 | 823 | string_decoder@~1.1.1: 824 | version "1.1.1" 825 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 826 | dependencies: 827 | safe-buffer "~5.1.0" 828 | 829 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 830 | version "3.0.1" 831 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 832 | dependencies: 833 | ansi-regex "^2.0.0" 834 | 835 | strip-ansi@^4.0.0: 836 | version "4.0.0" 837 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 838 | dependencies: 839 | ansi-regex "^3.0.0" 840 | 841 | strip-json-comments@~2.0.1: 842 | version "2.0.1" 843 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 844 | 845 | subarg@^1.0.0: 846 | version "1.0.0" 847 | resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" 848 | dependencies: 849 | minimist "^1.1.0" 850 | 851 | supports-color@^2.0.0: 852 | version "2.0.0" 853 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 854 | 855 | supports-color@^5.3.0: 856 | version "5.5.0" 857 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 858 | dependencies: 859 | has-flag "^3.0.0" 860 | 861 | tar@^4: 862 | version "4.4.6" 863 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b" 864 | dependencies: 865 | chownr "^1.0.1" 866 | fs-minipass "^1.2.5" 867 | minipass "^2.3.3" 868 | minizlib "^1.1.0" 869 | mkdirp "^0.5.0" 870 | safe-buffer "^5.1.2" 871 | yallist "^3.0.2" 872 | 873 | tslib@1.9.0: 874 | version "1.9.0" 875 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" 876 | 877 | tslib@^1.8.0, tslib@^1.8.1: 878 | version "1.9.3" 879 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" 880 | 881 | tslint-config-standard@^8.0.1: 882 | version "8.0.1" 883 | resolved "https://registry.yarnpkg.com/tslint-config-standard/-/tslint-config-standard-8.0.1.tgz#e4dd3128e84b0e34b51990b68715a641f2b417e4" 884 | dependencies: 885 | tslint-eslint-rules "^5.3.1" 886 | 887 | tslint-eslint-rules@^5.3.1: 888 | version "5.4.0" 889 | resolved "https://registry.yarnpkg.com/tslint-eslint-rules/-/tslint-eslint-rules-5.4.0.tgz#e488cc9181bf193fe5cd7bfca213a7695f1737b5" 890 | dependencies: 891 | doctrine "0.7.2" 892 | tslib "1.9.0" 893 | tsutils "^3.0.0" 894 | 895 | tslint@^5.11.0: 896 | version "5.11.0" 897 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.11.0.tgz#98f30c02eae3cde7006201e4c33cb08b48581eed" 898 | dependencies: 899 | babel-code-frame "^6.22.0" 900 | builtin-modules "^1.1.1" 901 | chalk "^2.3.0" 902 | commander "^2.12.1" 903 | diff "^3.2.0" 904 | glob "^7.1.1" 905 | js-yaml "^3.7.0" 906 | minimatch "^3.0.4" 907 | resolve "^1.3.2" 908 | semver "^5.3.0" 909 | tslib "^1.8.0" 910 | tsutils "^2.27.2" 911 | 912 | tsutils@^2.27.2: 913 | version "2.29.0" 914 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" 915 | dependencies: 916 | tslib "^1.8.1" 917 | 918 | tsutils@^3.0.0: 919 | version "3.0.0" 920 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.0.0.tgz#0c5070a17a0503e056da038c48b5a1870a50a9ad" 921 | dependencies: 922 | tslib "^1.8.1" 923 | 924 | typescript@^3.0.1: 925 | version "3.0.1" 926 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.0.1.tgz#43738f29585d3a87575520a4b93ab6026ef11fdb" 927 | 928 | util-deprecate@~1.0.1: 929 | version "1.0.2" 930 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 931 | 932 | wide-align@^1.1.0: 933 | version "1.1.3" 934 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 935 | dependencies: 936 | string-width "^1.0.2 || 2" 937 | 938 | wrappy@1: 939 | version "1.0.2" 940 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 941 | 942 | yallist@^3.0.0, yallist@^3.0.2: 943 | version "3.0.2" 944 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 945 | --------------------------------------------------------------------------------