├── .gitignore ├── README.md ├── abis ├── AuctionRegistrar.json ├── PublicResolver.json └── Registry.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src ├── auctionRegistrar.ts ├── ensRegistry.ts └── resolver.ts ├── subgraph.yaml ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Graph cli generated 2 | src/types 3 | build/ 4 | .DS_STORE 5 | 6 | # Logs 7 | logs 8 | *.log 9 | npm-debug.log* 10 | yarn-debug.log* 11 | yarn-error.log* 12 | 13 | # Built output 14 | dist 15 | 16 | # Runtime data 17 | pids 18 | *.pid 19 | *.seed 20 | *.pid.lock 21 | 22 | # Directory for instrumented libs generated by jscoverage/JSCover 23 | lib-cov 24 | 25 | # Coverage directory used by tools like istanbul 26 | coverage 27 | 28 | # nyc test coverage 29 | .nyc_output 30 | 31 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 32 | .grunt 33 | 34 | # Bower dependency directory (https://bower.io/) 35 | bower_components 36 | 37 | # node-waf configuration 38 | .lock-wscript 39 | 40 | # Compiled binary addons (https://nodejs.org/api/addons.html) 41 | build/Release 42 | 43 | # Dependency directories 44 | node_modules/ 45 | jspm_packages/ 46 | dist/ 47 | 48 | 49 | # TypeScript v1 declaration files 50 | typings/ 51 | 52 | # Optional npm cache directory 53 | .npm 54 | 55 | # Optional eslint cache 56 | .eslintcache 57 | 58 | # Optional REPL history 59 | .node_repl_history 60 | 61 | # Output of 'npm pack' 62 | *.tgz 63 | 64 | # Yarn Integrity file 65 | .yarn-integrity 66 | 67 | # dotenv environment variables file 68 | .env 69 | 70 | # next.js build output 71 | .next -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ENS Subgraph 2 | 3 | **NOTE: This subgraph is deprecated. The official ENS subgraph is maintained at [ensdomains/ens-subgraph](https://github.com/ensdomains/ens-subgraph).** 4 | 5 | This Subgraph sources events from the ENS contracts. This includes the ENS registry, the Auction Registrar, and any resolvers that are created and linked to domains. The resolvers are added through dynamic data sources. More information on all of this can be found at [The Graph Documentation](https://thegraph.com/docs/quick-start). 6 | 7 | # Example Queries 8 | 9 | Here we have example queries, so that you don't have to type them in yourself eachtime in the graphiql playground: 10 | 11 | ```graphql 12 | { 13 | domains { 14 | id 15 | labelName 16 | labelhash 17 | parent { 18 | id 19 | } 20 | subdomains { 21 | id 22 | } 23 | owner { 24 | id 25 | } 26 | resolver { 27 | id 28 | } 29 | ttl 30 | } 31 | resolvers { 32 | id 33 | address 34 | domain { 35 | id 36 | } 37 | resolverEvents { 38 | id 39 | node 40 | ... on AddrChanged { 41 | a 42 | } 43 | ... on NameChanged { 44 | name 45 | } 46 | ... on AbiChanged { 47 | contentType 48 | } 49 | ... on PubkeyChanged { 50 | x 51 | y 52 | } 53 | ... on TextChanged { 54 | indexedKey 55 | key 56 | } 57 | ... on ContenthashChanged { 58 | hash 59 | } 60 | ... on InterfaceChanged { 61 | interfaceID 62 | implementer 63 | } 64 | ... on AuthorisationChanged { 65 | owner 66 | target 67 | isAuthorized 68 | } 69 | } 70 | } 71 | } 72 | 73 | ``` 74 | -------------------------------------------------------------------------------- /abis/AuctionRegistrar.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "constant": false, 4 | "inputs": [ 5 | { 6 | "name": "_hash", 7 | "type": "bytes32" 8 | } 9 | ], 10 | "name": "releaseDeed", 11 | "outputs": [], 12 | "payable": false, 13 | "type": "function" 14 | }, 15 | { 16 | "constant": true, 17 | "inputs": [ 18 | { 19 | "name": "_hash", 20 | "type": "bytes32" 21 | } 22 | ], 23 | "name": "getAllowedTime", 24 | "outputs": [ 25 | { 26 | "name": "timestamp", 27 | "type": "uint256" 28 | } 29 | ], 30 | "payable": false, 31 | "type": "function" 32 | }, 33 | { 34 | "constant": false, 35 | "inputs": [ 36 | { 37 | "name": "unhashedName", 38 | "type": "string" 39 | } 40 | ], 41 | "name": "invalidateName", 42 | "outputs": [], 43 | "payable": false, 44 | "type": "function" 45 | }, 46 | { 47 | "constant": true, 48 | "inputs": [ 49 | { 50 | "name": "hash", 51 | "type": "bytes32" 52 | }, 53 | { 54 | "name": "owner", 55 | "type": "address" 56 | }, 57 | { 58 | "name": "value", 59 | "type": "uint256" 60 | }, 61 | { 62 | "name": "salt", 63 | "type": "bytes32" 64 | } 65 | ], 66 | "name": "shaBid", 67 | "outputs": [ 68 | { 69 | "name": "sealedBid", 70 | "type": "bytes32" 71 | } 72 | ], 73 | "payable": false, 74 | "type": "function" 75 | }, 76 | { 77 | "constant": false, 78 | "inputs": [ 79 | { 80 | "name": "bidder", 81 | "type": "address" 82 | }, 83 | { 84 | "name": "seal", 85 | "type": "bytes32" 86 | } 87 | ], 88 | "name": "cancelBid", 89 | "outputs": [], 90 | "payable": false, 91 | "type": "function" 92 | }, 93 | { 94 | "constant": true, 95 | "inputs": [ 96 | { 97 | "name": "_hash", 98 | "type": "bytes32" 99 | } 100 | ], 101 | "name": "entries", 102 | "outputs": [ 103 | { 104 | "name": "", 105 | "type": "uint8" 106 | }, 107 | { 108 | "name": "", 109 | "type": "address" 110 | }, 111 | { 112 | "name": "", 113 | "type": "uint256" 114 | }, 115 | { 116 | "name": "", 117 | "type": "uint256" 118 | }, 119 | { 120 | "name": "", 121 | "type": "uint256" 122 | } 123 | ], 124 | "payable": false, 125 | "type": "function" 126 | }, 127 | { 128 | "constant": true, 129 | "inputs": [], 130 | "name": "ens", 131 | "outputs": [ 132 | { 133 | "name": "", 134 | "type": "address" 135 | } 136 | ], 137 | "payable": false, 138 | "type": "function" 139 | }, 140 | { 141 | "constant": false, 142 | "inputs": [ 143 | { 144 | "name": "_hash", 145 | "type": "bytes32" 146 | }, 147 | { 148 | "name": "_value", 149 | "type": "uint256" 150 | }, 151 | { 152 | "name": "_salt", 153 | "type": "bytes32" 154 | } 155 | ], 156 | "name": "unsealBid", 157 | "outputs": [], 158 | "payable": false, 159 | "type": "function" 160 | }, 161 | { 162 | "constant": false, 163 | "inputs": [ 164 | { 165 | "name": "_hash", 166 | "type": "bytes32" 167 | } 168 | ], 169 | "name": "transferRegistrars", 170 | "outputs": [], 171 | "payable": false, 172 | "type": "function" 173 | }, 174 | { 175 | "constant": true, 176 | "inputs": [ 177 | { 178 | "name": "", 179 | "type": "address" 180 | }, 181 | { 182 | "name": "", 183 | "type": "bytes32" 184 | } 185 | ], 186 | "name": "sealedBids", 187 | "outputs": [ 188 | { 189 | "name": "", 190 | "type": "address" 191 | } 192 | ], 193 | "payable": false, 194 | "type": "function" 195 | }, 196 | { 197 | "constant": true, 198 | "inputs": [ 199 | { 200 | "name": "_hash", 201 | "type": "bytes32" 202 | } 203 | ], 204 | "name": "state", 205 | "outputs": [ 206 | { 207 | "name": "", 208 | "type": "uint8" 209 | } 210 | ], 211 | "payable": false, 212 | "type": "function" 213 | }, 214 | { 215 | "constant": false, 216 | "inputs": [ 217 | { 218 | "name": "_hash", 219 | "type": "bytes32" 220 | }, 221 | { 222 | "name": "newOwner", 223 | "type": "address" 224 | } 225 | ], 226 | "name": "transfer", 227 | "outputs": [], 228 | "payable": false, 229 | "type": "function" 230 | }, 231 | { 232 | "constant": true, 233 | "inputs": [ 234 | { 235 | "name": "_hash", 236 | "type": "bytes32" 237 | }, 238 | { 239 | "name": "_timestamp", 240 | "type": "uint256" 241 | } 242 | ], 243 | "name": "isAllowed", 244 | "outputs": [ 245 | { 246 | "name": "allowed", 247 | "type": "bool" 248 | } 249 | ], 250 | "payable": false, 251 | "type": "function" 252 | }, 253 | { 254 | "constant": false, 255 | "inputs": [ 256 | { 257 | "name": "_hash", 258 | "type": "bytes32" 259 | } 260 | ], 261 | "name": "finalizeAuction", 262 | "outputs": [], 263 | "payable": false, 264 | "type": "function" 265 | }, 266 | { 267 | "constant": true, 268 | "inputs": [], 269 | "name": "registryStarted", 270 | "outputs": [ 271 | { 272 | "name": "", 273 | "type": "uint256" 274 | } 275 | ], 276 | "payable": false, 277 | "type": "function" 278 | }, 279 | { 280 | "constant": true, 281 | "inputs": [], 282 | "name": "launchLength", 283 | "outputs": [ 284 | { 285 | "name": "", 286 | "type": "uint32" 287 | } 288 | ], 289 | "payable": false, 290 | "type": "function" 291 | }, 292 | { 293 | "constant": false, 294 | "inputs": [ 295 | { 296 | "name": "sealedBid", 297 | "type": "bytes32" 298 | } 299 | ], 300 | "name": "newBid", 301 | "outputs": [], 302 | "payable": true, 303 | "type": "function" 304 | }, 305 | { 306 | "constant": false, 307 | "inputs": [ 308 | { 309 | "name": "labels", 310 | "type": "bytes32[]" 311 | } 312 | ], 313 | "name": "eraseNode", 314 | "outputs": [], 315 | "payable": false, 316 | "type": "function" 317 | }, 318 | { 319 | "constant": false, 320 | "inputs": [ 321 | { 322 | "name": "_hashes", 323 | "type": "bytes32[]" 324 | } 325 | ], 326 | "name": "startAuctions", 327 | "outputs": [], 328 | "payable": false, 329 | "type": "function" 330 | }, 331 | { 332 | "constant": false, 333 | "inputs": [ 334 | { 335 | "name": "hash", 336 | "type": "bytes32" 337 | }, 338 | { 339 | "name": "deed", 340 | "type": "address" 341 | }, 342 | { 343 | "name": "registrationDate", 344 | "type": "uint256" 345 | } 346 | ], 347 | "name": "acceptRegistrarTransfer", 348 | "outputs": [], 349 | "payable": false, 350 | "type": "function" 351 | }, 352 | { 353 | "constant": false, 354 | "inputs": [ 355 | { 356 | "name": "_hash", 357 | "type": "bytes32" 358 | } 359 | ], 360 | "name": "startAuction", 361 | "outputs": [], 362 | "payable": false, 363 | "type": "function" 364 | }, 365 | { 366 | "constant": true, 367 | "inputs": [], 368 | "name": "rootNode", 369 | "outputs": [ 370 | { 371 | "name": "", 372 | "type": "bytes32" 373 | } 374 | ], 375 | "payable": false, 376 | "type": "function" 377 | }, 378 | { 379 | "constant": false, 380 | "inputs": [ 381 | { 382 | "name": "hashes", 383 | "type": "bytes32[]" 384 | }, 385 | { 386 | "name": "sealedBid", 387 | "type": "bytes32" 388 | } 389 | ], 390 | "name": "startAuctionsAndBid", 391 | "outputs": [], 392 | "payable": true, 393 | "type": "function" 394 | }, 395 | { 396 | "inputs": [ 397 | { 398 | "name": "_ens", 399 | "type": "address" 400 | }, 401 | { 402 | "name": "_rootNode", 403 | "type": "bytes32" 404 | }, 405 | { 406 | "name": "_startDate", 407 | "type": "uint256" 408 | } 409 | ], 410 | "payable": false, 411 | "type": "constructor" 412 | }, 413 | { 414 | "anonymous": false, 415 | "inputs": [ 416 | { 417 | "indexed": true, 418 | "name": "hash", 419 | "type": "bytes32" 420 | }, 421 | { 422 | "indexed": false, 423 | "name": "registrationDate", 424 | "type": "uint256" 425 | } 426 | ], 427 | "name": "AuctionStarted", 428 | "type": "event" 429 | }, 430 | { 431 | "anonymous": false, 432 | "inputs": [ 433 | { 434 | "indexed": true, 435 | "name": "hash", 436 | "type": "bytes32" 437 | }, 438 | { 439 | "indexed": true, 440 | "name": "bidder", 441 | "type": "address" 442 | }, 443 | { 444 | "indexed": false, 445 | "name": "deposit", 446 | "type": "uint256" 447 | } 448 | ], 449 | "name": "NewBid", 450 | "type": "event" 451 | }, 452 | { 453 | "anonymous": false, 454 | "inputs": [ 455 | { 456 | "indexed": true, 457 | "name": "hash", 458 | "type": "bytes32" 459 | }, 460 | { 461 | "indexed": true, 462 | "name": "owner", 463 | "type": "address" 464 | }, 465 | { 466 | "indexed": false, 467 | "name": "value", 468 | "type": "uint256" 469 | }, 470 | { 471 | "indexed": false, 472 | "name": "status", 473 | "type": "uint8" 474 | } 475 | ], 476 | "name": "BidRevealed", 477 | "type": "event" 478 | }, 479 | { 480 | "anonymous": false, 481 | "inputs": [ 482 | { 483 | "indexed": true, 484 | "name": "hash", 485 | "type": "bytes32" 486 | }, 487 | { 488 | "indexed": true, 489 | "name": "owner", 490 | "type": "address" 491 | }, 492 | { 493 | "indexed": false, 494 | "name": "value", 495 | "type": "uint256" 496 | }, 497 | { 498 | "indexed": false, 499 | "name": "registrationDate", 500 | "type": "uint256" 501 | } 502 | ], 503 | "name": "HashRegistered", 504 | "type": "event" 505 | }, 506 | { 507 | "anonymous": false, 508 | "inputs": [ 509 | { 510 | "indexed": true, 511 | "name": "hash", 512 | "type": "bytes32" 513 | }, 514 | { 515 | "indexed": false, 516 | "name": "value", 517 | "type": "uint256" 518 | } 519 | ], 520 | "name": "HashReleased", 521 | "type": "event" 522 | }, 523 | { 524 | "anonymous": false, 525 | "inputs": [ 526 | { 527 | "indexed": true, 528 | "name": "hash", 529 | "type": "bytes32" 530 | }, 531 | { 532 | "indexed": true, 533 | "name": "name", 534 | "type": "string" 535 | }, 536 | { 537 | "indexed": false, 538 | "name": "value", 539 | "type": "uint256" 540 | }, 541 | { 542 | "indexed": false, 543 | "name": "registrationDate", 544 | "type": "uint256" 545 | } 546 | ], 547 | "name": "HashInvalidated", 548 | "type": "event" 549 | } 550 | ] 551 | -------------------------------------------------------------------------------- /abis/PublicResolver.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "constant": true, 4 | "inputs": [ 5 | { 6 | "name": "interfaceID", 7 | "type": "bytes4" 8 | } 9 | ], 10 | "name": "supportsInterface", 11 | "outputs": [ 12 | { 13 | "name": "", 14 | "type": "bool" 15 | } 16 | ], 17 | "payable": false, 18 | "stateMutability": "pure", 19 | "type": "function" 20 | }, 21 | { 22 | "constant": false, 23 | "inputs": [ 24 | { 25 | "name": "node", 26 | "type": "bytes32" 27 | }, 28 | { 29 | "name": "key", 30 | "type": "string" 31 | }, 32 | { 33 | "name": "value", 34 | "type": "string" 35 | } 36 | ], 37 | "name": "setText", 38 | "outputs": [], 39 | "payable": false, 40 | "stateMutability": "nonpayable", 41 | "type": "function" 42 | }, 43 | { 44 | "constant": true, 45 | "inputs": [ 46 | { 47 | "name": "node", 48 | "type": "bytes32" 49 | }, 50 | { 51 | "name": "interfaceID", 52 | "type": "bytes4" 53 | } 54 | ], 55 | "name": "interfaceImplementer", 56 | "outputs": [ 57 | { 58 | "name": "", 59 | "type": "address" 60 | } 61 | ], 62 | "payable": false, 63 | "stateMutability": "view", 64 | "type": "function" 65 | }, 66 | { 67 | "constant": true, 68 | "inputs": [ 69 | { 70 | "name": "node", 71 | "type": "bytes32" 72 | }, 73 | { 74 | "name": "contentTypes", 75 | "type": "uint256" 76 | } 77 | ], 78 | "name": "ABI", 79 | "outputs": [ 80 | { 81 | "name": "", 82 | "type": "uint256" 83 | }, 84 | { 85 | "name": "", 86 | "type": "bytes" 87 | } 88 | ], 89 | "payable": false, 90 | "stateMutability": "view", 91 | "type": "function" 92 | }, 93 | { 94 | "constant": false, 95 | "inputs": [ 96 | { 97 | "name": "node", 98 | "type": "bytes32" 99 | }, 100 | { 101 | "name": "x", 102 | "type": "bytes32" 103 | }, 104 | { 105 | "name": "y", 106 | "type": "bytes32" 107 | } 108 | ], 109 | "name": "setPubkey", 110 | "outputs": [], 111 | "payable": false, 112 | "stateMutability": "nonpayable", 113 | "type": "function" 114 | }, 115 | { 116 | "constant": false, 117 | "inputs": [ 118 | { 119 | "name": "node", 120 | "type": "bytes32" 121 | }, 122 | { 123 | "name": "hash", 124 | "type": "bytes" 125 | } 126 | ], 127 | "name": "setContenthash", 128 | "outputs": [], 129 | "payable": false, 130 | "stateMutability": "nonpayable", 131 | "type": "function" 132 | }, 133 | { 134 | "constant": true, 135 | "inputs": [ 136 | { 137 | "name": "node", 138 | "type": "bytes32" 139 | } 140 | ], 141 | "name": "addr", 142 | "outputs": [ 143 | { 144 | "name": "", 145 | "type": "address" 146 | } 147 | ], 148 | "payable": false, 149 | "stateMutability": "view", 150 | "type": "function" 151 | }, 152 | { 153 | "constant": true, 154 | "inputs": [ 155 | { 156 | "name": "node", 157 | "type": "bytes32" 158 | }, 159 | { 160 | "name": "key", 161 | "type": "string" 162 | } 163 | ], 164 | "name": "text", 165 | "outputs": [ 166 | { 167 | "name": "", 168 | "type": "string" 169 | } 170 | ], 171 | "payable": false, 172 | "stateMutability": "view", 173 | "type": "function" 174 | }, 175 | { 176 | "constant": false, 177 | "inputs": [ 178 | { 179 | "name": "node", 180 | "type": "bytes32" 181 | }, 182 | { 183 | "name": "contentType", 184 | "type": "uint256" 185 | }, 186 | { 187 | "name": "data", 188 | "type": "bytes" 189 | } 190 | ], 191 | "name": "setABI", 192 | "outputs": [], 193 | "payable": false, 194 | "stateMutability": "nonpayable", 195 | "type": "function" 196 | }, 197 | { 198 | "constant": true, 199 | "inputs": [ 200 | { 201 | "name": "node", 202 | "type": "bytes32" 203 | } 204 | ], 205 | "name": "name", 206 | "outputs": [ 207 | { 208 | "name": "", 209 | "type": "string" 210 | } 211 | ], 212 | "payable": false, 213 | "stateMutability": "view", 214 | "type": "function" 215 | }, 216 | { 217 | "constant": false, 218 | "inputs": [ 219 | { 220 | "name": "node", 221 | "type": "bytes32" 222 | }, 223 | { 224 | "name": "name", 225 | "type": "string" 226 | } 227 | ], 228 | "name": "setName", 229 | "outputs": [], 230 | "payable": false, 231 | "stateMutability": "nonpayable", 232 | "type": "function" 233 | }, 234 | { 235 | "constant": true, 236 | "inputs": [ 237 | { 238 | "name": "node", 239 | "type": "bytes32" 240 | } 241 | ], 242 | "name": "contenthash", 243 | "outputs": [ 244 | { 245 | "name": "", 246 | "type": "bytes" 247 | } 248 | ], 249 | "payable": false, 250 | "stateMutability": "view", 251 | "type": "function" 252 | }, 253 | { 254 | "constant": true, 255 | "inputs": [ 256 | { 257 | "name": "node", 258 | "type": "bytes32" 259 | } 260 | ], 261 | "name": "pubkey", 262 | "outputs": [ 263 | { 264 | "name": "x", 265 | "type": "bytes32" 266 | }, 267 | { 268 | "name": "y", 269 | "type": "bytes32" 270 | } 271 | ], 272 | "payable": false, 273 | "stateMutability": "view", 274 | "type": "function" 275 | }, 276 | { 277 | "constant": false, 278 | "inputs": [ 279 | { 280 | "name": "node", 281 | "type": "bytes32" 282 | }, 283 | { 284 | "name": "addr", 285 | "type": "address" 286 | } 287 | ], 288 | "name": "setAddr", 289 | "outputs": [], 290 | "payable": false, 291 | "stateMutability": "nonpayable", 292 | "type": "function" 293 | }, 294 | { 295 | "constant": false, 296 | "inputs": [ 297 | { 298 | "name": "node", 299 | "type": "bytes32" 300 | }, 301 | { 302 | "name": "interfaceID", 303 | "type": "bytes4" 304 | }, 305 | { 306 | "name": "implementer", 307 | "type": "address" 308 | } 309 | ], 310 | "name": "setInterface", 311 | "outputs": [], 312 | "payable": false, 313 | "stateMutability": "nonpayable", 314 | "type": "function" 315 | }, 316 | { 317 | "constant": true, 318 | "inputs": [ 319 | { 320 | "name": "", 321 | "type": "bytes32" 322 | }, 323 | { 324 | "name": "", 325 | "type": "address" 326 | }, 327 | { 328 | "name": "", 329 | "type": "address" 330 | } 331 | ], 332 | "name": "authorisations", 333 | "outputs": [ 334 | { 335 | "name": "", 336 | "type": "bool" 337 | } 338 | ], 339 | "payable": false, 340 | "stateMutability": "view", 341 | "type": "function" 342 | }, 343 | { 344 | "inputs": [ 345 | { 346 | "name": "_ens", 347 | "type": "address" 348 | } 349 | ], 350 | "payable": false, 351 | "stateMutability": "nonpayable", 352 | "type": "constructor" 353 | }, 354 | { 355 | "anonymous": false, 356 | "inputs": [ 357 | { 358 | "indexed": true, 359 | "name": "node", 360 | "type": "bytes32" 361 | }, 362 | { 363 | "indexed": true, 364 | "name": "owner", 365 | "type": "address" 366 | }, 367 | { 368 | "indexed": true, 369 | "name": "target", 370 | "type": "address" 371 | }, 372 | { 373 | "indexed": false, 374 | "name": "isAuthorised", 375 | "type": "bool" 376 | } 377 | ], 378 | "name": "AuthorisationChanged", 379 | "type": "event" 380 | }, 381 | { 382 | "anonymous": false, 383 | "inputs": [ 384 | { 385 | "indexed": true, 386 | "name": "node", 387 | "type": "bytes32" 388 | }, 389 | { 390 | "indexed": false, 391 | "name": "indexedKey", 392 | "type": "string" 393 | }, 394 | { 395 | "indexed": false, 396 | "name": "key", 397 | "type": "string" 398 | } 399 | ], 400 | "name": "TextChanged", 401 | "type": "event" 402 | }, 403 | { 404 | "anonymous": false, 405 | "inputs": [ 406 | { 407 | "indexed": true, 408 | "name": "node", 409 | "type": "bytes32" 410 | }, 411 | { 412 | "indexed": false, 413 | "name": "x", 414 | "type": "bytes32" 415 | }, 416 | { 417 | "indexed": false, 418 | "name": "y", 419 | "type": "bytes32" 420 | } 421 | ], 422 | "name": "PubkeyChanged", 423 | "type": "event" 424 | }, 425 | { 426 | "anonymous": false, 427 | "inputs": [ 428 | { 429 | "indexed": true, 430 | "name": "node", 431 | "type": "bytes32" 432 | }, 433 | { 434 | "indexed": false, 435 | "name": "name", 436 | "type": "string" 437 | } 438 | ], 439 | "name": "NameChanged", 440 | "type": "event" 441 | }, 442 | { 443 | "anonymous": false, 444 | "inputs": [ 445 | { 446 | "indexed": true, 447 | "name": "node", 448 | "type": "bytes32" 449 | }, 450 | { 451 | "indexed": true, 452 | "name": "interfaceID", 453 | "type": "bytes4" 454 | }, 455 | { 456 | "indexed": false, 457 | "name": "implementer", 458 | "type": "address" 459 | } 460 | ], 461 | "name": "InterfaceChanged", 462 | "type": "event" 463 | }, 464 | { 465 | "anonymous": false, 466 | "inputs": [ 467 | { 468 | "indexed": true, 469 | "name": "node", 470 | "type": "bytes32" 471 | }, 472 | { 473 | "indexed": false, 474 | "name": "hash", 475 | "type": "bytes" 476 | } 477 | ], 478 | "name": "ContenthashChanged", 479 | "type": "event" 480 | }, 481 | { 482 | "anonymous": false, 483 | "inputs": [ 484 | { 485 | "indexed": true, 486 | "name": "node", 487 | "type": "bytes32" 488 | }, 489 | { 490 | "indexed": false, 491 | "name": "a", 492 | "type": "address" 493 | } 494 | ], 495 | "name": "AddrChanged", 496 | "type": "event" 497 | }, 498 | { 499 | "anonymous": false, 500 | "inputs": [ 501 | { 502 | "indexed": true, 503 | "name": "node", 504 | "type": "bytes32" 505 | }, 506 | { 507 | "indexed": true, 508 | "name": "contentType", 509 | "type": "uint256" 510 | } 511 | ], 512 | "name": "ABIChanged", 513 | "type": "event" 514 | }, 515 | { 516 | "constant": false, 517 | "inputs": [ 518 | { 519 | "name": "node", 520 | "type": "bytes32" 521 | }, 522 | { 523 | "name": "target", 524 | "type": "address" 525 | }, 526 | { 527 | "name": "isAuthorised", 528 | "type": "bool" 529 | } 530 | ], 531 | "name": "setAuthorisation", 532 | "outputs": [], 533 | "payable": false, 534 | "stateMutability": "nonpayable", 535 | "type": "function" 536 | } 537 | ] -------------------------------------------------------------------------------- /abis/Registry.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "constant":true, 4 | "inputs":[ 5 | { 6 | "name":"node", 7 | "type":"bytes32" 8 | } 9 | ], 10 | "name":"resolver", 11 | "outputs":[ 12 | { 13 | "name":"", 14 | "type":"address" 15 | } 16 | ], 17 | "payable":false, 18 | "type":"function" 19 | }, 20 | { 21 | "constant":true, 22 | "inputs":[ 23 | { 24 | "name":"node", 25 | "type":"bytes32" 26 | } 27 | ], 28 | "name":"owner", 29 | "outputs":[ 30 | { 31 | "name":"", 32 | "type":"address" 33 | } 34 | ], 35 | "payable":false, 36 | "type":"function" 37 | }, 38 | { 39 | "constant":false, 40 | "inputs":[ 41 | { 42 | "name":"node", 43 | "type":"bytes32" 44 | }, 45 | { 46 | "name":"label", 47 | "type":"bytes32" 48 | }, 49 | { 50 | "name":"owner", 51 | "type":"address" 52 | } 53 | ], 54 | "name":"setSubnodeOwner", 55 | "outputs":[ 56 | 57 | ], 58 | "payable":false, 59 | "type":"function" 60 | }, 61 | { 62 | "constant":false, 63 | "inputs":[ 64 | { 65 | "name":"node", 66 | "type":"bytes32" 67 | }, 68 | { 69 | "name":"ttl", 70 | "type":"uint64" 71 | } 72 | ], 73 | "name":"setTTL", 74 | "outputs":[ 75 | 76 | ], 77 | "payable":false, 78 | "type":"function" 79 | }, 80 | { 81 | "constant":true, 82 | "inputs":[ 83 | { 84 | "name":"node", 85 | "type":"bytes32" 86 | } 87 | ], 88 | "name":"ttl", 89 | "outputs":[ 90 | { 91 | "name":"", 92 | "type":"uint64" 93 | } 94 | ], 95 | "payable":false, 96 | "type":"function" 97 | }, 98 | { 99 | "constant":false, 100 | "inputs":[ 101 | { 102 | "name":"node", 103 | "type":"bytes32" 104 | }, 105 | { 106 | "name":"resolver", 107 | "type":"address" 108 | } 109 | ], 110 | "name":"setResolver", 111 | "outputs":[ 112 | 113 | ], 114 | "payable":false, 115 | "type":"function" 116 | }, 117 | { 118 | "constant":false, 119 | "inputs":[ 120 | { 121 | "name":"node", 122 | "type":"bytes32" 123 | }, 124 | { 125 | "name":"owner", 126 | "type":"address" 127 | } 128 | ], 129 | "name":"setOwner", 130 | "outputs":[ 131 | 132 | ], 133 | "payable":false, 134 | "type":"function" 135 | }, 136 | { 137 | "anonymous":false, 138 | "inputs":[ 139 | { 140 | "indexed":true, 141 | "name":"node", 142 | "type":"bytes32" 143 | }, 144 | { 145 | "indexed":false, 146 | "name":"owner", 147 | "type":"address" 148 | } 149 | ], 150 | "name":"Transfer", 151 | "type":"event" 152 | }, 153 | { 154 | "anonymous":false, 155 | "inputs":[ 156 | { 157 | "indexed":true, 158 | "name":"node", 159 | "type":"bytes32" 160 | }, 161 | { 162 | "indexed":true, 163 | "name":"label", 164 | "type":"bytes32" 165 | }, 166 | { 167 | "indexed":false, 168 | "name":"owner", 169 | "type":"address" 170 | } 171 | ], 172 | "name":"NewOwner", 173 | "type":"event" 174 | }, 175 | { 176 | "anonymous":false, 177 | "inputs":[ 178 | { 179 | "indexed":true, 180 | "name":"node", 181 | "type":"bytes32" 182 | }, 183 | { 184 | "indexed":false, 185 | "name":"resolver", 186 | "type":"address" 187 | } 188 | ], 189 | "name":"NewResolver", 190 | "type":"event" 191 | }, 192 | { 193 | "anonymous":false, 194 | "inputs":[ 195 | { 196 | "indexed":true, 197 | "name":"node", 198 | "type":"bytes32" 199 | }, 200 | { 201 | "indexed":false, 202 | "name":"ttl", 203 | "type":"uint64" 204 | } 205 | ], 206 | "name":"NewTTL", 207 | "type":"event" 208 | } 209 | ] -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ens-subgraph", 3 | "version": "1.0.0", 4 | "repository": "https://github.com/ensdomains/ens-subgraph", 5 | "license": "MIT", 6 | "scripts": { 7 | "codegen": "graph codegen --output-dir src/types/", 8 | "create-local": "graph create graphprotocol/ens --node http://127.0.0.1:8020", 9 | "build": "graph build", 10 | "deploy-local": "graph deploy graphprotocol/ens --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020/", 11 | "deploy": "graph deploy ensdomains/ens --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/", 12 | "deploy-staging": "graph deploy davekaj/ens --ipfs https://api.staging.thegraph.com/ipfs/ --node https://api.staging.thegraph.com/deploy/", 13 | "watch-local": "graph deploy graphprotocol/ens --watch --debug --node http://127.0.0.1:8020/ --ipfs http://localhost:5001" 14 | }, 15 | "devDependencies": { 16 | "@graphprotocol/graph-cli": "^0.11.2", 17 | "@graphprotocol/graph-ts": "git://github.com/graphprotocol/graph-ts.git#master" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- 1 | type Domain @entity { 2 | id: ID! # The namehash of the name 3 | labelName: String # The human readable label name (imported from CSV), if known 4 | labelhash: Bytes # keccak256(labelName) 5 | parent: Domain # The namehash (id) of the parent name 6 | subdomains: [Domain!]! @derivedFrom(field: "parent") # Can count domains from length of array 7 | owner: Account! 8 | resolver: Resolver 9 | ttl: BigInt 10 | } 11 | 12 | type Account @entity { 13 | id: ID! 14 | domains: [Domain!]! @derivedFrom(field: "owner") 15 | domainCount: Int! 16 | } 17 | 18 | enum AuctionState { 19 | AUCTION 20 | FINALIZED 21 | RELEASED 22 | FORBIDDEN 23 | } 24 | 25 | type AuctionedName @entity { 26 | id: ID! 27 | domain: Domain 28 | registrationDate: Int! 29 | releaseDate: Int 30 | winningBidder: Account 31 | maxBid: BigInt 32 | secondBid: BigInt 33 | bidCount: Int! 34 | state: AuctionState 35 | } 36 | 37 | type Resolver @entity { 38 | id: ID! # Concatenation of resolver address and namehash 39 | domain: Domain! 40 | address: Bytes! 41 | resolverEvents: [ResolverEvent!]! @derivedFrom(field: "resolverID") 42 | } 43 | 44 | interface ResolverEvent { 45 | id: ID! # Concatenation of block number and log ID 46 | node: Bytes! 47 | resolverID: Resolver! # Used to derive relationships to Resolvers 48 | } 49 | 50 | type AddrChanged implements ResolverEvent @entity { 51 | id: ID! 52 | node: Bytes! 53 | resolverID: Resolver! 54 | a: Bytes! 55 | } 56 | 57 | type NameChanged implements ResolverEvent @entity { 58 | id: ID! 59 | node: Bytes! 60 | resolverID: Resolver! 61 | name: String! 62 | } 63 | 64 | type AbiChanged implements ResolverEvent @entity { 65 | id: ID! 66 | node: Bytes! 67 | resolverID: Resolver! 68 | contentType: BigInt! 69 | } 70 | 71 | type PubkeyChanged implements ResolverEvent @entity { 72 | id: ID! 73 | node: Bytes! 74 | resolverID: Resolver! 75 | x: Bytes! 76 | y: Bytes! 77 | } 78 | 79 | # Currently not in use - follow this issue for status - https://github.com/graphprotocol/graph-node/issues/913 80 | #type TextChanged implements ResolverEvent @entity { 81 | # id: ID! 82 | # node: Bytes! 83 | # resolverID: String! 84 | # indexedKey: String! 85 | # key: String! 86 | #} 87 | 88 | type ContenthashChanged implements ResolverEvent @entity { 89 | id: ID! 90 | node: Bytes! 91 | resolverID: Resolver! 92 | hash: Bytes! 93 | } 94 | 95 | type InterfaceChanged implements ResolverEvent @entity { 96 | id: ID! 97 | node: Bytes! 98 | resolverID: Resolver! 99 | interfaceID: Bytes! 100 | implementer: Bytes! 101 | } 102 | 103 | type AuthorisationChanged implements ResolverEvent @entity { 104 | id: ID! 105 | node: Bytes! 106 | resolverID: Resolver! 107 | owner: Bytes! 108 | target: Bytes! 109 | isAuthorized: Boolean! 110 | } 111 | -------------------------------------------------------------------------------- /src/auctionRegistrar.ts: -------------------------------------------------------------------------------- 1 | // Import types and APIs from graph-ts 2 | import { 3 | Address, 4 | Bytes, 5 | ByteArray, 6 | crypto, 7 | } from '@graphprotocol/graph-ts' 8 | 9 | // Import event types from the registry contract ABI 10 | import { AuctionStarted, NewBid, BidRevealed, HashRegistered, HashReleased, HashInvalidated } from './types/AuctionRegistrar/AuctionRegistrar' 11 | 12 | // Import entity types generated from the GraphQL schema 13 | import { Account, AuctionedName } from './types/schema' 14 | 15 | var rootNode:ByteArray = byteArrayFromHex("93cdeb708b7545dc668eb9280176169d1c33cfd8ed6f04690a0bcc88a93fc4ae") 16 | 17 | export function auctionStarted(event: AuctionStarted): void { 18 | let auction = new AuctionedName(event.params.hash.toHex()) 19 | 20 | auction.registrationDate = event.params.registrationDate.toI32() 21 | auction.bidCount = 0 22 | auction.maxBid = null 23 | auction.secondBid = null 24 | auction.state = "AUCTION" 25 | auction.save() 26 | } 27 | 28 | export function bidRevealed(event: BidRevealed): void { 29 | if(event.params.status == 5) { 30 | // Actually a cancelled bid; hash is not the label hash 31 | return 32 | } 33 | 34 | let auction = AuctionedName.load(event.params.hash.toHex()) 35 | switch(event.params.status) { 36 | case 0: // Harmless invalid bid 37 | case 1: // Bid revealed late 38 | break; 39 | case 4: // Bid lower than second bid 40 | auction.bidCount += 1 41 | break; 42 | case 2: // New winning bid 43 | let account = Account.load(event.params.owner.toHex()) 44 | if (account == null){ 45 | account = new Account(event.params.owner.toHex()) 46 | account.domainCount = 0 47 | } 48 | account.save() 49 | 50 | auction.secondBid = auction.maxBid 51 | auction.maxBid = event.params.value 52 | auction.winningBidder = account.id 53 | auction.bidCount += 1 54 | break; 55 | case 3: // Runner up bid 56 | auction.secondBid = event.params.value 57 | auction.bidCount += 1 58 | break; 59 | } 60 | auction.save() 61 | } 62 | 63 | export function hashRegistered(event: HashRegistered): void { 64 | let auction = new AuctionedName(event.params.hash.toHex()) 65 | auction.secondBid = event.params.value 66 | auction.winningBidder = event.params.owner.toHex() 67 | auction.registrationDate = event.params.registrationDate.toI32() 68 | auction.domain = crypto.keccak256(concat(rootNode, event.params.hash)).toHex(); 69 | auction.state = "FINALIZED" 70 | auction.save() 71 | } 72 | 73 | export function hashReleased(event: HashReleased): void { 74 | let auction = new AuctionedName(event.params.hash.toHex()) 75 | auction.releaseDate = event.block.timestamp.toI32() 76 | auction.state = "RELEASED" 77 | auction.save() 78 | } 79 | 80 | export function hashInvalidated(event: HashInvalidated): void { 81 | let auction = new AuctionedName(event.params.hash.toHex()) 82 | auction.state = "FORBIDDEN" 83 | auction.save() 84 | } 85 | 86 | // Helper for concatenating two byte arrays 87 | function concat(a: ByteArray, b: ByteArray): ByteArray { 88 | let out = new Uint8Array(a.length + b.length) 89 | for (let i = 0; i < a.length; i++) { 90 | out[i] = a[i] 91 | } 92 | for (let j = 0; j < b.length; j++) { 93 | out[a.length + j] = b[j] 94 | } 95 | return out as ByteArray 96 | } 97 | 98 | function byteArrayFromHex(s: string): ByteArray { 99 | if(s.length % 2 !== 0) { 100 | throw new TypeError("Hex string must have an even number of characters") 101 | } 102 | let out = new Uint8Array(s.length / 2) 103 | for(var i = 0; i < s.length; i += 2) { 104 | out[i / 2] = parseInt(s.substring(i, i + 2), 16) as u32 105 | } 106 | return out as ByteArray; 107 | } 108 | -------------------------------------------------------------------------------- /src/ensRegistry.ts: -------------------------------------------------------------------------------- 1 | // Import types and APIs from graph-ts 2 | import { 3 | ByteArray, 4 | crypto, 5 | ens, 6 | } from '@graphprotocol/graph-ts' 7 | 8 | // Import event types from the registry contract ABI 9 | import { NewOwner, Transfer, NewResolver, NewTTL } from './types/ENSRegistry/EnsRegistry' 10 | 11 | // Import entity types generated from the GraphQL schema 12 | import { Account, Domain, Resolver } from './types/schema' 13 | 14 | // Handler for NewOwner events 15 | export function handleNewOwner(event: NewOwner): void { 16 | let account = Account.load(event.params.owner.toHexString()) 17 | if (account == null){ 18 | account = new Account(event.params.owner.toHexString()) 19 | account.domainCount = 0 20 | } 21 | account.domainCount = account.domainCount + 1 22 | account.save() 23 | 24 | let subnode = crypto.keccak256(concat(event.params.node, event.params.label)).toHexString() 25 | let domain = new Domain(subnode) 26 | 27 | // Get label and node names 28 | let label = ens.nameByHash(event.params.label.toHexString()) 29 | if (label != null) { 30 | domain.labelName = label 31 | } 32 | 33 | domain.owner = account.id 34 | domain.parent = event.params.node.toHexString() 35 | domain.labelhash = event.params.label 36 | domain.save() 37 | } 38 | 39 | // Handler for Transfer events 40 | export function handleTransfer(event: Transfer): void { 41 | let node = event.params.node.toHexString() 42 | let oldDomain = Domain.load(node) 43 | 44 | // if domain does exist, we must minus that owners domain count 45 | if (oldDomain != null) { 46 | let oldOwner = Account.load(oldDomain.owner) 47 | oldOwner.domainCount = oldOwner.domainCount - 1 48 | oldOwner.save() 49 | } 50 | 51 | // Update Account count 52 | let newAccount = Account.load(event.params.owner.toHexString()) 53 | if (newAccount == null){ 54 | newAccount = new Account(event.params.owner.toHexString()) 55 | newAccount.domainCount = 0 56 | } 57 | newAccount.domainCount = newAccount.domainCount + 1 58 | newAccount.save() 59 | 60 | // Update the domain owner 61 | let domain = new Domain(node) 62 | domain.owner = newAccount.id 63 | domain.save() 64 | } 65 | 66 | // Handler for NewResolver events 67 | export function handleNewResolver(event: NewResolver): void { 68 | let id = event.params.resolver.toHexString().concat('-').concat(event.params.node.toHexString()) 69 | let resolver = new Resolver(id) 70 | resolver.domain = event.params.node.toHexString() 71 | resolver.address = event.address 72 | resolver.save() 73 | 74 | let node = event.params.node.toHexString() 75 | let domain = new Domain(node) 76 | domain.resolver = id 77 | domain.save() 78 | } 79 | 80 | // Handler for NewTTL events 81 | export function handleNewTTL(event: NewTTL): void { 82 | let node = event.params.node.toHexString() 83 | let domain = new Domain(node) 84 | domain.ttl = event.params.ttl 85 | domain.save() 86 | } 87 | 88 | // Helper for concatenating two byte arrays 89 | function concat(a: ByteArray, b: ByteArray): ByteArray { 90 | let out = new Uint8Array(a.length + b.length) 91 | for (let i = 0; i < a.length; i++) { 92 | out[i] = a[i] 93 | } 94 | for (let j = 0; j < b.length; j++) { 95 | out[a.length + j] = b[j] 96 | } 97 | return out as ByteArray 98 | } 99 | -------------------------------------------------------------------------------- /src/resolver.ts: -------------------------------------------------------------------------------- 1 | import { 2 | ABIChanged as ABIChangedEvent, 3 | AddrChanged as AddrChangedEvent, 4 | AuthorisationChanged as AuthorisationChangedEvent, 5 | ContenthashChanged as ContenthashChangedEvent, 6 | InterfaceChanged as InterfaceChangedEvent, 7 | NameChanged as NameChangedEvent, 8 | PubkeyChanged as PubkeyChangedEvent, 9 | } from './types/Resolver/Resolver' 10 | 11 | import { 12 | AddrChanged, 13 | NameChanged, 14 | AbiChanged, 15 | PubkeyChanged, 16 | ContenthashChanged, 17 | InterfaceChanged, 18 | AuthorisationChanged, 19 | } from './types/schema' 20 | 21 | import { Bytes, BigInt, Address } from "@graphprotocol/graph-ts"; 22 | 23 | export function handleAddrChanged(event: AddrChangedEvent): void { 24 | let resolverEvent = new AddrChanged(createEventID(event.block.number, event.logIndex)) 25 | resolverEvent.node = event.params.node 26 | resolverEvent.resolverID = createResolverID(event.params.node, event.address) 27 | resolverEvent.node = event.params.node 28 | resolverEvent.a = event.params.a 29 | resolverEvent.save() 30 | } 31 | 32 | 33 | export function handleNameChanged(event: NameChangedEvent): void { 34 | let resolverEvent = new NameChanged(createEventID(event.block.number, event.logIndex)) 35 | resolverEvent.node = event.params.node 36 | resolverEvent.resolverID = createResolverID(event.params.node, event.address) 37 | resolverEvent.name = event.params.name 38 | resolverEvent.save() 39 | } 40 | 41 | export function handleABIChanged(event: ABIChangedEvent): void { 42 | let resolverEvent = new AbiChanged(createEventID(event.block.number, event.logIndex)) 43 | resolverEvent.node = event.params.node 44 | resolverEvent.resolverID = createResolverID(event.params.node, event.address) 45 | resolverEvent.contentType = event.params.contentType 46 | resolverEvent.save() 47 | } 48 | 49 | export function handlePubkeyChanged(event: PubkeyChangedEvent): void { 50 | let resolverEvent = new PubkeyChanged(createEventID(event.block.number, event.logIndex)) 51 | resolverEvent.node = event.params.node 52 | resolverEvent.resolverID = createResolverID(event.params.node, event.address) 53 | resolverEvent.x = event.params.x 54 | resolverEvent.y = event.params.y 55 | resolverEvent.save() 56 | } 57 | 58 | // Currently not in use - follow this issue for status - https://github.com/graphprotocol/graph-node/issues/913 59 | // export function handleTextChanged(event: TextChangedEvent): void { 60 | // let resolverEvent = new TextChanged(createEventID(event.block.number, event.logIndex)) 61 | // resolverEvent.node = event.params.node 62 | // resolverEvent.resolverID = createResolverID(event.params.node, event.address) 63 | // resolverEvent.indexedKey = event.params.indexedKey 64 | // resolverEvent.key = event.params.key 65 | // resolverEvent.save() 66 | // } 67 | 68 | export function handleContentHashChanged(event: ContenthashChangedEvent): void { 69 | let resolverEvent = new ContenthashChanged(createEventID(event.block.number, event.logIndex)) 70 | resolverEvent.node = event.params.node 71 | resolverEvent.resolverID = createResolverID(event.params.node, event.address) 72 | resolverEvent.hash = event.params.hash 73 | resolverEvent.save() 74 | } 75 | 76 | export function handleInterfaceChanged(event: InterfaceChangedEvent): void { 77 | let resolverEvent = new InterfaceChanged(createEventID(event.block.number, event.logIndex)) 78 | resolverEvent.node = event.params.node 79 | resolverEvent.resolverID = createResolverID(event.params.node, event.address) 80 | resolverEvent.interfaceID = event.params.interfaceID 81 | resolverEvent.implementer = event.params.implementer 82 | resolverEvent.save() 83 | } 84 | 85 | export function handleAuthorisationChanged(event: AuthorisationChangedEvent): void { 86 | let resolverEvent = new AuthorisationChanged(createEventID(event.block.number, event.logIndex)) 87 | resolverEvent.node = event.params.node 88 | resolverEvent.resolverID = createResolverID(event.params.node, event.address) 89 | resolverEvent.owner = event.params.owner 90 | resolverEvent.target = event.params.target 91 | resolverEvent.isAuthorized = event.params.isAuthorised 92 | resolverEvent.save() 93 | } 94 | 95 | function createEventID(blockNumber: BigInt, logIndex: BigInt): string { 96 | return blockNumber.toString().concat('-').concat(logIndex.toString()) 97 | } 98 | 99 | function createResolverID(node: Bytes, resolver: Address): string { 100 | return resolver.toHexString().concat('-').concat(node.toHexString()) 101 | } -------------------------------------------------------------------------------- /subgraph.yaml: -------------------------------------------------------------------------------- 1 | specVersion: 0.0.3 2 | description: A secure & decentralized way to address resources on and off the blockchain using simple, human-readable names. Access domains and transfer history. 3 | repository: https://github.com/ensdomains/ens-subgraph 4 | schema: 5 | file: ./schema.graphql 6 | dataSources: 7 | - kind: ethereum/contract 8 | name: ENSRegistry 9 | network: mainnet 10 | source: 11 | address: '0x314159265dd8dbb310642f98f50c066173c1259b' 12 | abi: EnsRegistry 13 | mapping: 14 | kind: ethereum/events 15 | apiVersion: 0.0.2 16 | language: wasm/assemblyscript 17 | file: ./src/ensRegistry.ts 18 | entities: 19 | - Domain 20 | - Account 21 | - Resolver 22 | abis: 23 | - name: EnsRegistry 24 | file: ./abis/Registry.json 25 | eventHandlers: 26 | - event: Transfer(bytes32,address) 27 | handler: handleTransfer 28 | - event: NewOwner(bytes32,bytes32,address) 29 | handler: handleNewOwner 30 | - event: NewResolver(bytes32,address) 31 | handler: handleNewResolver 32 | - event: NewTTL(bytes32,uint64) 33 | handler: handleNewTTL 34 | - kind: ethereum/contract 35 | name: Resolver 36 | network: mainnet 37 | source: 38 | abi: Resolver 39 | mapping: 40 | kind: ethereum/events 41 | apiVersion: 0.0.2 42 | language: wasm/assemblyscript 43 | file: ./src/resolver.ts 44 | entities: 45 | - AddrChanged 46 | - NameChanged 47 | - AbiChanged 48 | - PubkeyChanged 49 | - Textchanged 50 | - ContenthashChanged 51 | - InterfaceChanged 52 | - AuthorisationChanged 53 | abis: 54 | - name: Resolver 55 | file: ./abis/PublicResolver.json 56 | eventHandlers: 57 | - event: ABIChanged(bytes32,uint256) 58 | handler: handleABIChanged 59 | - event: AddrChanged(bytes32,address) 60 | handler: handleAddrChanged 61 | - event: AuthorisationChanged(bytes32,address,address,bool) 62 | handler: handleAuthorisationChanged 63 | - event: ContenthashChanged(bytes32,bytes) 64 | handler: handleContentHashChanged 65 | - event: InterfaceChanged(bytes32,bytes4,address) 66 | handler: handleInterfaceChanged 67 | - event: NameChanged(bytes32,string) 68 | handler: handleNameChanged 69 | - event: PubkeyChanged(bytes32,bytes32,bytes32) 70 | handler: handlePubkeyChanged 71 | # - event: TextChanged(bytes32,string,string) 72 | # handler: handleTextChanged 73 | - kind: ethereum/contract 74 | name: AuctionRegistrar 75 | network: mainnet 76 | source: 77 | address: '0x6090a6e47849629b7245dfa1ca21d94cd15878ef' 78 | abi: AuctionRegistrar 79 | mapping: 80 | kind: ethereum/events 81 | apiVersion: 0.0.2 82 | language: wasm/assemblyscript 83 | file: ./src/auctionRegistrar.ts 84 | entities: 85 | - AuctionedName 86 | abis: 87 | - name: AuctionRegistrar 88 | file: ./abis/AuctionRegistrar.json 89 | eventHandlers: 90 | - event: AuctionStarted(bytes32,uint256) 91 | handler: auctionStarted 92 | - event: BidRevealed(bytes32,address,uint256,uint8) 93 | handler: bidRevealed 94 | - event: HashRegistered(bytes32,address,uint256,uint256) 95 | handler: hashRegistered 96 | - event: HashInvalidated(bytes32,string,uint256,uint256) 97 | handler: hashInvalidated 98 | - event: HashReleased(bytes32,uint256) 99 | handler: hashReleased -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extend": "./node_modules/@graphprotocol/graph-ts/tsconfig.json", 3 | "compilerOptions": { 4 | "types": ["@graphprotocol/graph-ts"] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@graphprotocol/graph-cli@^0.11.2": 6 | version "0.11.2" 7 | resolved "https://registry.yarnpkg.com/@graphprotocol/graph-cli/-/graph-cli-0.11.2.tgz#e0f356873f023c71f4d3e9288fe82c5a3d2d92a3" 8 | integrity sha512-3hWeo+HDJ73voolCaPmusgzSLNTgYSlD5tes8Lr2ciIjv8Nxu11zk34MCGWtaKDaMvRBL9H4irPmpPsk9ZUP6A== 9 | dependencies: 10 | assemblyscript "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" 11 | chalk "^2.4.1" 12 | chokidar "^2.0.4" 13 | debug "^3.1.0" 14 | fs-extra "^7.0.1" 15 | glob "^7.1.2" 16 | gluegun "^3.0.0" 17 | graphql "^14.0.2" 18 | immutable "^3.8.2" 19 | ipfs-http-client "^28.1.2" 20 | jayson "^2.0.6" 21 | js-yaml "^3.12.0" 22 | node-fetch "^2.3.0" 23 | pkginfo "^0.4.1" 24 | prettier "^1.13.5" 25 | request "^2.88.0" 26 | optionalDependencies: 27 | keytar "^4.3.0" 28 | 29 | "@graphprotocol/graph-ts@git://github.com/graphprotocol/graph-ts.git#master": 30 | version "0.11.0" 31 | resolved "git://github.com/graphprotocol/graph-ts.git#84a54346c2eb5d863a9dd69c4363d46ea0cc6040" 32 | dependencies: 33 | assemblyscript "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" 34 | 35 | "@protobufjs/utf8@^1.1.0": 36 | version "1.1.0" 37 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 38 | 39 | "@types/node@^10.3.5": 40 | version "10.12.18" 41 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" 42 | 43 | JSONStream@^1.3.1: 44 | version "1.3.5" 45 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" 46 | dependencies: 47 | jsonparse "^1.2.0" 48 | through ">=2.2.7 <3" 49 | 50 | abbrev@1: 51 | version "1.1.1" 52 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 53 | 54 | ajv@^6.5.5: 55 | version "6.7.0" 56 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.7.0.tgz#e3ce7bb372d6577bb1839f1dfdfcbf5ad2948d96" 57 | dependencies: 58 | fast-deep-equal "^2.0.1" 59 | fast-json-stable-stringify "^2.0.0" 60 | json-schema-traverse "^0.4.1" 61 | uri-js "^4.2.2" 62 | 63 | ansi-colors@^3.2.1: 64 | version "3.2.4" 65 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 66 | integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== 67 | 68 | ansi-regex@^2.0.0: 69 | version "2.1.1" 70 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 71 | 72 | ansi-regex@^3.0.0: 73 | version "3.0.0" 74 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 75 | 76 | ansi-regex@^4.1.0: 77 | version "4.1.0" 78 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 79 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 80 | 81 | ansi-styles@^3.2.1: 82 | version "3.2.1" 83 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 84 | dependencies: 85 | color-convert "^1.9.0" 86 | 87 | anymatch@^2.0.0: 88 | version "2.0.0" 89 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 90 | dependencies: 91 | micromatch "^3.1.4" 92 | normalize-path "^2.1.1" 93 | 94 | apisauce@^1.0.1: 95 | version "1.0.2" 96 | resolved "https://registry.yarnpkg.com/apisauce/-/apisauce-1.0.2.tgz#3605dbf4f19896618a0199f2cb717546b8971a06" 97 | integrity sha512-RwC0X4D20HH8t43J2mLNFv1ZNab+xTMcKyjRsajT0PbqiRXRjPfA9igBZ/f+2NaiIXHtyjLirqXY2SMLsUekTw== 98 | dependencies: 99 | axios "^0.18.0" 100 | ramda "^0.25.0" 101 | 102 | app-module-path@^2.2.0: 103 | version "2.2.0" 104 | resolved "https://registry.yarnpkg.com/app-module-path/-/app-module-path-2.2.0.tgz#641aa55dfb7d6a6f0a8141c4b9c0aa50b6c24dd5" 105 | integrity sha1-ZBqlXft9am8KgUHEucCqULbCTdU= 106 | 107 | aproba@^1.0.3: 108 | version "1.2.0" 109 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 110 | 111 | are-we-there-yet@~1.1.2: 112 | version "1.1.5" 113 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 114 | dependencies: 115 | delegates "^1.0.0" 116 | readable-stream "^2.0.6" 117 | 118 | argparse@^1.0.7: 119 | version "1.0.10" 120 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 121 | dependencies: 122 | sprintf-js "~1.0.2" 123 | 124 | arr-diff@^4.0.0: 125 | version "4.0.0" 126 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 127 | 128 | arr-flatten@^1.1.0: 129 | version "1.1.0" 130 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 131 | 132 | arr-union@^3.1.0: 133 | version "3.1.0" 134 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 135 | 136 | array-unique@^0.3.2: 137 | version "0.3.2" 138 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 139 | 140 | asn1.js@^5.0.1: 141 | version "5.0.1" 142 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.0.1.tgz#7668b56416953f0ce3421adbb3893ace59c96f59" 143 | dependencies: 144 | bn.js "^4.0.0" 145 | inherits "^2.0.1" 146 | minimalistic-assert "^1.0.0" 147 | 148 | asn1@~0.2.3: 149 | version "0.2.4" 150 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 151 | dependencies: 152 | safer-buffer "~2.1.0" 153 | 154 | "assemblyscript@git+https://github.com/AssemblyScript/assemblyscript.git#36040d5b5312f19a025782b5e36663823494c2f3": 155 | version "0.6.0" 156 | resolved "git+https://github.com/AssemblyScript/assemblyscript.git#36040d5b5312f19a025782b5e36663823494c2f3" 157 | dependencies: 158 | "@protobufjs/utf8" "^1.1.0" 159 | binaryen "77.0.0-nightly.20190407" 160 | glob "^7.1.3" 161 | long "^4.0.0" 162 | opencollective-postinstall "^2.0.0" 163 | source-map-support "^0.5.11" 164 | 165 | "assemblyscript@https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3": 166 | version "0.6.0" 167 | resolved "https://github.com/AssemblyScript/assemblyscript#36040d5b5312f19a025782b5e36663823494c2f3" 168 | dependencies: 169 | "@protobufjs/utf8" "^1.1.0" 170 | binaryen "77.0.0-nightly.20190407" 171 | glob "^7.1.3" 172 | long "^4.0.0" 173 | opencollective-postinstall "^2.0.0" 174 | source-map-support "^0.5.11" 175 | 176 | assert-plus@1.0.0, assert-plus@^1.0.0: 177 | version "1.0.0" 178 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 179 | 180 | assign-symbols@^1.0.0: 181 | version "1.0.0" 182 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 183 | 184 | async-each@^1.0.0: 185 | version "1.0.1" 186 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 187 | 188 | async@^2.6.1: 189 | version "2.6.1" 190 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 191 | dependencies: 192 | lodash "^4.17.10" 193 | 194 | asynckit@^0.4.0: 195 | version "0.4.0" 196 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 197 | 198 | atob@^2.1.1: 199 | version "2.1.2" 200 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 201 | 202 | aws-sign2@~0.7.0: 203 | version "0.7.0" 204 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 205 | 206 | aws4@^1.8.0: 207 | version "1.8.0" 208 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" 209 | 210 | axios@^0.18.0: 211 | version "0.18.0" 212 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.18.0.tgz#32d53e4851efdc0a11993b6cd000789d70c05102" 213 | integrity sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI= 214 | dependencies: 215 | follow-redirects "^1.3.0" 216 | is-buffer "^1.1.5" 217 | 218 | balanced-match@^1.0.0: 219 | version "1.0.0" 220 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 221 | 222 | base-x@3.0.4: 223 | version "3.0.4" 224 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.4.tgz#94c1788736da065edb1d68808869e357c977fa77" 225 | dependencies: 226 | safe-buffer "^5.0.1" 227 | 228 | base-x@^3.0.2: 229 | version "3.0.5" 230 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.5.tgz#d3ada59afed05b921ab581ec3112e6444ba0795a" 231 | dependencies: 232 | safe-buffer "^5.0.1" 233 | 234 | base@^0.11.1: 235 | version "0.11.2" 236 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 237 | dependencies: 238 | cache-base "^1.0.1" 239 | class-utils "^0.3.5" 240 | component-emitter "^1.2.1" 241 | define-property "^1.0.0" 242 | isobject "^3.0.1" 243 | mixin-deep "^1.2.0" 244 | pascalcase "^0.1.1" 245 | 246 | bcrypt-pbkdf@^1.0.0: 247 | version "1.0.2" 248 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 249 | dependencies: 250 | tweetnacl "^0.14.3" 251 | 252 | big.js@^5.2.2: 253 | version "5.2.2" 254 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 255 | 256 | bignumber.js@^8.0.1: 257 | version "8.0.2" 258 | resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-8.0.2.tgz#d8c4e1874359573b1ef03011a2d861214aeef137" 259 | 260 | binary-extensions@^1.0.0: 261 | version "1.12.0" 262 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz#c2d780f53d45bba8317a8902d4ceeaf3a6385b14" 263 | 264 | binaryen@77.0.0-nightly.20190407: 265 | version "77.0.0-nightly.20190407" 266 | resolved "https://registry.yarnpkg.com/binaryen/-/binaryen-77.0.0-nightly.20190407.tgz#fbe4f8ba0d6bd0809a84eb519d2d5b5ddff3a7d1" 267 | integrity sha512-1mxYNvQ0xywMe582K7V6Vo2zzhZZxMTeGHH8aE/+/AND8f64D8Q1GThVY3RVRwGY/4p+p95ccw9Xbw2ovFXRIg== 268 | 269 | bindings@^1.2.1, bindings@^1.3.0: 270 | version "1.3.1" 271 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.1.tgz#21fc7c6d67c18516ec5aaa2815b145ff77b26ea5" 272 | 273 | bip66@^1.1.3: 274 | version "1.1.5" 275 | resolved "https://registry.yarnpkg.com/bip66/-/bip66-1.1.5.tgz#01fa8748785ca70955d5011217d1b3139969ca22" 276 | dependencies: 277 | safe-buffer "^5.0.1" 278 | 279 | bl@^1.0.0: 280 | version "1.2.2" 281 | resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" 282 | dependencies: 283 | readable-stream "^2.3.5" 284 | safe-buffer "^5.1.1" 285 | 286 | bl@^2.1.2: 287 | version "2.1.2" 288 | resolved "https://registry.yarnpkg.com/bl/-/bl-2.1.2.tgz#591182cb9f3f2eff3beb1e76dabedfb5c5fa9a26" 289 | dependencies: 290 | readable-stream "^2.3.5" 291 | safe-buffer "^5.1.1" 292 | 293 | blakejs@^1.1.0: 294 | version "1.1.0" 295 | resolved "https://registry.yarnpkg.com/blakejs/-/blakejs-1.1.0.tgz#69df92ef953aa88ca51a32df6ab1c54a155fc7a5" 296 | 297 | bn.js@^4.0.0, bn.js@^4.11.3, bn.js@^4.4.0: 298 | version "4.11.8" 299 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 300 | 301 | borc@^2.1.0: 302 | version "2.1.0" 303 | resolved "https://registry.yarnpkg.com/borc/-/borc-2.1.0.tgz#2def2fc69868633b965a9750e7f210d778190303" 304 | dependencies: 305 | bignumber.js "^8.0.1" 306 | commander "^2.15.0" 307 | ieee754 "^1.1.8" 308 | iso-url "~0.4.4" 309 | json-text-sequence "~0.1.0" 310 | 311 | brace-expansion@^1.1.7: 312 | version "1.1.11" 313 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 314 | dependencies: 315 | balanced-match "^1.0.0" 316 | concat-map "0.0.1" 317 | 318 | braces@^2.3.0, braces@^2.3.1: 319 | version "2.3.2" 320 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 321 | dependencies: 322 | arr-flatten "^1.1.0" 323 | array-unique "^0.3.2" 324 | extend-shallow "^2.0.1" 325 | fill-range "^4.0.0" 326 | isobject "^3.0.1" 327 | repeat-element "^1.1.2" 328 | snapdragon "^0.8.1" 329 | snapdragon-node "^2.0.1" 330 | split-string "^3.0.2" 331 | to-regex "^3.0.1" 332 | 333 | brorand@^1.0.1: 334 | version "1.1.0" 335 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 336 | 337 | browserify-aes@^1.0.6, browserify-aes@^1.2.0: 338 | version "1.2.0" 339 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" 340 | dependencies: 341 | buffer-xor "^1.0.3" 342 | cipher-base "^1.0.0" 343 | create-hash "^1.1.0" 344 | evp_bytestokey "^1.0.3" 345 | inherits "^2.0.1" 346 | safe-buffer "^5.0.1" 347 | 348 | bs58@4.0.1, bs58@^4.0.1: 349 | version "4.0.1" 350 | resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" 351 | dependencies: 352 | base-x "^3.0.2" 353 | 354 | buffer-alloc-unsafe@^1.1.0: 355 | version "1.1.0" 356 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 357 | 358 | buffer-alloc@^1.2.0: 359 | version "1.2.0" 360 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 361 | dependencies: 362 | buffer-alloc-unsafe "^1.1.0" 363 | buffer-fill "^1.0.0" 364 | 365 | buffer-fill@^1.0.0: 366 | version "1.0.0" 367 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 368 | 369 | buffer-from@^1.0.0: 370 | version "1.1.1" 371 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 372 | 373 | buffer-xor@^1.0.3: 374 | version "1.0.3" 375 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 376 | 377 | builtin-status-codes@^3.0.0: 378 | version "3.0.0" 379 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 380 | 381 | cache-base@^1.0.1: 382 | version "1.0.1" 383 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 384 | dependencies: 385 | collection-visit "^1.0.0" 386 | component-emitter "^1.2.1" 387 | get-value "^2.0.6" 388 | has-value "^1.0.0" 389 | isobject "^3.0.1" 390 | set-value "^2.0.0" 391 | to-object-path "^0.3.0" 392 | union-value "^1.0.0" 393 | unset-value "^1.0.0" 394 | 395 | caller-callsite@^2.0.0: 396 | version "2.0.0" 397 | resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" 398 | integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= 399 | dependencies: 400 | callsites "^2.0.0" 401 | 402 | caller-path@^2.0.0: 403 | version "2.0.0" 404 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" 405 | integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= 406 | dependencies: 407 | caller-callsite "^2.0.0" 408 | 409 | callsites@^2.0.0: 410 | version "2.0.0" 411 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 412 | integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= 413 | 414 | camelcase@^5.0.0: 415 | version "5.3.1" 416 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 417 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 418 | 419 | caseless@~0.12.0: 420 | version "0.12.0" 421 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 422 | 423 | chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2: 424 | version "2.4.2" 425 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 426 | dependencies: 427 | ansi-styles "^3.2.1" 428 | escape-string-regexp "^1.0.5" 429 | supports-color "^5.3.0" 430 | 431 | chokidar@^2.0.4: 432 | version "2.0.4" 433 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" 434 | dependencies: 435 | anymatch "^2.0.0" 436 | async-each "^1.0.0" 437 | braces "^2.3.0" 438 | glob-parent "^3.1.0" 439 | inherits "^2.0.1" 440 | is-binary-path "^1.0.0" 441 | is-glob "^4.0.0" 442 | lodash.debounce "^4.0.8" 443 | normalize-path "^2.1.1" 444 | path-is-absolute "^1.0.0" 445 | readdirp "^2.0.0" 446 | upath "^1.0.5" 447 | optionalDependencies: 448 | fsevents "^1.2.2" 449 | 450 | chownr@^1.0.1, chownr@^1.1.1: 451 | version "1.1.1" 452 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 453 | 454 | cids@~0.5.4, cids@~0.5.5, cids@~0.5.6: 455 | version "0.5.7" 456 | resolved "https://registry.yarnpkg.com/cids/-/cids-0.5.7.tgz#bc5034bddcb9396fbf1cb60ad5498c976133de53" 457 | dependencies: 458 | class-is "^1.1.0" 459 | multibase "~0.6.0" 460 | multicodec "~0.2.7" 461 | multihashes "~0.4.14" 462 | 463 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 464 | version "1.0.4" 465 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 466 | dependencies: 467 | inherits "^2.0.1" 468 | safe-buffer "^5.0.1" 469 | 470 | class-is@^1.1.0: 471 | version "1.1.0" 472 | resolved "https://registry.yarnpkg.com/class-is/-/class-is-1.1.0.tgz#9d3c0fba0440d211d843cec3dedfa48055005825" 473 | 474 | class-utils@^0.3.5: 475 | version "0.3.6" 476 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 477 | dependencies: 478 | arr-union "^3.1.0" 479 | define-property "^0.2.5" 480 | isobject "^3.0.0" 481 | static-extend "^0.1.1" 482 | 483 | cli-cursor@^2.1.0: 484 | version "2.1.0" 485 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 486 | integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 487 | dependencies: 488 | restore-cursor "^2.0.0" 489 | 490 | cli-spinners@^2.0.0: 491 | version "2.1.0" 492 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.1.0.tgz#22c34b4d51f573240885b201efda4e4ec9fff3c7" 493 | integrity sha512-8B00fJOEh1HPrx4fo5eW16XmE1PcL1tGpGrxy63CXGP9nHdPBN63X75hA1zhvQuhVztJWLqV58Roj2qlNM7cAA== 494 | 495 | cli-table3@~0.5.0: 496 | version "0.5.1" 497 | resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" 498 | integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw== 499 | dependencies: 500 | object-assign "^4.1.0" 501 | string-width "^2.1.1" 502 | optionalDependencies: 503 | colors "^1.1.2" 504 | 505 | clone@^1.0.2: 506 | version "1.0.4" 507 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 508 | integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= 509 | 510 | code-point-at@^1.0.0: 511 | version "1.1.0" 512 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 513 | 514 | collection-visit@^1.0.0: 515 | version "1.0.0" 516 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 517 | dependencies: 518 | map-visit "^1.0.0" 519 | object-visit "^1.0.0" 520 | 521 | color-convert@^1.9.0: 522 | version "1.9.3" 523 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 524 | dependencies: 525 | color-name "1.1.3" 526 | 527 | color-name@1.1.3: 528 | version "1.1.3" 529 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 530 | 531 | colors@^1.1.2, colors@^1.3.3: 532 | version "1.3.3" 533 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" 534 | integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg== 535 | 536 | combined-stream@^1.0.6, combined-stream@~1.0.6: 537 | version "1.0.7" 538 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" 539 | dependencies: 540 | delayed-stream "~1.0.0" 541 | 542 | commander@^2.12.2, commander@^2.15.0: 543 | version "2.19.0" 544 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" 545 | 546 | component-emitter@^1.2.1: 547 | version "1.2.1" 548 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 549 | 550 | concat-map@0.0.1: 551 | version "0.0.1" 552 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 553 | 554 | concat-stream@^2.0.0: 555 | version "2.0.0" 556 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" 557 | dependencies: 558 | buffer-from "^1.0.0" 559 | inherits "^2.0.3" 560 | readable-stream "^3.0.2" 561 | typedarray "^0.0.6" 562 | 563 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 564 | version "1.1.0" 565 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 566 | 567 | copy-descriptor@^0.1.0: 568 | version "0.1.1" 569 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 570 | 571 | core-util-is@1.0.2, core-util-is@~1.0.0: 572 | version "1.0.2" 573 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 574 | 575 | cosmiconfig@^5.0.1: 576 | version "5.2.0" 577 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.0.tgz#45038e4d28a7fe787203aede9c25bca4a08b12c8" 578 | integrity sha512-nxt+Nfc3JAqf4WIWd0jXLjTJZmsPLrA9DDc4nRw2KFJQJK7DNooqSXrNI7tzLG50CF8axczly5UV929tBmh/7g== 579 | dependencies: 580 | import-fresh "^2.0.0" 581 | is-directory "^0.3.1" 582 | js-yaml "^3.13.0" 583 | parse-json "^4.0.0" 584 | 585 | create-hash@^1.1.0, create-hash@^1.1.2: 586 | version "1.2.0" 587 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" 588 | dependencies: 589 | cipher-base "^1.0.1" 590 | inherits "^2.0.1" 591 | md5.js "^1.3.4" 592 | ripemd160 "^2.0.1" 593 | sha.js "^2.4.0" 594 | 595 | create-hmac@^1.1.4: 596 | version "1.1.7" 597 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" 598 | dependencies: 599 | cipher-base "^1.0.3" 600 | create-hash "^1.1.0" 601 | inherits "^2.0.1" 602 | ripemd160 "^2.0.0" 603 | safe-buffer "^5.0.1" 604 | sha.js "^2.4.8" 605 | 606 | cross-spawn@^6.0.0, cross-spawn@^6.0.5: 607 | version "6.0.5" 608 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 609 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 610 | dependencies: 611 | nice-try "^1.0.4" 612 | path-key "^2.0.1" 613 | semver "^5.5.0" 614 | shebang-command "^1.2.0" 615 | which "^1.2.9" 616 | 617 | dashdash@^1.12.0: 618 | version "1.14.1" 619 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 620 | dependencies: 621 | assert-plus "^1.0.0" 622 | 623 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: 624 | version "2.6.9" 625 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 626 | dependencies: 627 | ms "2.0.0" 628 | 629 | debug@^3.1.0, debug@^3.2.6: 630 | version "3.2.6" 631 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 632 | dependencies: 633 | ms "^2.1.1" 634 | 635 | debug@^4.1.0: 636 | version "4.1.1" 637 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 638 | dependencies: 639 | ms "^2.1.1" 640 | 641 | decamelize@^1.2.0: 642 | version "1.2.0" 643 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 644 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 645 | 646 | decode-uri-component@^0.2.0: 647 | version "0.2.0" 648 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 649 | 650 | decompress-response@^3.3.0: 651 | version "3.3.0" 652 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 653 | dependencies: 654 | mimic-response "^1.0.0" 655 | 656 | deep-extend@^0.6.0: 657 | version "0.6.0" 658 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 659 | 660 | defaults@^1.0.3: 661 | version "1.0.3" 662 | resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 663 | integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= 664 | dependencies: 665 | clone "^1.0.2" 666 | 667 | define-property@^0.2.5: 668 | version "0.2.5" 669 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 670 | dependencies: 671 | is-descriptor "^0.1.0" 672 | 673 | define-property@^1.0.0: 674 | version "1.0.0" 675 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 676 | dependencies: 677 | is-descriptor "^1.0.0" 678 | 679 | define-property@^2.0.2: 680 | version "2.0.2" 681 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 682 | dependencies: 683 | is-descriptor "^1.0.2" 684 | isobject "^3.0.1" 685 | 686 | delayed-stream@~1.0.0: 687 | version "1.0.0" 688 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 689 | 690 | delegates@^1.0.0: 691 | version "1.0.0" 692 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 693 | 694 | delimit-stream@0.1.0: 695 | version "0.1.0" 696 | resolved "https://registry.yarnpkg.com/delimit-stream/-/delimit-stream-0.1.0.tgz#9b8319477c0e5f8aeb3ce357ae305fc25ea1cd2b" 697 | 698 | detect-libc@^1.0.2, detect-libc@^1.0.3: 699 | version "1.0.3" 700 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 701 | 702 | detect-node@^2.0.4: 703 | version "2.0.4" 704 | resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" 705 | 706 | drbg.js@^1.0.1: 707 | version "1.0.1" 708 | resolved "https://registry.yarnpkg.com/drbg.js/-/drbg.js-1.0.1.tgz#3e36b6c42b37043823cdbc332d58f31e2445480b" 709 | dependencies: 710 | browserify-aes "^1.0.6" 711 | create-hash "^1.1.2" 712 | create-hmac "^1.1.4" 713 | 714 | ecc-jsbn@~0.1.1: 715 | version "0.1.2" 716 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 717 | dependencies: 718 | jsbn "~0.1.0" 719 | safer-buffer "^2.1.0" 720 | 721 | ejs@^2.6.1: 722 | version "2.6.1" 723 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0" 724 | integrity sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ== 725 | 726 | elliptic@^6.2.3: 727 | version "6.4.1" 728 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" 729 | dependencies: 730 | bn.js "^4.4.0" 731 | brorand "^1.0.1" 732 | hash.js "^1.0.0" 733 | hmac-drbg "^1.0.0" 734 | inherits "^2.0.1" 735 | minimalistic-assert "^1.0.0" 736 | minimalistic-crypto-utils "^1.0.0" 737 | 738 | end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: 739 | version "1.4.1" 740 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" 741 | dependencies: 742 | once "^1.4.0" 743 | 744 | enquirer@2.3.0: 745 | version "2.3.0" 746 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.0.tgz#c362c9d84984ebe854def63caaf12983a16af552" 747 | integrity sha512-RNGUbRVlfnjmpxV+Ed+7CGu0rg3MK7MmlW+DW0v7V2zdAUBC1s4BxCRiIAozbYB2UJ+q4D+8tW9UFb11kF72/g== 748 | dependencies: 749 | ansi-colors "^3.2.1" 750 | 751 | err-code@^1.1.2: 752 | version "1.1.2" 753 | resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" 754 | 755 | error-ex@^1.3.1: 756 | version "1.3.2" 757 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 758 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 759 | dependencies: 760 | is-arrayish "^0.2.1" 761 | 762 | es6-promise@^4.0.3: 763 | version "4.2.5" 764 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.5.tgz#da6d0d5692efb461e082c14817fe2427d8f5d054" 765 | 766 | es6-promisify@^5.0.0: 767 | version "5.0.0" 768 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" 769 | dependencies: 770 | es6-promise "^4.0.3" 771 | 772 | escape-string-regexp@^1.0.5: 773 | version "1.0.5" 774 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 775 | 776 | esprima@^4.0.0: 777 | version "4.0.1" 778 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 779 | 780 | evp_bytestokey@^1.0.3: 781 | version "1.0.3" 782 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 783 | dependencies: 784 | md5.js "^1.3.4" 785 | safe-buffer "^5.1.1" 786 | 787 | execa@^1.0.0: 788 | version "1.0.0" 789 | resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" 790 | integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== 791 | dependencies: 792 | cross-spawn "^6.0.0" 793 | get-stream "^4.0.0" 794 | is-stream "^1.1.0" 795 | npm-run-path "^2.0.0" 796 | p-finally "^1.0.0" 797 | signal-exit "^3.0.0" 798 | strip-eof "^1.0.0" 799 | 800 | expand-brackets@^2.1.4: 801 | version "2.1.4" 802 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 803 | dependencies: 804 | debug "^2.3.3" 805 | define-property "^0.2.5" 806 | extend-shallow "^2.0.1" 807 | posix-character-classes "^0.1.0" 808 | regex-not "^1.0.0" 809 | snapdragon "^0.8.1" 810 | to-regex "^3.0.1" 811 | 812 | expand-template@^2.0.3: 813 | version "2.0.3" 814 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 815 | 816 | extend-shallow@^2.0.1: 817 | version "2.0.1" 818 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 819 | dependencies: 820 | is-extendable "^0.1.0" 821 | 822 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 823 | version "3.0.2" 824 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 825 | dependencies: 826 | assign-symbols "^1.0.0" 827 | is-extendable "^1.0.1" 828 | 829 | extend@~3.0.2: 830 | version "3.0.2" 831 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 832 | 833 | extglob@^2.0.4: 834 | version "2.0.4" 835 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 836 | dependencies: 837 | array-unique "^0.3.2" 838 | define-property "^1.0.0" 839 | expand-brackets "^2.1.4" 840 | extend-shallow "^2.0.1" 841 | fragment-cache "^0.2.1" 842 | regex-not "^1.0.0" 843 | snapdragon "^0.8.1" 844 | to-regex "^3.0.1" 845 | 846 | extsprintf@1.3.0: 847 | version "1.3.0" 848 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 849 | 850 | extsprintf@^1.2.0: 851 | version "1.4.0" 852 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 853 | 854 | eyes@^0.1.8: 855 | version "0.1.8" 856 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 857 | 858 | fast-deep-equal@^2.0.1: 859 | version "2.0.1" 860 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" 861 | 862 | fast-json-stable-stringify@^2.0.0: 863 | version "2.0.0" 864 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 865 | 866 | fill-range@^4.0.0: 867 | version "4.0.0" 868 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 869 | dependencies: 870 | extend-shallow "^2.0.1" 871 | is-number "^3.0.0" 872 | repeat-string "^1.6.1" 873 | to-regex-range "^2.1.0" 874 | 875 | flatmap@0.0.3: 876 | version "0.0.3" 877 | resolved "https://registry.yarnpkg.com/flatmap/-/flatmap-0.0.3.tgz#1f18a4d938152d495965f9c958d923ab2dd669b4" 878 | 879 | follow-redirects@^1.3.0: 880 | version "1.7.0" 881 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.7.0.tgz#489ebc198dc0e7f64167bd23b03c4c19b5784c76" 882 | integrity sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ== 883 | dependencies: 884 | debug "^3.2.6" 885 | 886 | for-in@^1.0.2: 887 | version "1.0.2" 888 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 889 | 890 | forever-agent@~0.6.1: 891 | version "0.6.1" 892 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 893 | 894 | form-data@~2.3.2: 895 | version "2.3.3" 896 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" 897 | dependencies: 898 | asynckit "^0.4.0" 899 | combined-stream "^1.0.6" 900 | mime-types "^2.1.12" 901 | 902 | fragment-cache@^0.2.1: 903 | version "0.2.1" 904 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 905 | dependencies: 906 | map-cache "^0.2.2" 907 | 908 | fs-constants@^1.0.0: 909 | version "1.0.0" 910 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 911 | 912 | fs-extra@^7.0.1: 913 | version "7.0.1" 914 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" 915 | integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== 916 | dependencies: 917 | graceful-fs "^4.1.2" 918 | jsonfile "^4.0.0" 919 | universalify "^0.1.0" 920 | 921 | fs-jetpack@^2.2.0: 922 | version "2.2.2" 923 | resolved "https://registry.yarnpkg.com/fs-jetpack/-/fs-jetpack-2.2.2.tgz#c3737c585a618d8d636f76165c881b985493d6fd" 924 | integrity sha512-USJrUxck7SIXSvYPzU5fuR5iqLHRDSzb0kHvCJlQhUGEVai3P9yZDu/2b+bAzprbWLCc2YcslxBLBUInDmYkYA== 925 | dependencies: 926 | minimatch "^3.0.2" 927 | rimraf "^2.6.3" 928 | 929 | fs-minipass@^1.2.5: 930 | version "1.2.5" 931 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 932 | dependencies: 933 | minipass "^2.2.1" 934 | 935 | fs.realpath@^1.0.0: 936 | version "1.0.0" 937 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 938 | 939 | fsevents@^1.2.2: 940 | version "1.2.6" 941 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.6.tgz#d3a1864a71876a2eb9b244e3bd8f606eb09568c0" 942 | dependencies: 943 | nan "^2.9.2" 944 | node-pre-gyp "^0.10.0" 945 | 946 | gauge@~2.7.3: 947 | version "2.7.4" 948 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 949 | dependencies: 950 | aproba "^1.0.3" 951 | console-control-strings "^1.0.0" 952 | has-unicode "^2.0.0" 953 | object-assign "^4.1.0" 954 | signal-exit "^3.0.0" 955 | string-width "^1.0.1" 956 | strip-ansi "^3.0.1" 957 | wide-align "^1.1.0" 958 | 959 | get-stream@^4.0.0: 960 | version "4.1.0" 961 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 962 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 963 | dependencies: 964 | pump "^3.0.0" 965 | 966 | get-value@^2.0.3, get-value@^2.0.6: 967 | version "2.0.6" 968 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 969 | 970 | getpass@^0.1.1: 971 | version "0.1.7" 972 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 973 | dependencies: 974 | assert-plus "^1.0.0" 975 | 976 | github-from-package@0.0.0: 977 | version "0.0.0" 978 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 979 | 980 | glob-parent@^3.1.0: 981 | version "3.1.0" 982 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 983 | dependencies: 984 | is-glob "^3.1.0" 985 | path-dirname "^1.0.0" 986 | 987 | glob@^7.1.2, glob@^7.1.3: 988 | version "7.1.3" 989 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 990 | dependencies: 991 | fs.realpath "^1.0.0" 992 | inflight "^1.0.4" 993 | inherits "2" 994 | minimatch "^3.0.4" 995 | once "^1.3.0" 996 | path-is-absolute "^1.0.0" 997 | 998 | gluegun@^3.0.0: 999 | version "3.2.1" 1000 | resolved "https://registry.yarnpkg.com/gluegun/-/gluegun-3.2.1.tgz#c141332af1baa9f4476f72aabeb88609947cc5ea" 1001 | integrity sha512-XrsVkiS9Nm2iZBW8G+tM/qG/wDtRi4I8ec5OgvoepKqlR65gcbU/h47YXX7pBcVgyJkdwNdupNyx6t5aZ2kRWg== 1002 | dependencies: 1003 | apisauce "^1.0.1" 1004 | app-module-path "^2.2.0" 1005 | cli-table3 "~0.5.0" 1006 | colors "^1.3.3" 1007 | cosmiconfig "^5.0.1" 1008 | cross-spawn "^6.0.5" 1009 | ejs "^2.6.1" 1010 | enquirer "2.3.0" 1011 | execa "^1.0.0" 1012 | fs-jetpack "^2.2.0" 1013 | lodash.camelcase "^4.3.0" 1014 | lodash.kebabcase "^4.1.1" 1015 | lodash.lowercase "^4.3.0" 1016 | lodash.lowerfirst "^4.3.1" 1017 | lodash.pad "^4.5.1" 1018 | lodash.padend "^4.6.1" 1019 | lodash.padstart "^4.6.1" 1020 | lodash.repeat "^4.1.0" 1021 | lodash.snakecase "^4.1.1" 1022 | lodash.startcase "^4.4.0" 1023 | lodash.trim "^4.5.1" 1024 | lodash.trimend "^4.5.1" 1025 | lodash.trimstart "^4.5.1" 1026 | lodash.uppercase "^4.3.0" 1027 | lodash.upperfirst "^4.3.1" 1028 | ora "^3.0.0" 1029 | pluralize "^7.0.0" 1030 | ramdasauce "^2.1.0" 1031 | semver "^6.0.0" 1032 | which "^1.2.14" 1033 | yargs-parser "^12.0.0" 1034 | 1035 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1036 | version "4.1.15" 1037 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 1038 | 1039 | graphql@^14.0.2: 1040 | version "14.1.1" 1041 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.1.1.tgz#d5d77df4b19ef41538d7215d1e7a28834619fac0" 1042 | dependencies: 1043 | iterall "^1.2.2" 1044 | 1045 | har-schema@^2.0.0: 1046 | version "2.0.0" 1047 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1048 | 1049 | har-validator@~5.1.0: 1050 | version "5.1.3" 1051 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" 1052 | dependencies: 1053 | ajv "^6.5.5" 1054 | har-schema "^2.0.0" 1055 | 1056 | has-flag@^3.0.0: 1057 | version "3.0.0" 1058 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1059 | 1060 | has-unicode@^2.0.0: 1061 | version "2.0.1" 1062 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1063 | 1064 | has-value@^0.3.1: 1065 | version "0.3.1" 1066 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1067 | dependencies: 1068 | get-value "^2.0.3" 1069 | has-values "^0.1.4" 1070 | isobject "^2.0.0" 1071 | 1072 | has-value@^1.0.0: 1073 | version "1.0.0" 1074 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1075 | dependencies: 1076 | get-value "^2.0.6" 1077 | has-values "^1.0.0" 1078 | isobject "^3.0.0" 1079 | 1080 | has-values@^0.1.4: 1081 | version "0.1.4" 1082 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1083 | 1084 | has-values@^1.0.0: 1085 | version "1.0.0" 1086 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1087 | dependencies: 1088 | is-number "^3.0.0" 1089 | kind-of "^4.0.0" 1090 | 1091 | hash-base@^3.0.0: 1092 | version "3.0.4" 1093 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1094 | dependencies: 1095 | inherits "^2.0.1" 1096 | safe-buffer "^5.0.1" 1097 | 1098 | hash.js@^1.0.0, hash.js@^1.0.3: 1099 | version "1.1.7" 1100 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 1101 | dependencies: 1102 | inherits "^2.0.3" 1103 | minimalistic-assert "^1.0.1" 1104 | 1105 | hmac-drbg@^1.0.0: 1106 | version "1.0.1" 1107 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1108 | dependencies: 1109 | hash.js "^1.0.3" 1110 | minimalistic-assert "^1.0.0" 1111 | minimalistic-crypto-utils "^1.0.1" 1112 | 1113 | http-signature@~1.2.0: 1114 | version "1.2.0" 1115 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1116 | dependencies: 1117 | assert-plus "^1.0.0" 1118 | jsprim "^1.2.2" 1119 | sshpk "^1.7.0" 1120 | 1121 | iconv-lite@^0.4.4: 1122 | version "0.4.24" 1123 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1124 | dependencies: 1125 | safer-buffer ">= 2.1.2 < 3" 1126 | 1127 | ieee754@^1.1.8: 1128 | version "1.1.12" 1129 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" 1130 | 1131 | ignore-walk@^3.0.1: 1132 | version "3.0.1" 1133 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1134 | dependencies: 1135 | minimatch "^3.0.4" 1136 | 1137 | immutable@^3.8.2: 1138 | version "3.8.2" 1139 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" 1140 | 1141 | import-fresh@^2.0.0: 1142 | version "2.0.0" 1143 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" 1144 | integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= 1145 | dependencies: 1146 | caller-path "^2.0.0" 1147 | resolve-from "^3.0.0" 1148 | 1149 | inflight@^1.0.4: 1150 | version "1.0.6" 1151 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1152 | dependencies: 1153 | once "^1.3.0" 1154 | wrappy "1" 1155 | 1156 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 1157 | version "2.0.3" 1158 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1159 | 1160 | ini@~1.3.0: 1161 | version "1.3.5" 1162 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1163 | 1164 | ip-regex@^2.0.0: 1165 | version "2.1.0" 1166 | resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" 1167 | 1168 | ip@^1.1.5: 1169 | version "1.1.5" 1170 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" 1171 | 1172 | ipfs-block@~0.8.0: 1173 | version "0.8.0" 1174 | resolved "https://registry.yarnpkg.com/ipfs-block/-/ipfs-block-0.8.0.tgz#1004bcc67dad0413c70fc6d56e86537716debd7d" 1175 | dependencies: 1176 | cids "~0.5.5" 1177 | class-is "^1.1.0" 1178 | 1179 | ipfs-http-client@^28.1.2: 1180 | version "28.1.2" 1181 | resolved "https://registry.yarnpkg.com/ipfs-http-client/-/ipfs-http-client-28.1.2.tgz#7e03fc175039a2d841299366bf23d7141df8bc43" 1182 | dependencies: 1183 | async "^2.6.1" 1184 | big.js "^5.2.2" 1185 | bl "^2.1.2" 1186 | bs58 "^4.0.1" 1187 | cids "~0.5.5" 1188 | concat-stream "^2.0.0" 1189 | debug "^4.1.0" 1190 | detect-node "^2.0.4" 1191 | end-of-stream "^1.4.1" 1192 | err-code "^1.1.2" 1193 | flatmap "0.0.3" 1194 | glob "^7.1.3" 1195 | ipfs-block "~0.8.0" 1196 | ipfs-unixfs "~0.1.16" 1197 | ipld-dag-cbor "~0.13.0" 1198 | ipld-dag-pb "~0.15.0" 1199 | is-ipfs "~0.4.7" 1200 | is-pull-stream "0.0.0" 1201 | is-stream "^1.1.0" 1202 | libp2p-crypto "~0.16.0" 1203 | lodash "^4.17.11" 1204 | lru-cache "^5.1.1" 1205 | multiaddr "^6.0.0" 1206 | multibase "~0.6.0" 1207 | multihashes "~0.4.14" 1208 | ndjson "^1.5.0" 1209 | once "^1.4.0" 1210 | peer-id "~0.12.1" 1211 | peer-info "~0.15.0" 1212 | promisify-es6 "^1.0.3" 1213 | pull-defer "~0.2.3" 1214 | pull-pushable "^2.2.0" 1215 | pull-stream-to-stream "^1.3.4" 1216 | pump "^3.0.0" 1217 | qs "^6.5.2" 1218 | readable-stream "^3.0.6" 1219 | stream-http "^3.0.0" 1220 | stream-to-pull-stream "^1.7.2" 1221 | streamifier "~0.1.1" 1222 | tar-stream "^1.6.2" 1223 | through2 "^3.0.0" 1224 | 1225 | ipfs-unixfs@~0.1.16: 1226 | version "0.1.16" 1227 | resolved "https://registry.yarnpkg.com/ipfs-unixfs/-/ipfs-unixfs-0.1.16.tgz#41140f4359f1b8fe7a970052663331091c5f54c4" 1228 | dependencies: 1229 | protons "^1.0.1" 1230 | 1231 | ipld-dag-cbor@~0.13.0: 1232 | version "0.13.1" 1233 | resolved "https://registry.yarnpkg.com/ipld-dag-cbor/-/ipld-dag-cbor-0.13.1.tgz#2ffecba3a13b29d8b604ee3d9b5dad0d4542e26b" 1234 | dependencies: 1235 | borc "^2.1.0" 1236 | bs58 "^4.0.1" 1237 | cids "~0.5.5" 1238 | is-circular "^1.0.2" 1239 | multihashes "~0.4.14" 1240 | multihashing-async "~0.5.1" 1241 | traverse "~0.6.6" 1242 | 1243 | ipld-dag-pb@~0.15.0: 1244 | version "0.15.2" 1245 | resolved "https://registry.yarnpkg.com/ipld-dag-pb/-/ipld-dag-pb-0.15.2.tgz#33156e2891bacdf538dd0193ba44661b37c8e705" 1246 | dependencies: 1247 | async "^2.6.1" 1248 | bs58 "^4.0.1" 1249 | cids "~0.5.4" 1250 | class-is "^1.1.0" 1251 | is-ipfs "~0.4.2" 1252 | multihashing-async "~0.5.1" 1253 | protons "^1.0.1" 1254 | pull-stream "^3.6.9" 1255 | pull-traverse "^1.0.3" 1256 | stable "~0.1.8" 1257 | 1258 | is-accessor-descriptor@^0.1.6: 1259 | version "0.1.6" 1260 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1261 | dependencies: 1262 | kind-of "^3.0.2" 1263 | 1264 | is-accessor-descriptor@^1.0.0: 1265 | version "1.0.0" 1266 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1267 | dependencies: 1268 | kind-of "^6.0.0" 1269 | 1270 | is-arrayish@^0.2.1: 1271 | version "0.2.1" 1272 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1273 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1274 | 1275 | is-binary-path@^1.0.0: 1276 | version "1.0.1" 1277 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1278 | dependencies: 1279 | binary-extensions "^1.0.0" 1280 | 1281 | is-buffer@^1.1.5: 1282 | version "1.1.6" 1283 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1284 | 1285 | is-circular@^1.0.2: 1286 | version "1.0.2" 1287 | resolved "https://registry.yarnpkg.com/is-circular/-/is-circular-1.0.2.tgz#2e0ab4e9835f4c6b0ea2b9855a84acd501b8366c" 1288 | 1289 | is-data-descriptor@^0.1.4: 1290 | version "0.1.4" 1291 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1292 | dependencies: 1293 | kind-of "^3.0.2" 1294 | 1295 | is-data-descriptor@^1.0.0: 1296 | version "1.0.0" 1297 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1298 | dependencies: 1299 | kind-of "^6.0.0" 1300 | 1301 | is-descriptor@^0.1.0: 1302 | version "0.1.6" 1303 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1304 | dependencies: 1305 | is-accessor-descriptor "^0.1.6" 1306 | is-data-descriptor "^0.1.4" 1307 | kind-of "^5.0.0" 1308 | 1309 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1310 | version "1.0.2" 1311 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1312 | dependencies: 1313 | is-accessor-descriptor "^1.0.0" 1314 | is-data-descriptor "^1.0.0" 1315 | kind-of "^6.0.2" 1316 | 1317 | is-directory@^0.3.1: 1318 | version "0.3.1" 1319 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1320 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= 1321 | 1322 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1323 | version "0.1.1" 1324 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1325 | 1326 | is-extendable@^1.0.1: 1327 | version "1.0.1" 1328 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1329 | dependencies: 1330 | is-plain-object "^2.0.4" 1331 | 1332 | is-extglob@^2.1.0, is-extglob@^2.1.1: 1333 | version "2.1.1" 1334 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1335 | 1336 | is-fullwidth-code-point@^1.0.0: 1337 | version "1.0.0" 1338 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1339 | dependencies: 1340 | number-is-nan "^1.0.0" 1341 | 1342 | is-fullwidth-code-point@^2.0.0: 1343 | version "2.0.0" 1344 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1345 | 1346 | is-glob@^3.1.0: 1347 | version "3.1.0" 1348 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1349 | dependencies: 1350 | is-extglob "^2.1.0" 1351 | 1352 | is-glob@^4.0.0: 1353 | version "4.0.0" 1354 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1355 | dependencies: 1356 | is-extglob "^2.1.1" 1357 | 1358 | is-ip@^2.0.0: 1359 | version "2.0.0" 1360 | resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-2.0.0.tgz#68eea07e8a0a0a94c2d080dd674c731ab2a461ab" 1361 | dependencies: 1362 | ip-regex "^2.0.0" 1363 | 1364 | is-ipfs@~0.4.2, is-ipfs@~0.4.7: 1365 | version "0.4.8" 1366 | resolved "https://registry.yarnpkg.com/is-ipfs/-/is-ipfs-0.4.8.tgz#ea229aef6230433ad1e8df930c49c5e773422c3f" 1367 | dependencies: 1368 | bs58 "4.0.1" 1369 | cids "~0.5.6" 1370 | multibase "~0.6.0" 1371 | multihashes "~0.4.13" 1372 | 1373 | is-number@^3.0.0: 1374 | version "3.0.0" 1375 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1376 | dependencies: 1377 | kind-of "^3.0.2" 1378 | 1379 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1380 | version "2.0.4" 1381 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1382 | dependencies: 1383 | isobject "^3.0.1" 1384 | 1385 | is-promise@~1, is-promise@~1.0.0: 1386 | version "1.0.1" 1387 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-1.0.1.tgz#31573761c057e33c2e91aab9e96da08cefbe76e5" 1388 | 1389 | is-pull-stream@0.0.0: 1390 | version "0.0.0" 1391 | resolved "https://registry.yarnpkg.com/is-pull-stream/-/is-pull-stream-0.0.0.tgz#a3bc3d1c6d3055151c46bde6f399efed21440ca9" 1392 | 1393 | is-stream@^1.1.0: 1394 | version "1.1.0" 1395 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1396 | 1397 | is-typedarray@~1.0.0: 1398 | version "1.0.0" 1399 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1400 | 1401 | is-windows@^1.0.2: 1402 | version "1.0.2" 1403 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1404 | 1405 | isarray@1.0.0, isarray@~1.0.0: 1406 | version "1.0.0" 1407 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1408 | 1409 | isexe@^2.0.0: 1410 | version "2.0.0" 1411 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1412 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1413 | 1414 | iso-random-stream@^1.1.0: 1415 | version "1.1.0" 1416 | resolved "https://registry.yarnpkg.com/iso-random-stream/-/iso-random-stream-1.1.0.tgz#c1dc1bb43dd8da6524df9cbc6253b010806585c8" 1417 | 1418 | iso-url@~0.4.4: 1419 | version "0.4.4" 1420 | resolved "https://registry.yarnpkg.com/iso-url/-/iso-url-0.4.4.tgz#473a45569b6015da0c23f831010aeff69e3841e8" 1421 | 1422 | isobject@^2.0.0: 1423 | version "2.1.0" 1424 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1425 | dependencies: 1426 | isarray "1.0.0" 1427 | 1428 | isobject@^3.0.0, isobject@^3.0.1: 1429 | version "3.0.1" 1430 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1431 | 1432 | isstream@~0.1.2: 1433 | version "0.1.2" 1434 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1435 | 1436 | iterall@^1.2.2: 1437 | version "1.2.2" 1438 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" 1439 | 1440 | jayson@^2.0.6: 1441 | version "2.1.1" 1442 | resolved "https://registry.yarnpkg.com/jayson/-/jayson-2.1.1.tgz#2cefed8c014f7d5b73e97cb3cfc8e0e6b02eeb35" 1443 | dependencies: 1444 | "@types/node" "^10.3.5" 1445 | JSONStream "^1.3.1" 1446 | commander "^2.12.2" 1447 | es6-promisify "^5.0.0" 1448 | eyes "^0.1.8" 1449 | json-stringify-safe "^5.0.1" 1450 | lodash "^4.17.10" 1451 | uuid "^3.2.1" 1452 | 1453 | js-sha3@~0.8.0: 1454 | version "0.8.0" 1455 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 1456 | 1457 | js-yaml@^3.12.0: 1458 | version "3.12.1" 1459 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600" 1460 | dependencies: 1461 | argparse "^1.0.7" 1462 | esprima "^4.0.0" 1463 | 1464 | js-yaml@^3.13.0: 1465 | version "3.13.1" 1466 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 1467 | integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== 1468 | dependencies: 1469 | argparse "^1.0.7" 1470 | esprima "^4.0.0" 1471 | 1472 | jsbn@~0.1.0: 1473 | version "0.1.1" 1474 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1475 | 1476 | json-parse-better-errors@^1.0.1: 1477 | version "1.0.2" 1478 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1479 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1480 | 1481 | json-schema-traverse@^0.4.1: 1482 | version "0.4.1" 1483 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1484 | 1485 | json-schema@0.2.3: 1486 | version "0.2.3" 1487 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1488 | 1489 | json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: 1490 | version "5.0.1" 1491 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1492 | 1493 | json-text-sequence@~0.1.0: 1494 | version "0.1.1" 1495 | resolved "https://registry.yarnpkg.com/json-text-sequence/-/json-text-sequence-0.1.1.tgz#a72f217dc4afc4629fff5feb304dc1bd51a2f3d2" 1496 | dependencies: 1497 | delimit-stream "0.1.0" 1498 | 1499 | jsonfile@^4.0.0: 1500 | version "4.0.0" 1501 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1502 | optionalDependencies: 1503 | graceful-fs "^4.1.6" 1504 | 1505 | jsonparse@^1.2.0: 1506 | version "1.3.1" 1507 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1508 | 1509 | jsprim@^1.2.2: 1510 | version "1.4.1" 1511 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1512 | dependencies: 1513 | assert-plus "1.0.0" 1514 | extsprintf "1.3.0" 1515 | json-schema "0.2.3" 1516 | verror "1.10.0" 1517 | 1518 | keypair@^1.0.1: 1519 | version "1.0.1" 1520 | resolved "https://registry.yarnpkg.com/keypair/-/keypair-1.0.1.tgz#7603719270afb6564ed38a22087a06fc9aa4ea1b" 1521 | 1522 | keytar@^4.3.0: 1523 | version "4.3.0" 1524 | resolved "https://registry.yarnpkg.com/keytar/-/keytar-4.3.0.tgz#4a3afd64fdeec300716ccf3985fdcf1cfd6e77e9" 1525 | dependencies: 1526 | nan "2.8.0" 1527 | prebuild-install "^5.0.0" 1528 | 1529 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1530 | version "3.2.2" 1531 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1532 | dependencies: 1533 | is-buffer "^1.1.5" 1534 | 1535 | kind-of@^4.0.0: 1536 | version "4.0.0" 1537 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1538 | dependencies: 1539 | is-buffer "^1.1.5" 1540 | 1541 | kind-of@^5.0.0: 1542 | version "5.1.0" 1543 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1544 | 1545 | kind-of@^6.0.0, kind-of@^6.0.2: 1546 | version "6.0.2" 1547 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1548 | 1549 | libp2p-crypto-secp256k1@~0.2.3: 1550 | version "0.2.3" 1551 | resolved "https://registry.yarnpkg.com/libp2p-crypto-secp256k1/-/libp2p-crypto-secp256k1-0.2.3.tgz#212fc171d39dae7be3eaf4d9d311e0a8e9619c78" 1552 | dependencies: 1553 | async "^2.6.1" 1554 | multihashing-async "~0.5.1" 1555 | nodeify "^1.0.1" 1556 | safe-buffer "^5.1.2" 1557 | secp256k1 "^3.6.1" 1558 | 1559 | libp2p-crypto@~0.16.0: 1560 | version "0.16.0" 1561 | resolved "https://registry.yarnpkg.com/libp2p-crypto/-/libp2p-crypto-0.16.0.tgz#717d7cfa1b48cf8f01ede9f8dede6fe798ab8ece" 1562 | dependencies: 1563 | asn1.js "^5.0.1" 1564 | async "^2.6.1" 1565 | browserify-aes "^1.2.0" 1566 | bs58 "^4.0.1" 1567 | iso-random-stream "^1.1.0" 1568 | keypair "^1.0.1" 1569 | libp2p-crypto-secp256k1 "~0.2.3" 1570 | multihashing-async "~0.5.1" 1571 | node-forge "~0.7.6" 1572 | pem-jwk "^2.0.0" 1573 | protons "^1.0.1" 1574 | rsa-pem-to-jwk "^1.1.3" 1575 | tweetnacl "^1.0.0" 1576 | ursa-optional "~0.9.10" 1577 | 1578 | lodash.camelcase@^4.3.0: 1579 | version "4.3.0" 1580 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1581 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 1582 | 1583 | lodash.debounce@^4.0.8: 1584 | version "4.0.8" 1585 | resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" 1586 | 1587 | lodash.kebabcase@^4.1.1: 1588 | version "4.1.1" 1589 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 1590 | integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= 1591 | 1592 | lodash.lowercase@^4.3.0: 1593 | version "4.3.0" 1594 | resolved "https://registry.yarnpkg.com/lodash.lowercase/-/lodash.lowercase-4.3.0.tgz#46515aced4acb0b7093133333af068e4c3b14e9d" 1595 | integrity sha1-RlFaztSssLcJMTMzOvBo5MOxTp0= 1596 | 1597 | lodash.lowerfirst@^4.3.1: 1598 | version "4.3.1" 1599 | resolved "https://registry.yarnpkg.com/lodash.lowerfirst/-/lodash.lowerfirst-4.3.1.tgz#de3c7b12e02c6524a0059c2f6cb7c5c52655a13d" 1600 | integrity sha1-3jx7EuAsZSSgBZwvbLfFxSZVoT0= 1601 | 1602 | lodash.pad@^4.5.1: 1603 | version "4.5.1" 1604 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 1605 | integrity sha1-QzCUmoM6fI2iLMIPaibE1Z3runA= 1606 | 1607 | lodash.padend@^4.6.1: 1608 | version "4.6.1" 1609 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 1610 | integrity sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4= 1611 | 1612 | lodash.padstart@^4.6.1: 1613 | version "4.6.1" 1614 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 1615 | integrity sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs= 1616 | 1617 | lodash.repeat@^4.1.0: 1618 | version "4.1.0" 1619 | resolved "https://registry.yarnpkg.com/lodash.repeat/-/lodash.repeat-4.1.0.tgz#fc7de8131d8c8ac07e4b49f74ffe829d1f2bec44" 1620 | integrity sha1-/H3oEx2MisB+S0n3T/6CnR8r7EQ= 1621 | 1622 | lodash.snakecase@^4.1.1: 1623 | version "4.1.1" 1624 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 1625 | integrity sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40= 1626 | 1627 | lodash.startcase@^4.4.0: 1628 | version "4.4.0" 1629 | resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" 1630 | integrity sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg= 1631 | 1632 | lodash.trim@^4.5.1: 1633 | version "4.5.1" 1634 | resolved "https://registry.yarnpkg.com/lodash.trim/-/lodash.trim-4.5.1.tgz#36425e7ee90be4aa5e27bcebb85b7d11ea47aa57" 1635 | integrity sha1-NkJefukL5KpeJ7zruFt9EepHqlc= 1636 | 1637 | lodash.trimend@^4.5.1: 1638 | version "4.5.1" 1639 | resolved "https://registry.yarnpkg.com/lodash.trimend/-/lodash.trimend-4.5.1.tgz#12804437286b98cad8996b79414e11300114082f" 1640 | integrity sha1-EoBENyhrmMrYmWt5QU4RMAEUCC8= 1641 | 1642 | lodash.trimstart@^4.5.1: 1643 | version "4.5.1" 1644 | resolved "https://registry.yarnpkg.com/lodash.trimstart/-/lodash.trimstart-4.5.1.tgz#8ff4dec532d82486af59573c39445914e944a7f1" 1645 | integrity sha1-j/TexTLYJIavWVc8OURZFOlEp/E= 1646 | 1647 | lodash.uppercase@^4.3.0: 1648 | version "4.3.0" 1649 | resolved "https://registry.yarnpkg.com/lodash.uppercase/-/lodash.uppercase-4.3.0.tgz#c404abfd1469f93931f9bb24cf6cc7d57059bc73" 1650 | integrity sha1-xASr/RRp+Tkx+bskz2zH1XBZvHM= 1651 | 1652 | lodash.upperfirst@^4.3.1: 1653 | version "4.3.1" 1654 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 1655 | integrity sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984= 1656 | 1657 | lodash@^4.17.10, lodash@^4.17.11: 1658 | version "4.17.11" 1659 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1660 | 1661 | log-symbols@^2.2.0: 1662 | version "2.2.0" 1663 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 1664 | integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== 1665 | dependencies: 1666 | chalk "^2.0.1" 1667 | 1668 | long@^4.0.0: 1669 | version "4.0.0" 1670 | resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 1671 | 1672 | looper@^3.0.0: 1673 | version "3.0.0" 1674 | resolved "https://registry.yarnpkg.com/looper/-/looper-3.0.0.tgz#2efa54c3b1cbaba9b94aee2e5914b0be57fbb749" 1675 | 1676 | lru-cache@^5.1.1: 1677 | version "5.1.1" 1678 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1679 | dependencies: 1680 | yallist "^3.0.2" 1681 | 1682 | mafmt@^6.0.2: 1683 | version "6.0.4" 1684 | resolved "https://registry.yarnpkg.com/mafmt/-/mafmt-6.0.4.tgz#61b70ef3908b503939685e78fa11121763f59d18" 1685 | dependencies: 1686 | multiaddr "^6.0.3" 1687 | 1688 | map-cache@^0.2.2: 1689 | version "0.2.2" 1690 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1691 | 1692 | map-visit@^1.0.0: 1693 | version "1.0.0" 1694 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1695 | dependencies: 1696 | object-visit "^1.0.0" 1697 | 1698 | md5.js@^1.3.4: 1699 | version "1.3.5" 1700 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" 1701 | dependencies: 1702 | hash-base "^3.0.0" 1703 | inherits "^2.0.1" 1704 | safe-buffer "^5.1.2" 1705 | 1706 | micromatch@^3.1.10, micromatch@^3.1.4: 1707 | version "3.1.10" 1708 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1709 | dependencies: 1710 | arr-diff "^4.0.0" 1711 | array-unique "^0.3.2" 1712 | braces "^2.3.1" 1713 | define-property "^2.0.2" 1714 | extend-shallow "^3.0.2" 1715 | extglob "^2.0.4" 1716 | fragment-cache "^0.2.1" 1717 | kind-of "^6.0.2" 1718 | nanomatch "^1.2.9" 1719 | object.pick "^1.3.0" 1720 | regex-not "^1.0.0" 1721 | snapdragon "^0.8.1" 1722 | to-regex "^3.0.2" 1723 | 1724 | mime-db@~1.37.0: 1725 | version "1.37.0" 1726 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" 1727 | 1728 | mime-types@^2.1.12, mime-types@~2.1.19: 1729 | version "2.1.21" 1730 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96" 1731 | dependencies: 1732 | mime-db "~1.37.0" 1733 | 1734 | mimic-fn@^1.0.0: 1735 | version "1.2.0" 1736 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 1737 | integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 1738 | 1739 | mimic-response@^1.0.0: 1740 | version "1.0.1" 1741 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1742 | 1743 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 1744 | version "1.0.1" 1745 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 1746 | 1747 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1748 | version "1.0.1" 1749 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1750 | 1751 | minimatch@^3.0.2, minimatch@^3.0.4: 1752 | version "3.0.4" 1753 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1754 | dependencies: 1755 | brace-expansion "^1.1.7" 1756 | 1757 | minimist@0.0.8: 1758 | version "0.0.8" 1759 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1760 | 1761 | minimist@^1.2.0: 1762 | version "1.2.0" 1763 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1764 | 1765 | minipass@^2.2.1, minipass@^2.3.4: 1766 | version "2.3.5" 1767 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 1768 | dependencies: 1769 | safe-buffer "^5.1.2" 1770 | yallist "^3.0.0" 1771 | 1772 | minizlib@^1.1.1: 1773 | version "1.2.1" 1774 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 1775 | dependencies: 1776 | minipass "^2.2.1" 1777 | 1778 | mixin-deep@^1.2.0: 1779 | version "1.3.1" 1780 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1781 | dependencies: 1782 | for-in "^1.0.2" 1783 | is-extendable "^1.0.1" 1784 | 1785 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1786 | version "0.5.1" 1787 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1788 | dependencies: 1789 | minimist "0.0.8" 1790 | 1791 | ms@2.0.0: 1792 | version "2.0.0" 1793 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1794 | 1795 | ms@^2.1.1: 1796 | version "2.1.1" 1797 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1798 | 1799 | multiaddr@^6.0.0, multiaddr@^6.0.3: 1800 | version "6.0.3" 1801 | resolved "https://registry.yarnpkg.com/multiaddr/-/multiaddr-6.0.3.tgz#36797d110ad1d912a69c07ca5fca6f8a08690bf3" 1802 | dependencies: 1803 | bs58 "^4.0.1" 1804 | class-is "^1.1.0" 1805 | ip "^1.1.5" 1806 | is-ip "^2.0.0" 1807 | varint "^5.0.0" 1808 | 1809 | multibase@~0.6.0: 1810 | version "0.6.0" 1811 | resolved "https://registry.yarnpkg.com/multibase/-/multibase-0.6.0.tgz#0216e350614c7456da5e8e5b20d3fcd4c9104f56" 1812 | dependencies: 1813 | base-x "3.0.4" 1814 | 1815 | multicodec@~0.2.7: 1816 | version "0.2.7" 1817 | resolved "https://registry.yarnpkg.com/multicodec/-/multicodec-0.2.7.tgz#44dcb902b7ccd8065c4c348fe9987acf14a0679d" 1818 | dependencies: 1819 | varint "^5.0.0" 1820 | 1821 | multihashes@~0.4.13, multihashes@~0.4.14: 1822 | version "0.4.14" 1823 | resolved "https://registry.yarnpkg.com/multihashes/-/multihashes-0.4.14.tgz#774db9a161f81a8a27dc60788f91248e020f5244" 1824 | dependencies: 1825 | bs58 "^4.0.1" 1826 | varint "^5.0.0" 1827 | 1828 | multihashing-async@~0.5.1: 1829 | version "0.5.2" 1830 | resolved "https://registry.yarnpkg.com/multihashing-async/-/multihashing-async-0.5.2.tgz#4af40e0dde2f1dbb12a7c6b265181437ac26b9de" 1831 | dependencies: 1832 | blakejs "^1.1.0" 1833 | js-sha3 "~0.8.0" 1834 | multihashes "~0.4.13" 1835 | murmurhash3js "^3.0.1" 1836 | nodeify "^1.0.1" 1837 | 1838 | murmurhash3js@^3.0.1: 1839 | version "3.0.1" 1840 | resolved "https://registry.yarnpkg.com/murmurhash3js/-/murmurhash3js-3.0.1.tgz#3e983e5b47c2a06f43a713174e7e435ca044b998" 1841 | 1842 | nan@2.8.0: 1843 | version "2.8.0" 1844 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1845 | 1846 | nan@^2.11.1, nan@^2.2.1, nan@^2.9.2: 1847 | version "2.12.1" 1848 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552" 1849 | 1850 | nanomatch@^1.2.9: 1851 | version "1.2.13" 1852 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1853 | dependencies: 1854 | arr-diff "^4.0.0" 1855 | array-unique "^0.3.2" 1856 | define-property "^2.0.2" 1857 | extend-shallow "^3.0.2" 1858 | fragment-cache "^0.2.1" 1859 | is-windows "^1.0.2" 1860 | kind-of "^6.0.2" 1861 | object.pick "^1.3.0" 1862 | regex-not "^1.0.0" 1863 | snapdragon "^0.8.1" 1864 | to-regex "^3.0.1" 1865 | 1866 | napi-build-utils@^1.0.1: 1867 | version "1.0.1" 1868 | resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.1.tgz#1381a0f92c39d66bf19852e7873432fc2123e508" 1869 | 1870 | ndjson@^1.5.0: 1871 | version "1.5.0" 1872 | resolved "https://registry.yarnpkg.com/ndjson/-/ndjson-1.5.0.tgz#ae603b36b134bcec347b452422b0bf98d5832ec8" 1873 | dependencies: 1874 | json-stringify-safe "^5.0.1" 1875 | minimist "^1.2.0" 1876 | split2 "^2.1.0" 1877 | through2 "^2.0.3" 1878 | 1879 | needle@^2.2.1: 1880 | version "2.2.4" 1881 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 1882 | dependencies: 1883 | debug "^2.1.2" 1884 | iconv-lite "^0.4.4" 1885 | sax "^1.2.4" 1886 | 1887 | nice-try@^1.0.4: 1888 | version "1.0.5" 1889 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1890 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1891 | 1892 | node-abi@^2.2.0: 1893 | version "2.5.1" 1894 | resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.5.1.tgz#bb17288fc3b2f68fea0ed9897c66979fd754ed47" 1895 | dependencies: 1896 | semver "^5.4.1" 1897 | 1898 | node-fetch@^2.3.0: 1899 | version "2.5.0" 1900 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.5.0.tgz#8028c49fc1191bba56a07adc6e2a954644a48501" 1901 | integrity sha512-YuZKluhWGJwCcUu4RlZstdAxr8bFfOVHakc1mplwHkk8J+tqM1Y5yraYvIUpeX8aY7+crCwiELJq7Vl0o0LWXw== 1902 | 1903 | node-forge@~0.7.6: 1904 | version "0.7.6" 1905 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.6.tgz#fdf3b418aee1f94f0ef642cd63486c77ca9724ac" 1906 | 1907 | node-pre-gyp@^0.10.0: 1908 | version "0.10.3" 1909 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 1910 | dependencies: 1911 | detect-libc "^1.0.2" 1912 | mkdirp "^0.5.1" 1913 | needle "^2.2.1" 1914 | nopt "^4.0.1" 1915 | npm-packlist "^1.1.6" 1916 | npmlog "^4.0.2" 1917 | rc "^1.2.7" 1918 | rimraf "^2.6.1" 1919 | semver "^5.3.0" 1920 | tar "^4" 1921 | 1922 | nodeify@^1.0.1: 1923 | version "1.0.1" 1924 | resolved "https://registry.yarnpkg.com/nodeify/-/nodeify-1.0.1.tgz#64ab69a7bdbaf03ce107b4f0335c87c0b9e91b1d" 1925 | dependencies: 1926 | is-promise "~1.0.0" 1927 | promise "~1.3.0" 1928 | 1929 | noop-logger@^0.1.1: 1930 | version "0.1.1" 1931 | resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" 1932 | 1933 | nopt@^4.0.1: 1934 | version "4.0.1" 1935 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1936 | dependencies: 1937 | abbrev "1" 1938 | osenv "^0.1.4" 1939 | 1940 | normalize-path@^2.1.1: 1941 | version "2.1.1" 1942 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1943 | dependencies: 1944 | remove-trailing-separator "^1.0.1" 1945 | 1946 | npm-bundled@^1.0.1: 1947 | version "1.0.5" 1948 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979" 1949 | 1950 | npm-packlist@^1.1.6: 1951 | version "1.2.0" 1952 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.2.0.tgz#55a60e793e272f00862c7089274439a4cc31fc7f" 1953 | dependencies: 1954 | ignore-walk "^3.0.1" 1955 | npm-bundled "^1.0.1" 1956 | 1957 | npm-run-path@^2.0.0: 1958 | version "2.0.2" 1959 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1960 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 1961 | dependencies: 1962 | path-key "^2.0.0" 1963 | 1964 | npmlog@^4.0.1, npmlog@^4.0.2: 1965 | version "4.1.2" 1966 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1967 | dependencies: 1968 | are-we-there-yet "~1.1.2" 1969 | console-control-strings "~1.1.0" 1970 | gauge "~2.7.3" 1971 | set-blocking "~2.0.0" 1972 | 1973 | number-is-nan@^1.0.0: 1974 | version "1.0.1" 1975 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1976 | 1977 | oauth-sign@~0.9.0: 1978 | version "0.9.0" 1979 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" 1980 | 1981 | object-assign@^2.0.0: 1982 | version "2.1.1" 1983 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" 1984 | 1985 | object-assign@^4.1.0: 1986 | version "4.1.1" 1987 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1988 | 1989 | object-copy@^0.1.0: 1990 | version "0.1.0" 1991 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1992 | dependencies: 1993 | copy-descriptor "^0.1.0" 1994 | define-property "^0.2.5" 1995 | kind-of "^3.0.3" 1996 | 1997 | object-visit@^1.0.0: 1998 | version "1.0.1" 1999 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2000 | dependencies: 2001 | isobject "^3.0.0" 2002 | 2003 | object.pick@^1.3.0: 2004 | version "1.3.0" 2005 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2006 | dependencies: 2007 | isobject "^3.0.1" 2008 | 2009 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2010 | version "1.4.0" 2011 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2012 | dependencies: 2013 | wrappy "1" 2014 | 2015 | onetime@^2.0.0: 2016 | version "2.0.1" 2017 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 2018 | integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 2019 | dependencies: 2020 | mimic-fn "^1.0.0" 2021 | 2022 | opencollective-postinstall@^2.0.0: 2023 | version "2.0.2" 2024 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" 2025 | integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== 2026 | 2027 | optimist@~0.3.5: 2028 | version "0.3.7" 2029 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.3.7.tgz#c90941ad59e4273328923074d2cf2e7cbc6ec0d9" 2030 | dependencies: 2031 | wordwrap "~0.0.2" 2032 | 2033 | ora@^3.0.0: 2034 | version "3.4.0" 2035 | resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" 2036 | integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== 2037 | dependencies: 2038 | chalk "^2.4.2" 2039 | cli-cursor "^2.1.0" 2040 | cli-spinners "^2.0.0" 2041 | log-symbols "^2.2.0" 2042 | strip-ansi "^5.2.0" 2043 | wcwidth "^1.0.1" 2044 | 2045 | os-homedir@^1.0.0, os-homedir@^1.0.1: 2046 | version "1.0.2" 2047 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2048 | 2049 | os-tmpdir@^1.0.0: 2050 | version "1.0.2" 2051 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2052 | 2053 | osenv@^0.1.4: 2054 | version "0.1.5" 2055 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2056 | dependencies: 2057 | os-homedir "^1.0.0" 2058 | os-tmpdir "^1.0.0" 2059 | 2060 | p-finally@^1.0.0: 2061 | version "1.0.0" 2062 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2063 | 2064 | parse-json@^4.0.0: 2065 | version "4.0.0" 2066 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 2067 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 2068 | dependencies: 2069 | error-ex "^1.3.1" 2070 | json-parse-better-errors "^1.0.1" 2071 | 2072 | pascalcase@^0.1.1: 2073 | version "0.1.1" 2074 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2075 | 2076 | path-dirname@^1.0.0: 2077 | version "1.0.2" 2078 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 2079 | 2080 | path-is-absolute@^1.0.0: 2081 | version "1.0.1" 2082 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2083 | 2084 | path-key@^2.0.0, path-key@^2.0.1: 2085 | version "2.0.1" 2086 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2087 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2088 | 2089 | peer-id@~0.12.1, peer-id@~0.12.2: 2090 | version "0.12.2" 2091 | resolved "https://registry.yarnpkg.com/peer-id/-/peer-id-0.12.2.tgz#0d1b876ebf21a528be9948c9cb7d30266342b2fd" 2092 | dependencies: 2093 | async "^2.6.1" 2094 | class-is "^1.1.0" 2095 | libp2p-crypto "~0.16.0" 2096 | multihashes "~0.4.13" 2097 | 2098 | peer-info@~0.15.0: 2099 | version "0.15.1" 2100 | resolved "https://registry.yarnpkg.com/peer-info/-/peer-info-0.15.1.tgz#21254a7c516d0dd046b150120b9aaf1b9ad02146" 2101 | dependencies: 2102 | mafmt "^6.0.2" 2103 | multiaddr "^6.0.3" 2104 | peer-id "~0.12.2" 2105 | unique-by "^1.0.0" 2106 | 2107 | pem-jwk@^2.0.0: 2108 | version "2.0.0" 2109 | resolved "https://registry.yarnpkg.com/pem-jwk/-/pem-jwk-2.0.0.tgz#1c5bb264612fc391340907f5c1de60c06d22f085" 2110 | dependencies: 2111 | asn1.js "^5.0.1" 2112 | 2113 | performance-now@^2.1.0: 2114 | version "2.1.0" 2115 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2116 | 2117 | pkginfo@^0.4.1: 2118 | version "0.4.1" 2119 | resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff" 2120 | 2121 | pluralize@^7.0.0: 2122 | version "7.0.0" 2123 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 2124 | integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== 2125 | 2126 | posix-character-classes@^0.1.0: 2127 | version "0.1.1" 2128 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2129 | 2130 | prebuild-install@^5.0.0: 2131 | version "5.2.2" 2132 | resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-5.2.2.tgz#237888f21bfda441d0ee5f5612484390bccd4046" 2133 | dependencies: 2134 | detect-libc "^1.0.3" 2135 | expand-template "^2.0.3" 2136 | github-from-package "0.0.0" 2137 | minimist "^1.2.0" 2138 | mkdirp "^0.5.1" 2139 | napi-build-utils "^1.0.1" 2140 | node-abi "^2.2.0" 2141 | noop-logger "^0.1.1" 2142 | npmlog "^4.0.1" 2143 | os-homedir "^1.0.1" 2144 | pump "^2.0.1" 2145 | rc "^1.2.7" 2146 | simple-get "^2.7.0" 2147 | tar-fs "^1.13.0" 2148 | tunnel-agent "^0.6.0" 2149 | which-pm-runs "^1.0.0" 2150 | 2151 | prettier@^1.13.5: 2152 | version "1.15.3" 2153 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz#1feaac5bdd181237b54dbe65d874e02a1472786a" 2154 | 2155 | process-nextick-args@~2.0.0: 2156 | version "2.0.0" 2157 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2158 | 2159 | promise@~1.3.0: 2160 | version "1.3.0" 2161 | resolved "https://registry.yarnpkg.com/promise/-/promise-1.3.0.tgz#e5cc9a4c8278e4664ffedc01c7da84842b040175" 2162 | dependencies: 2163 | is-promise "~1" 2164 | 2165 | promisify-es6@^1.0.3: 2166 | version "1.0.3" 2167 | resolved "https://registry.yarnpkg.com/promisify-es6/-/promisify-es6-1.0.3.tgz#b012668c4df3c965ce13daac2b3a4d1726a96346" 2168 | 2169 | protocol-buffers-schema@^3.3.1: 2170 | version "3.3.2" 2171 | resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.3.2.tgz#00434f608b4e8df54c59e070efeefc37fb4bb859" 2172 | 2173 | protons@^1.0.1: 2174 | version "1.0.1" 2175 | resolved "https://registry.yarnpkg.com/protons/-/protons-1.0.1.tgz#1c107144c07fc2d1cb8b6cb76451e6a938237676" 2176 | dependencies: 2177 | protocol-buffers-schema "^3.3.1" 2178 | safe-buffer "^5.1.1" 2179 | signed-varint "^2.0.1" 2180 | varint "^5.0.0" 2181 | 2182 | psl@^1.1.24: 2183 | version "1.1.31" 2184 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" 2185 | 2186 | pull-defer@~0.2.3: 2187 | version "0.2.3" 2188 | resolved "https://registry.yarnpkg.com/pull-defer/-/pull-defer-0.2.3.tgz#4ee09c6d9e227bede9938db80391c3dac489d113" 2189 | 2190 | pull-pushable@^2.2.0: 2191 | version "2.2.0" 2192 | resolved "https://registry.yarnpkg.com/pull-pushable/-/pull-pushable-2.2.0.tgz#5f2f3aed47ad86919f01b12a2e99d6f1bd776581" 2193 | 2194 | pull-stream-to-stream@^1.3.4: 2195 | version "1.3.4" 2196 | resolved "https://registry.yarnpkg.com/pull-stream-to-stream/-/pull-stream-to-stream-1.3.4.tgz#3f81d8216bd18d2bfd1a198190471180e2738399" 2197 | 2198 | pull-stream@^3.2.3, pull-stream@^3.6.9: 2199 | version "3.6.9" 2200 | resolved "https://registry.yarnpkg.com/pull-stream/-/pull-stream-3.6.9.tgz#c774724cd63bc0984c3695f74c819aa02e977320" 2201 | 2202 | pull-traverse@^1.0.3: 2203 | version "1.0.3" 2204 | resolved "https://registry.yarnpkg.com/pull-traverse/-/pull-traverse-1.0.3.tgz#74fb5d7be7fa6bd7a78e97933e199b7945866938" 2205 | 2206 | pump@^1.0.0: 2207 | version "1.0.3" 2208 | resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.3.tgz#5dfe8311c33bbf6fc18261f9f34702c47c08a954" 2209 | dependencies: 2210 | end-of-stream "^1.1.0" 2211 | once "^1.3.1" 2212 | 2213 | pump@^2.0.1: 2214 | version "2.0.1" 2215 | resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" 2216 | dependencies: 2217 | end-of-stream "^1.1.0" 2218 | once "^1.3.1" 2219 | 2220 | pump@^3.0.0: 2221 | version "3.0.0" 2222 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2223 | dependencies: 2224 | end-of-stream "^1.1.0" 2225 | once "^1.3.1" 2226 | 2227 | punycode@^1.4.1: 2228 | version "1.4.1" 2229 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2230 | 2231 | punycode@^2.1.0: 2232 | version "2.1.1" 2233 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2234 | 2235 | qs@^6.5.2: 2236 | version "6.6.0" 2237 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.6.0.tgz#a99c0f69a8d26bf7ef012f871cdabb0aee4424c2" 2238 | 2239 | qs@~6.5.2: 2240 | version "6.5.2" 2241 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2242 | 2243 | ramda@^0.24.1: 2244 | version "0.24.1" 2245 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857" 2246 | integrity sha1-w7d1UZfzW43DUCIoJixMkd22uFc= 2247 | 2248 | ramda@^0.25.0: 2249 | version "0.25.0" 2250 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9" 2251 | integrity sha512-GXpfrYVPwx3K7RQ6aYT8KPS8XViSXUVJT1ONhoKPE9VAleW42YE+U+8VEyGWt41EnEQW7gwecYJriTI0pKoecQ== 2252 | 2253 | ramdasauce@^2.1.0: 2254 | version "2.1.3" 2255 | resolved "https://registry.yarnpkg.com/ramdasauce/-/ramdasauce-2.1.3.tgz#acb45ecc7e4fc4d6f39e19989b4a16dff383e9c2" 2256 | integrity sha512-Ml3CPim4SKwmg5g9UI77lnRSeKr/kQw7YhQ6rfdMcBYy6DMlwmkEwQqjygJ3OhxPR+NfFfpjKl3Tf8GXckaqqg== 2257 | dependencies: 2258 | ramda "^0.24.1" 2259 | 2260 | rc@^1.2.7: 2261 | version "1.2.8" 2262 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2263 | dependencies: 2264 | deep-extend "^0.6.0" 2265 | ini "~1.3.0" 2266 | minimist "^1.2.0" 2267 | strip-json-comments "~2.0.1" 2268 | 2269 | "readable-stream@2 || 3", readable-stream@^3.0.2, readable-stream@^3.0.6: 2270 | version "3.1.1" 2271 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.1.1.tgz#ed6bbc6c5ba58b090039ff18ce670515795aeb06" 2272 | dependencies: 2273 | inherits "^2.0.3" 2274 | string_decoder "^1.1.1" 2275 | util-deprecate "^1.0.1" 2276 | 2277 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6: 2278 | version "2.3.6" 2279 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2280 | dependencies: 2281 | core-util-is "~1.0.0" 2282 | inherits "~2.0.3" 2283 | isarray "~1.0.0" 2284 | process-nextick-args "~2.0.0" 2285 | safe-buffer "~5.1.1" 2286 | string_decoder "~1.1.1" 2287 | util-deprecate "~1.0.1" 2288 | 2289 | readdirp@^2.0.0: 2290 | version "2.2.1" 2291 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 2292 | dependencies: 2293 | graceful-fs "^4.1.11" 2294 | micromatch "^3.1.10" 2295 | readable-stream "^2.0.2" 2296 | 2297 | regex-not@^1.0.0, regex-not@^1.0.2: 2298 | version "1.0.2" 2299 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2300 | dependencies: 2301 | extend-shallow "^3.0.2" 2302 | safe-regex "^1.1.0" 2303 | 2304 | remove-trailing-separator@^1.0.1: 2305 | version "1.1.0" 2306 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2307 | 2308 | repeat-element@^1.1.2: 2309 | version "1.1.3" 2310 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 2311 | 2312 | repeat-string@^1.6.1: 2313 | version "1.6.1" 2314 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2315 | 2316 | request@^2.88.0: 2317 | version "2.88.0" 2318 | resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" 2319 | dependencies: 2320 | aws-sign2 "~0.7.0" 2321 | aws4 "^1.8.0" 2322 | caseless "~0.12.0" 2323 | combined-stream "~1.0.6" 2324 | extend "~3.0.2" 2325 | forever-agent "~0.6.1" 2326 | form-data "~2.3.2" 2327 | har-validator "~5.1.0" 2328 | http-signature "~1.2.0" 2329 | is-typedarray "~1.0.0" 2330 | isstream "~0.1.2" 2331 | json-stringify-safe "~5.0.1" 2332 | mime-types "~2.1.19" 2333 | oauth-sign "~0.9.0" 2334 | performance-now "^2.1.0" 2335 | qs "~6.5.2" 2336 | safe-buffer "^5.1.2" 2337 | tough-cookie "~2.4.3" 2338 | tunnel-agent "^0.6.0" 2339 | uuid "^3.3.2" 2340 | 2341 | resolve-from@^3.0.0: 2342 | version "3.0.0" 2343 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2344 | integrity sha1-six699nWiBvItuZTM17rywoYh0g= 2345 | 2346 | resolve-url@^0.2.1: 2347 | version "0.2.1" 2348 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2349 | 2350 | restore-cursor@^2.0.0: 2351 | version "2.0.0" 2352 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2353 | integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 2354 | dependencies: 2355 | onetime "^2.0.0" 2356 | signal-exit "^3.0.2" 2357 | 2358 | ret@~0.1.10: 2359 | version "0.1.15" 2360 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2361 | 2362 | rimraf@^2.6.1, rimraf@^2.6.3: 2363 | version "2.6.3" 2364 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2365 | dependencies: 2366 | glob "^7.1.3" 2367 | 2368 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2369 | version "2.0.2" 2370 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" 2371 | dependencies: 2372 | hash-base "^3.0.0" 2373 | inherits "^2.0.1" 2374 | 2375 | rsa-pem-to-jwk@^1.1.3: 2376 | version "1.1.3" 2377 | resolved "https://registry.yarnpkg.com/rsa-pem-to-jwk/-/rsa-pem-to-jwk-1.1.3.tgz#245e76bdb7e7234cfee7ca032d31b54c38fab98e" 2378 | dependencies: 2379 | object-assign "^2.0.0" 2380 | rsa-unpack "0.0.6" 2381 | 2382 | rsa-unpack@0.0.6: 2383 | version "0.0.6" 2384 | resolved "https://registry.yarnpkg.com/rsa-unpack/-/rsa-unpack-0.0.6.tgz#f50ebd56a628378e631f297161026ce9ab4eddba" 2385 | dependencies: 2386 | optimist "~0.3.5" 2387 | 2388 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2389 | version "5.1.2" 2390 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2391 | 2392 | safe-regex@^1.1.0: 2393 | version "1.1.0" 2394 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 2395 | dependencies: 2396 | ret "~0.1.10" 2397 | 2398 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2399 | version "2.1.2" 2400 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2401 | 2402 | sax@^1.2.4: 2403 | version "1.2.4" 2404 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2405 | 2406 | secp256k1@^3.6.1: 2407 | version "3.6.1" 2408 | resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-3.6.1.tgz#f0475d42096218ff00e45a127242abdff9285335" 2409 | dependencies: 2410 | bindings "^1.2.1" 2411 | bip66 "^1.1.3" 2412 | bn.js "^4.11.3" 2413 | create-hash "^1.1.2" 2414 | drbg.js "^1.0.1" 2415 | elliptic "^6.2.3" 2416 | nan "^2.2.1" 2417 | safe-buffer "^5.1.0" 2418 | 2419 | semver@^5.3.0, semver@^5.4.1: 2420 | version "5.6.0" 2421 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 2422 | 2423 | semver@^5.5.0: 2424 | version "5.7.0" 2425 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" 2426 | integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== 2427 | 2428 | semver@^6.0.0: 2429 | version "6.0.0" 2430 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.0.0.tgz#05e359ee571e5ad7ed641a6eec1e547ba52dea65" 2431 | integrity sha512-0UewU+9rFapKFnlbirLi3byoOuhrSsli/z/ihNnvM24vgF+8sNBiI1LZPBSH9wJKUwaUbw+s3hToDLCXkrghrQ== 2432 | 2433 | set-blocking@~2.0.0: 2434 | version "2.0.0" 2435 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2436 | 2437 | set-value@^0.4.3: 2438 | version "0.4.3" 2439 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 2440 | dependencies: 2441 | extend-shallow "^2.0.1" 2442 | is-extendable "^0.1.1" 2443 | is-plain-object "^2.0.1" 2444 | to-object-path "^0.3.0" 2445 | 2446 | set-value@^2.0.0: 2447 | version "2.0.0" 2448 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 2449 | dependencies: 2450 | extend-shallow "^2.0.1" 2451 | is-extendable "^0.1.1" 2452 | is-plain-object "^2.0.3" 2453 | split-string "^3.0.1" 2454 | 2455 | sha.js@^2.4.0, sha.js@^2.4.8: 2456 | version "2.4.11" 2457 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 2458 | dependencies: 2459 | inherits "^2.0.1" 2460 | safe-buffer "^5.0.1" 2461 | 2462 | shebang-command@^1.2.0: 2463 | version "1.2.0" 2464 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2465 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2466 | dependencies: 2467 | shebang-regex "^1.0.0" 2468 | 2469 | shebang-regex@^1.0.0: 2470 | version "1.0.0" 2471 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2472 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2473 | 2474 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2475 | version "3.0.2" 2476 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2477 | 2478 | signed-varint@^2.0.1: 2479 | version "2.0.1" 2480 | resolved "https://registry.yarnpkg.com/signed-varint/-/signed-varint-2.0.1.tgz#50a9989da7c98c2c61dad119bc97470ef8528129" 2481 | dependencies: 2482 | varint "~5.0.0" 2483 | 2484 | simple-concat@^1.0.0: 2485 | version "1.0.0" 2486 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" 2487 | 2488 | simple-get@^2.7.0: 2489 | version "2.8.1" 2490 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-2.8.1.tgz#0e22e91d4575d87620620bc91308d57a77f44b5d" 2491 | dependencies: 2492 | decompress-response "^3.3.0" 2493 | once "^1.3.1" 2494 | simple-concat "^1.0.0" 2495 | 2496 | snapdragon-node@^2.0.1: 2497 | version "2.1.1" 2498 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 2499 | dependencies: 2500 | define-property "^1.0.0" 2501 | isobject "^3.0.0" 2502 | snapdragon-util "^3.0.1" 2503 | 2504 | snapdragon-util@^3.0.1: 2505 | version "3.0.1" 2506 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 2507 | dependencies: 2508 | kind-of "^3.2.0" 2509 | 2510 | snapdragon@^0.8.1: 2511 | version "0.8.2" 2512 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 2513 | dependencies: 2514 | base "^0.11.1" 2515 | debug "^2.2.0" 2516 | define-property "^0.2.5" 2517 | extend-shallow "^2.0.1" 2518 | map-cache "^0.2.2" 2519 | source-map "^0.5.6" 2520 | source-map-resolve "^0.5.0" 2521 | use "^3.1.0" 2522 | 2523 | source-map-resolve@^0.5.0: 2524 | version "0.5.2" 2525 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 2526 | dependencies: 2527 | atob "^2.1.1" 2528 | decode-uri-component "^0.2.0" 2529 | resolve-url "^0.2.1" 2530 | source-map-url "^0.4.0" 2531 | urix "^0.1.0" 2532 | 2533 | source-map-support@^0.5.11: 2534 | version "0.5.12" 2535 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" 2536 | integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== 2537 | dependencies: 2538 | buffer-from "^1.0.0" 2539 | source-map "^0.6.0" 2540 | 2541 | source-map-url@^0.4.0: 2542 | version "0.4.0" 2543 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 2544 | 2545 | source-map@^0.5.6: 2546 | version "0.5.7" 2547 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2548 | 2549 | source-map@^0.6.0: 2550 | version "0.6.1" 2551 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2552 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2553 | 2554 | split-string@^3.0.1, split-string@^3.0.2: 2555 | version "3.1.0" 2556 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 2557 | dependencies: 2558 | extend-shallow "^3.0.0" 2559 | 2560 | split2@^2.1.0: 2561 | version "2.2.0" 2562 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 2563 | dependencies: 2564 | through2 "^2.0.2" 2565 | 2566 | sprintf-js@~1.0.2: 2567 | version "1.0.3" 2568 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2569 | 2570 | sshpk@^1.7.0: 2571 | version "1.16.0" 2572 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.0.tgz#1d4963a2fbffe58050aa9084ca20be81741c07de" 2573 | dependencies: 2574 | asn1 "~0.2.3" 2575 | assert-plus "^1.0.0" 2576 | bcrypt-pbkdf "^1.0.0" 2577 | dashdash "^1.12.0" 2578 | ecc-jsbn "~0.1.1" 2579 | getpass "^0.1.1" 2580 | jsbn "~0.1.0" 2581 | safer-buffer "^2.0.2" 2582 | tweetnacl "~0.14.0" 2583 | 2584 | stable@~0.1.8: 2585 | version "0.1.8" 2586 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 2587 | 2588 | static-extend@^0.1.1: 2589 | version "0.1.2" 2590 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 2591 | dependencies: 2592 | define-property "^0.2.5" 2593 | object-copy "^0.1.0" 2594 | 2595 | stream-http@^3.0.0: 2596 | version "3.0.0" 2597 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.0.0.tgz#bd6d3c52610098699e25eb2dfcd188e30e0d12e4" 2598 | dependencies: 2599 | builtin-status-codes "^3.0.0" 2600 | inherits "^2.0.1" 2601 | readable-stream "^3.0.6" 2602 | xtend "^4.0.0" 2603 | 2604 | stream-to-pull-stream@^1.7.2: 2605 | version "1.7.2" 2606 | resolved "https://registry.yarnpkg.com/stream-to-pull-stream/-/stream-to-pull-stream-1.7.2.tgz#757609ae1cebd33c7432d4afbe31ff78650b9dde" 2607 | dependencies: 2608 | looper "^3.0.0" 2609 | pull-stream "^3.2.3" 2610 | 2611 | streamifier@~0.1.1: 2612 | version "0.1.1" 2613 | resolved "https://registry.yarnpkg.com/streamifier/-/streamifier-0.1.1.tgz#97e98d8fa4d105d62a2691d1dc07e820db8dfc4f" 2614 | 2615 | string-width@^1.0.1: 2616 | version "1.0.2" 2617 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2618 | dependencies: 2619 | code-point-at "^1.0.0" 2620 | is-fullwidth-code-point "^1.0.0" 2621 | strip-ansi "^3.0.0" 2622 | 2623 | "string-width@^1.0.2 || 2", string-width@^2.1.1: 2624 | version "2.1.1" 2625 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2626 | dependencies: 2627 | is-fullwidth-code-point "^2.0.0" 2628 | strip-ansi "^4.0.0" 2629 | 2630 | string_decoder@^1.1.1: 2631 | version "1.2.0" 2632 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" 2633 | dependencies: 2634 | safe-buffer "~5.1.0" 2635 | 2636 | string_decoder@~1.1.1: 2637 | version "1.1.1" 2638 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2639 | dependencies: 2640 | safe-buffer "~5.1.0" 2641 | 2642 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2643 | version "3.0.1" 2644 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2645 | dependencies: 2646 | ansi-regex "^2.0.0" 2647 | 2648 | strip-ansi@^4.0.0: 2649 | version "4.0.0" 2650 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2651 | dependencies: 2652 | ansi-regex "^3.0.0" 2653 | 2654 | strip-ansi@^5.2.0: 2655 | version "5.2.0" 2656 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2657 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 2658 | dependencies: 2659 | ansi-regex "^4.1.0" 2660 | 2661 | strip-eof@^1.0.0: 2662 | version "1.0.0" 2663 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2664 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 2665 | 2666 | strip-json-comments@~2.0.1: 2667 | version "2.0.1" 2668 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2669 | 2670 | supports-color@^5.3.0: 2671 | version "5.5.0" 2672 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2673 | dependencies: 2674 | has-flag "^3.0.0" 2675 | 2676 | tar-fs@^1.13.0: 2677 | version "1.16.3" 2678 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-1.16.3.tgz#966a628841da2c4010406a82167cbd5e0c72d509" 2679 | dependencies: 2680 | chownr "^1.0.1" 2681 | mkdirp "^0.5.1" 2682 | pump "^1.0.0" 2683 | tar-stream "^1.1.2" 2684 | 2685 | tar-stream@^1.1.2, tar-stream@^1.6.2: 2686 | version "1.6.2" 2687 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" 2688 | dependencies: 2689 | bl "^1.0.0" 2690 | buffer-alloc "^1.2.0" 2691 | end-of-stream "^1.0.0" 2692 | fs-constants "^1.0.0" 2693 | readable-stream "^2.3.0" 2694 | to-buffer "^1.1.1" 2695 | xtend "^4.0.0" 2696 | 2697 | tar@^4: 2698 | version "4.4.8" 2699 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" 2700 | integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== 2701 | dependencies: 2702 | chownr "^1.1.1" 2703 | fs-minipass "^1.2.5" 2704 | minipass "^2.3.4" 2705 | minizlib "^1.1.1" 2706 | mkdirp "^0.5.0" 2707 | safe-buffer "^5.1.2" 2708 | yallist "^3.0.2" 2709 | 2710 | through2@^2.0.2, through2@^2.0.3: 2711 | version "2.0.5" 2712 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" 2713 | dependencies: 2714 | readable-stream "~2.3.6" 2715 | xtend "~4.0.1" 2716 | 2717 | through2@^3.0.0: 2718 | version "3.0.0" 2719 | resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.0.tgz#468b461df9cd9fcc170f22ebf6852e467e578ff2" 2720 | dependencies: 2721 | readable-stream "2 || 3" 2722 | xtend "~4.0.1" 2723 | 2724 | "through@>=2.2.7 <3": 2725 | version "2.3.8" 2726 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2727 | 2728 | to-buffer@^1.1.1: 2729 | version "1.1.1" 2730 | resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" 2731 | 2732 | to-object-path@^0.3.0: 2733 | version "0.3.0" 2734 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2735 | dependencies: 2736 | kind-of "^3.0.2" 2737 | 2738 | to-regex-range@^2.1.0: 2739 | version "2.1.1" 2740 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2741 | dependencies: 2742 | is-number "^3.0.0" 2743 | repeat-string "^1.6.1" 2744 | 2745 | to-regex@^3.0.1, to-regex@^3.0.2: 2746 | version "3.0.2" 2747 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2748 | dependencies: 2749 | define-property "^2.0.2" 2750 | extend-shallow "^3.0.2" 2751 | regex-not "^1.0.2" 2752 | safe-regex "^1.1.0" 2753 | 2754 | tough-cookie@~2.4.3: 2755 | version "2.4.3" 2756 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" 2757 | dependencies: 2758 | psl "^1.1.24" 2759 | punycode "^1.4.1" 2760 | 2761 | traverse@~0.6.6: 2762 | version "0.6.6" 2763 | resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" 2764 | 2765 | tunnel-agent@^0.6.0: 2766 | version "0.6.0" 2767 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2768 | dependencies: 2769 | safe-buffer "^5.0.1" 2770 | 2771 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2772 | version "0.14.5" 2773 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2774 | 2775 | tweetnacl@^1.0.0: 2776 | version "1.0.0" 2777 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.0.tgz#713d8b818da42068740bf68386d0479e66fc8a7b" 2778 | 2779 | typedarray@^0.0.6: 2780 | version "0.0.6" 2781 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2782 | 2783 | union-value@^1.0.0: 2784 | version "1.0.0" 2785 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2786 | dependencies: 2787 | arr-union "^3.1.0" 2788 | get-value "^2.0.6" 2789 | is-extendable "^0.1.1" 2790 | set-value "^0.4.3" 2791 | 2792 | unique-by@^1.0.0: 2793 | version "1.0.0" 2794 | resolved "https://registry.yarnpkg.com/unique-by/-/unique-by-1.0.0.tgz#5220c86ba7bc572fb713ad74651470cb644212bd" 2795 | 2796 | universalify@^0.1.0: 2797 | version "0.1.2" 2798 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 2799 | 2800 | unset-value@^1.0.0: 2801 | version "1.0.0" 2802 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2803 | dependencies: 2804 | has-value "^0.3.1" 2805 | isobject "^3.0.0" 2806 | 2807 | upath@^1.0.5: 2808 | version "1.1.0" 2809 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" 2810 | 2811 | uri-js@^4.2.2: 2812 | version "4.2.2" 2813 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 2814 | dependencies: 2815 | punycode "^2.1.0" 2816 | 2817 | urix@^0.1.0: 2818 | version "0.1.0" 2819 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2820 | 2821 | ursa-optional@~0.9.10: 2822 | version "0.9.10" 2823 | resolved "https://registry.yarnpkg.com/ursa-optional/-/ursa-optional-0.9.10.tgz#f2eabfe0b6001dbf07a78740cd0a6e5ba6eb2554" 2824 | dependencies: 2825 | bindings "^1.3.0" 2826 | nan "^2.11.1" 2827 | 2828 | use@^3.1.0: 2829 | version "3.1.1" 2830 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 2831 | 2832 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 2833 | version "1.0.2" 2834 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2835 | 2836 | uuid@^3.2.1, uuid@^3.3.2: 2837 | version "3.3.2" 2838 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" 2839 | 2840 | varint@^5.0.0, varint@~5.0.0: 2841 | version "5.0.0" 2842 | resolved "https://registry.yarnpkg.com/varint/-/varint-5.0.0.tgz#d826b89f7490732fabc0c0ed693ed475dcb29ebf" 2843 | 2844 | verror@1.10.0: 2845 | version "1.10.0" 2846 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2847 | dependencies: 2848 | assert-plus "^1.0.0" 2849 | core-util-is "1.0.2" 2850 | extsprintf "^1.2.0" 2851 | 2852 | wcwidth@^1.0.1: 2853 | version "1.0.1" 2854 | resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 2855 | integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= 2856 | dependencies: 2857 | defaults "^1.0.3" 2858 | 2859 | which-pm-runs@^1.0.0: 2860 | version "1.0.0" 2861 | resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb" 2862 | 2863 | which@^1.2.14, which@^1.2.9: 2864 | version "1.3.1" 2865 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2866 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2867 | dependencies: 2868 | isexe "^2.0.0" 2869 | 2870 | wide-align@^1.1.0: 2871 | version "1.1.3" 2872 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2873 | dependencies: 2874 | string-width "^1.0.2 || 2" 2875 | 2876 | wordwrap@~0.0.2: 2877 | version "0.0.3" 2878 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2879 | 2880 | wrappy@1: 2881 | version "1.0.2" 2882 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2883 | 2884 | xtend@^4.0.0, xtend@~4.0.1: 2885 | version "4.0.1" 2886 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2887 | 2888 | yallist@^3.0.0, yallist@^3.0.2: 2889 | version "3.0.3" 2890 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 2891 | 2892 | yargs-parser@^12.0.0: 2893 | version "12.0.0" 2894 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-12.0.0.tgz#18aa348854747dfe1002d01bd87d65df10d40a84" 2895 | integrity sha512-WQM8GrbF5TKiACr7iE3I2ZBNC7qC9taKPMfjJaMD2LkOJQhIctASxKXdFAOPim/m47kgAQBVIaPlFjnRdkol7w== 2896 | dependencies: 2897 | camelcase "^5.0.0" 2898 | decamelize "^1.2.0" 2899 | --------------------------------------------------------------------------------