From 75762d5504b3b97c3b6645ab604949ec25c858d7 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Wed, 27 Dec 2017 08:40:26 +0300 Subject: Update NPM packages Flatten dependencies. Use proper overrides. --- modules/pkgs/nodejs-sass/default.nix | 30 +- modules/pkgs/nodejs-sass/generate.sh | 2 +- modules/pkgs/nodejs-sass/main.json | 2 +- modules/pkgs/nodejs-sass/main.nix | 2 +- modules/pkgs/nodejs-sass/node-packages.nix | 957 +- modules/pkgs/postcss-cli/generate.sh | 2 +- modules/pkgs/postcss-cli/node-packages.nix | 1402 +- modules/pkgs/postcss-plugins/generate.sh | 2 +- modules/pkgs/postcss-plugins/node-packages.nix | 109784 +++++++--------------- modules/pkgs/sass-lint/generate.sh | 2 +- modules/pkgs/sass-lint/node-packages.nix | 508 +- 11 files changed, 34815 insertions(+), 77878 deletions(-) diff --git a/modules/pkgs/nodejs-sass/default.nix b/modules/pkgs/nodejs-sass/default.nix index 043e7cc..67e230b 100644 --- a/modules/pkgs/nodejs-sass/default.nix +++ b/modules/pkgs/nodejs-sass/default.nix @@ -1,13 +1,9 @@ -{ stdenv, pkgs, nodejs, writeScript }: +{ pkgs }: let inherit (builtins) - attrNames - fromJSON - head - readFile - ; + attrNames fromJSON head readFile ; packages = fromJSON (readFile ./main.json); package = head packages; @@ -15,17 +11,27 @@ let name = head (attrNames package); version = package.${name}; - main = (import ./main.nix { - inherit pkgs; - inherit (pkgs) nodejs; - inherit (stdenv) system; - })."${name}-${version}"; + main = + let m = (import ./main.nix { + inherit pkgs; + inherit (pkgs) nodejs; + inherit (pkgs.stdenv) system; + }); + in m // { + "${name}-${version}" = m."${name}-${version}".override (super: { + # XXX: build bundled libsassl, DO NOT DOWNLOAD binaries! + preRebuild = '' + SASS_FORCE_BUILD=true npm run-script build + ''; + }); + }; in pkgs.runCommand "nodejs-sass-${version}" {} '' mkdir -p $out/bin - ln -s ${main}/lib/node_modules/node-sass/bin/node-sass $out/bin/node-sass + ln -s ${main."${name}-${version}"}/lib/node_modules/node-sass/bin/node-sass \ + $out/bin/node-sass test -x $out/bin/node-sass '' diff --git a/modules/pkgs/nodejs-sass/generate.sh b/modules/pkgs/nodejs-sass/generate.sh index 15a5c13..dbfef37 100755 --- a/modules/pkgs/nodejs-sass/generate.sh +++ b/modules/pkgs/nodejs-sass/generate.sh @@ -1,4 +1,4 @@ #!/bin/sh -node2nix -i main.json -c main.nix +node2nix --flatten -i main.json -c main.nix diff --git a/modules/pkgs/nodejs-sass/main.json b/modules/pkgs/nodejs-sass/main.json index 6f38ead..393ec56 100644 --- a/modules/pkgs/nodejs-sass/main.json +++ b/modules/pkgs/nodejs-sass/main.json @@ -1,3 +1,3 @@ [ - { "node-sass" : "4.5.3" } + { "node-sass" : "4.7.2" } ] diff --git a/modules/pkgs/nodejs-sass/main.nix b/modules/pkgs/nodejs-sass/main.nix index 2eef6d7..8c422b8 100644 --- a/modules/pkgs/nodejs-sass/main.nix +++ b/modules/pkgs/nodejs-sass/main.nix @@ -13,4 +13,4 @@ in import ./node-packages.nix { inherit (pkgs) fetchurl fetchgit; inherit nodeEnv; -} +} \ No newline at end of file diff --git a/modules/pkgs/nodejs-sass/node-packages.nix b/modules/pkgs/nodejs-sass/node-packages.nix index 0b85e2a..fcb83dc 100644 --- a/modules/pkgs/nodejs-sass/node-packages.nix +++ b/modules/pkgs/nodejs-sass/node-packages.nix @@ -112,13 +112,13 @@ let sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; }; }; - "nan-2.6.2" = { + "nan-2.8.0" = { name = "nan"; packageName = "nan"; - version = "2.6.2"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz"; - sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45"; + url = "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz"; + sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a"; }; }; "node-gyp-3.6.2" = { @@ -139,13 +139,13 @@ let sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b"; }; }; - "request-2.81.0" = { + "request-2.79.0" = { name = "request"; packageName = "request"; - version = "2.81.0"; + version = "2.79.0"; src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; - sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; + url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz"; + sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de"; }; }; "sass-graph-2.2.4" = { @@ -166,6 +166,15 @@ let sha1 = "a2c7c8587e54d9427ea9edb3ac3f2cd522df378b"; }; }; + "true-case-path-1.0.2" = { + name = "true-case-path"; + packageName = "true-case-path"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.2.tgz"; + sha1 = "7ec91130924766c7f573be3020c34f8fdfd00d62"; + }; + }; "ansi-styles-2.2.1" = { name = "ansi-styles"; packageName = "ansi-styles"; @@ -229,13 +238,13 @@ let sha1 = "622e32e82488b49279114a4f9ecf45e7cd6bba55"; }; }; - "which-1.2.14" = { + "which-1.3.0" = { name = "which"; packageName = "which"; - version = "1.2.14"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz"; - sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5"; + url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz"; + sha1 = "ff04bdfc010ee547d780bec38e1ac1c2777d253a"; }; }; "pseudomap-1.0.2" = { @@ -517,13 +526,13 @@ let sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; }; }; - "semver-5.3.0" = { + "semver-5.4.1" = { name = "semver"; packageName = "semver"; - version = "5.3.0"; + version = "5.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; - sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; + url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz"; + sha1 = "e059c09d8571f0540823733433505d3a2f00b18e"; }; }; "validate-npm-package-license-3.0.1" = { @@ -778,13 +787,22 @@ let sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644"; }; }; - "rimraf-2.6.1" = { + "rimraf-2.6.2" = { name = "rimraf"; packageName = "rimraf"; - version = "2.6.1"; + version = "2.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz"; - sha1 = "c2338ec643df7a1b7fe5c54fa86f57428a55f33d"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; + sha1 = "2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"; + }; + }; + "semver-5.3.0" = { + name = "semver"; + packageName = "semver"; + version = "5.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; + sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; }; }; "tar-2.2.1" = { @@ -796,13 +814,13 @@ let sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; }; }; - "abbrev-1.1.0" = { + "abbrev-1.1.1" = { name = "abbrev"; packageName = "abbrev"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz"; - sha1 = "d0554c2256636e2f56e7c2e5ad183f859428d81f"; + url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; + sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; }; }; "os-homedir-1.0.2" = { @@ -940,13 +958,13 @@ let sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; }; }; - "aproba-1.1.2" = { + "aproba-1.2.0" = { name = "aproba"; packageName = "aproba"; - version = "1.1.2"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; - sha1 = "45c6629094de4e96f693ef7eab74ae079c240fc1"; + url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; + sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a"; }; }; "has-unicode-2.0.1" = { @@ -1012,13 +1030,13 @@ let sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e"; }; }; - "caseless-0.12.0" = { + "caseless-0.11.0" = { name = "caseless"; packageName = "caseless"; - version = "0.12.0"; + version = "0.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; - sha1 = "1b681c21ff84033c826543090689420d187151dc"; + url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"; + sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7"; }; }; "combined-stream-1.0.5" = { @@ -1057,13 +1075,13 @@ let sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; }; }; - "har-validator-4.2.1" = { + "har-validator-2.0.6" = { name = "har-validator"; packageName = "har-validator"; - version = "4.2.1"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; - sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; + url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"; + sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"; }; }; "hawk-3.1.3" = { @@ -1111,13 +1129,13 @@ let sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; }; }; - "mime-types-2.1.15" = { + "mime-types-2.1.17" = { name = "mime-types"; packageName = "mime-types"; - version = "2.1.15"; + version = "2.1.17"; src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz"; - sha1 = "a4ebf5064094569237b8cf70046776d09fc92aed"; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz"; + sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a"; }; }; "oauth-sign-0.8.2" = { @@ -1129,22 +1147,13 @@ let sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; }; }; - "performance-now-0.2.0" = { - name = "performance-now"; - packageName = "performance-now"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; - sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; - }; - }; - "qs-6.4.0" = { + "qs-6.3.2" = { name = "qs"; packageName = "qs"; - version = "6.4.0"; + version = "6.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; - sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; + url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz"; + sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c"; }; }; "stringstream-0.0.5" = { @@ -1156,22 +1165,22 @@ let sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878"; }; }; - "tough-cookie-2.3.2" = { + "tough-cookie-2.3.3" = { name = "tough-cookie"; packageName = "tough-cookie"; - version = "2.3.2"; + version = "2.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz"; - sha1 = "f081f76e4c85720e6c37a5faced737150d84072a"; + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz"; + sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561"; }; }; - "tunnel-agent-0.6.0" = { + "tunnel-agent-0.4.3" = { name = "tunnel-agent"; packageName = "tunnel-agent"; - version = "0.6.0"; + version = "0.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; - sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; + url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz"; + sha1 = "6373db76909fe570e08d73583365ed828a74eeeb"; }; }; "uuid-3.1.0" = { @@ -1201,49 +1210,67 @@ let sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; }; }; - "ajv-4.11.8" = { - name = "ajv"; - packageName = "ajv"; - version = "4.11.8"; + "commander-2.12.2" = { + name = "commander"; + packageName = "commander"; + version = "2.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; - sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; + url = "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz"; + sha1 = "0f5946c427ed9ec0d91a46bb9def53e54650e555"; }; }; - "har-schema-1.0.5" = { - name = "har-schema"; - packageName = "har-schema"; - version = "1.0.5"; + "is-my-json-valid-2.17.1" = { + name = "is-my-json-valid"; + packageName = "is-my-json-valid"; + version = "2.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; - sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; + url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz"; + sha1 = "3da98914a70a22f0a8563ef1511a246c6fc55471"; }; }; - "co-4.6.0" = { - name = "co"; - packageName = "co"; - version = "4.6.0"; + "generate-function-2.0.0" = { + name = "generate-function"; + packageName = "generate-function"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz"; - sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; + url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz"; + sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74"; }; }; - "json-stable-stringify-1.0.1" = { - name = "json-stable-stringify"; - packageName = "json-stable-stringify"; - version = "1.0.1"; + "generate-object-property-1.2.0" = { + name = "generate-object-property"; + packageName = "generate-object-property"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"; - sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; + url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; + sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; }; }; - "jsonify-0.0.0" = { - name = "jsonify"; - packageName = "jsonify"; - version = "0.0.0"; + "jsonpointer-4.0.1" = { + name = "jsonpointer"; + packageName = "jsonpointer"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"; - sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; + url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz"; + sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; + }; + }; + "xtend-4.0.1" = { + name = "xtend"; + packageName = "xtend"; + version = "4.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; + sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; + }; + }; + "is-property-1.0.2" = { + name = "is-property"; + packageName = "is-property"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; + sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; }; }; "hoek-2.16.3" = { @@ -1291,13 +1318,13 @@ let sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; }; }; - "jsprim-1.4.0" = { + "jsprim-1.4.1" = { name = "jsprim"; packageName = "jsprim"; - version = "1.4.0"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz"; - sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918"; + url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; + sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; }; }; "sshpk-1.13.1" = { @@ -1318,13 +1345,13 @@ let sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; }; }; - "extsprintf-1.0.2" = { + "extsprintf-1.3.0" = { name = "extsprintf"; packageName = "extsprintf"; - version = "1.0.2"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz"; - sha1 = "e1080e0658e300b06294990cc70e1502235fd550"; + url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; + sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; }; }; "json-schema-0.2.3" = { @@ -1336,13 +1363,13 @@ let sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; }; }; - "verror-1.3.6" = { + "verror-1.10.0" = { name = "verror"; packageName = "verror"; - version = "1.3.6"; + version = "1.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz"; - sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c"; + url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; + sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; }; }; "asn1-0.2.3" = { @@ -1408,13 +1435,13 @@ let sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d"; }; }; - "mime-db-1.27.0" = { + "mime-db-1.30.0" = { name = "mime-db"; packageName = "mime-db"; - version = "1.27.0"; + version = "1.30.0"; src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz"; - sha1 = "820f572296bbd20ec25ed55e5b5de869e5436eb1"; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz"; + sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01"; }; }; "punycode-1.4.1" = { @@ -1444,13 +1471,13 @@ let sha1 = "6ba318eb16961727f5d284f8ea003e8d6154d0c8"; }; }; - "js-base64-2.1.9" = { + "js-base64-2.4.0" = { name = "js-base64"; packageName = "js-base64"; - version = "2.1.9"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz"; - sha1 = "f0e80ae039a4bd654b5f281fc93f04a914a7fcce"; + url = "https://registry.npmjs.org/js-base64/-/js-base64-2.4.0.tgz"; + sha1 = "9e566fee624751a1d720c966cd6226d29d4025aa"; }; }; "source-map-0.4.4" = { @@ -1579,557 +1606,241 @@ let sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; }; }; + "glob-6.0.4" = { + name = "glob"; + packageName = "glob"; + version = "6.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; + sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; + }; + }; }; in { - "node-sass-4.5.3" = nodeEnv.buildNodePackage { + "node-sass-4.7.2" = nodeEnv.buildNodePackage { name = "node-sass"; packageName = "node-sass"; - version = "4.5.3"; + version = "4.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/node-sass/-/node-sass-4.5.3.tgz"; - sha1 = "d09c9d1179641239d1b97ffc6231fdcec53e1568"; + url = "https://registry.npmjs.org/node-sass/-/node-sass-4.7.2.tgz"; + sha1 = "9366778ba1469eb01438a9e8592f4262bcb6794e"; }; - preRebuild = '' - SASS_FORCE_BUILD=true npm run-script build - ''; dependencies = [ sources."async-foreach-0.1.3" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."cross-spawn-3.0.1" // { + sources."chalk-1.1.3" + sources."cross-spawn-3.0.1" + sources."gaze-1.1.2" + sources."get-stdin-4.0.1" + sources."glob-7.1.2" + sources."in-publish-2.0.0" + sources."lodash.assign-4.2.0" + sources."lodash.clonedeep-4.5.0" + sources."lodash.mergewith-4.6.0" + sources."meow-3.7.0" + (sources."mkdirp-0.5.1" // { dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) + sources."minimist-0.0.8" ]; }) - (sources."gaze-1.1.2" // { + sources."nan-2.8.0" + (sources."node-gyp-3.6.2" // { dependencies = [ - (sources."globule-1.2.0" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) + sources."semver-5.3.0" ]; }) - sources."get-stdin-4.0.1" - (sources."glob-7.1.2" // { + sources."npmlog-4.1.2" + sources."request-2.79.0" + sources."sass-graph-2.2.4" + sources."stdout-stream-1.4.0" + (sources."true-case-path-1.0.2" // { dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" + sources."glob-6.0.4" ]; }) - sources."in-publish-2.0.0" - sources."lodash.assign-4.2.0" - sources."lodash.clonedeep-4.5.0" - sources."lodash.mergewith-4.6.0" - (sources."meow-3.7.0" // { + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."lru-cache-4.1.1" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."isexe-2.0.0" + sources."globule-1.2.0" + sources."lodash-4.17.4" + sources."minimatch-3.0.4" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."minimist-1.2.0" + sources."normalize-package-data-2.4.0" + sources."object-assign-4.1.1" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."graceful-fs-4.1.11" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-2.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."is-utf8-0.2.1" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."fstream-1.0.11" + sources."nopt-3.0.6" + sources."osenv-0.1.4" + sources."rimraf-2.6.2" + sources."tar-2.2.1" + sources."abbrev-1.1.1" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."block-stream-0.0.9" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."readable-stream-2.3.3" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.11.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-2.0.6" + sources."hawk-3.1.3" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."qs-6.3.2" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.4.3" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."commander-2.12.2" + sources."is-my-json-valid-2.17.1" + sources."generate-function-2.0.0" + sources."generate-object-property-1.2.0" + sources."jsonpointer-4.0.1" + sources."xtend-4.0.1" + sources."is-property-1.0.2" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."strip-indent-1.0.1" - ]; - }) - sources."trim-newlines-1.0.0" + sources."assert-plus-1.0.0" ]; }) - (sources."mkdirp-0.5.1" // { + (sources."sshpk-1.13.1" // { dependencies = [ - sources."minimist-0.0.8" + sources."assert-plus-1.0.0" ]; }) - sources."nan-2.6.2" - (sources."node-gyp-3.6.2" // { + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."nopt-3.0.6" // { - dependencies = [ - sources."abbrev-1.1.0" - ]; - }) - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."rimraf-2.6.1" - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - sources."inherits-2.0.3" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - (sources."npmlog-4.1.2" // { + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" + sources."assert-plus-1.0.0" ]; }) - (sources."request-2.81.0" // { + (sources."getpass-0.1.7" // { dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" + sources."assert-plus-1.0.0" ]; }) - (sources."sass-graph-2.2.4" // { + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."scss-tokenizer-0.2.3" + (sources."yargs-7.1.0" // { dependencies = [ - sources."lodash-4.17.4" - (sources."scss-tokenizer-0.2.3" // { - dependencies = [ - sources."js-base64-2.1.9" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."yargs-7.1.0" // { - dependencies = [ - sources."camelcase-3.0.0" - (sources."cliui-3.2.0" // { - dependencies = [ - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wrap-ansi-2.1.0" - ]; - }) - sources."decamelize-1.2.0" - sources."get-caller-file-1.0.2" - (sources."os-locale-1.4.0" // { - dependencies = [ - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."set-blocking-2.0.0" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - ]; - }) - sources."which-module-1.0.0" - sources."y18n-3.2.1" - sources."yargs-parser-5.0.0" - ]; - }) + sources."camelcase-3.0.0" ]; }) - (sources."stdout-stream-1.4.0" // { + sources."js-base64-2.4.0" + sources."source-map-0.4.4" + sources."amdefine-1.0.1" + sources."cliui-3.2.0" + sources."get-caller-file-1.0.2" + sources."os-locale-1.4.0" + sources."require-directory-2.1.1" + sources."require-main-filename-1.0.1" + sources."which-module-1.0.0" + sources."y18n-3.2.1" + (sources."yargs-parser-5.0.0" // { dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) + sources."camelcase-3.0.0" ]; }) + sources."wrap-ansi-2.1.0" + sources."lcid-1.0.0" + sources."invert-kv-1.0.0" ]; buildInputs = globalBuildInputs; meta = { diff --git a/modules/pkgs/postcss-cli/generate.sh b/modules/pkgs/postcss-cli/generate.sh index 15a5c13..dbfef37 100755 --- a/modules/pkgs/postcss-cli/generate.sh +++ b/modules/pkgs/postcss-cli/generate.sh @@ -1,4 +1,4 @@ #!/bin/sh -node2nix -i main.json -c main.nix +node2nix --flatten -i main.json -c main.nix diff --git a/modules/pkgs/postcss-cli/node-packages.nix b/modules/pkgs/postcss-cli/node-packages.nix index 7f02bd0..8ef2f5b 100644 --- a/modules/pkgs/postcss-cli/node-packages.nix +++ b/modules/pkgs/postcss-cli/node-packages.nix @@ -22,13 +22,13 @@ let sha1 = "798e689778151c8076b4b360e5edd28cda2bb468"; }; }; - "dependency-graph-0.5.0" = { + "dependency-graph-0.5.2" = { name = "dependency-graph"; packageName = "dependency-graph"; - version = "0.5.0"; + version = "0.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.5.0.tgz"; - sha1 = "71edf7945dbba86c1b19ac982b6afb6476b56dd5"; + url = "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.5.2.tgz"; + sha1 = "c10e03652b653b8bcd4b09b63a175fae323da131"; }; }; "fs-extra-3.0.1" = { @@ -67,13 +67,13 @@ let sha1 = "80078dd2b92a934af66a3ad72a5b910694ede51a"; }; }; - "postcss-6.0.6" = { + "postcss-6.0.14" = { name = "postcss"; packageName = "postcss"; - version = "6.0.6"; + version = "6.0.14"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-6.0.6.tgz"; - sha1 = "bba4d58e884fc78c840d1539e10eddaabb8f73bd"; + url = "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz"; + sha1 = "5534c72114739e75d0afcf017db853099f562885"; }; }; "postcss-load-config-1.2.0" = { @@ -166,13 +166,13 @@ let sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; }; }; - "anymatch-1.3.0" = { + "anymatch-1.3.2" = { name = "anymatch"; packageName = "anymatch"; - version = "1.3.0"; + version = "1.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz"; - sha1 = "a3e52fa39168c825ff57b0248126ce5a8ff95507"; + url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz"; + sha1 = "553dcb8f91e3c889845dfdba34c77721b90b9d7a"; }; }; "async-each-1.0.1" = { @@ -238,22 +238,13 @@ let sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78"; }; }; - "fsevents-1.1.2" = { + "fsevents-1.1.3" = { name = "fsevents"; packageName = "fsevents"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz"; - sha1 = "3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"; - }; - }; - "arrify-1.0.1" = { - name = "arrify"; - packageName = "arrify"; - version = "1.0.1"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; - sha1 = "898508da2226f380df904728456849c1501a4b0d"; + url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz"; + sha1 = "11f82318f5fe7bb2cd22965a108e9306208216d8"; }; }; "micromatch-2.3.11" = { @@ -265,6 +256,15 @@ let sha1 = "86677c97d1720b363431d04d0d15293bd38c1565"; }; }; + "normalize-path-2.1.1" = { + name = "normalize-path"; + packageName = "normalize-path"; + version = "2.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"; + sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; + }; + }; "arr-diff-2.0.0" = { name = "arr-diff"; packageName = "arr-diff"; @@ -337,15 +337,6 @@ let sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; }; }; - "normalize-path-2.1.1" = { - name = "normalize-path"; - packageName = "normalize-path"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"; - sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; - }; - }; "object.omit-2.0.1" = { name = "object.omit"; packageName = "object.omit"; @@ -364,13 +355,13 @@ let sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c"; }; }; - "regex-cache-0.4.3" = { + "regex-cache-0.4.4" = { name = "regex-cache"; packageName = "regex-cache"; - version = "0.4.3"; + version = "0.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz"; - sha1 = "9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"; + url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz"; + sha1 = "75bdc58a2a1496cec48a12835bc54c8d562336dd"; }; }; "arr-flatten-1.1.0" = { @@ -481,13 +472,13 @@ let sha1 = "20813df3d712928b207378691a45066fae72dd57"; }; }; - "is-buffer-1.1.5" = { + "is-buffer-1.1.6" = { name = "is-buffer"; packageName = "is-buffer"; - version = "1.1.5"; + version = "1.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz"; - sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc"; + url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; + sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; }; }; "is-posix-bracket-0.1.1" = { @@ -499,15 +490,6 @@ let sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; }; }; - "remove-trailing-separator-1.0.2" = { - name = "remove-trailing-separator"; - packageName = "remove-trailing-separator"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz"; - sha1 = "69b062d978727ad14dc6b56ba4ab772fd8d70511"; - }; - }; "for-own-0.1.5" = { name = "for-own"; packageName = "for-own"; @@ -571,13 +553,22 @@ let sha1 = "207bab91638499c07b2adf240a41a87210034575"; }; }; - "binary-extensions-1.8.0" = { + "remove-trailing-separator-1.1.0" = { + name = "remove-trailing-separator"; + packageName = "remove-trailing-separator"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; + sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; + }; + }; + "binary-extensions-1.11.0" = { name = "binary-extensions"; packageName = "binary-extensions"; - version = "1.8.0"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz"; - sha1 = "48ec8d16df4377eae5fa5884682480af4d95c774"; + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz"; + sha1 = "46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"; }; }; "graceful-fs-4.1.11" = { @@ -688,22 +679,22 @@ let sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; }; }; - "nan-2.6.2" = { + "nan-2.8.0" = { name = "nan"; packageName = "nan"; - version = "2.6.2"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz"; - sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45"; + url = "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz"; + sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a"; }; }; - "node-pre-gyp-0.6.36" = { + "node-pre-gyp-0.6.39" = { name = "node-pre-gyp"; packageName = "node-pre-gyp"; - version = "0.6.36"; + version = "0.6.39"; src = fetchurl { - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz"; + sha1 = "c00e96860b23c0e1420ac7befc5044e1d78d8649"; }; }; "mkdirp-0.5.1" = { @@ -733,13 +724,13 @@ let sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b"; }; }; - "rc-1.2.1" = { + "rc-1.2.2" = { name = "rc"; packageName = "rc"; - version = "1.2.1"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz"; - sha1 = "2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"; + url = "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz"; + sha1 = "d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077"; }; }; "request-2.81.0" = { @@ -751,22 +742,40 @@ let sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; }; }; - "rimraf-2.6.1" = { + "hawk-3.1.3" = { + name = "hawk"; + packageName = "hawk"; + version = "3.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; + sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; + }; + }; + "rimraf-2.6.2" = { name = "rimraf"; packageName = "rimraf"; - version = "2.6.1"; + version = "2.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz"; - sha1 = "c2338ec643df7a1b7fe5c54fa86f57428a55f33d"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; + sha1 = "2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"; }; }; - "semver-5.3.0" = { + "semver-5.4.1" = { name = "semver"; packageName = "semver"; - version = "5.3.0"; + version = "5.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; - sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; + url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz"; + sha1 = "e059c09d8571f0540823733433505d3a2f00b18e"; + }; + }; + "detect-libc-1.0.3" = { + name = "detect-libc"; + packageName = "detect-libc"; + version = "1.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; + sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; }; }; "tar-2.2.1" = { @@ -778,13 +787,13 @@ let sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; }; }; - "tar-pack-3.4.0" = { + "tar-pack-3.4.1" = { name = "tar-pack"; packageName = "tar-pack"; - version = "3.4.0"; + version = "3.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.0.tgz"; - sha1 = "23be2d7f671a8339376cbdb0b8fe3fdebf317984"; + url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz"; + sha1 = "e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"; }; }; "minimist-0.0.8" = { @@ -796,13 +805,13 @@ let sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; }; }; - "abbrev-1.1.0" = { + "abbrev-1.1.1" = { name = "abbrev"; packageName = "abbrev"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz"; - sha1 = "d0554c2256636e2f56e7c2e5ad183f859428d81f"; + url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; + sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; }; }; "osenv-0.1.4" = { @@ -877,13 +886,13 @@ let sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; }; }; - "aproba-1.1.2" = { + "aproba-1.2.0" = { name = "aproba"; packageName = "aproba"; - version = "1.1.2"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; - sha1 = "45c6629094de4e96f693ef7eab74ae079c240fc1"; + url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; + sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a"; }; }; "has-unicode-2.0.1" = { @@ -967,13 +976,13 @@ let sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f"; }; }; - "ini-1.3.4" = { + "ini-1.3.5" = { name = "ini"; packageName = "ini"; - version = "1.3.4"; + version = "1.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz"; - sha1 = "0537cb79daf59b59a1a517dff706c86ec039162e"; + url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz"; + sha1 = "eee25f56db1c9ec6085e0c22778083f596abf927"; }; }; "minimist-1.2.0" = { @@ -1066,15 +1075,6 @@ let sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; }; }; - "hawk-3.1.3" = { - name = "hawk"; - packageName = "hawk"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; - sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; - }; - }; "http-signature-1.1.1" = { name = "http-signature"; packageName = "http-signature"; @@ -1111,13 +1111,13 @@ let sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; }; }; - "mime-types-2.1.15" = { + "mime-types-2.1.17" = { name = "mime-types"; packageName = "mime-types"; - version = "2.1.15"; + version = "2.1.17"; src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz"; - sha1 = "a4ebf5064094569237b8cf70046776d09fc92aed"; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz"; + sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a"; }; }; "oauth-sign-0.8.2" = { @@ -1156,13 +1156,13 @@ let sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878"; }; }; - "tough-cookie-2.3.2" = { + "tough-cookie-2.3.3" = { name = "tough-cookie"; packageName = "tough-cookie"; - version = "2.3.2"; + version = "2.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz"; - sha1 = "f081f76e4c85720e6c37a5faced737150d84072a"; + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz"; + sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561"; }; }; "tunnel-agent-0.6.0" = { @@ -1246,42 +1246,6 @@ let sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; }; }; - "hoek-2.16.3" = { - name = "hoek"; - packageName = "hoek"; - version = "2.16.3"; - src = fetchurl { - url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; - sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; - }; - }; - "boom-2.10.1" = { - name = "boom"; - packageName = "boom"; - version = "2.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; - sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; - }; - }; - "cryptiles-2.0.5" = { - name = "cryptiles"; - packageName = "cryptiles"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; - sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; - }; - }; - "sntp-1.0.9" = { - name = "sntp"; - packageName = "sntp"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; - sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; - }; - }; "assert-plus-0.2.0" = { name = "assert-plus"; packageName = "assert-plus"; @@ -1291,13 +1255,13 @@ let sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; }; }; - "jsprim-1.4.0" = { + "jsprim-1.4.1" = { name = "jsprim"; packageName = "jsprim"; - version = "1.4.0"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz"; - sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918"; + url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; + sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; }; }; "sshpk-1.13.1" = { @@ -1318,13 +1282,13 @@ let sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; }; }; - "extsprintf-1.0.2" = { + "extsprintf-1.3.0" = { name = "extsprintf"; packageName = "extsprintf"; - version = "1.0.2"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz"; - sha1 = "e1080e0658e300b06294990cc70e1502235fd550"; + url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; + sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; }; }; "json-schema-0.2.3" = { @@ -1336,13 +1300,13 @@ let sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; }; }; - "verror-1.3.6" = { + "verror-1.10.0" = { name = "verror"; packageName = "verror"; - version = "1.3.6"; + version = "1.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz"; - sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c"; + url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; + sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; }; }; "asn1-0.2.3" = { @@ -1408,13 +1372,13 @@ let sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d"; }; }; - "mime-db-1.27.0" = { + "mime-db-1.30.0" = { name = "mime-db"; packageName = "mime-db"; - version = "1.27.0"; + version = "1.30.0"; src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz"; - sha1 = "820f572296bbd20ec25ed55e5b5de869e5436eb1"; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz"; + sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01"; }; }; "punycode-1.4.1" = { @@ -1426,6 +1390,42 @@ let sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; }; }; + "hoek-2.16.3" = { + name = "hoek"; + packageName = "hoek"; + version = "2.16.3"; + src = fetchurl { + url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; + sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; + }; + }; + "boom-2.10.1" = { + name = "boom"; + packageName = "boom"; + version = "2.10.1"; + src = fetchurl { + url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; + sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; + }; + }; + "cryptiles-2.0.5" = { + name = "cryptiles"; + packageName = "cryptiles"; + version = "2.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; + sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; + }; + }; + "sntp-1.0.9" = { + name = "sntp"; + packageName = "sntp"; + version = "1.0.9"; + src = fetchurl { + url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; + sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; + }; + }; "glob-7.1.2" = { name = "glob"; packageName = "glob"; @@ -1489,13 +1489,13 @@ let sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"; }; }; - "debug-2.6.8" = { + "debug-2.6.9" = { name = "debug"; packageName = "debug"; - version = "2.6.8"; + version = "2.6.9"; src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz"; - sha1 = "e731531ca2ede27d188222427da17821d68ff4fc"; + url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; + sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; }; }; "fstream-ignore-1.0.5" = { @@ -1534,13 +1534,13 @@ let sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; }; }; - "universalify-0.1.0" = { + "universalify-0.1.1" = { name = "universalify"; packageName = "universalify"; - version = "0.1.0"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.0.tgz"; - sha1 = "9eb1c4651debcc670cc94f1a75762332bb967778"; + url = "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz"; + sha1 = "fa71badd4437af4c148841e3b3b165f9e9e590b7"; }; }; "array-union-1.0.2" = { @@ -1597,13 +1597,13 @@ let sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; }; }; - "cli-spinners-1.0.0" = { + "cli-spinners-1.1.0" = { name = "cli-spinners"; packageName = "cli-spinners"; - version = "1.0.0"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.0.0.tgz"; - sha1 = "ef987ed3d48391ac3dab9180b406a742180d6e6a"; + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.1.0.tgz"; + sha1 = "f1847b168844d917a671eb9d147e3df497c90d06"; }; }; "log-symbols-1.0.2" = { @@ -1642,49 +1642,49 @@ let sha1 = "e667783d92e89dbd342818b5230b9d62a672ad18"; }; }; - "chalk-2.0.1" = { + "chalk-2.3.0" = { name = "chalk"; packageName = "chalk"; - version = "2.0.1"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz"; - sha1 = "dbec49436d2ae15f536114e76d14656cdbc0f44d"; + url = "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz"; + sha1 = "b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"; }; }; - "source-map-0.5.6" = { + "source-map-0.6.1" = { name = "source-map"; packageName = "source-map"; - version = "0.5.6"; + version = "0.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz"; - sha1 = "75ce38f52bf0733c5a7f0c118d81334a2bb5f412"; + url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; + sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; }; }; - "supports-color-4.2.0" = { + "supports-color-4.5.0" = { name = "supports-color"; packageName = "supports-color"; - version = "4.2.0"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz"; - sha1 = "ad986dc7eb2315d009b4d77c8169c2231a684037"; + url = "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz"; + sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b"; }; }; - "ansi-styles-3.1.0" = { + "ansi-styles-3.2.0" = { name = "ansi-styles"; packageName = "ansi-styles"; - version = "3.1.0"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.1.0.tgz"; - sha1 = "09c202d5c917ec23188caa5c9cb9179cd9547750"; + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz"; + sha1 = "c159b8d5be0f9e5a6f346dab94f16ce022161b88"; }; }; - "color-convert-1.9.0" = { + "color-convert-1.9.1" = { name = "color-convert"; packageName = "color-convert"; - version = "1.9.0"; + version = "1.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz"; - sha1 = "1accf97dd739b983bf994d56fec8f95853641b7a"; + url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz"; + sha1 = "c1261107aeb2f294ebffec9ed9ecad529a6097ed"; }; }; "color-name-1.1.3" = { @@ -1705,13 +1705,13 @@ let sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51"; }; }; - "cosmiconfig-2.1.3" = { + "cosmiconfig-2.2.2" = { name = "cosmiconfig"; packageName = "cosmiconfig"; - version = "2.1.3"; + version = "2.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.1.3.tgz"; - sha1 = "952771eb0dddc1cb3fa2f6fbe51a522e93b3ee0a"; + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz"; + sha1 = "6173cebd56fac042c1f4390edf7af6c07c7cb892"; }; }; "postcss-load-options-1.2.0" = { @@ -1741,13 +1741,13 @@ let sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1"; }; }; - "js-yaml-3.9.0" = { + "js-yaml-3.10.0" = { name = "js-yaml"; packageName = "js-yaml"; - version = "3.9.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.0.tgz"; - sha1 = "4ffbbf25c2ac963b8299dc74da7e3740de1c18ce"; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"; + sha1 = "2e78441646bd4682e963f22b6e92823c309c62dc"; }; }; "parse-json-2.2.0" = { @@ -1858,13 +1858,13 @@ let sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5"; }; }; - "os-locale-2.0.0" = { + "os-locale-2.1.0" = { name = "os-locale"; packageName = "os-locale"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/os-locale/-/os-locale-2.0.0.tgz"; - sha1 = "15918ded510522b81ee7ae5a309d54f639fc39a4"; + url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz"; + sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2"; }; }; "read-pkg-up-2.0.0" = { @@ -1894,13 +1894,13 @@ let sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; }; }; - "string-width-2.1.0" = { + "string-width-2.1.1" = { name = "string-width"; packageName = "string-width"; - version = "2.1.0"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.0.tgz"; - sha1 = "030664561fc146c9423ec7d978fe2457437fe6d0"; + url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; + sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; }; }; "which-module-2.0.0" = { @@ -1939,13 +1939,13 @@ let sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; }; }; - "execa-0.5.1" = { + "execa-0.7.0" = { name = "execa"; packageName = "execa"; - version = "0.5.1"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/execa/-/execa-0.5.1.tgz"; - sha1 = "de3fb85cb8d6e91c85bcbceb164581785cb57b36"; + url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"; + sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; }; }; "lcid-1.0.0" = { @@ -1966,22 +1966,22 @@ let sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; }; }; - "cross-spawn-4.0.2" = { + "cross-spawn-5.1.0" = { name = "cross-spawn"; packageName = "cross-spawn"; - version = "4.0.2"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz"; - sha1 = "7b9247621c23adfdd3856004a823cbe397424d41"; + url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"; + sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; }; }; - "get-stream-2.3.1" = { + "get-stream-3.0.0" = { name = "get-stream"; packageName = "get-stream"; - version = "2.3.1"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz"; - sha1 = "5f38f93f346009666ee0150a054167f91bdd95de"; + url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; + sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; }; }; "is-stream-1.1.0" = { @@ -2029,13 +2029,22 @@ let sha1 = "622e32e82488b49279114a4f9ecf45e7cd6bba55"; }; }; - "which-1.2.14" = { + "shebang-command-1.2.0" = { + name = "shebang-command"; + packageName = "shebang-command"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; + sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; + }; + }; + "which-1.3.0" = { name = "which"; packageName = "which"; - version = "1.2.14"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz"; - sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5"; + url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz"; + sha1 = "ff04bdfc010ee547d780bec38e1ac1c2777d253a"; }; }; "pseudomap-1.0.2" = { @@ -2056,6 +2065,15 @@ let sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; }; }; + "shebang-regex-1.0.0" = { + name = "shebang-regex"; + packageName = "shebang-regex"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; + sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; + }; + }; "isexe-2.0.0" = { name = "isexe"; packageName = "isexe"; @@ -2275,710 +2293,298 @@ in sha1 = "8f6803678acd7a4f21483f1a4039136f6e1c214f"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."chokidar-1.7.0" // { + sources."chalk-1.1.3" + sources."chokidar-1.7.0" + sources."dependency-graph-0.5.2" + sources."fs-extra-3.0.1" + sources."get-stdin-5.0.1" + sources."globby-6.1.0" + sources."ora-1.3.0" + (sources."postcss-6.0.14" // { dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" ]; }) - sources."dependency-graph-0.5.0" - (sources."fs-extra-3.0.1" // { + sources."postcss-load-config-1.2.0" + sources."postcss-reporter-4.0.0" + sources."read-cache-1.0.0" + (sources."yargs-8.0.2" // { dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-3.0.1" - sources."universalify-0.1.0" + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" ]; }) - sources."get-stdin-5.0.1" - (sources."globby-6.1.0" // { + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."path-is-absolute-1.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { + (sources."is-number-3.0.0" // { dependencies = [ - sources."pinkie-2.0.4" + sources."kind-of-3.2.2" ]; }) + sources."kind-of-4.0.0" ]; }) - (sources."ora-1.3.0" // { + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."graceful-fs-4.1.11" + sources."minimatch-3.0.4" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."mkdirp-0.5.1" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + (sources."rc-1.2.2" // { dependencies = [ - (sources."cli-cursor-2.1.0" // { - dependencies = [ - (sources."restore-cursor-2.0.0" // { - dependencies = [ - (sources."onetime-2.0.1" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - ]; - }) - sources."cli-spinners-1.0.0" - sources."log-symbols-1.0.2" + sources."minimist-1.2.0" ]; }) - (sources."postcss-6.0.6" // { + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."semver-5.4.1" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + sources."tar-pack-3.4.1" + sources."minimist-0.0.8" + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + sources."signal-exit-3.0.2" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - (sources."postcss-load-config-1.2.0" // { + (sources."sshpk-1.13.1" // { dependencies = [ - (sources."cosmiconfig-2.1.3" // { - dependencies = [ - sources."is-directory-0.3.1" - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - sources."minimist-1.2.0" - sources."os-homedir-1.0.2" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."require-from-string-1.2.1" - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-load-options-1.2.0" - sources."postcss-load-plugins-2.3.0" + sources."assert-plus-1.0.0" ]; }) - (sources."postcss-reporter-4.0.0" // { + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { dependencies = [ - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" + sources."assert-plus-1.0.0" ]; }) - (sources."read-cache-1.0.0" // { + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { dependencies = [ - sources."pify-2.3.0" + sources."assert-plus-1.0.0" ]; }) - (sources."yargs-8.0.2" // { + (sources."getpass-0.1.7" // { dependencies = [ - sources."camelcase-4.1.0" - (sources."cliui-3.2.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wrap-ansi-2.1.0" - ]; - }) - sources."decamelize-1.2.0" - sources."get-caller-file-1.0.2" - (sources."os-locale-2.0.0" // { - dependencies = [ - (sources."execa-0.5.1" // { - dependencies = [ - (sources."cross-spawn-4.0.2" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."get-stream-2.3.1" // { - dependencies = [ - sources."object-assign-4.1.1" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - (sources."mem-1.1.0" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - ]; - }) - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."set-blocking-2.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - sources."which-module-2.0.0" - sources."y18n-3.2.1" - sources."yargs-parser-7.0.0" + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."debug-2.6.9" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."ms-2.0.0" + sources."jsonfile-3.0.1" + sources."universalify-0.1.1" + sources."array-union-1.0.2" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."pinkie-2.0.4" + sources."cli-cursor-2.1.0" + sources."cli-spinners-1.1.0" + sources."log-symbols-1.0.2" + sources."restore-cursor-2.0.0" + sources."onetime-2.0.1" + sources."mimic-fn-1.1.0" + sources."source-map-0.6.1" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + (sources."cosmiconfig-2.2.2" // { + dependencies = [ + sources."minimist-1.2.0" ]; }) + sources."postcss-load-options-1.2.0" + sources."postcss-load-plugins-2.3.0" + sources."is-directory-0.3.1" + sources."js-yaml-3.10.0" + sources."parse-json-2.2.0" + sources."require-from-string-1.2.1" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."lodash-4.17.4" + sources."camelcase-4.1.0" + sources."cliui-3.2.0" + sources."decamelize-1.2.0" + sources."get-caller-file-1.0.2" + sources."os-locale-2.1.0" + sources."read-pkg-up-2.0.0" + sources."require-directory-2.1.1" + sources."require-main-filename-1.0.1" + sources."which-module-2.0.0" + sources."y18n-3.2.1" + sources."yargs-parser-7.0.0" + sources."wrap-ansi-2.1.0" + sources."execa-0.7.0" + sources."lcid-1.0.0" + sources."mem-1.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."isexe-2.0.0" + sources."path-key-2.0.1" + sources."invert-kv-1.0.0" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + sources."load-json-file-2.0.0" + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."strip-bom-3.0.0" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" ]; buildInputs = globalBuildInputs; meta = { diff --git a/modules/pkgs/postcss-plugins/generate.sh b/modules/pkgs/postcss-plugins/generate.sh index 3fa3fcf..2dac3ce 100755 --- a/modules/pkgs/postcss-plugins/generate.sh +++ b/modules/pkgs/postcss-plugins/generate.sh @@ -1,4 +1,4 @@ #!/bin/sh -e -node2nix -i plugins.json -c plugins.nix +node2nix --flatten -i plugins.json -c plugins.nix diff --git a/modules/pkgs/postcss-plugins/node-packages.nix b/modules/pkgs/postcss-plugins/node-packages.nix index a8485e7..0684259 100644 --- a/modules/pkgs/postcss-plugins/node-packages.nix +++ b/modules/pkgs/postcss-plugins/node-packages.nix @@ -13,13 +13,13 @@ let sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae"; }; }; - "postcss-5.2.17" = { + "postcss-5.2.18" = { name = "postcss"; packageName = "postcss"; - version = "5.2.17"; + version = "5.2.18"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz"; - sha1 = "cf4f597b864d65c8a492b2eabe9d706c879c388b"; + url = "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz"; + sha1 = "badfa1497d46244f6390f58b319830d9107853c5"; }; }; "chalk-1.1.3" = { @@ -31,22 +31,22 @@ let sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; }; }; - "js-base64-2.1.9" = { + "js-base64-2.4.0" = { name = "js-base64"; packageName = "js-base64"; - version = "2.1.9"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz"; - sha1 = "f0e80ae039a4bd654b5f281fc93f04a914a7fcce"; + url = "https://registry.npmjs.org/js-base64/-/js-base64-2.4.0.tgz"; + sha1 = "9e566fee624751a1d720c966cd6226d29d4025aa"; }; }; - "source-map-0.5.6" = { + "source-map-0.5.7" = { name = "source-map"; packageName = "source-map"; - version = "0.5.6"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz"; - sha1 = "75ce38f52bf0733c5a7f0c118d81334a2bb5f412"; + url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; + sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; }; }; "supports-color-3.2.3" = { @@ -148,13 +148,13 @@ let sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; }; }; - "q-1.5.0" = { + "q-1.5.1" = { name = "q"; packageName = "q"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/q/-/q-1.5.0.tgz"; - sha1 = "dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"; + url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz"; + sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7"; }; }; "spritesmith-1.5.0" = { @@ -355,13 +355,13 @@ let sha1 = "135b992c0575c985cfa0f494a3227ed238583ece"; }; }; - "omggif-1.0.8" = { + "omggif-1.0.9" = { name = "omggif"; packageName = "omggif"; - version = "1.0.8"; + version = "1.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/omggif/-/omggif-1.0.8.tgz"; - sha1 = "178f37b2ab0b3d7b46ed3a0e46bd0790b58d3530"; + url = "https://registry.npmjs.org/omggif/-/omggif-1.0.9.tgz"; + sha1 = "dcb7024dacd50c52b4d303f04802c91c057c765f"; }; }; "node-bitmap-0.0.1" = { @@ -382,13 +382,13 @@ let sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; }; }; - "request-2.81.0" = { + "request-2.83.0" = { name = "request"; packageName = "request"; - version = "2.81.0"; + version = "2.83.0"; src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; - sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; + url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz"; + sha1 = "ca0b65da02ed62935887808e6f510381034e3356"; }; }; "parse-data-uri-0.2.0" = { @@ -400,13 +400,13 @@ let sha1 = "bf04d851dd5c87b0ab238e5d01ace494b604b4c9"; }; }; - "mime-types-2.1.15" = { + "mime-types-2.1.17" = { name = "mime-types"; packageName = "mime-types"; - version = "2.1.15"; + version = "2.1.17"; src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz"; - sha1 = "a4ebf5064094569237b8cf70046776d09fc92aed"; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz"; + sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a"; }; }; "data-uri-to-buffer-0.0.3" = { @@ -436,13 +436,13 @@ let sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff"; }; }; - "aws-sign2-0.6.0" = { + "aws-sign2-0.7.0" = { name = "aws-sign2"; packageName = "aws-sign2"; - version = "0.6.0"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; - sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; + sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; }; }; "aws4-1.6.0" = { @@ -490,40 +490,40 @@ let sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; }; }; - "form-data-2.1.4" = { + "form-data-2.3.1" = { name = "form-data"; packageName = "form-data"; - version = "2.1.4"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"; - sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; + url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz"; + sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"; }; }; - "har-validator-4.2.1" = { + "har-validator-5.0.3" = { name = "har-validator"; packageName = "har-validator"; - version = "4.2.1"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; - sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; + url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz"; + sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd"; }; }; - "hawk-3.1.3" = { + "hawk-6.0.2" = { name = "hawk"; packageName = "hawk"; - version = "3.1.3"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; - sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; + url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz"; + sha1 = "af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"; }; }; - "http-signature-1.1.1" = { + "http-signature-1.2.0" = { name = "http-signature"; packageName = "http-signature"; - version = "1.1.1"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; - sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; + sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; }; }; "is-typedarray-1.0.0" = { @@ -562,22 +562,22 @@ let sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; }; }; - "performance-now-0.2.0" = { + "performance-now-2.1.0" = { name = "performance-now"; packageName = "performance-now"; - version = "0.2.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; - sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; + url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; + sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; }; }; - "qs-6.4.0" = { + "qs-6.5.1" = { name = "qs"; packageName = "qs"; - version = "6.4.0"; + version = "6.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; - sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; + url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz"; + sha1 = "349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"; }; }; "safe-buffer-5.1.1" = { @@ -598,13 +598,13 @@ let sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878"; }; }; - "tough-cookie-2.3.2" = { + "tough-cookie-2.3.3" = { name = "tough-cookie"; packageName = "tough-cookie"; - version = "2.3.2"; + version = "2.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz"; - sha1 = "f081f76e4c85720e6c37a5faced737150d84072a"; + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz"; + sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561"; }; }; "tunnel-agent-0.6.0" = { @@ -643,22 +643,22 @@ let sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; }; }; - "ajv-4.11.8" = { + "ajv-5.5.2" = { name = "ajv"; packageName = "ajv"; - version = "4.11.8"; + version = "5.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; - sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; + url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz"; + sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965"; }; }; - "har-schema-1.0.5" = { + "har-schema-2.0.0" = { name = "har-schema"; packageName = "har-schema"; - version = "1.0.5"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; - sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; + url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; + sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; }; }; "co-4.6.0" = { @@ -670,76 +670,94 @@ let sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; }; }; - "json-stable-stringify-1.0.1" = { - name = "json-stable-stringify"; - packageName = "json-stable-stringify"; - version = "1.0.1"; + "fast-deep-equal-1.0.0" = { + name = "fast-deep-equal"; + packageName = "fast-deep-equal"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"; - sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; + url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz"; + sha1 = "96256a3bc975595eb36d82e9929d060d893439ff"; }; }; - "jsonify-0.0.0" = { - name = "jsonify"; - packageName = "jsonify"; - version = "0.0.0"; + "fast-json-stable-stringify-2.0.0" = { + name = "fast-json-stable-stringify"; + packageName = "fast-json-stable-stringify"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"; - sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; + url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; + sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; }; }; - "hoek-2.16.3" = { + "json-schema-traverse-0.3.1" = { + name = "json-schema-traverse"; + packageName = "json-schema-traverse"; + version = "0.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; + sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340"; + }; + }; + "hoek-4.2.0" = { name = "hoek"; packageName = "hoek"; - version = "2.16.3"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; - sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; + url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz"; + sha1 = "72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d"; }; }; - "boom-2.10.1" = { + "boom-4.3.1" = { name = "boom"; packageName = "boom"; - version = "2.10.1"; + version = "4.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; - sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; + url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz"; + sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31"; }; }; - "cryptiles-2.0.5" = { + "cryptiles-3.1.2" = { name = "cryptiles"; packageName = "cryptiles"; - version = "2.0.5"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; - sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz"; + sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"; }; }; - "sntp-1.0.9" = { + "sntp-2.1.0" = { name = "sntp"; packageName = "sntp"; - version = "1.0.9"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; - sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; + url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz"; + sha1 = "2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"; }; }; - "assert-plus-0.2.0" = { + "boom-5.2.0" = { + name = "boom"; + packageName = "boom"; + version = "5.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz"; + sha1 = "5dd9da6ee3a5f302077436290cb717d3f4a54e02"; + }; + }; + "assert-plus-1.0.0" = { name = "assert-plus"; packageName = "assert-plus"; - version = "0.2.0"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; - sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; }; }; - "jsprim-1.4.0" = { + "jsprim-1.4.1" = { name = "jsprim"; packageName = "jsprim"; - version = "1.4.0"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz"; - sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918"; + url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; + sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; }; }; "sshpk-1.13.1" = { @@ -751,22 +769,13 @@ let sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3"; }; }; - "assert-plus-1.0.0" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; - }; - }; - "extsprintf-1.0.2" = { + "extsprintf-1.3.0" = { name = "extsprintf"; packageName = "extsprintf"; - version = "1.0.2"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz"; - sha1 = "e1080e0658e300b06294990cc70e1502235fd550"; + url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; + sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; }; }; "json-schema-0.2.3" = { @@ -778,13 +787,13 @@ let sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; }; }; - "verror-1.3.6" = { + "verror-1.10.0" = { name = "verror"; packageName = "verror"; - version = "1.3.6"; + version = "1.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz"; - sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c"; + url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; + sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; }; }; "asn1-0.2.3" = { @@ -859,13 +868,13 @@ let sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; }; }; - "mime-db-1.27.0" = { + "mime-db-1.30.0" = { name = "mime-db"; packageName = "mime-db"; - version = "1.27.0"; + version = "1.30.0"; src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz"; - sha1 = "820f572296bbd20ec25ed55e5b5de869e5436eb1"; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz"; + sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01"; }; }; "iota-array-1.0.0" = { @@ -877,13 +886,13 @@ let sha1 = "81ef57fe5d05814cd58c2483632a99c30a0e8087"; }; }; - "is-buffer-1.1.5" = { + "is-buffer-1.1.6" = { name = "is-buffer"; packageName = "is-buffer"; - version = "1.1.5"; + version = "1.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz"; - sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc"; + url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; + sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; }; }; "cwise-1.0.10" = { @@ -904,13 +913,13 @@ let sha1 = "8e493c17d54f97cb030a9e9854bc86c9dfb354fe"; }; }; - "static-module-1.4.0" = { + "static-module-1.5.0" = { name = "static-module"; packageName = "static-module"; - version = "1.4.0"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/static-module/-/static-module-1.4.0.tgz"; - sha1 = "bef0d9b6f89585f6f2359b8161beeab06055dbd2"; + url = "https://registry.npmjs.org/static-module/-/static-module-1.5.0.tgz"; + sha1 = "27da9883c41a8cd09236f842f0c1ebc6edf63d86"; }; }; "uglify-js-2.8.29" = { @@ -1120,13 +1129,13 @@ let sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5"; }; }; - "acorn-5.1.1" = { + "acorn-5.2.1" = { name = "acorn"; packageName = "acorn"; - version = "5.1.1"; + version = "5.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-5.1.1.tgz"; - sha1 = "53fe161111f912ab999ee887a90a0bc52822fd75"; + url = "https://registry.npmjs.org/acorn/-/acorn-5.2.1.tgz"; + sha1 = "317ac7821826c22c702d66189ab8359675f135d7"; }; }; "foreach-2.0.5" = { @@ -1147,13 +1156,13 @@ let sha1 = "c54601778ad560f1142ce0e01bcca8b56d13426d"; }; }; - "function-bind-1.1.0" = { + "function-bind-1.1.1" = { name = "function-bind"; packageName = "function-bind"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.0.tgz"; - sha1 = "16176714c801798e4e8f2cf7f7529467bb4a5771"; + url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; + sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; }; }; "escodegen-0.0.28" = { @@ -1354,22 +1363,22 @@ let sha1 = "06aaf47efec7af0b1924a59cd695a6d2b5ed870e"; }; }; - "browserslist-2.1.5" = { + "browserslist-2.10.0" = { name = "browserslist"; packageName = "browserslist"; - version = "2.1.5"; + version = "2.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/browserslist/-/browserslist-2.1.5.tgz"; - sha1 = "e882550df3d1cd6d481c1a3e0038f2baf13a4711"; + url = "https://registry.npmjs.org/browserslist/-/browserslist-2.10.0.tgz"; + sha1 = "bac5ee1cc69ca9d96403ffb8a3abdc5b6aed6346"; }; }; - "caniuse-lite-1.0.30000701" = { + "caniuse-lite-1.0.30000784" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30000701"; + version = "1.0.30000784"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000701.tgz"; - sha1 = "9d673cf6b74dcb3d5c21d213176b011ac6a45baa"; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000784.tgz"; + sha1 = "129ced74e9a1280a441880b6cd2bce30ef59e6c0"; }; }; "normalize-range-0.1.2" = { @@ -1390,13 +1399,13 @@ let sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"; }; }; - "postcss-6.0.6" = { + "postcss-6.0.14" = { name = "postcss"; packageName = "postcss"; - version = "6.0.6"; + version = "6.0.14"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-6.0.6.tgz"; - sha1 = "bba4d58e884fc78c840d1539e10eddaabb8f73bd"; + url = "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz"; + sha1 = "5534c72114739e75d0afcf017db853099f562885"; }; }; "postcss-value-parser-3.3.0" = { @@ -1408,49 +1417,67 @@ let sha1 = "87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"; }; }; - "electron-to-chromium-1.3.15" = { + "electron-to-chromium-1.3.30" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.3.15"; + version = "1.3.30"; + src = fetchurl { + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.30.tgz"; + sha1 = "9666f532a64586651fc56a72513692e820d06a80"; + }; + }; + "electron-releases-2.1.0" = { + name = "electron-releases"; + packageName = "electron-releases"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.15.tgz"; - sha1 = "08397934891cbcfaebbd18b82a95b5a481138369"; + url = "https://registry.npmjs.org/electron-releases/-/electron-releases-2.1.0.tgz"; + sha1 = "c5614bf811f176ce3c836e368a0625782341fd4e"; }; }; - "chalk-2.0.1" = { + "chalk-2.3.0" = { name = "chalk"; packageName = "chalk"; - version = "2.0.1"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz"; + sha1 = "b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"; + }; + }; + "source-map-0.6.1" = { + name = "source-map"; + packageName = "source-map"; + version = "0.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz"; - sha1 = "dbec49436d2ae15f536114e76d14656cdbc0f44d"; + url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; + sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; }; }; - "supports-color-4.2.0" = { + "supports-color-4.5.0" = { name = "supports-color"; packageName = "supports-color"; - version = "4.2.0"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz"; - sha1 = "ad986dc7eb2315d009b4d77c8169c2231a684037"; + url = "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz"; + sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b"; }; }; - "ansi-styles-3.1.0" = { + "ansi-styles-3.2.0" = { name = "ansi-styles"; packageName = "ansi-styles"; - version = "3.1.0"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.1.0.tgz"; - sha1 = "09c202d5c917ec23188caa5c9cb9179cd9547750"; + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz"; + sha1 = "c159b8d5be0f9e5a6f346dab94f16ce022161b88"; }; }; - "color-convert-1.9.0" = { + "color-convert-1.9.1" = { name = "color-convert"; packageName = "color-convert"; - version = "1.9.0"; + version = "1.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz"; - sha1 = "1accf97dd739b983bf994d56fec8f95853641b7a"; + url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz"; + sha1 = "c1261107aeb2f294ebffec9ed9ecad529a6097ed"; }; }; "color-name-1.1.3" = { @@ -1543,13 +1570,13 @@ let sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a"; }; }; - "onecolor-3.0.4" = { + "onecolor-3.0.5" = { name = "onecolor"; packageName = "onecolor"; - version = "3.0.4"; + version = "3.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/onecolor/-/onecolor-3.0.4.tgz"; - sha1 = "75a46f80da6c7aaa5b4daae17a47198bd9652494"; + url = "https://registry.npmjs.org/onecolor/-/onecolor-3.0.5.tgz"; + sha1 = "36eff32201379efdf1180fb445e51a8e2425f9f6"; }; }; "synesthesia-1.0.1" = { @@ -1570,31 +1597,13 @@ let sha1 = "de0cef16f4d8aa8222a320d5b6d7e9bbada7b9f6"; }; }; - "irregular-plurals-1.3.0" = { + "irregular-plurals-1.4.0" = { name = "irregular-plurals"; packageName = "irregular-plurals"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.3.0.tgz"; - sha1 = "7af06931bdf74be33dcf585a13e06fccc16caecf"; - }; - }; - "argh-0.1.4" = { - name = "argh"; - packageName = "argh"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/argh/-/argh-0.1.4.tgz"; - sha1 = "3eb4d612973fc6b6dc6ef338f56f759f2ac5c3a6"; - }; - }; - "read-file-stdin-0.2.1" = { - name = "read-file-stdin"; - packageName = "read-file-stdin"; - version = "0.2.1"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.1.tgz"; - sha1 = "25eccff3a153b6809afacb23ee15387db9e0ee61"; + url = "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.4.0.tgz"; + sha1 = "2ca9b033651111855412f16be5d77c62a458a766"; }; }; "timsort-0.3.0" = { @@ -1606,24 +1615,6 @@ let sha1 = "405411a8e7e6339fe64db9a234de11dc31e02bd4"; }; }; - "write-file-stdout-0.0.2" = { - name = "write-file-stdout"; - packageName = "write-file-stdout"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz"; - sha1 = "c252d7c7c5b1b402897630e3453c7bfe690d9ca1"; - }; - }; - "gather-stream-1.0.0" = { - name = "gather-stream"; - packageName = "gather-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/gather-stream/-/gather-stream-1.0.0.tgz"; - sha1 = "b33994af457a8115700d410f317733cbe7a0904b"; - }; - }; "minimist-1.2.0" = { name = "minimist"; packageName = "minimist"; @@ -1660,6 +1651,15 @@ let sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b"; }; }; + "js-base64-2.1.9" = { + name = "js-base64"; + packageName = "js-base64"; + version = "2.1.9"; + src = fetchurl { + url = "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz"; + sha1 = "f0e80ae039a4bd654b5f281fc93f04a914a7fcce"; + }; + }; "css-color-list-0.0.1" = { name = "css-color-list"; packageName = "css-color-list"; @@ -1669,13 +1669,13 @@ let sha1 = "8718e8695ae7a2cc8787be8715f1c008a7f28b15"; }; }; - "editorconfig-0.13.2" = { + "editorconfig-0.13.3" = { name = "editorconfig"; packageName = "editorconfig"; - version = "0.13.2"; + version = "0.13.3"; src = fetchurl { - url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.2.tgz"; - sha1 = "8e57926d9ee69ab6cb999f027c2171467acceb35"; + url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.3.tgz"; + sha1 = "e5219e587951d60958fd94ea9a9a008cdeff1b34"; }; }; "postcss-scss-0.1.9" = { @@ -1723,22 +1723,22 @@ let sha1 = "5d0548fa256456ede4a9a0c2ac7ab19d3eb1ad81"; }; }; - "bluebird-3.5.0" = { + "bluebird-3.5.1" = { name = "bluebird"; packageName = "bluebird"; - version = "3.5.0"; + version = "3.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.0.tgz"; - sha1 = "791420d7f551eea2897453a8a77653f96606d67c"; + url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz"; + sha1 = "d9551f9de98f1fcda1e683d17ee91a0602ee2eb9"; }; }; - "commander-2.11.0" = { + "commander-2.12.2" = { name = "commander"; packageName = "commander"; - version = "2.11.0"; + version = "2.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz"; - sha1 = "157152fd1e7a6c8d98a5b715cf376df928004563"; + url = "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz"; + sha1 = "0f5946c427ed9ec0d91a46bb9def53e54650e555"; }; }; "lru-cache-3.2.0" = { @@ -1750,6 +1750,15 @@ let sha1 = "71789b3b7f5399bec8565dda38aa30d2a097efee"; }; }; + "semver-5.4.1" = { + name = "semver"; + packageName = "semver"; + version = "5.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz"; + sha1 = "e059c09d8571f0540823733433505d3a2f00b18e"; + }; + }; "sigmund-1.0.1" = { name = "sigmund"; packageName = "sigmund"; @@ -2047,13 +2056,13 @@ let sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9"; }; }; - "caniuse-db-1.0.30000701" = { + "caniuse-db-1.0.30000784" = { name = "caniuse-db"; packageName = "caniuse-db"; - version = "1.0.30000701"; + version = "1.0.30000784"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000701.tgz"; - sha1 = "2e32b06993bf3dbd90b43d93f04e26d11afddcba"; + url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000784.tgz"; + sha1 = "1be95012d9489c7719074f81aee57dbdffe6361b"; }; }; "postcss-message-helpers-2.0.0" = { @@ -2128,13 +2137,13 @@ let sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0"; }; }; - "clone-1.0.2" = { + "clone-1.0.3" = { name = "clone"; packageName = "clone"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz"; - sha1 = "260b7a99ebb1edfe247538175f783243cb19d149"; + url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz"; + sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f"; }; }; "color-string-0.3.0" = { @@ -2416,13 +2425,13 @@ let sha1 = "04e6926f662895354f3dd015203633b857297e2c"; }; }; - "clap-1.2.0" = { + "clap-1.2.3" = { name = "clap"; packageName = "clap"; - version = "1.2.0"; + version = "1.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/clap/-/clap-1.2.0.tgz"; - sha1 = "59c90fe3e137104746ff19469a27a634ff68c857"; + url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz"; + sha1 = "4f36745b32008492557f46412d66d50cb99bce51"; }; }; "postcss-merge-rules-2.0.11" = { @@ -2677,6 +2686,15 @@ let sha1 = "5114415de5808b9ddfba84398a7e2464785c7811"; }; }; + "read-file-stdin-0.2.1" = { + name = "read-file-stdin"; + packageName = "read-file-stdin"; + version = "0.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.1.tgz"; + sha1 = "25eccff3a153b6809afacb23ee15387db9e0ee61"; + }; + }; "to-slug-case-0.1.2" = { name = "to-slug-case"; packageName = "to-slug-case"; @@ -2695,6 +2713,15 @@ let sha1 = "b87845f0d3383f6b681515089c6bc1a11c88c2c3"; }; }; + "write-file-stdout-0.0.2" = { + name = "write-file-stdout"; + packageName = "write-file-stdout"; + version = "0.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz"; + sha1 = "c252d7c7c5b1b402897630e3453c7bfe690d9ca1"; + }; + }; "browserslist-0.4.0" = { name = "browserslist"; packageName = "browserslist"; @@ -2704,13 +2731,13 @@ let sha1 = "3bd4ab9199dc1b9150d4d6dba4d9d3aabbc86dd4"; }; }; - "anymatch-1.3.0" = { + "anymatch-1.3.2" = { name = "anymatch"; packageName = "anymatch"; - version = "1.3.0"; + version = "1.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz"; - sha1 = "a3e52fa39168c825ff57b0248126ce5a8ff95507"; + url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz"; + sha1 = "553dcb8f91e3c889845dfdba34c77721b90b9d7a"; }; }; "async-each-1.0.1" = { @@ -2767,22 +2794,13 @@ let sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78"; }; }; - "fsevents-1.1.2" = { + "fsevents-1.1.3" = { name = "fsevents"; packageName = "fsevents"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz"; - sha1 = "3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4"; - }; - }; - "arrify-1.0.1" = { - name = "arrify"; - packageName = "arrify"; - version = "1.0.1"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; - sha1 = "898508da2226f380df904728456849c1501a4b0d"; + url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz"; + sha1 = "11f82318f5fe7bb2cd22965a108e9306208216d8"; }; }; "micromatch-2.3.11" = { @@ -2794,6 +2812,15 @@ let sha1 = "86677c97d1720b363431d04d0d15293bd38c1565"; }; }; + "normalize-path-2.1.1" = { + name = "normalize-path"; + packageName = "normalize-path"; + version = "2.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"; + sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; + }; + }; "arr-diff-2.0.0" = { name = "arr-diff"; packageName = "arr-diff"; @@ -2857,15 +2884,6 @@ let sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; }; }; - "normalize-path-2.1.1" = { - name = "normalize-path"; - packageName = "normalize-path"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"; - sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; - }; - }; "object.omit-2.0.1" = { name = "object.omit"; packageName = "object.omit"; @@ -2884,13 +2902,13 @@ let sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c"; }; }; - "regex-cache-0.4.3" = { + "regex-cache-0.4.4" = { name = "regex-cache"; packageName = "regex-cache"; - version = "0.4.3"; + version = "0.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz"; - sha1 = "9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"; + url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz"; + sha1 = "75bdc58a2a1496cec48a12835bc54c8d562336dd"; }; }; "arr-flatten-1.1.0" = { @@ -2992,15 +3010,6 @@ let sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; }; }; - "remove-trailing-separator-1.0.2" = { - name = "remove-trailing-separator"; - packageName = "remove-trailing-separator"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz"; - sha1 = "69b062d978727ad14dc6b56ba4ab772fd8d70511"; - }; - }; "for-own-0.1.5" = { name = "for-own"; packageName = "for-own"; @@ -3064,13 +3073,22 @@ let sha1 = "207bab91638499c07b2adf240a41a87210034575"; }; }; - "binary-extensions-1.8.0" = { + "remove-trailing-separator-1.1.0" = { + name = "remove-trailing-separator"; + packageName = "remove-trailing-separator"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; + sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; + }; + }; + "binary-extensions-1.11.0" = { name = "binary-extensions"; packageName = "binary-extensions"; - version = "1.8.0"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz"; - sha1 = "48ec8d16df4377eae5fa5884682480af4d95c774"; + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz"; + sha1 = "46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"; }; }; "graceful-fs-4.1.11" = { @@ -3127,22 +3145,22 @@ let sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; }; }; - "nan-2.6.2" = { + "nan-2.8.0" = { name = "nan"; packageName = "nan"; - version = "2.6.2"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz"; - sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45"; + url = "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz"; + sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a"; }; }; - "node-pre-gyp-0.6.36" = { + "node-pre-gyp-0.6.39" = { name = "node-pre-gyp"; packageName = "node-pre-gyp"; - version = "0.6.36"; + version = "0.6.39"; src = fetchurl { - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz"; - sha1 = "db604112cb74e0d477554e9b505b17abddfab786"; + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz"; + sha1 = "c00e96860b23c0e1420ac7befc5044e1d78d8649"; }; }; "nopt-4.0.1" = { @@ -3163,31 +3181,49 @@ let sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b"; }; }; - "rc-1.2.1" = { + "rc-1.2.2" = { name = "rc"; packageName = "rc"; - version = "1.2.1"; + version = "1.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz"; + sha1 = "d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077"; + }; + }; + "request-2.81.0" = { + name = "request"; + packageName = "request"; + version = "2.81.0"; + src = fetchurl { + url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; + sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; + }; + }; + "hawk-3.1.3" = { + name = "hawk"; + packageName = "hawk"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/rc/-/rc-1.2.1.tgz"; - sha1 = "2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95"; + url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; + sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; }; }; - "rimraf-2.6.1" = { + "rimraf-2.6.2" = { name = "rimraf"; packageName = "rimraf"; - version = "2.6.1"; + version = "2.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz"; - sha1 = "c2338ec643df7a1b7fe5c54fa86f57428a55f33d"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"; + sha1 = "2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"; }; }; - "semver-5.3.0" = { - name = "semver"; - packageName = "semver"; - version = "5.3.0"; + "detect-libc-1.0.3" = { + name = "detect-libc"; + packageName = "detect-libc"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; - sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; + sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; }; }; "tar-2.2.1" = { @@ -3199,22 +3235,22 @@ let sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; }; }; - "tar-pack-3.4.0" = { + "tar-pack-3.4.1" = { name = "tar-pack"; packageName = "tar-pack"; - version = "3.4.0"; + version = "3.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.0.tgz"; - sha1 = "23be2d7f671a8339376cbdb0b8fe3fdebf317984"; + url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz"; + sha1 = "e1dbc03a9b9d3ba07e896ad027317eb679a10a1f"; }; }; - "abbrev-1.1.0" = { + "abbrev-1.1.1" = { name = "abbrev"; packageName = "abbrev"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz"; - sha1 = "d0554c2256636e2f56e7c2e5ad183f859428d81f"; + url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; + sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; }; }; "osenv-0.1.4" = { @@ -3280,13 +3316,13 @@ let sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; }; }; - "aproba-1.1.2" = { + "aproba-1.2.0" = { name = "aproba"; packageName = "aproba"; - version = "1.1.2"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz"; - sha1 = "45c6629094de4e96f693ef7eab74ae079c240fc1"; + url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; + sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a"; }; }; "has-unicode-2.0.1" = { @@ -3361,13 +3397,13 @@ let sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f"; }; }; - "ini-1.3.4" = { + "ini-1.3.5" = { name = "ini"; packageName = "ini"; - version = "1.3.4"; + version = "1.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz"; - sha1 = "0537cb79daf59b59a1a517dff706c86ec039162e"; + url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz"; + sha1 = "eee25f56db1c9ec6085e0c22778083f596abf927"; }; }; "strip-json-comments-2.0.1" = { @@ -3379,6 +3415,141 @@ let sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; }; }; + "aws-sign2-0.6.0" = { + name = "aws-sign2"; + packageName = "aws-sign2"; + version = "0.6.0"; + src = fetchurl { + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; + sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; + }; + }; + "form-data-2.1.4" = { + name = "form-data"; + packageName = "form-data"; + version = "2.1.4"; + src = fetchurl { + url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"; + sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; + }; + }; + "har-validator-4.2.1" = { + name = "har-validator"; + packageName = "har-validator"; + version = "4.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; + sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; + }; + }; + "http-signature-1.1.1" = { + name = "http-signature"; + packageName = "http-signature"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; + sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; + }; + }; + "performance-now-0.2.0" = { + name = "performance-now"; + packageName = "performance-now"; + version = "0.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; + sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; + }; + }; + "qs-6.4.0" = { + name = "qs"; + packageName = "qs"; + version = "6.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; + sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; + }; + }; + "ajv-4.11.8" = { + name = "ajv"; + packageName = "ajv"; + version = "4.11.8"; + src = fetchurl { + url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; + sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; + }; + }; + "har-schema-1.0.5" = { + name = "har-schema"; + packageName = "har-schema"; + version = "1.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; + sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; + }; + }; + "json-stable-stringify-1.0.1" = { + name = "json-stable-stringify"; + packageName = "json-stable-stringify"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"; + sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; + }; + }; + "jsonify-0.0.0" = { + name = "jsonify"; + packageName = "jsonify"; + version = "0.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"; + sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; + }; + }; + "assert-plus-0.2.0" = { + name = "assert-plus"; + packageName = "assert-plus"; + version = "0.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; + sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; + }; + }; + "hoek-2.16.3" = { + name = "hoek"; + packageName = "hoek"; + version = "2.16.3"; + src = fetchurl { + url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; + sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; + }; + }; + "boom-2.10.1" = { + name = "boom"; + packageName = "boom"; + version = "2.10.1"; + src = fetchurl { + url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; + sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; + }; + }; + "cryptiles-2.0.5" = { + name = "cryptiles"; + packageName = "cryptiles"; + version = "2.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; + sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; + }; + }; + "sntp-1.0.9" = { + name = "sntp"; + packageName = "sntp"; + version = "1.0.9"; + src = fetchurl { + url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; + sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; + }; + }; "glob-7.1.2" = { name = "glob"; packageName = "glob"; @@ -3442,13 +3613,13 @@ let sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"; }; }; - "debug-2.6.8" = { + "debug-2.6.9" = { name = "debug"; packageName = "debug"; - version = "2.6.8"; + version = "2.6.9"; src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz"; - sha1 = "e731531ca2ede27d188222427da17821d68ff4fc"; + url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; + sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; }; }; "fstream-ignore-1.0.5" = { @@ -3811,13 +3982,13 @@ let sha1 = "b504bd05869b39259dd0c5efc35d843176dccc4a"; }; }; - "css-color-function-1.3.0" = { + "css-color-function-1.3.3" = { name = "css-color-function"; packageName = "css-color-function"; - version = "1.3.0"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/css-color-function/-/css-color-function-1.3.0.tgz"; - sha1 = "72c767baf978f01b8a8a94f42f17ba5d22a776fc"; + url = "https://registry.npmjs.org/css-color-function/-/css-color-function-1.3.3.tgz"; + sha1 = "8ed24c2c0205073339fafa004bc8c141fccb282e"; }; }; "postcss-message-helpers-1.1.1" = { @@ -3829,13 +4000,13 @@ let sha1 = "ce857447ae58c8ec1087e0d4abf0982ab4fdeaa2"; }; }; - "debug-0.7.4" = { + "debug-3.1.0" = { name = "debug"; packageName = "debug"; - version = "0.7.4"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz"; - sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39"; + url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"; + sha1 = "5bb5a0672628b64149566ba16819e61518c67261"; }; }; "rgb-0.1.0" = { @@ -3901,13 +4072,13 @@ let sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"; }; }; - "resolve-1.3.3" = { + "resolve-1.5.0" = { name = "resolve"; packageName = "resolve"; - version = "1.3.3"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.3.3.tgz"; - sha1 = "655907c3469a8680dc2de3a275a8fdd69691f0e5"; + url = "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz"; + sha1 = "1f09acce796c9a762579f31b2c1cc4c3cddf9f36"; }; }; "path-parse-1.0.5" = { @@ -4018,13 +4189,13 @@ let sha1 = "ac11c5179253796300e6c9d95f8f0d1bcf54190f"; }; }; - "mime-1.3.6" = { + "mime-1.6.0" = { name = "mime"; packageName = "mime"; - version = "1.3.6"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz"; - sha1 = "591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0"; + url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"; + sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1"; }; }; "fs-extra-0.8.1" = { @@ -4135,6 +4306,15 @@ let sha1 = "cf2602832b1ab5c3e6813fca08fe70196ba15e8c"; }; }; + "gather-stream-1.0.0" = { + name = "gather-stream"; + packageName = "gather-stream"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/gather-stream/-/gather-stream-1.0.0.tgz"; + sha1 = "b33994af457a8115700d410f317733cbe7a0904b"; + }; + }; "to-space-case-0.1.2" = { name = "to-space-case"; packageName = "to-space-case"; @@ -4171,51 +4351,6 @@ let sha1 = "1c82fde0ee8693e6d15c49b7bff209dc06298c56"; }; }; - "postcss-grid-kiss-1.4.0" = { - name = "postcss-grid-kiss"; - packageName = "postcss-grid-kiss"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-grid-kiss/-/postcss-grid-kiss-1.4.0.tgz"; - sha1 = "216a35ab74c03dd6cf8d9ef638a806c7e8689553"; - }; - }; - "caniuse-api-2.0.0" = { - name = "caniuse-api"; - packageName = "caniuse-api"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-2.0.0.tgz"; - sha1 = "b1ddb5a5966b16f48dc4998444d4bbc6c7d9d834"; - }; - }; - "postcss-merge-grid-template-0.6.0" = { - name = "postcss-merge-grid-template"; - packageName = "postcss-merge-grid-template"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-grid-template/-/postcss-merge-grid-template-0.6.0.tgz"; - sha1 = "5be176c6dae64f6afd266e264e372cbc08674241"; - }; - }; - "reduce-css-calc-2.0.5" = { - name = "reduce-css-calc"; - packageName = "reduce-css-calc"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.0.5.tgz"; - sha1 = "33c97838c5d4c711a5c14ef85ce4fde41483f7bd"; - }; - }; - "css-unit-converter-1.1.1" = { - name = "css-unit-converter"; - packageName = "css-unit-converter"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz"; - sha1 = "d9b9281adcfd8ced935bdbaba83786897f64e996"; - }; - }; "css-mqpacker-4.0.1" = { name = "css-mqpacker"; packageName = "css-mqpacker"; @@ -5017,6 +5152,15 @@ let sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; }; }; + "arrify-1.0.1" = { + name = "arrify"; + packageName = "arrify"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; + sha1 = "898508da2226f380df904728456849c1501a4b0d"; + }; + }; "glob-6.0.4" = { name = "glob"; packageName = "glob"; @@ -5035,67 +5179,85 @@ let sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; }; }; - "pixrem-3.0.2" = { + "pixrem-4.0.1" = { name = "pixrem"; packageName = "pixrem"; - version = "3.0.2"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/pixrem/-/pixrem-3.0.2.tgz"; - sha1 = "30d1bafb4c3bdce8e9bb4bd56a13985619320c34"; + url = "https://registry.npmjs.org/pixrem/-/pixrem-4.0.1.tgz"; + sha1 = "2da4a1de6ec4423c5fc3794e930b81d4490ec686"; }; }; - "postcss-color-rgba-fallback-2.2.0" = { + "postcss-color-rgba-fallback-3.0.0" = { name = "postcss-color-rgba-fallback"; packageName = "postcss-color-rgba-fallback"; - version = "2.2.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-rgba-fallback/-/postcss-color-rgba-fallback-2.2.0.tgz"; - sha1 = "6d29491be5990a93173d47e7c76f5810b09402ba"; + url = "https://registry.npmjs.org/postcss-color-rgba-fallback/-/postcss-color-rgba-fallback-3.0.0.tgz"; + sha1 = "37d5c9353a07a09270912a82606bb42a0d702c04"; }; }; - "postcss-opacity-3.0.0" = { + "postcss-opacity-5.0.0" = { name = "postcss-opacity"; packageName = "postcss-opacity"; - version = "3.0.0"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-opacity/-/postcss-opacity-3.0.0.tgz"; - sha1 = "7879bcc734405bf74aa6c81c391762052fc55b29"; + url = "https://registry.npmjs.org/postcss-opacity/-/postcss-opacity-5.0.0.tgz"; + sha1 = "6ea6deef4d5fc28dd4cf7af97dba2807b3e07c4c"; }; }; - "postcss-pseudoelements-3.0.0" = { + "postcss-pseudoelements-5.0.0" = { name = "postcss-pseudoelements"; packageName = "postcss-pseudoelements"; - version = "3.0.0"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-pseudoelements/-/postcss-pseudoelements-3.0.0.tgz"; - sha1 = "6c682177c7900ba053b6df17f8c590284c7b8bbc"; + url = "https://registry.npmjs.org/postcss-pseudoelements/-/postcss-pseudoelements-5.0.0.tgz"; + sha1 = "eef194e8d524645ca520a949e95e518e812402cb"; }; }; - "postcss-vmin-2.0.0" = { + "postcss-reporter-5.0.0" = { + name = "postcss-reporter"; + packageName = "postcss-reporter"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-5.0.0.tgz"; + sha1 = "a14177fd1342829d291653f2786efd67110332c3"; + }; + }; + "postcss-vmin-3.0.0" = { name = "postcss-vmin"; packageName = "postcss-vmin"; - version = "2.0.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-vmin/-/postcss-vmin-2.0.0.tgz"; - sha1 = "5327c21191371256868fd7a739917f1474d57fee"; + url = "https://registry.npmjs.org/postcss-vmin/-/postcss-vmin-3.0.0.tgz"; + sha1 = "6d6ae6b3e84fe3ff7a4df1eb86f3a69a07e8a144"; }; }; - "postcss-will-change-1.1.0" = { + "postcss-will-change-2.0.0" = { name = "postcss-will-change"; packageName = "postcss-will-change"; - version = "1.1.0"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-will-change/-/postcss-will-change-1.1.0.tgz"; - sha1 = "a651dd5a81e82c412d39a6cf90a92bb3269af18c"; + url = "https://registry.npmjs.org/postcss-will-change/-/postcss-will-change-2.0.0.tgz"; + sha1 = "cff091a87a0386bab1f32a7cfa7f79d6b773e100"; }; }; - "rgb-hex-1.0.0" = { + "rgb-hex-2.1.0" = { name = "rgb-hex"; packageName = "rgb-hex"; - version = "1.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/rgb-hex/-/rgb-hex-1.0.0.tgz"; - sha1 = "bfaf8cd9cd9164b5a26d71eb4f15a0965324b3c1"; + url = "https://registry.npmjs.org/rgb-hex/-/rgb-hex-2.1.0.tgz"; + sha1 = "c773c5fe2268a25578d92539a82a7a5ce53beda6"; + }; + }; + "log-symbols-2.1.0" = { + name = "log-symbols"; + packageName = "log-symbols"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.1.0.tgz"; + sha1 = "f35fa60e278832b538dc4dddcbb478a45d3e3be6"; }; }; "postcss-color-function-2.0.1" = { @@ -5314,40 +5476,40 @@ let sha1 = "4b906f670e5a963a87b76b0e1689643341b6023c"; }; }; - "is-alphabetical-1.0.0" = { + "is-alphabetical-1.0.1" = { name = "is-alphabetical"; packageName = "is-alphabetical"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.0.tgz"; - sha1 = "e2544c13058255f2144cb757066cd3342a1c8c46"; + url = "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.1.tgz"; + sha1 = "c77079cc91d4efac775be1034bf2d243f95e6f08"; }; }; - "is-decimal-1.0.0" = { + "is-decimal-1.0.1" = { name = "is-decimal"; packageName = "is-decimal"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.0.tgz"; - sha1 = "940579b6ea63c628080a69e62bda88c8470b4fe0"; + url = "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.1.tgz"; + sha1 = "f5fb6a94996ad9e8e3761fbfbd091f1fca8c4e82"; }; }; - "is-whitespace-character-1.0.0" = { + "is-whitespace-character-1.0.1" = { name = "is-whitespace-character"; packageName = "is-whitespace-character"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.0.tgz"; - sha1 = "bbf4a83764ead0d451bec2a55218e91961adc275"; + url = "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.1.tgz"; + sha1 = "9ae0176f3282b65457a1992cdb084f8a5f833e3b"; }; }; - "is-word-character-1.0.0" = { + "is-word-character-1.0.1" = { name = "is-word-character"; packageName = "is-word-character"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.0.tgz"; - sha1 = "a3a9e5ddad70c5c2ee36f4a9cfc9a53f44535247"; + url = "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.1.tgz"; + sha1 = "5a03fa1ea91ace8a6eb0c7cd770eb86d65c8befb"; }; }; "markdown-escapes-1.0.1" = { @@ -5413,13 +5575,13 @@ let sha1 = "5a85c1555fc1ba0c101b86707d15e50fa4c871bb"; }; }; - "vfile-location-2.0.1" = { + "vfile-location-2.0.2" = { name = "vfile-location"; packageName = "vfile-location"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.1.tgz"; - sha1 = "0bf8816f732b0f8bd902a56fda4c62c8e935dc52"; + url = "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.2.tgz"; + sha1 = "d3675c59c877498e492b4756ff65e4af1a752255"; }; }; "xtend-4.0.1" = { @@ -5458,31 +5620,40 @@ let sha1 = "942835f750e4ec61a308e60c2ef8cc1011202efc"; }; }; - "is-alphanumerical-1.0.0" = { + "is-alphanumerical-1.0.1" = { name = "is-alphanumerical"; packageName = "is-alphanumerical"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.0.tgz"; - sha1 = "e06492e719c1bf15dec239e4f1af5f67b4d6e7bf"; + url = "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.1.tgz"; + sha1 = "dfb4aa4d1085e33bdb61c2dee9c80e9c6c19f53b"; }; }; - "is-hexadecimal-1.0.0" = { + "is-hexadecimal-1.0.1" = { name = "is-hexadecimal"; packageName = "is-hexadecimal"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.0.tgz"; - sha1 = "5c459771d2af9a2e3952781fd54fcb1bcfe4113c"; + url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.1.tgz"; + sha1 = "6e084bbc92061fbb0971ec58b6ce6d404e24da69"; }; }; - "unist-util-visit-1.1.3" = { + "unist-util-visit-1.3.0" = { name = "unist-util-visit"; packageName = "unist-util-visit"; - version = "1.1.3"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.1.3.tgz"; - sha1 = "ec268e731b9d277a79a5b5aa0643990e405d600b"; + url = "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.3.0.tgz"; + sha1 = "41ca7c82981fd1ce6c762aac397fc24e35711444"; + }; + }; + "unist-util-is-2.1.1" = { + name = "unist-util-is"; + packageName = "unist-util-is"; + version = "2.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.1.tgz"; + sha1 = "0c312629e3f960c66e931e812d3d80e77010947b"; }; }; "ccount-1.0.2" = { @@ -5503,22 +5674,22 @@ let sha1 = "4a9cef71daf4c001c1d81d63d140cf53fd6889f4"; }; }; - "longest-streak-2.0.1" = { + "longest-streak-2.0.2" = { name = "longest-streak"; packageName = "longest-streak"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.1.tgz"; - sha1 = "42d291b5411e40365c00e63193497e2247316e35"; + url = "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.2.tgz"; + sha1 = "2421b6ba939a443bb9ffebf596585a50b4c38e2e"; }; }; - "markdown-table-1.1.0" = { + "markdown-table-1.1.1" = { name = "markdown-table"; packageName = "markdown-table"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.0.tgz"; - sha1 = "1f5ae61659ced8808d882554c32e8b3f38dd1143"; + url = "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.1.tgz"; + sha1 = "4b3dd3a133d1518b8ef0dbc709bf2a1b4824bc8c"; }; }; "mdast-util-compact-1.0.1" = { @@ -5584,13 +5755,13 @@ let sha1 = "a9fd8b0394b0ae8fff82e0633a0a36ccad5b5f86"; }; }; - "vfile-2.1.0" = { + "vfile-2.3.0" = { name = "vfile"; packageName = "vfile"; - version = "2.1.0"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/vfile/-/vfile-2.1.0.tgz"; - sha1 = "d3ce8b825e7b8d53b896164341273381936f02bd"; + url = "https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz"; + sha1 = "e62d8e72b20e83c324bc6c67278ee272488bf84a"; }; }; "x-is-string-0.1.0" = { @@ -5620,6 +5791,15 @@ let sha1 = "3ccbdc53679eed6ecf3777dd7f5e3229c1b6aa3c"; }; }; + "vfile-message-1.0.0" = { + name = "vfile-message"; + packageName = "vfile-message"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/vfile-message/-/vfile-message-1.0.0.tgz"; + sha1 = "a6adb0474ea400fa25d929f1d673abea6a17e359"; + }; + }; "trim-right-1.0.1" = { name = "trim-right"; packageName = "trim-right"; @@ -5629,13 +5809,13 @@ let sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; }; }; - "marked-0.3.6" = { + "marked-0.3.9" = { name = "marked"; packageName = "marked"; - version = "0.3.6"; + version = "0.3.9"; src = fetchurl { - url = "https://registry.npmjs.org/marked/-/marked-0.3.6.tgz"; - sha1 = "b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7"; + url = "https://registry.npmjs.org/marked/-/marked-0.3.9.tgz"; + sha1 = "54ce6a57e720c3ac6098374ec625fcbcc97ff290"; }; }; "mdcss-theme-github-2.4.2" = { @@ -5647,85 +5827,85 @@ let sha1 = "1aee353113412bc127269bfaeb59ccd27a701152"; }; }; - "ejs-2.5.6" = { + "ejs-2.5.7" = { name = "ejs"; packageName = "ejs"; - version = "2.5.6"; + version = "2.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/ejs/-/ejs-2.5.6.tgz"; - sha1 = "479636bfa3fe3b1debd52087f0acb204b4f19c88"; + url = "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz"; + sha1 = "cc872c168880ae3c7189762fd5ffc00896c9518a"; }; }; - "modular-css-cli-6.0.2" = { + "modular-css-cli-7.2.0" = { name = "modular-css-cli"; packageName = "modular-css-cli"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/modular-css-cli/-/modular-css-cli-6.0.2.tgz"; - sha1 = "db4527642db5f06794c5f2ae7da122534ad8fc62"; + url = "https://registry.npmjs.org/modular-css-cli/-/modular-css-cli-7.2.0.tgz"; + sha1 = "1b34f3510f5d599ceb3963b615c63ad1e62ffb71"; }; }; - "modular-css-core-6.0.2" = { + "modular-css-core-7.2.0" = { name = "modular-css-core"; packageName = "modular-css-core"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/modular-css-core/-/modular-css-core-6.0.2.tgz"; - sha1 = "2b1b7db525d55887aa51ad198a34f7c0a063ec7c"; + url = "https://registry.npmjs.org/modular-css-core/-/modular-css-core-7.2.0.tgz"; + sha1 = "a7ca68bc7f04d641777a7d32ee6105965b499f5f"; }; }; - "modular-css-glob-6.0.2" = { + "modular-css-glob-7.2.0" = { name = "modular-css-glob"; packageName = "modular-css-glob"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/modular-css-glob/-/modular-css-glob-6.0.2.tgz"; - sha1 = "8c32cbc7717044f4082b1a39658784d3363f7dfe"; + url = "https://registry.npmjs.org/modular-css-glob/-/modular-css-glob-7.2.0.tgz"; + sha1 = "1745cff85c653c28e29219e8c144402836e1d9e4"; }; }; - "modular-css-rollup-6.0.2" = { + "modular-css-rollup-7.2.0" = { name = "modular-css-rollup"; packageName = "modular-css-rollup"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/modular-css-rollup/-/modular-css-rollup-6.0.2.tgz"; - sha1 = "62bb49c83ab4777d8af78d0f2dd0e608a964e34d"; + url = "https://registry.npmjs.org/modular-css-rollup/-/modular-css-rollup-7.2.0.tgz"; + sha1 = "a127ac3fc1141b770e23845f405427f793ff671e"; }; }; - "modular-css-webpack-6.0.2" = { + "modular-css-webpack-7.2.0" = { name = "modular-css-webpack"; packageName = "modular-css-webpack"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/modular-css-webpack/-/modular-css-webpack-6.0.2.tgz"; - sha1 = "7b38c317df7e4dd16f5cbb321472075b6f2365ad"; + url = "https://registry.npmjs.org/modular-css-webpack/-/modular-css-webpack-7.2.0.tgz"; + sha1 = "0cd26f974b7f6274f4d105c5a7f43fc81d9f2ed6"; }; }; - "modular-cssify-6.0.2" = { + "modular-cssify-7.2.0" = { name = "modular-cssify"; packageName = "modular-cssify"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/modular-cssify/-/modular-cssify-6.0.2.tgz"; - sha1 = "67393f54d62e2533c523b37aca6f040e79da1cbe"; + url = "https://registry.npmjs.org/modular-cssify/-/modular-cssify-7.2.0.tgz"; + sha1 = "20accdc485e6e9d6960872dc9b6561fda49ff0af"; }; }; - "postcss-modular-css-6.0.2" = { + "postcss-modular-css-7.2.0" = { name = "postcss-modular-css"; packageName = "postcss-modular-css"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-modular-css/-/postcss-modular-css-6.0.2.tgz"; - sha1 = "d9f3bd81695db041f80c38ad2f8235911c332fa8"; + url = "https://registry.npmjs.org/postcss-modular-css/-/postcss-modular-css-7.2.0.tgz"; + sha1 = "c546eff472798df6464e6619251f8a17ad35d51c"; }; }; - "dependency-graph-0.5.0" = { + "dependency-graph-0.6.0" = { name = "dependency-graph"; packageName = "dependency-graph"; - version = "0.5.0"; + version = "0.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.5.0.tgz"; - sha1 = "71edf7945dbba86c1b19ac982b6afb6476b56dd5"; + url = "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.6.0.tgz"; + sha1 = "f155fd58b5ca0f5559bfce0e8720cac1a1b8433d"; }; }; "lodash.findlast-4.6.0" = { @@ -5782,22 +5962,31 @@ let sha1 = "930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"; }; }; - "postcss-url-6.3.1" = { + "postcss-selector-parser-3.1.1" = { + name = "postcss-selector-parser"; + packageName = "postcss-selector-parser"; + version = "3.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz"; + sha1 = "4f875f4afb0c96573d5cf4d74011aee250a7e865"; + }; + }; + "postcss-url-7.3.0" = { name = "postcss-url"; packageName = "postcss-url"; - version = "6.3.1"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-url/-/postcss-url-6.3.1.tgz"; - sha1 = "7fc6467db29ee013b7c6a5885ba1e6bf7cd43086"; + url = "https://registry.npmjs.org/postcss-url/-/postcss-url-7.3.0.tgz"; + sha1 = "cf2f45e06743cf43cfea25309f81cbc003dc783f"; }; }; - "resolve-from-3.0.0" = { + "resolve-from-4.0.0" = { name = "resolve-from"; packageName = "resolve-from"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz"; - sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; + url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"; + sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; }; }; "true-case-path-1.0.2" = { @@ -5827,6 +6016,24 @@ let sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"; }; }; + "dot-prop-4.2.0" = { + name = "dot-prop"; + packageName = "dot-prop"; + version = "4.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz"; + sha1 = "1f19e0c2e1aa0e32797c49799f2837ac6af69c57"; + }; + }; + "is-obj-1.0.1" = { + name = "is-obj"; + packageName = "is-obj"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; + sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; + }; + }; "xxhashjs-0.2.1" = { name = "xxhashjs"; packageName = "xxhashjs"; @@ -5899,22 +6106,22 @@ let sha1 = "c98aef488bcceda2ffb5e2de646d6a754429f5cd"; }; }; - "webpack-sources-1.0.1" = { + "webpack-sources-1.1.0" = { name = "webpack-sources"; packageName = "webpack-sources"; - version = "1.0.1"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.0.1.tgz"; - sha1 = "c7356436a4d13123be2e2426a05d1dad9cbe65cf"; + url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz"; + sha1 = "a101ebae59d6507354d71d8013950a3a8b7a5a54"; }; }; - "big.js-3.1.3" = { + "big.js-3.2.0" = { name = "big.js"; packageName = "big.js"; - version = "3.1.3"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz"; - sha1 = "4cada2193652eb3ca9ec8e55c9015669c9806978"; + url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz"; + sha1 = "a5fc298b81b9e0dca2e458824784b65c52ba588e"; }; }; "emojis-list-2.1.0" = { @@ -6043,13 +6250,13 @@ let sha1 = "830b680aa7e56f33451d4b049f3bd8044498ee27"; }; }; - "jspm-0.17.0-beta.42" = { + "jspm-0.17.0-beta.47" = { name = "jspm"; packageName = "jspm"; - version = "0.17.0-beta.42"; + version = "0.17.0-beta.47"; src = fetchurl { - url = "https://registry.npmjs.org/jspm/-/jspm-0.17.0-beta.42.tgz"; - sha1 = "e930be9764f1ed0be80827ab801bb5ccf5a864f8"; + url = "https://registry.npmjs.org/jspm/-/jspm-0.17.0-beta.47.tgz"; + sha1 = "6a9850dbdb949c9dcac9220ab59b3d130f374af2"; }; }; "core-js-1.2.7" = { @@ -6070,13 +6277,13 @@ let sha1 = "326e5217d3639b21609293b01e7e18775dd3dcc7"; }; }; - "jspm-npm-0.30.2" = { + "jspm-npm-0.30.3" = { name = "jspm-npm"; packageName = "jspm-npm"; - version = "0.30.2"; + version = "0.30.3"; src = fetchurl { - url = "https://registry.npmjs.org/jspm-npm/-/jspm-npm-0.30.2.tgz"; - sha1 = "56de14b1315904dcb87b47878a1161b180ef2319"; + url = "https://registry.npmjs.org/jspm-npm/-/jspm-npm-0.30.3.tgz"; + sha1 = "753ea17b383a69e17d4f4f78b7ea50fbfcbe830d"; }; }; "jspm-registry-0.4.4" = { @@ -6088,13 +6295,13 @@ let sha1 = "d53166035a87cdce585d62baa397568546996d70"; }; }; - "liftoff-2.3.0" = { + "liftoff-2.5.0" = { name = "liftoff"; packageName = "liftoff"; - version = "2.3.0"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/liftoff/-/liftoff-2.3.0.tgz"; - sha1 = "a98f2ff67183d8ba7cfaca10548bd7ff0550b385"; + url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz"; + sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec"; }; }; "ncp-2.0.0" = { @@ -6124,22 +6331,22 @@ let sha1 = "b3579bccb45c94cf20355cc81124990dfd346e30"; }; }; - "systemjs-0.20.14" = { + "systemjs-0.20.19" = { name = "systemjs"; packageName = "systemjs"; - version = "0.20.14"; + version = "0.20.19"; src = fetchurl { - url = "https://registry.npmjs.org/systemjs/-/systemjs-0.20.14.tgz"; - sha1 = "b29812f01b2c7ee867c3fc153b01fca4ea20c4d7"; + url = "https://registry.npmjs.org/systemjs/-/systemjs-0.20.19.tgz"; + sha1 = "c2b9e79c19f4bea53a19b1ed3f974ffb463be949"; }; }; - "systemjs-builder-0.16.9" = { + "systemjs-builder-0.16.12" = { name = "systemjs-builder"; packageName = "systemjs-builder"; - version = "0.16.9"; + version = "0.16.12"; src = fetchurl { - url = "https://registry.npmjs.org/systemjs-builder/-/systemjs-builder-0.16.9.tgz"; - sha1 = "f7ed90ae73739a49c954e5592d35c49a3b51be76"; + url = "https://registry.npmjs.org/systemjs-builder/-/systemjs-builder-0.16.12.tgz"; + sha1 = "0ceee27504d7903b09e047c660563d9ff2c0007b"; }; }; "traceur-0.0.105" = { @@ -6169,22 +6376,22 @@ let sha1 = "6be94fcaca8d77ade0a9670dc460914c94472444"; }; }; - "tar-fs-1.15.3" = { + "tar-fs-1.16.0" = { name = "tar-fs"; packageName = "tar-fs"; - version = "1.15.3"; + version = "1.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.15.3.tgz"; - sha1 = "eccf935e941493d8151028e636e51ce4c3ca7f20"; + url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.0.tgz"; + sha1 = "e877a25acbcc51d8c790da1c57c9cf439817b896"; }; }; - "which-1.2.14" = { + "which-1.3.0" = { name = "which"; packageName = "which"; - version = "1.2.14"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz"; - sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5"; + url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz"; + sha1 = "ff04bdfc010ee547d780bec38e1ac1c2777d253a"; }; }; "chownr-1.0.1" = { @@ -6196,22 +6403,22 @@ let sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181"; }; }; - "pump-1.0.2" = { + "pump-1.0.3" = { name = "pump"; packageName = "pump"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/pump/-/pump-1.0.2.tgz"; - sha1 = "3b3ee6512f94f0e575538c17995f9f16990a5d51"; + url = "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz"; + sha1 = "5dfe8311c33bbf6fc18261f9f34702c47c08a954"; }; }; - "tar-stream-1.5.4" = { + "tar-stream-1.5.5" = { name = "tar-stream"; packageName = "tar-stream"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.4.tgz"; - sha1 = "36549cf04ed1aee9b2a30c0143252238daf94016"; + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.5.tgz"; + sha1 = "5cad84779f45c83b1f2508d96b09d88c7218af55"; }; }; "end-of-stream-1.4.0" = { @@ -6250,13 +6457,13 @@ let sha1 = "53b47570a1347787c5bad4ca2ca3021f9d8b3cfd"; }; }; - "rsvp-3.6.1" = { + "rsvp-3.6.2" = { name = "rsvp"; packageName = "rsvp"; - version = "3.6.1"; + version = "3.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/rsvp/-/rsvp-3.6.1.tgz"; - sha1 = "34f4a7ac2859f7bacc8f49789c5604f1e26ae702"; + url = "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz"; + sha1 = "2e96491599a96cde1b515d5674a8f7a91452926a"; }; }; "semver-4.3.6" = { @@ -6268,13 +6475,13 @@ let sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da"; }; }; - "findup-sync-0.4.3" = { + "findup-sync-2.0.0" = { name = "findup-sync"; packageName = "findup-sync"; - version = "0.4.3"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.3.tgz"; - sha1 = "40043929e7bc60adf0b7f4827c4c6e75a0deca12"; + url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz"; + sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc"; }; }; "fined-1.1.0" = { @@ -6286,22 +6493,31 @@ let sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476"; }; }; - "flagged-respawn-0.3.2" = { + "flagged-respawn-1.0.0" = { name = "flagged-respawn"; packageName = "flagged-respawn"; - version = "0.3.2"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-0.3.2.tgz"; - sha1 = "ff191eddcd7088a675b2610fffc976be9b8074b5"; + url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz"; + sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7"; }; }; - "lodash.isstring-4.0.1" = { - name = "lodash.isstring"; - packageName = "lodash.isstring"; - version = "4.0.1"; + "is-plain-object-2.0.4" = { + name = "is-plain-object"; + packageName = "is-plain-object"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz"; - sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; + url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; + sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; + }; + }; + "object.map-1.0.1" = { + name = "object.map"; + packageName = "object.map"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz"; + sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"; }; }; "rechoir-0.6.2" = { @@ -6313,6233 +6529,6458 @@ let sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; }; }; - "detect-file-0.1.0" = { + "detect-file-1.0.0" = { name = "detect-file"; packageName = "detect-file"; - version = "0.1.0"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/detect-file/-/detect-file-0.1.0.tgz"; - sha1 = "4935dedfd9488648e006b0129566e9386711ea63"; + url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz"; + sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; }; }; - "resolve-dir-0.1.1" = { - name = "resolve-dir"; - packageName = "resolve-dir"; - version = "0.1.1"; + "is-glob-3.1.0" = { + name = "is-glob"; + packageName = "is-glob"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz"; - sha1 = "b219259a5602fac5c5c496ad894a6e8cc430261e"; + url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"; + sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; }; }; - "fs-exists-sync-0.1.0" = { - name = "fs-exists-sync"; - packageName = "fs-exists-sync"; - version = "0.1.0"; + "micromatch-3.1.4" = { + name = "micromatch"; + packageName = "micromatch"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz"; - sha1 = "982d6893af918e72d08dec9e8673ff2b5a8d6add"; + url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.4.tgz"; + sha1 = "bb812e741a41f982c854e42b421a7eac458796f4"; }; }; - "global-modules-0.2.3" = { - name = "global-modules"; - packageName = "global-modules"; - version = "0.2.3"; + "resolve-dir-1.0.1" = { + name = "resolve-dir"; + packageName = "resolve-dir"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz"; - sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"; + url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz"; + sha1 = "79a40644c362be82f26effe739c9bb5382046f43"; }; }; - "global-prefix-0.1.5" = { - name = "global-prefix"; - packageName = "global-prefix"; - version = "0.1.5"; + "is-extglob-2.1.1" = { + name = "is-extglob"; + packageName = "is-extglob"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz"; - sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f"; + url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; + sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; }; }; - "is-windows-0.2.0" = { - name = "is-windows"; - packageName = "is-windows"; - version = "0.2.0"; + "arr-diff-4.0.0" = { + name = "arr-diff"; + packageName = "arr-diff"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz"; - sha1 = "de1aa6d63ea29dd248737b69f1ff8b8002d2108c"; + url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"; + sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; }; }; - "homedir-polyfill-1.0.1" = { - name = "homedir-polyfill"; - packageName = "homedir-polyfill"; - version = "1.0.1"; + "array-unique-0.3.2" = { + name = "array-unique"; + packageName = "array-unique"; + version = "0.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz"; - sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc"; + url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"; + sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; }; }; - "parse-passwd-1.0.0" = { - name = "parse-passwd"; - packageName = "parse-passwd"; - version = "1.0.0"; + "braces-2.3.0" = { + name = "braces"; + packageName = "braces"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"; - sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; + url = "https://registry.npmjs.org/braces/-/braces-2.3.0.tgz"; + sha1 = "a46941cb5fb492156b3d6a656e06c35364e3e66e"; }; }; - "expand-tilde-2.0.2" = { - name = "expand-tilde"; - packageName = "expand-tilde"; - version = "2.0.2"; + "define-property-1.0.0" = { + name = "define-property"; + packageName = "define-property"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"; - sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; + url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"; + sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; }; }; - "is-plain-object-2.0.4" = { - name = "is-plain-object"; - packageName = "is-plain-object"; - version = "2.0.4"; + "extend-shallow-2.0.1" = { + name = "extend-shallow"; + packageName = "extend-shallow"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; - sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; + url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"; + sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; }; }; - "object.defaults-1.1.0" = { - name = "object.defaults"; - packageName = "object.defaults"; - version = "1.1.0"; + "extglob-2.0.3" = { + name = "extglob"; + packageName = "extglob"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"; - sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf"; + url = "https://registry.npmjs.org/extglob/-/extglob-2.0.3.tgz"; + sha1 = "55e019d0c95bf873949c737b7e5172dba84ebb29"; }; }; - "object.pick-1.2.0" = { - name = "object.pick"; - packageName = "object.pick"; - version = "1.2.0"; + "fragment-cache-0.2.1" = { + name = "fragment-cache"; + packageName = "fragment-cache"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/object.pick/-/object.pick-1.2.0.tgz"; - sha1 = "b5392bee9782da6d9fb7d6afaf539779f1234c2b"; + url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"; + sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; }; }; - "parse-filepath-1.0.1" = { - name = "parse-filepath"; - packageName = "parse-filepath"; - version = "1.0.1"; + "kind-of-6.0.2" = { + name = "kind-of"; + packageName = "kind-of"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.1.tgz"; - sha1 = "159d6155d43904d16c10ef698911da1e91969b73"; + url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz"; + sha1 = "01146b36a6218e64e58f3a8d66de5d7fc6f6d051"; }; }; - "isobject-3.0.1" = { - name = "isobject"; - packageName = "isobject"; - version = "3.0.1"; + "nanomatch-1.2.6" = { + name = "nanomatch"; + packageName = "nanomatch"; + version = "1.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; - sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; + url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.6.tgz"; + sha1 = "f27233e97c34a8706b7e781a4bc611c957a81625"; }; }; - "array-each-1.0.1" = { - name = "array-each"; - packageName = "array-each"; - version = "1.0.1"; + "object.pick-1.3.0" = { + name = "object.pick"; + packageName = "object.pick"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"; - sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f"; + url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"; + sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; }; }; - "array-slice-1.0.0" = { - name = "array-slice"; - packageName = "array-slice"; + "regex-not-1.0.0" = { + name = "regex-not"; + packageName = "regex-not"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/array-slice/-/array-slice-1.0.0.tgz"; - sha1 = "e73034f00dcc1f40876008fd20feae77bd4b7c2f"; + url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz"; + sha1 = "42f83e39771622df826b02af176525d6a5f157f9"; }; }; - "for-own-1.0.0" = { - name = "for-own"; - packageName = "for-own"; - version = "1.0.0"; + "snapdragon-0.8.1" = { + name = "snapdragon"; + packageName = "snapdragon"; + version = "0.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz"; - sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b"; + url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz"; + sha1 = "e12b5487faded3e3dea0ac91e9400bf75b401370"; }; }; - "is-absolute-0.2.6" = { - name = "is-absolute"; - packageName = "is-absolute"; - version = "0.2.6"; + "to-regex-3.0.1" = { + name = "to-regex"; + packageName = "to-regex"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.2.6.tgz"; - sha1 = "20de69f3db942ef2d87b9c2da36f172235b1b5eb"; + url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz"; + sha1 = "15358bee4a2c83bd76377ba1dc049d0f18837aae"; }; }; - "map-cache-0.2.2" = { - name = "map-cache"; - packageName = "map-cache"; - version = "0.2.2"; + "fill-range-4.0.0" = { + name = "fill-range"; + packageName = "fill-range"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"; - sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; + url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"; + sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; }; }; - "path-root-0.1.1" = { - name = "path-root"; - packageName = "path-root"; - version = "0.1.1"; + "isobject-3.0.1" = { + name = "isobject"; + packageName = "isobject"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"; - sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7"; + url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; + sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; }; }; - "is-relative-0.2.1" = { - name = "is-relative"; - packageName = "is-relative"; - version = "0.2.1"; + "snapdragon-node-2.1.1" = { + name = "snapdragon-node"; + packageName = "snapdragon-node"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-relative/-/is-relative-0.2.1.tgz"; - sha1 = "d27f4c7d516d175fb610db84bbeef23c3bc97aa5"; + url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; + sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; }; }; - "is-unc-path-0.1.2" = { - name = "is-unc-path"; - packageName = "is-unc-path"; - version = "0.1.2"; + "split-string-3.1.0" = { + name = "split-string"; + packageName = "split-string"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.2.tgz"; - sha1 = "6ab053a72573c10250ff416a3814c35178af39b9"; + url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"; + sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2"; }; }; - "unc-path-regex-0.1.2" = { - name = "unc-path-regex"; - packageName = "unc-path-regex"; - version = "0.1.2"; + "to-regex-range-2.1.1" = { + name = "to-regex-range"; + packageName = "to-regex-range"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"; - sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"; + url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"; + sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; }; }; - "path-root-regex-0.1.2" = { - name = "path-root-regex"; - packageName = "path-root-regex"; - version = "0.1.2"; + "snapdragon-util-3.0.1" = { + name = "snapdragon-util"; + packageName = "snapdragon-util"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"; - sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"; + url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; + sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; }; }; - "err-code-1.1.2" = { - name = "err-code"; - packageName = "err-code"; - version = "1.1.2"; + "extend-shallow-3.0.2" = { + name = "extend-shallow"; + packageName = "extend-shallow"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/err-code/-/err-code-1.1.2.tgz"; - sha1 = "06e0116d3028f6aef4806849eb0ea6a748ae6960"; + url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"; + sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; }; }; - "retry-0.10.1" = { - name = "retry"; - packageName = "retry"; - version = "0.10.1"; + "assign-symbols-1.0.0" = { + name = "assign-symbols"; + packageName = "assign-symbols"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz"; - sha1 = "e76388d217992c252750241d3d3956fed98d8ff4"; + url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"; + sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; }; }; - "exec-sh-0.2.0" = { - name = "exec-sh"; - packageName = "exec-sh"; - version = "0.2.0"; + "is-extendable-1.0.1" = { + name = "is-extendable"; + packageName = "is-extendable"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.0.tgz"; - sha1 = "14f75de3f20d286ef933099b2ce50a90359cef10"; + url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"; + sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4"; }; }; - "fb-watchman-2.0.0" = { - name = "fb-watchman"; - packageName = "fb-watchman"; - version = "2.0.0"; + "is-descriptor-1.0.1" = { + name = "is-descriptor"; + packageName = "is-descriptor"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz"; - sha1 = "54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"; + url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.1.tgz"; + sha1 = "2c6023599bde2de9d5d2c8b9a9d94082036b6ef2"; }; }; - "walker-1.0.7" = { - name = "walker"; - packageName = "walker"; - version = "1.0.7"; + "is-accessor-descriptor-0.1.6" = { + name = "is-accessor-descriptor"; + packageName = "is-accessor-descriptor"; + version = "0.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz"; - sha1 = "2f7f9b8fd10d677262b18a884e28d19618e028fb"; + url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; + sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; }; }; - "watch-0.10.0" = { - name = "watch"; - packageName = "watch"; - version = "0.10.0"; + "is-data-descriptor-0.1.4" = { + name = "is-data-descriptor"; + packageName = "is-data-descriptor"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/watch/-/watch-0.10.0.tgz"; - sha1 = "77798b2da0f9910d595f1ace5b0c2258521f21dc"; + url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; + sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; }; }; - "merge-1.2.0" = { - name = "merge"; - packageName = "merge"; - version = "1.2.0"; + "kind-of-5.1.0" = { + name = "kind-of"; + packageName = "kind-of"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz"; - sha1 = "7531e39d4949c281a66b8c5a6e0265e8b05894da"; + url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"; + sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d"; }; }; - "bser-2.0.0" = { - name = "bser"; - packageName = "bser"; - version = "2.0.0"; + "expand-brackets-2.1.4" = { + name = "expand-brackets"; + packageName = "expand-brackets"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz"; - sha1 = "9ac78d3ed5d915804fd87acb158bc797147a1719"; + url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"; + sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; }; }; - "node-int64-0.4.0" = { - name = "node-int64"; - packageName = "node-int64"; - version = "0.4.0"; + "define-property-0.2.5" = { + name = "define-property"; + packageName = "define-property"; + version = "0.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"; - sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b"; + url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"; + sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; }; }; - "makeerror-1.0.11" = { - name = "makeerror"; - packageName = "makeerror"; - version = "1.0.11"; + "posix-character-classes-0.1.1" = { + name = "posix-character-classes"; + packageName = "posix-character-classes"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz"; - sha1 = "e01a5c9109f2af79660e4e8b9587790184f5a96c"; + url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; + sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; }; }; - "tmpl-1.0.4" = { - name = "tmpl"; - packageName = "tmpl"; - version = "1.0.4"; + "is-descriptor-0.1.6" = { + name = "is-descriptor"; + packageName = "is-descriptor"; + version = "0.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz"; - sha1 = "23640dd7b42d00433911140820e5cf440e521dd1"; + url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"; + sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca"; }; }; - "babel-core-6.25.0" = { - name = "babel-core"; - packageName = "babel-core"; - version = "6.25.0"; + "map-cache-0.2.2" = { + name = "map-cache"; + packageName = "map-cache"; + version = "0.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-core/-/babel-core-6.25.0.tgz"; - sha1 = "7dd42b0463c742e9d5296deb3ec67a9322dad729"; + url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"; + sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; }; }; - "babel-plugin-syntax-dynamic-import-6.18.0" = { - name = "babel-plugin-syntax-dynamic-import"; - packageName = "babel-plugin-syntax-dynamic-import"; - version = "6.18.0"; + "is-odd-1.0.0" = { + name = "is-odd"; + packageName = "is-odd"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz"; - sha1 = "8d6a26229c83745a9982a441051572caa179b1da"; + url = "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz"; + sha1 = "3b8a932eb028b3775c39bb09e91767accdb69088"; }; }; - "babel-plugin-transform-amd-system-wrapper-0.3.7" = { - name = "babel-plugin-transform-amd-system-wrapper"; - packageName = "babel-plugin-transform-amd-system-wrapper"; - version = "0.3.7"; + "base-0.11.2" = { + name = "base"; + packageName = "base"; + version = "0.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-amd-system-wrapper/-/babel-plugin-transform-amd-system-wrapper-0.3.7.tgz"; - sha1 = "521c782d35644491c979ea683e8a5e1caff0ba42"; + url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz"; + sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f"; }; }; - "babel-plugin-transform-cjs-system-wrapper-0.6.2" = { - name = "babel-plugin-transform-cjs-system-wrapper"; - packageName = "babel-plugin-transform-cjs-system-wrapper"; - version = "0.6.2"; + "source-map-resolve-0.5.1" = { + name = "source-map-resolve"; + packageName = "source-map-resolve"; + version = "0.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-cjs-system-wrapper/-/babel-plugin-transform-cjs-system-wrapper-0.6.2.tgz"; - sha1 = "bd7494775289424ff493b6ed455de495bd71ba1d"; + url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz"; + sha1 = "7ad0f593f2281598e854df80f19aae4b92d7a11a"; }; }; - "babel-plugin-transform-es2015-modules-systemjs-6.24.1" = { - name = "babel-plugin-transform-es2015-modules-systemjs"; - packageName = "babel-plugin-transform-es2015-modules-systemjs"; - version = "6.24.1"; + "use-2.0.2" = { + name = "use"; + packageName = "use"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz"; - sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23"; + url = "https://registry.npmjs.org/use/-/use-2.0.2.tgz"; + sha1 = "ae28a0d72f93bf22422a18a2e379993112dec8e8"; }; }; - "babel-plugin-transform-global-system-wrapper-0.3.4" = { - name = "babel-plugin-transform-global-system-wrapper"; - packageName = "babel-plugin-transform-global-system-wrapper"; - version = "0.3.4"; + "cache-base-1.0.1" = { + name = "cache-base"; + packageName = "cache-base"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-global-system-wrapper/-/babel-plugin-transform-global-system-wrapper-0.3.4.tgz"; - sha1 = "948dd7d29fc21447e39bd3447f2debc7f2f73aac"; + url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"; + sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; }; }; - "babel-plugin-transform-system-register-0.0.1" = { - name = "babel-plugin-transform-system-register"; - packageName = "babel-plugin-transform-system-register"; - version = "0.0.1"; + "class-utils-0.3.5" = { + name = "class-utils"; + packageName = "class-utils"; + version = "0.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-system-register/-/babel-plugin-transform-system-register-0.0.1.tgz"; - sha1 = "9dff40390c2763ac518f0b2ad7c5ea4f65a5be25"; + url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.5.tgz"; + sha1 = "17e793103750f9627b2176ea34cfd1b565903c80"; }; }; - "data-uri-to-buffer-0.0.4" = { - name = "data-uri-to-buffer"; - packageName = "data-uri-to-buffer"; - version = "0.0.4"; + "component-emitter-1.2.1" = { + name = "component-emitter"; + packageName = "component-emitter"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.4.tgz"; - sha1 = "46e13ab9da8e309745c8d01ce547213ebdb2fe3f"; + url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"; + sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; }; }; - "es6-template-strings-2.0.1" = { - name = "es6-template-strings"; - packageName = "es6-template-strings"; - version = "2.0.1"; + "mixin-deep-1.3.0" = { + name = "mixin-deep"; + packageName = "mixin-deep"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/es6-template-strings/-/es6-template-strings-2.0.1.tgz"; - sha1 = "b166c6a62562f478bb7775f6ca96103a599b4b2c"; + url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.0.tgz"; + sha1 = "47a8732ba97799457c8c1eca28f95132d7e8150a"; }; }; - "rollup-0.36.4" = { - name = "rollup"; - packageName = "rollup"; - version = "0.36.4"; + "pascalcase-0.1.1" = { + name = "pascalcase"; + packageName = "pascalcase"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-0.36.4.tgz"; - sha1 = "a224494c5386c1d73d38f7bb86f69f5eb011a3d2"; + url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"; + sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; }; }; - "systemjs-0.19.47" = { - name = "systemjs"; - packageName = "systemjs"; - version = "0.19.47"; + "collection-visit-1.0.0" = { + name = "collection-visit"; + packageName = "collection-visit"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/systemjs/-/systemjs-0.19.47.tgz"; - sha1 = "c8c93937180f3f5481c769cd2720763fb4a31c6f"; + url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"; + sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; }; }; - "babel-code-frame-6.22.0" = { - name = "babel-code-frame"; - packageName = "babel-code-frame"; - version = "6.22.0"; + "get-value-2.0.6" = { + name = "get-value"; + packageName = "get-value"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz"; - sha1 = "027620bee567a88c32561574e7fd0801d33118e4"; + url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"; + sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; }; }; - "babel-generator-6.25.0" = { - name = "babel-generator"; - packageName = "babel-generator"; - version = "6.25.0"; + "has-value-1.0.0" = { + name = "has-value"; + packageName = "has-value"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.25.0.tgz"; - sha1 = "33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc"; + url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"; + sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; }; }; - "babel-helpers-6.24.1" = { - name = "babel-helpers"; - packageName = "babel-helpers"; - version = "6.24.1"; + "set-value-2.0.0" = { + name = "set-value"; + packageName = "set-value"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"; - sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; + url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz"; + sha1 = "71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"; }; }; - "babel-messages-6.23.0" = { - name = "babel-messages"; - packageName = "babel-messages"; - version = "6.23.0"; + "to-object-path-0.3.0" = { + name = "to-object-path"; + packageName = "to-object-path"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"; - sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; + url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"; + sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; }; }; - "babel-template-6.25.0" = { - name = "babel-template"; - packageName = "babel-template"; - version = "6.25.0"; + "union-value-1.0.0" = { + name = "union-value"; + packageName = "union-value"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-template/-/babel-template-6.25.0.tgz"; - sha1 = "665241166b7c2aa4c619d71e192969552b10c071"; + url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz"; + sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"; }; }; - "babel-runtime-6.23.0" = { - name = "babel-runtime"; - packageName = "babel-runtime"; - version = "6.23.0"; + "unset-value-1.0.0" = { + name = "unset-value"; + packageName = "unset-value"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"; - sha1 = "0a9489f144de70efb3ce4300accdb329e2fc543b"; + url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"; + sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; }; }; - "babel-register-6.24.1" = { - name = "babel-register"; - packageName = "babel-register"; - version = "6.24.1"; + "map-visit-1.0.0" = { + name = "map-visit"; + packageName = "map-visit"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-register/-/babel-register-6.24.1.tgz"; - sha1 = "7e10e13a2f71065bdfad5a1787ba45bca6ded75f"; + url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; + sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; }; }; - "babel-traverse-6.25.0" = { - name = "babel-traverse"; - packageName = "babel-traverse"; - version = "6.25.0"; + "object-visit-1.0.1" = { + name = "object-visit"; + packageName = "object-visit"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.25.0.tgz"; - sha1 = "2257497e2fcd19b89edc13c4c91381f9512496f1"; + url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"; + sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; }; }; - "babel-types-6.25.0" = { - name = "babel-types"; - packageName = "babel-types"; - version = "6.25.0"; + "has-values-1.0.0" = { + name = "has-values"; + packageName = "has-values"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-types/-/babel-types-6.25.0.tgz"; - sha1 = "70afb248d5660e5d18f811d91c8303b54134a18e"; + url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"; + sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; }; }; - "babylon-6.17.4" = { - name = "babylon"; - packageName = "babylon"; - version = "6.17.4"; + "arr-union-3.1.0" = { + name = "arr-union"; + packageName = "arr-union"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babylon/-/babylon-6.17.4.tgz"; - sha1 = "3e8b7402b88d22c3423e137a1577883b15ff869a"; + url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; + sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; }; }; - "convert-source-map-1.5.0" = { - name = "convert-source-map"; - packageName = "convert-source-map"; - version = "1.5.0"; + "set-value-0.4.3" = { + name = "set-value"; + packageName = "set-value"; + version = "0.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz"; - sha1 = "9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"; + url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz"; + sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"; }; }; - "private-0.1.7" = { - name = "private"; - packageName = "private"; - version = "0.1.7"; + "has-value-0.3.1" = { + name = "has-value"; + packageName = "has-value"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/private/-/private-0.1.7.tgz"; - sha1 = "68ce5e8a1ef0a23bb570cc28537b5332aba63ef1"; + url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"; + sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; }; }; - "slash-1.0.0" = { - name = "slash"; - packageName = "slash"; - version = "1.0.0"; + "has-values-0.1.4" = { + name = "has-values"; + packageName = "has-values"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; - sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; + url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"; + sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; }; }; - "js-tokens-3.0.2" = { - name = "js-tokens"; - packageName = "js-tokens"; - version = "3.0.2"; + "lazy-cache-2.0.2" = { + name = "lazy-cache"; + packageName = "lazy-cache"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; - sha1 = "9866df395102130e38f7f996bceb65443209c25b"; + url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz"; + sha1 = "b9190a4f913354694840859f8a8f7084d8822264"; }; }; - "detect-indent-4.0.0" = { - name = "detect-indent"; - packageName = "detect-indent"; - version = "4.0.0"; + "static-extend-0.1.2" = { + name = "static-extend"; + packageName = "static-extend"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; - sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; + url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"; + sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; }; }; - "jsesc-1.3.0" = { - name = "jsesc"; - packageName = "jsesc"; - version = "1.3.0"; + "set-getter-0.1.0" = { + name = "set-getter"; + packageName = "set-getter"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; - sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; + url = "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz"; + sha1 = "d769c182c9d5a51f409145f2fba82e5e86e80376"; }; }; - "core-js-2.4.1" = { - name = "core-js"; - packageName = "core-js"; - version = "2.4.1"; + "object-copy-0.1.0" = { + name = "object-copy"; + packageName = "object-copy"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz"; - sha1 = "4de911e667b0eae9124e34254b53aea6fc618d3e"; + url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"; + sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; }; }; - "regenerator-runtime-0.10.5" = { - name = "regenerator-runtime"; - packageName = "regenerator-runtime"; - version = "0.10.5"; + "copy-descriptor-0.1.1" = { + name = "copy-descriptor"; + packageName = "copy-descriptor"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz"; - sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658"; + url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; + sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; }; }; - "home-or-tmp-2.0.0" = { - name = "home-or-tmp"; - packageName = "home-or-tmp"; - version = "2.0.0"; + "decode-uri-component-0.2.0" = { + name = "decode-uri-component"; + packageName = "decode-uri-component"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; - sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; + url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; + sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; }; }; - "source-map-support-0.4.15" = { - name = "source-map-support"; - packageName = "source-map-support"; - version = "0.4.15"; + "source-map-url-0.4.0" = { + name = "source-map-url"; + packageName = "source-map-url"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.15.tgz"; - sha1 = "03202df65c06d2bd8c7ec2362a193056fef8d3b1"; + url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz"; + sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; }; }; - "globals-9.18.0" = { - name = "globals"; - packageName = "globals"; - version = "9.18.0"; + "atob-2.0.3" = { + name = "atob"; + packageName = "atob"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"; - sha1 = "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"; + url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz"; + sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d"; }; }; - "invariant-2.2.2" = { - name = "invariant"; - packageName = "invariant"; - version = "2.2.2"; + "urix-0.1.0" = { + name = "urix"; + packageName = "urix"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz"; - sha1 = "9e1f56ac0acdb6bf303306f338be3b204ae60360"; + url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"; + sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; }; }; - "loose-envify-1.3.1" = { - name = "loose-envify"; - packageName = "loose-envify"; - version = "1.3.1"; + "resolve-url-0.2.1" = { + name = "resolve-url"; + packageName = "resolve-url"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz"; - sha1 = "d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"; + url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; + sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; }; }; - "to-fast-properties-1.0.3" = { - name = "to-fast-properties"; - packageName = "to-fast-properties"; - version = "1.0.3"; + "expand-tilde-2.0.2" = { + name = "expand-tilde"; + packageName = "expand-tilde"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; - sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; + url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"; + sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; }; }; - "babel-helper-hoist-variables-6.24.1" = { - name = "babel-helper-hoist-variables"; - packageName = "babel-helper-hoist-variables"; - version = "6.24.1"; + "global-modules-1.0.0" = { + name = "global-modules"; + packageName = "global-modules"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz"; - sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76"; + url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz"; + sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea"; }; }; - "es5-ext-0.10.24" = { - name = "es5-ext"; - packageName = "es5-ext"; - version = "0.10.24"; + "homedir-polyfill-1.0.1" = { + name = "homedir-polyfill"; + packageName = "homedir-polyfill"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.24.tgz"; - sha1 = "a55877c9924bc0c8d9bd3c2cbe17495ac1709b14"; + url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz"; + sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc"; }; }; - "esniff-1.1.0" = { - name = "esniff"; - packageName = "esniff"; - version = "1.1.0"; + "parse-passwd-1.0.0" = { + name = "parse-passwd"; + packageName = "parse-passwd"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/esniff/-/esniff-1.1.0.tgz"; - sha1 = "c66849229f91464dede2e0d40201ed6abf65f2ac"; + url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"; + sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; }; }; - "es6-iterator-2.0.1" = { - name = "es6-iterator"; - packageName = "es6-iterator"; - version = "2.0.1"; + "global-prefix-1.0.2" = { + name = "global-prefix"; + packageName = "global-prefix"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz"; - sha1 = "8e319c9f0453bf575d374940a655920e59ca5512"; + url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz"; + sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; }; }; - "es6-symbol-3.1.1" = { - name = "es6-symbol"; - packageName = "es6-symbol"; - version = "3.1.1"; + "is-windows-1.0.1" = { + name = "is-windows"; + packageName = "is-windows"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz"; - sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"; + url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz"; + sha1 = "310db70f742d259a16a369202b51af84233310d9"; }; }; - "d-1.0.0" = { - name = "d"; - packageName = "d"; - version = "1.0.0"; + "object.defaults-1.1.0" = { + name = "object.defaults"; + packageName = "object.defaults"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz"; - sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f"; + url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"; + sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf"; }; }; - "when-3.7.8" = { - name = "when"; - packageName = "when"; - version = "3.7.8"; + "parse-filepath-1.0.2" = { + name = "parse-filepath"; + packageName = "parse-filepath"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/when/-/when-3.7.8.tgz"; - sha1 = "c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82"; + url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz"; + sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891"; }; }; - "commander-2.9.0" = { - name = "commander"; - packageName = "commander"; - version = "2.9.0"; + "array-each-1.0.1" = { + name = "array-each"; + packageName = "array-each"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; - sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; + url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"; + sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f"; }; }; - "source-map-support-0.2.10" = { - name = "source-map-support"; - packageName = "source-map-support"; - version = "0.2.10"; + "array-slice-1.1.0" = { + name = "array-slice"; + packageName = "array-slice"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz"; - sha1 = "ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc"; + url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz"; + sha1 = "e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4"; }; }; - "graceful-readlink-1.0.1" = { - name = "graceful-readlink"; - packageName = "graceful-readlink"; - version = "1.0.1"; + "for-own-1.0.0" = { + name = "for-own"; + packageName = "for-own"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; - sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; + url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz"; + sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b"; }; }; - "source-map-0.1.32" = { - name = "source-map"; - packageName = "source-map"; - version = "0.1.32"; + "is-absolute-1.0.0" = { + name = "is-absolute"; + packageName = "is-absolute"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz"; - sha1 = "c8b6c167797ba4740a8ea33252162ff08591b266"; + url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz"; + sha1 = "395e1ae84b11f26ad1795e73c17378e48a301576"; }; }; - "globby-6.1.0" = { - name = "globby"; - packageName = "globby"; - version = "6.1.0"; + "path-root-0.1.1" = { + name = "path-root"; + packageName = "path-root"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz"; - sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; + url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"; + sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7"; }; }; - "postcss-js-0.2.0" = { - name = "postcss-js"; - packageName = "postcss-js"; - version = "0.2.0"; + "is-relative-1.0.0" = { + name = "is-relative"; + packageName = "is-relative"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-js/-/postcss-js-0.2.0.tgz"; - sha1 = "56e6db0cd910a6dffec3dfb34462693ac72e3882"; + url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz"; + sha1 = "a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"; }; }; - "postcss-simple-vars-3.1.0" = { - name = "postcss-simple-vars"; - packageName = "postcss-simple-vars"; - version = "3.1.0"; + "is-unc-path-1.0.0" = { + name = "is-unc-path"; + packageName = "is-unc-path"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-3.1.0.tgz"; - sha1 = "62c0657214ef1f43a3c5893ade89de414f31b6ff"; + url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"; + sha1 = "d731e8898ed090a12c352ad2eaed5095ad322c9d"; }; }; - "sugarss-0.2.0" = { - name = "sugarss"; - packageName = "sugarss"; - version = "0.2.0"; + "unc-path-regex-0.1.2" = { + name = "unc-path-regex"; + packageName = "unc-path-regex"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/sugarss/-/sugarss-0.2.0.tgz"; - sha1 = "ac34237563327c6ff897b64742bf6aec190ad39e"; + url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"; + sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"; }; }; - "tcomb-2.7.0" = { - name = "tcomb"; - packageName = "tcomb"; - version = "2.7.0"; + "path-root-regex-0.1.2" = { + name = "path-root-regex"; + packageName = "path-root-regex"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/tcomb/-/tcomb-2.7.0.tgz"; - sha1 = "10d62958041669a5d53567b9a4ee8cde22b1c2b0"; + url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"; + sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"; }; }; - "postcss-unmq-1.0.2" = { - name = "postcss-unmq"; - packageName = "postcss-unmq"; - version = "1.0.2"; + "make-iterator-1.0.0" = { + name = "make-iterator"; + packageName = "make-iterator"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-unmq/-/postcss-unmq-1.0.2.tgz"; - sha1 = "5101616ba7214b2f535e3abf628d82454be52885"; + url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.0.tgz"; + sha1 = "57bef5dc85d23923ba23767324d8e8f8f3d9694b"; }; }; - "postcss-unnot-1.0.2" = { - name = "postcss-unnot"; - packageName = "postcss-unnot"; - version = "1.0.2"; + "err-code-1.1.2" = { + name = "err-code"; + packageName = "err-code"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-unnot/-/postcss-unnot-1.0.2.tgz"; - sha1 = "44e91c1ac2d89d5dbb6eaa626686bbaf56b5590a"; + url = "https://registry.npmjs.org/err-code/-/err-code-1.1.2.tgz"; + sha1 = "06e0116d3028f6aef4806849eb0ea6a748ae6960"; }; }; - "postcss-unnth-1.0.2" = { - name = "postcss-unnth"; - packageName = "postcss-unnth"; - version = "1.0.2"; + "retry-0.10.1" = { + name = "retry"; + packageName = "retry"; + version = "0.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-unnth/-/postcss-unnth-1.0.2.tgz"; - sha1 = "a0c0b2ad6917c629d720063da70b3d4106660ad8"; + url = "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz"; + sha1 = "e76388d217992c252750241d3d3956fed98d8ff4"; }; }; - "postcss-unopacity-1.0.1" = { - name = "postcss-unopacity"; - packageName = "postcss-unopacity"; - version = "1.0.1"; + "exec-sh-0.2.1" = { + name = "exec-sh"; + packageName = "exec-sh"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-unopacity/-/postcss-unopacity-1.0.1.tgz"; - sha1 = "3c4b199b98bda274bd308830d4c0f2b1058b00f7"; + url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.1.tgz"; + sha1 = "163b98a6e89e6b65b47c2a28d215bc1f63989c38"; }; }; - "postcss-unrgba-1.1.1" = { - name = "postcss-unrgba"; - packageName = "postcss-unrgba"; - version = "1.1.1"; + "fb-watchman-2.0.0" = { + name = "fb-watchman"; + packageName = "fb-watchman"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-unrgba/-/postcss-unrgba-1.1.1.tgz"; - sha1 = "62ef1627bd4c142c118bb6c02c536729f6d843bb"; + url = "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz"; + sha1 = "54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"; }; }; - "postcss-unroot-1.0.2" = { - name = "postcss-unroot"; - packageName = "postcss-unroot"; - version = "1.0.2"; + "walker-1.0.7" = { + name = "walker"; + packageName = "walker"; + version = "1.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-unroot/-/postcss-unroot-1.0.2.tgz"; - sha1 = "4441bc206c99c4818bcbd014f49dba1cb9e9b47f"; + url = "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz"; + sha1 = "2f7f9b8fd10d677262b18a884e28d19618e028fb"; }; }; - "css-mediaquery-0.1.2" = { - name = "css-mediaquery"; - packageName = "css-mediaquery"; - version = "0.1.2"; + "watch-0.10.0" = { + name = "watch"; + packageName = "watch"; + version = "0.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-mediaquery/-/css-mediaquery-0.1.2.tgz"; - sha1 = "6a2c37344928618631c54bd33cedd301da18bea0"; + url = "https://registry.npmjs.org/watch/-/watch-0.10.0.tgz"; + sha1 = "77798b2da0f9910d595f1ace5b0c2258521f21dc"; }; }; - "comment-regex-1.0.0" = { - name = "comment-regex"; - packageName = "comment-regex"; - version = "1.0.0"; + "merge-1.2.0" = { + name = "merge"; + packageName = "merge"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/comment-regex/-/comment-regex-1.0.0.tgz"; - sha1 = "7dd70268c83648a9c4cc19bf472d52e64f63918d"; + url = "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz"; + sha1 = "7531e39d4949c281a66b8c5a6e0265e8b05894da"; }; }; - "postcss-scss-0.3.1" = { - name = "postcss-scss"; - packageName = "postcss-scss"; - version = "0.3.1"; + "bser-2.0.0" = { + name = "bser"; + packageName = "bser"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-scss/-/postcss-scss-0.3.1.tgz"; - sha1 = "65c610d8e2a7ee0e62b1835b71b8870734816e4b"; + url = "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz"; + sha1 = "9ac78d3ed5d915804fd87acb158bc797147a1719"; }; }; - "string.prototype.repeat-0.2.0" = { - name = "string.prototype.repeat"; - packageName = "string.prototype.repeat"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz"; - sha1 = "aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf"; - }; - }; - "postcss-animation-data-0.0.4" = { - name = "postcss-animation-data"; - packageName = "postcss-animation-data"; - version = "0.0.4"; + "node-int64-0.4.0" = { + name = "node-int64"; + packageName = "node-int64"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-animation-data/-/postcss-animation-data-0.0.4.tgz"; - sha1 = "42ad0699bf9d627a014d98a3263e997ff5409fdf"; + url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"; + sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b"; }; }; - "postcss-animation.css-data-0.1.0" = { - name = "postcss-animation.css-data"; - packageName = "postcss-animation.css-data"; - version = "0.1.0"; + "makeerror-1.0.11" = { + name = "makeerror"; + packageName = "makeerror"; + version = "1.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-animation.css-data/-/postcss-animation.css-data-0.1.0.tgz"; - sha1 = "3a33a351f18df7a9cb70abe1188f8809bc750eab"; + url = "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz"; + sha1 = "e01a5c9109f2af79660e4e8b9587790184f5a96c"; }; }; - "postcss-magic.css-data-0.1.0" = { - name = "postcss-magic.css-data"; - packageName = "postcss-magic.css-data"; - version = "0.1.0"; + "tmpl-1.0.4" = { + name = "tmpl"; + packageName = "tmpl"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-magic.css-data/-/postcss-magic.css-data-0.1.0.tgz"; - sha1 = "e83f49bdccb64dc27f5b9efa31b1cc411a7fbedf"; + url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz"; + sha1 = "23640dd7b42d00433911140820e5cf440e521dd1"; }; }; - "postcss-tuesday.css-data-0.1.0" = { - name = "postcss-tuesday.css-data"; - packageName = "postcss-tuesday.css-data"; - version = "0.1.0"; + "babel-core-6.26.0" = { + name = "babel-core"; + packageName = "babel-core"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-tuesday.css-data/-/postcss-tuesday.css-data-0.1.0.tgz"; - sha1 = "9811ae284e276a6a20d7fd8356577e8335bdace1"; + url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz"; + sha1 = "af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"; }; }; - "mathjs-3.14.2" = { - name = "mathjs"; - packageName = "mathjs"; - version = "3.14.2"; + "babel-plugin-syntax-dynamic-import-6.18.0" = { + name = "babel-plugin-syntax-dynamic-import"; + packageName = "babel-plugin-syntax-dynamic-import"; + version = "6.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/mathjs/-/mathjs-3.14.2.tgz"; - sha1 = "bb79b7dc878b7f586ce408ab067a9a42db2e7a2d"; + url = "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz"; + sha1 = "8d6a26229c83745a9982a441051572caa179b1da"; }; }; - "named-js-regexp-1.3.2" = { - name = "named-js-regexp"; - packageName = "named-js-regexp"; - version = "1.3.2"; + "babel-plugin-transform-amd-system-wrapper-0.3.7" = { + name = "babel-plugin-transform-amd-system-wrapper"; + packageName = "babel-plugin-transform-amd-system-wrapper"; + version = "0.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/named-js-regexp/-/named-js-regexp-1.3.2.tgz"; - sha1 = "967779b923c2381e243a97cb8a39413141def241"; + url = "https://registry.npmjs.org/babel-plugin-transform-amd-system-wrapper/-/babel-plugin-transform-amd-system-wrapper-0.3.7.tgz"; + sha1 = "521c782d35644491c979ea683e8a5e1caff0ba42"; }; }; - "complex.js-2.0.4" = { - name = "complex.js"; - packageName = "complex.js"; - version = "2.0.4"; + "babel-plugin-transform-cjs-system-wrapper-0.6.2" = { + name = "babel-plugin-transform-cjs-system-wrapper"; + packageName = "babel-plugin-transform-cjs-system-wrapper"; + version = "0.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/complex.js/-/complex.js-2.0.4.tgz"; - sha1 = "d8e7cfb9652d1e853e723386421c1a0ca7a48373"; + url = "https://registry.npmjs.org/babel-plugin-transform-cjs-system-wrapper/-/babel-plugin-transform-cjs-system-wrapper-0.6.2.tgz"; + sha1 = "bd7494775289424ff493b6ed455de495bd71ba1d"; }; }; - "decimal.js-7.2.3" = { - name = "decimal.js"; - packageName = "decimal.js"; - version = "7.2.3"; + "babel-plugin-transform-es2015-modules-systemjs-6.24.1" = { + name = "babel-plugin-transform-es2015-modules-systemjs"; + packageName = "babel-plugin-transform-es2015-modules-systemjs"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-7.2.3.tgz"; - sha1 = "6434c3b8a8c375780062fc633d0d2bbdb264cc78"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz"; + sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23"; }; }; - "fraction.js-4.0.2" = { - name = "fraction.js"; - packageName = "fraction.js"; - version = "4.0.2"; + "babel-plugin-transform-global-system-wrapper-0.3.4" = { + name = "babel-plugin-transform-global-system-wrapper"; + packageName = "babel-plugin-transform-global-system-wrapper"; + version = "0.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.0.2.tgz"; - sha1 = "0eae896626f334b1bde763371347a83b5575d7f0"; + url = "https://registry.npmjs.org/babel-plugin-transform-global-system-wrapper/-/babel-plugin-transform-global-system-wrapper-0.3.4.tgz"; + sha1 = "948dd7d29fc21447e39bd3447f2debc7f2f73aac"; }; }; - "seed-random-2.2.0" = { - name = "seed-random"; - packageName = "seed-random"; - version = "2.2.0"; + "babel-plugin-transform-system-register-0.0.1" = { + name = "babel-plugin-transform-system-register"; + packageName = "babel-plugin-transform-system-register"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/seed-random/-/seed-random-2.2.0.tgz"; - sha1 = "2a9b19e250a817099231a5b99a4daf80b7fbed54"; + url = "https://registry.npmjs.org/babel-plugin-transform-system-register/-/babel-plugin-transform-system-register-0.0.1.tgz"; + sha1 = "9dff40390c2763ac518f0b2ad7c5ea4f65a5be25"; }; }; - "tiny-emitter-2.0.0" = { - name = "tiny-emitter"; - packageName = "tiny-emitter"; - version = "2.0.0"; + "data-uri-to-buffer-0.0.4" = { + name = "data-uri-to-buffer"; + packageName = "data-uri-to-buffer"; + version = "0.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.0.tgz"; - sha1 = "bad327adb1804b42a231afa741532bd884cd09ad"; + url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.4.tgz"; + sha1 = "46e13ab9da8e309745c8d01ce547213ebdb2fe3f"; }; }; - "typed-function-0.10.5" = { - name = "typed-function"; - packageName = "typed-function"; - version = "0.10.5"; + "es6-template-strings-2.0.1" = { + name = "es6-template-strings"; + packageName = "es6-template-strings"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/typed-function/-/typed-function-0.10.5.tgz"; - sha1 = "2e0f18abd065219fab694a446a65c6d1981832c0"; + url = "https://registry.npmjs.org/es6-template-strings/-/es6-template-strings-2.0.1.tgz"; + sha1 = "b166c6a62562f478bb7775f6ca96103a599b4b2c"; }; }; - "sprintf-js-1.1.1" = { - name = "sprintf-js"; - packageName = "sprintf-js"; - version = "1.1.1"; + "rollup-0.36.4" = { + name = "rollup"; + packageName = "rollup"; + version = "0.36.4"; src = fetchurl { - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz"; - sha1 = "36be78320afe5801f6cea3ee78b6e5aab940ea0c"; + url = "https://registry.npmjs.org/rollup/-/rollup-0.36.4.tgz"; + sha1 = "a224494c5386c1d73d38f7bb86f69f5eb011a3d2"; }; }; - "ase-util-1.0.1" = { - name = "ase-util"; - packageName = "ase-util"; - version = "1.0.1"; + "systemjs-0.19.47" = { + name = "systemjs"; + packageName = "systemjs"; + version = "0.19.47"; src = fetchurl { - url = "https://registry.npmjs.org/ase-util/-/ase-util-1.0.1.tgz"; - sha1 = "c345af1f717cde6239f5cf00c3efdde99dcfc40c"; + url = "https://registry.npmjs.org/systemjs/-/systemjs-0.19.47.tgz"; + sha1 = "c8c93937180f3f5481c769cd2720763fb4a31c6f"; }; }; - "iconv-lite-0.4.18" = { - name = "iconv-lite"; - packageName = "iconv-lite"; - version = "0.4.18"; + "babel-code-frame-6.26.0" = { + name = "babel-code-frame"; + packageName = "babel-code-frame"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz"; - sha1 = "23d8656b16aae6742ac29732ea8f0336a4789cf2"; + url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; + sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; }; }; - "yargs-3.32.0" = { - name = "yargs"; - packageName = "yargs"; - version = "3.32.0"; + "babel-generator-6.26.0" = { + name = "babel-generator"; + packageName = "babel-generator"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz"; - sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995"; + url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz"; + sha1 = "ac1ae20070b79f6e3ca1d3269613053774f20dc5"; }; }; - "cliui-3.2.0" = { - name = "cliui"; - packageName = "cliui"; - version = "3.2.0"; + "babel-helpers-6.24.1" = { + name = "babel-helpers"; + packageName = "babel-helpers"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"; - sha1 = "120601537a916d29940f934da3b48d585a39213d"; + url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"; + sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; }; }; - "os-locale-1.4.0" = { - name = "os-locale"; - packageName = "os-locale"; - version = "1.4.0"; + "babel-messages-6.23.0" = { + name = "babel-messages"; + packageName = "babel-messages"; + version = "6.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"; - sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9"; + url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"; + sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; }; }; - "window-size-0.1.4" = { - name = "window-size"; - packageName = "window-size"; - version = "0.1.4"; + "babel-register-6.26.0" = { + name = "babel-register"; + packageName = "babel-register"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz"; - sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876"; + url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz"; + sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; }; }; - "y18n-3.2.1" = { - name = "y18n"; - packageName = "y18n"; - version = "3.2.1"; + "babel-runtime-6.26.0" = { + name = "babel-runtime"; + packageName = "babel-runtime"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"; - sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; + url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; + sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; }; }; - "wrap-ansi-2.1.0" = { - name = "wrap-ansi"; - packageName = "wrap-ansi"; - version = "2.1.0"; + "babel-template-6.26.0" = { + name = "babel-template"; + packageName = "babel-template"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; - sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; + url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"; + sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; }; }; - "lcid-1.0.0" = { - name = "lcid"; - packageName = "lcid"; - version = "1.0.0"; + "babel-traverse-6.26.0" = { + name = "babel-traverse"; + packageName = "babel-traverse"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"; - sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; + url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz"; + sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"; }; }; - "invert-kv-1.0.0" = { - name = "invert-kv"; - packageName = "invert-kv"; - version = "1.0.0"; + "babel-types-6.26.0" = { + name = "babel-types"; + packageName = "babel-types"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"; - sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; + url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz"; + sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497"; }; }; - "calipers-2.0.0" = { - name = "calipers"; - packageName = "calipers"; - version = "2.0.0"; + "babylon-6.18.0" = { + name = "babylon"; + packageName = "babylon"; + version = "6.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/calipers/-/calipers-2.0.0.tgz"; - sha1 = "bdf221c6a62f603b8ddd9340cacd9c79c1a03fce"; + url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"; + sha1 = "af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"; }; }; - "calipers-svg-2.0.0" = { - name = "calipers-svg"; - packageName = "calipers-svg"; - version = "2.0.0"; + "convert-source-map-1.5.1" = { + name = "convert-source-map"; + packageName = "convert-source-map"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/calipers-svg/-/calipers-svg-2.0.0.tgz"; - sha1 = "666254d5f1ea66d2052ed82d6d79b8bf10acbb71"; + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz"; + sha1 = "b8278097b9bc229365de5c62cf5fcaed8b5599e5"; }; }; - "url-parse-1.1.9" = { - name = "url-parse"; - packageName = "url-parse"; - version = "1.1.9"; + "private-0.1.8" = { + name = "private"; + packageName = "private"; + version = "0.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/url-parse/-/url-parse-1.1.9.tgz"; - sha1 = "c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19"; + url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz"; + sha1 = "2381edb3689f7a53d653190060fcf822d2f368ff"; }; }; - "querystringify-1.0.0" = { - name = "querystringify"; - packageName = "querystringify"; + "slash-1.0.0" = { + name = "slash"; + packageName = "slash"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/querystringify/-/querystringify-1.0.0.tgz"; - sha1 = "6286242112c5b712fa654e526652bf6a13ff05cb"; + url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; + sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; }; }; - "requires-port-1.0.0" = { - name = "requires-port"; - packageName = "requires-port"; - version = "1.0.0"; + "js-tokens-3.0.2" = { + name = "js-tokens"; + packageName = "js-tokens"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"; - sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; + url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; + sha1 = "9866df395102130e38f7f996bceb65443209c25b"; }; }; - "assets-2.1.0" = { - name = "assets"; - packageName = "assets"; - version = "2.1.0"; + "detect-indent-4.0.0" = { + name = "detect-indent"; + packageName = "detect-indent"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/assets/-/assets-2.1.0.tgz"; - sha1 = "bfae98717974d66636eed26b18eb7120608816f5"; + url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; + sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; }; }; - "postcss-functions-2.1.1" = { - name = "postcss-functions"; - packageName = "postcss-functions"; - version = "2.1.1"; + "jsesc-1.3.0" = { + name = "jsesc"; + packageName = "jsesc"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-functions/-/postcss-functions-2.1.1.tgz"; - sha1 = "f9b64d3b5690f6795fe42a180496805375b7a840"; + url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; + sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; }; }; - "calipers-gif-2.0.0" = { - name = "calipers-gif"; - packageName = "calipers-gif"; - version = "2.0.0"; + "core-js-2.5.3" = { + name = "core-js"; + packageName = "core-js"; + version = "2.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/calipers-gif/-/calipers-gif-2.0.0.tgz"; - sha1 = "b5eefec3064a77c6dcdbd5bdc51735a01bafdc37"; + url = "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz"; + sha1 = "8acc38345824f16d8365b7c9b4259168e8ed603e"; }; }; - "calipers-jpeg-2.0.0" = { - name = "calipers-jpeg"; - packageName = "calipers-jpeg"; + "home-or-tmp-2.0.0" = { + name = "home-or-tmp"; + packageName = "home-or-tmp"; version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/calipers-jpeg/-/calipers-jpeg-2.0.0.tgz"; - sha1 = "06d56a53f62717dd809cb956cf64423ce693465b"; + url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; + sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; }; }; - "calipers-png-2.0.0" = { - name = "calipers-png"; - packageName = "calipers-png"; - version = "2.0.0"; + "source-map-support-0.4.18" = { + name = "source-map-support"; + packageName = "source-map-support"; + version = "0.4.18"; src = fetchurl { - url = "https://registry.npmjs.org/calipers-png/-/calipers-png-2.0.0.tgz"; - sha1 = "1d0d20e5c1ae5f79b74d5286a2e97f59bb70b658"; + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"; + sha1 = "0286a6de8be42641338594e97ccea75f0a2c585f"; }; }; - "calipers-webp-2.0.0" = { - name = "calipers-webp"; - packageName = "calipers-webp"; - version = "2.0.0"; + "regenerator-runtime-0.11.1" = { + name = "regenerator-runtime"; + packageName = "regenerator-runtime"; + version = "0.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/calipers-webp/-/calipers-webp-2.0.0.tgz"; - sha1 = "e126ece2f84cd71779612bfa2b2653cd95cea77a"; + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; + sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"; }; }; - "url-0.10.3" = { - name = "url"; - packageName = "url"; - version = "0.10.3"; + "globals-9.18.0" = { + name = "globals"; + packageName = "globals"; + version = "9.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/url/-/url-0.10.3.tgz"; - sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; + url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"; + sha1 = "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"; }; }; - "punycode-1.3.2" = { - name = "punycode"; - packageName = "punycode"; - version = "1.3.2"; + "invariant-2.2.2" = { + name = "invariant"; + packageName = "invariant"; + version = "2.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; - sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; + url = "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz"; + sha1 = "9e1f56ac0acdb6bf303306f338be3b204ae60360"; }; }; - "querystring-0.2.0" = { - name = "querystring"; - packageName = "querystring"; - version = "0.2.0"; + "loose-envify-1.3.1" = { + name = "loose-envify"; + packageName = "loose-envify"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; - sha1 = "b209849203bb25df820da756e747005878521620"; + url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz"; + sha1 = "d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"; }; }; - "file-type-4.4.0" = { - name = "file-type"; - packageName = "file-type"; - version = "4.4.0"; + "to-fast-properties-1.0.3" = { + name = "to-fast-properties"; + packageName = "to-fast-properties"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz"; - sha1 = "1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5"; + url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; + sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; }; }; - "gulp-util-3.0.8" = { - name = "gulp-util"; - packageName = "gulp-util"; - version = "3.0.8"; + "babel-helper-hoist-variables-6.24.1" = { + name = "babel-helper-hoist-variables"; + packageName = "babel-helper-hoist-variables"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz"; - sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; + url = "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz"; + sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76"; }; }; - "image-size-0.5.5" = { - name = "image-size"; - packageName = "image-size"; - version = "0.5.5"; + "es5-ext-0.10.37" = { + name = "es5-ext"; + packageName = "es5-ext"; + version = "0.10.37"; src = fetchurl { - url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz"; - sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c"; + url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.37.tgz"; + sha1 = "0ee741d148b80069ba27d020393756af257defc3"; }; }; - "imagemin-5.3.1" = { - name = "imagemin"; - packageName = "imagemin"; - version = "5.3.1"; + "esniff-1.1.0" = { + name = "esniff"; + packageName = "esniff"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/imagemin/-/imagemin-5.3.1.tgz"; - sha1 = "f19c2eee1e71ba6c6558c515f9fc96680189a6d4"; + url = "https://registry.npmjs.org/esniff/-/esniff-1.1.0.tgz"; + sha1 = "c66849229f91464dede2e0d40201ed6abf65f2ac"; }; }; - "imagemin-pngquant-5.0.1" = { - name = "imagemin-pngquant"; - packageName = "imagemin-pngquant"; - version = "5.0.1"; + "es6-iterator-2.0.3" = { + name = "es6-iterator"; + packageName = "es6-iterator"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-5.0.1.tgz"; - sha1 = "d8a329da553afa226b11ce62debe0b7e37b439e6"; + url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz"; + sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7"; }; }; - "pngquant-bin-3.1.1" = { - name = "pngquant-bin"; - packageName = "pngquant-bin"; + "es6-symbol-3.1.1" = { + name = "es6-symbol"; + packageName = "es6-symbol"; version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-3.1.1.tgz"; - sha1 = "d124d98a75a9487f40c1640b4dbfcbb2bd5a1fd1"; + url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz"; + sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"; }; }; - "pretty-bytes-4.0.2" = { - name = "pretty-bytes"; - packageName = "pretty-bytes"; - version = "4.0.2"; + "d-1.0.0" = { + name = "d"; + packageName = "d"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz"; - sha1 = "b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"; + url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz"; + sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f"; }; }; - "array-differ-1.0.0" = { - name = "array-differ"; - packageName = "array-differ"; - version = "1.0.0"; + "when-3.7.8" = { + name = "when"; + packageName = "when"; + version = "3.7.8"; src = fetchurl { - url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz"; - sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031"; + url = "https://registry.npmjs.org/when/-/when-3.7.8.tgz"; + sha1 = "c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82"; }; }; - "beeper-1.1.1" = { - name = "beeper"; - packageName = "beeper"; - version = "1.1.1"; + "commander-2.9.0" = { + name = "commander"; + packageName = "commander"; + version = "2.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz"; - sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; + url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; + sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; }; }; - "dateformat-2.0.0" = { - name = "dateformat"; - packageName = "dateformat"; - version = "2.0.0"; + "source-map-support-0.2.10" = { + name = "source-map-support"; + packageName = "source-map-support"; + version = "0.2.10"; src = fetchurl { - url = "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz"; - sha1 = "2743e3abb5c3fc2462e527dca445e04e9f4dee17"; + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz"; + sha1 = "ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc"; }; }; - "fancy-log-1.3.0" = { - name = "fancy-log"; - packageName = "fancy-log"; - version = "1.3.0"; + "graceful-readlink-1.0.1" = { + name = "graceful-readlink"; + packageName = "graceful-readlink"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.0.tgz"; - sha1 = "45be17d02bb9917d60ccffd4995c999e6c8c9948"; + url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; + sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; }; }; - "gulplog-1.0.0" = { - name = "gulplog"; - packageName = "gulplog"; - version = "1.0.0"; + "source-map-0.1.32" = { + name = "source-map"; + packageName = "source-map"; + version = "0.1.32"; src = fetchurl { - url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz"; - sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5"; + url = "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz"; + sha1 = "c8b6c167797ba4740a8ea33252162ff08591b266"; }; }; - "has-gulplog-0.1.0" = { - name = "has-gulplog"; - packageName = "has-gulplog"; - version = "0.1.0"; + "globby-6.1.0" = { + name = "globby"; + packageName = "globby"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz"; - sha1 = "6414c82913697da51590397dafb12f22967811ce"; + url = "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz"; + sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; }; }; - "lodash._reescape-3.0.0" = { - name = "lodash._reescape"; - packageName = "lodash._reescape"; - version = "3.0.0"; + "postcss-js-0.2.0" = { + name = "postcss-js"; + packageName = "postcss-js"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz"; - sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"; + url = "https://registry.npmjs.org/postcss-js/-/postcss-js-0.2.0.tgz"; + sha1 = "56e6db0cd910a6dffec3dfb34462693ac72e3882"; }; }; - "lodash._reevaluate-3.0.0" = { - name = "lodash._reevaluate"; - packageName = "lodash._reevaluate"; - version = "3.0.0"; + "postcss-simple-vars-3.1.0" = { + name = "postcss-simple-vars"; + packageName = "postcss-simple-vars"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz"; - sha1 = "58bc74c40664953ae0b124d806996daca431e2ed"; + url = "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-3.1.0.tgz"; + sha1 = "62c0657214ef1f43a3c5893ade89de414f31b6ff"; }; }; - "lodash._reinterpolate-3.0.0" = { - name = "lodash._reinterpolate"; - packageName = "lodash._reinterpolate"; - version = "3.0.0"; + "sugarss-0.2.0" = { + name = "sugarss"; + packageName = "sugarss"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; - sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; + url = "https://registry.npmjs.org/sugarss/-/sugarss-0.2.0.tgz"; + sha1 = "ac34237563327c6ff897b64742bf6aec190ad39e"; }; }; - "lodash.template-3.6.2" = { - name = "lodash.template"; - packageName = "lodash.template"; - version = "3.6.2"; + "tcomb-2.7.0" = { + name = "tcomb"; + packageName = "tcomb"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz"; - sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f"; + url = "https://registry.npmjs.org/tcomb/-/tcomb-2.7.0.tgz"; + sha1 = "10d62958041669a5d53567b9a4ee8cde22b1c2b0"; }; }; - "multipipe-0.1.2" = { - name = "multipipe"; - packageName = "multipipe"; - version = "0.1.2"; + "pixrem-3.0.2" = { + name = "pixrem"; + packageName = "pixrem"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; - sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; + url = "https://registry.npmjs.org/pixrem/-/pixrem-3.0.2.tgz"; + sha1 = "30d1bafb4c3bdce8e9bb4bd56a13985619320c34"; }; }; - "replace-ext-0.0.1" = { - name = "replace-ext"; - packageName = "replace-ext"; - version = "0.0.1"; + "postcss-pseudoelements-3.0.0" = { + name = "postcss-pseudoelements"; + packageName = "postcss-pseudoelements"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz"; - sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924"; + url = "https://registry.npmjs.org/postcss-pseudoelements/-/postcss-pseudoelements-3.0.0.tgz"; + sha1 = "6c682177c7900ba053b6df17f8c590284c7b8bbc"; }; }; - "vinyl-0.5.3" = { - name = "vinyl"; - packageName = "vinyl"; - version = "0.5.3"; + "postcss-unmq-1.0.2" = { + name = "postcss-unmq"; + packageName = "postcss-unmq"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz"; - sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde"; + url = "https://registry.npmjs.org/postcss-unmq/-/postcss-unmq-1.0.2.tgz"; + sha1 = "5101616ba7214b2f535e3abf628d82454be52885"; }; }; - "time-stamp-1.1.0" = { - name = "time-stamp"; - packageName = "time-stamp"; - version = "1.1.0"; + "postcss-unnot-1.0.2" = { + name = "postcss-unnot"; + packageName = "postcss-unnot"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz"; - sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3"; + url = "https://registry.npmjs.org/postcss-unnot/-/postcss-unnot-1.0.2.tgz"; + sha1 = "44e91c1ac2d89d5dbb6eaa626686bbaf56b5590a"; }; }; - "glogg-1.0.0" = { - name = "glogg"; - packageName = "glogg"; - version = "1.0.0"; + "postcss-unnth-1.0.2" = { + name = "postcss-unnth"; + packageName = "postcss-unnth"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz"; - sha1 = "7fe0f199f57ac906cf512feead8f90ee4a284fc5"; + url = "https://registry.npmjs.org/postcss-unnth/-/postcss-unnth-1.0.2.tgz"; + sha1 = "a0c0b2ad6917c629d720063da70b3d4106660ad8"; }; }; - "sparkles-1.0.0" = { - name = "sparkles"; - packageName = "sparkles"; - version = "1.0.0"; + "postcss-unopacity-1.0.1" = { + name = "postcss-unopacity"; + packageName = "postcss-unopacity"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz"; - sha1 = "1acbbfb592436d10bbe8f785b7cc6f82815012c3"; + url = "https://registry.npmjs.org/postcss-unopacity/-/postcss-unopacity-1.0.1.tgz"; + sha1 = "3c4b199b98bda274bd308830d4c0f2b1058b00f7"; }; }; - "lodash._basecopy-3.0.1" = { - name = "lodash._basecopy"; - packageName = "lodash._basecopy"; - version = "3.0.1"; + "postcss-unrgba-1.1.1" = { + name = "postcss-unrgba"; + packageName = "postcss-unrgba"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz"; - sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"; + url = "https://registry.npmjs.org/postcss-unrgba/-/postcss-unrgba-1.1.1.tgz"; + sha1 = "62ef1627bd4c142c118bb6c02c536729f6d843bb"; }; }; - "lodash._basetostring-3.0.1" = { - name = "lodash._basetostring"; - packageName = "lodash._basetostring"; - version = "3.0.1"; + "postcss-unroot-1.0.2" = { + name = "postcss-unroot"; + packageName = "postcss-unroot"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz"; - sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5"; + url = "https://registry.npmjs.org/postcss-unroot/-/postcss-unroot-1.0.2.tgz"; + sha1 = "4441bc206c99c4818bcbd014f49dba1cb9e9b47f"; }; }; - "lodash._basevalues-3.0.0" = { - name = "lodash._basevalues"; - packageName = "lodash._basevalues"; - version = "3.0.0"; + "css-mediaquery-0.1.2" = { + name = "css-mediaquery"; + packageName = "css-mediaquery"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz"; - sha1 = "5b775762802bde3d3297503e26300820fdf661b7"; + url = "https://registry.npmjs.org/css-mediaquery/-/css-mediaquery-0.1.2.tgz"; + sha1 = "6a2c37344928618631c54bd33cedd301da18bea0"; }; }; - "lodash._isiterateecall-3.0.9" = { - name = "lodash._isiterateecall"; - packageName = "lodash._isiterateecall"; - version = "3.0.9"; + "comment-regex-1.0.0" = { + name = "comment-regex"; + packageName = "comment-regex"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz"; - sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c"; + url = "https://registry.npmjs.org/comment-regex/-/comment-regex-1.0.0.tgz"; + sha1 = "7dd70268c83648a9c4cc19bf472d52e64f63918d"; }; }; - "lodash.escape-3.2.0" = { - name = "lodash.escape"; - packageName = "lodash.escape"; - version = "3.2.0"; + "postcss-scss-0.3.1" = { + name = "postcss-scss"; + packageName = "postcss-scss"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz"; - sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698"; + url = "https://registry.npmjs.org/postcss-scss/-/postcss-scss-0.3.1.tgz"; + sha1 = "65c610d8e2a7ee0e62b1835b71b8870734816e4b"; }; }; - "lodash.keys-3.1.2" = { - name = "lodash.keys"; - packageName = "lodash.keys"; - version = "3.1.2"; + "string.prototype.repeat-0.2.0" = { + name = "string.prototype.repeat"; + packageName = "string.prototype.repeat"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz"; - sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a"; + url = "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz"; + sha1 = "aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf"; }; }; - "lodash.templatesettings-3.1.1" = { - name = "lodash.templatesettings"; - packageName = "lodash.templatesettings"; - version = "3.1.1"; + "postcss-animation-data-0.0.4" = { + name = "postcss-animation-data"; + packageName = "postcss-animation-data"; + version = "0.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz"; - sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5"; + url = "https://registry.npmjs.org/postcss-animation-data/-/postcss-animation-data-0.0.4.tgz"; + sha1 = "42ad0699bf9d627a014d98a3263e997ff5409fdf"; }; }; - "lodash._root-3.0.1" = { - name = "lodash._root"; - packageName = "lodash._root"; - version = "3.0.1"; + "postcss-animation.css-data-0.1.0" = { + name = "postcss-animation.css-data"; + packageName = "postcss-animation.css-data"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz"; - sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692"; + url = "https://registry.npmjs.org/postcss-animation.css-data/-/postcss-animation.css-data-0.1.0.tgz"; + sha1 = "3a33a351f18df7a9cb70abe1188f8809bc750eab"; }; }; - "clone-stats-0.0.1" = { - name = "clone-stats"; - packageName = "clone-stats"; - version = "0.0.1"; + "postcss-magic.css-data-0.1.0" = { + name = "postcss-magic.css-data"; + packageName = "postcss-magic.css-data"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz"; - sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1"; + url = "https://registry.npmjs.org/postcss-magic.css-data/-/postcss-magic.css-data-0.1.0.tgz"; + sha1 = "e83f49bdccb64dc27f5b9efa31b1cc411a7fbedf"; }; }; - "make-dir-1.0.0" = { - name = "make-dir"; - packageName = "make-dir"; - version = "1.0.0"; + "postcss-mimic.css-data-0.0.2" = { + name = "postcss-mimic.css-data"; + packageName = "postcss-mimic.css-data"; + version = "0.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/make-dir/-/make-dir-1.0.0.tgz"; - sha1 = "97a011751e91dd87cfadef58832ebb04936de978"; + url = "https://registry.npmjs.org/postcss-mimic.css-data/-/postcss-mimic.css-data-0.0.2.tgz"; + sha1 = "2f2e14e5d8767dcc19c3a6a6b847bc067cf1b1a3"; }; }; - "p-pipe-1.1.0" = { - name = "p-pipe"; - packageName = "p-pipe"; - version = "1.1.0"; + "postcss-tuesday.css-data-0.1.0" = { + name = "postcss-tuesday.css-data"; + packageName = "postcss-tuesday.css-data"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/p-pipe/-/p-pipe-1.1.0.tgz"; - sha1 = "2e9dc7cc57ce67d2ce2db348ca03f28731854075"; + url = "https://registry.npmjs.org/postcss-tuesday.css-data/-/postcss-tuesday.css-data-0.1.0.tgz"; + sha1 = "9811ae284e276a6a20d7fd8356577e8335bdace1"; }; }; - "exec-buffer-3.2.0" = { - name = "exec-buffer"; - packageName = "exec-buffer"; - version = "3.2.0"; + "mathjs-3.18.0" = { + name = "mathjs"; + packageName = "mathjs"; + version = "3.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz"; - sha1 = "b1686dbd904c7cf982e652c1f5a79b1e5573082b"; + url = "https://registry.npmjs.org/mathjs/-/mathjs-3.18.0.tgz"; + sha1 = "9d0162f31088459c3093f43e363d6a7ae7acf9d5"; }; }; - "is-png-1.1.0" = { - name = "is-png"; - packageName = "is-png"; - version = "1.1.0"; + "named-js-regexp-1.3.3" = { + name = "named-js-regexp"; + packageName = "named-js-regexp"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz"; - sha1 = "d574b12bf275c0350455570b0e5b57ab062077ce"; + url = "https://registry.npmjs.org/named-js-regexp/-/named-js-regexp-1.3.3.tgz"; + sha1 = "a2eb1655c74cb82213a4fc82777dfb67b895d8c8"; }; }; - "execa-0.7.0" = { - name = "execa"; - packageName = "execa"; - version = "0.7.0"; + "complex.js-2.0.4" = { + name = "complex.js"; + packageName = "complex.js"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"; - sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; + url = "https://registry.npmjs.org/complex.js/-/complex.js-2.0.4.tgz"; + sha1 = "d8e7cfb9652d1e853e723386421c1a0ca7a48373"; }; }; - "p-finally-1.0.0" = { - name = "p-finally"; - packageName = "p-finally"; - version = "1.0.0"; + "decimal.js-9.0.1" = { + name = "decimal.js"; + packageName = "decimal.js"; + version = "9.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"; - sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-9.0.1.tgz"; + sha1 = "1cc8b228177da7ab6498c1cc06eb130a290e6e1e"; }; }; - "pify-3.0.0" = { - name = "pify"; - packageName = "pify"; - version = "3.0.0"; + "fraction.js-4.0.4" = { + name = "fraction.js"; + packageName = "fraction.js"; + version = "4.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"; - sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; + url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.0.4.tgz"; + sha1 = "04e567110718adf7b52974a10434ab4c67a5183e"; }; }; - "tempfile-2.0.0" = { - name = "tempfile"; - packageName = "tempfile"; - version = "2.0.0"; + "seed-random-2.2.0" = { + name = "seed-random"; + packageName = "seed-random"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz"; - sha1 = "6b0446856a9b1114d1856ffcbe509cccb0977265"; + url = "https://registry.npmjs.org/seed-random/-/seed-random-2.2.0.tgz"; + sha1 = "2a9b19e250a817099231a5b99a4daf80b7fbed54"; }; }; - "cross-spawn-5.1.0" = { - name = "cross-spawn"; - packageName = "cross-spawn"; - version = "5.1.0"; + "tiny-emitter-2.0.2" = { + name = "tiny-emitter"; + packageName = "tiny-emitter"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"; - sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; + url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.2.tgz"; + sha1 = "82d27468aca5ade8e5fd1e6d22b57dd43ebdfb7c"; }; }; - "get-stream-3.0.0" = { - name = "get-stream"; - packageName = "get-stream"; - version = "3.0.0"; + "typed-function-0.10.6" = { + name = "typed-function"; + packageName = "typed-function"; + version = "0.10.6"; src = fetchurl { - url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; - sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; + url = "https://registry.npmjs.org/typed-function/-/typed-function-0.10.6.tgz"; + sha1 = "314aa0ea72bd586de5920095559683e20b01688b"; }; }; - "is-stream-1.1.0" = { - name = "is-stream"; - packageName = "is-stream"; - version = "1.1.0"; + "sprintf-js-1.1.1" = { + name = "sprintf-js"; + packageName = "sprintf-js"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; - sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; + url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz"; + sha1 = "36be78320afe5801f6cea3ee78b6e5aab940ea0c"; }; }; - "npm-run-path-2.0.2" = { - name = "npm-run-path"; - packageName = "npm-run-path"; - version = "2.0.2"; + "ase-util-1.0.1" = { + name = "ase-util"; + packageName = "ase-util"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; - sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; + url = "https://registry.npmjs.org/ase-util/-/ase-util-1.0.1.tgz"; + sha1 = "c345af1f717cde6239f5cf00c3efdde99dcfc40c"; }; }; - "strip-eof-1.0.0" = { - name = "strip-eof"; - packageName = "strip-eof"; - version = "1.0.0"; + "iconv-lite-0.4.19" = { + name = "iconv-lite"; + packageName = "iconv-lite"; + version = "0.4.19"; src = fetchurl { - url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; - sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"; + sha1 = "f7468f60135f5e5dad3399c0a81be9a1603a082b"; }; }; - "lru-cache-4.1.1" = { - name = "lru-cache"; - packageName = "lru-cache"; - version = "4.1.1"; + "yargs-3.32.0" = { + name = "yargs"; + packageName = "yargs"; + version = "3.32.0"; src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz"; - sha1 = "622e32e82488b49279114a4f9ecf45e7cd6bba55"; + url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz"; + sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995"; }; }; - "shebang-command-1.2.0" = { - name = "shebang-command"; - packageName = "shebang-command"; - version = "1.2.0"; + "cliui-3.2.0" = { + name = "cliui"; + packageName = "cliui"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; - sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; + url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"; + sha1 = "120601537a916d29940f934da3b48d585a39213d"; }; }; - "yallist-2.1.2" = { - name = "yallist"; - packageName = "yallist"; - version = "2.1.2"; + "os-locale-1.4.0" = { + name = "os-locale"; + packageName = "os-locale"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; + url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"; + sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9"; }; }; - "shebang-regex-1.0.0" = { - name = "shebang-regex"; - packageName = "shebang-regex"; - version = "1.0.0"; + "window-size-0.1.4" = { + name = "window-size"; + packageName = "window-size"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; - sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; + url = "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz"; + sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876"; }; }; - "path-key-2.0.1" = { - name = "path-key"; - packageName = "path-key"; - version = "2.0.1"; + "y18n-3.2.1" = { + name = "y18n"; + packageName = "y18n"; + version = "3.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; - sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; + url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"; + sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; }; }; - "temp-dir-1.0.0" = { - name = "temp-dir"; - packageName = "temp-dir"; - version = "1.0.0"; + "wrap-ansi-2.1.0" = { + name = "wrap-ansi"; + packageName = "wrap-ansi"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"; - sha1 = "0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"; + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; + sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; }; }; - "bin-build-2.2.0" = { - name = "bin-build"; - packageName = "bin-build"; - version = "2.2.0"; + "lcid-1.0.0" = { + name = "lcid"; + packageName = "lcid"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/bin-build/-/bin-build-2.2.0.tgz"; - sha1 = "11f8dd61f70ffcfa2bdcaa5b46f5e8fedd4221cc"; + url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"; + sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; }; }; - "bin-wrapper-3.0.2" = { - name = "bin-wrapper"; - packageName = "bin-wrapper"; - version = "3.0.2"; + "invert-kv-1.0.0" = { + name = "invert-kv"; + packageName = "invert-kv"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-3.0.2.tgz"; - sha1 = "67d3306262e4b1a5f2f88ee23464f6a655677aeb"; + url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"; + sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; }; }; - "logalot-2.1.0" = { - name = "logalot"; - packageName = "logalot"; - version = "2.1.0"; + "calipers-2.0.0" = { + name = "calipers"; + packageName = "calipers"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz"; - sha1 = "5f8e8c90d304edf12530951a5554abb8c5e3f552"; + url = "https://registry.npmjs.org/calipers/-/calipers-2.0.0.tgz"; + sha1 = "bdf221c6a62f603b8ddd9340cacd9c79c1a03fce"; }; }; - "archive-type-3.2.0" = { - name = "archive-type"; - packageName = "archive-type"; - version = "3.2.0"; + "calipers-svg-2.0.0" = { + name = "calipers-svg"; + packageName = "calipers-svg"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/archive-type/-/archive-type-3.2.0.tgz"; - sha1 = "9cd9c006957ebe95fadad5bd6098942a813737f6"; + url = "https://registry.npmjs.org/calipers-svg/-/calipers-svg-2.0.0.tgz"; + sha1 = "666254d5f1ea66d2052ed82d6d79b8bf10acbb71"; }; }; - "decompress-3.0.0" = { - name = "decompress"; - packageName = "decompress"; - version = "3.0.0"; + "url-parse-1.2.0" = { + name = "url-parse"; + packageName = "url-parse"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/decompress/-/decompress-3.0.0.tgz"; - sha1 = "af1dd50d06e3bfc432461d37de11b38c0d991bed"; + url = "https://registry.npmjs.org/url-parse/-/url-parse-1.2.0.tgz"; + sha1 = "3a19e8aaa6d023ddd27dcc44cb4fc8f7fec23986"; }; }; - "download-4.4.3" = { - name = "download"; - packageName = "download"; - version = "4.4.3"; + "querystringify-1.0.0" = { + name = "querystringify"; + packageName = "querystringify"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/download/-/download-4.4.3.tgz"; - sha1 = "aa55fdad392d95d4b68e8c2be03e0c2aa21ba9ac"; + url = "https://registry.npmjs.org/querystringify/-/querystringify-1.0.0.tgz"; + sha1 = "6286242112c5b712fa654e526652bf6a13ff05cb"; }; }; - "exec-series-1.0.3" = { - name = "exec-series"; - packageName = "exec-series"; - version = "1.0.3"; + "requires-port-1.0.0" = { + name = "requires-port"; + packageName = "requires-port"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/exec-series/-/exec-series-1.0.3.tgz"; - sha1 = "6d257a9beac482a872c7783bc8615839fc77143a"; + url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"; + sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; }; }; - "tempfile-1.1.1" = { - name = "tempfile"; - packageName = "tempfile"; - version = "1.1.1"; + "assets-3.0.0" = { + name = "assets"; + packageName = "assets"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz"; - sha1 = "5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2"; + url = "https://registry.npmjs.org/assets/-/assets-3.0.0.tgz"; + sha1 = "0899b030c76701bf9b4a015a0da2ed18ecc1d833"; }; }; - "url-regex-3.2.0" = { - name = "url-regex"; - packageName = "url-regex"; - version = "3.2.0"; + "postcss-functions-3.0.0" = { + name = "postcss-functions"; + packageName = "postcss-functions"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz"; - sha1 = "dbad1e0c9e29e105dd0b1f09f6862f7fdb482724"; + url = "https://registry.npmjs.org/postcss-functions/-/postcss-functions-3.0.0.tgz"; + sha1 = "0e94d01444700a481de20de4d55fb2640564250e"; }; }; - "file-type-3.9.0" = { - name = "file-type"; - packageName = "file-type"; - version = "3.9.0"; + "async-2.6.0" = { + name = "async"; + packageName = "async"; + version = "2.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz"; - sha1 = "257a078384d1db8087bc449d107d52a52672b9e9"; + url = "https://registry.npmjs.org/async/-/async-2.6.0.tgz"; + sha1 = "61a29abb6fcc026fea77e56d1c6ec53a795951f4"; }; }; - "buffer-to-vinyl-1.1.0" = { - name = "buffer-to-vinyl"; - packageName = "buffer-to-vinyl"; - version = "1.1.0"; + "calipers-gif-2.0.0" = { + name = "calipers-gif"; + packageName = "calipers-gif"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/buffer-to-vinyl/-/buffer-to-vinyl-1.1.0.tgz"; - sha1 = "00f15faee3ab7a1dda2cde6d9121bffdd07b2262"; + url = "https://registry.npmjs.org/calipers-gif/-/calipers-gif-2.0.0.tgz"; + sha1 = "b5eefec3064a77c6dcdbd5bdc51735a01bafdc37"; }; }; - "decompress-tar-3.1.0" = { - name = "decompress-tar"; - packageName = "decompress-tar"; - version = "3.1.0"; + "calipers-jpeg-2.0.0" = { + name = "calipers-jpeg"; + packageName = "calipers-jpeg"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/decompress-tar/-/decompress-tar-3.1.0.tgz"; - sha1 = "217c789f9b94450efaadc5c5e537978fc333c466"; + url = "https://registry.npmjs.org/calipers-jpeg/-/calipers-jpeg-2.0.0.tgz"; + sha1 = "06d56a53f62717dd809cb956cf64423ce693465b"; }; }; - "decompress-tarbz2-3.1.0" = { - name = "decompress-tarbz2"; - packageName = "decompress-tarbz2"; - version = "3.1.0"; + "calipers-png-2.0.0" = { + name = "calipers-png"; + packageName = "calipers-png"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-3.1.0.tgz"; - sha1 = "8b23935681355f9f189d87256a0f8bdd96d9666d"; + url = "https://registry.npmjs.org/calipers-png/-/calipers-png-2.0.0.tgz"; + sha1 = "1d0d20e5c1ae5f79b74d5286a2e97f59bb70b658"; }; }; - "decompress-targz-3.1.0" = { - name = "decompress-targz"; - packageName = "decompress-targz"; - version = "3.1.0"; + "calipers-webp-2.0.0" = { + name = "calipers-webp"; + packageName = "calipers-webp"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/decompress-targz/-/decompress-targz-3.1.0.tgz"; - sha1 = "b2c13df98166268991b715d6447f642e9696f5a0"; + url = "https://registry.npmjs.org/calipers-webp/-/calipers-webp-2.0.0.tgz"; + sha1 = "e126ece2f84cd71779612bfa2b2653cd95cea77a"; }; }; - "decompress-unzip-3.4.0" = { - name = "decompress-unzip"; - packageName = "decompress-unzip"; - version = "3.4.0"; + "url-0.10.3" = { + name = "url"; + packageName = "url"; + version = "0.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-3.4.0.tgz"; - sha1 = "61475b4152066bbe3fee12f9d629d15fe6478eeb"; + url = "https://registry.npmjs.org/url/-/url-0.10.3.tgz"; + sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; }; }; - "stream-combiner2-1.1.1" = { - name = "stream-combiner2"; - packageName = "stream-combiner2"; - version = "1.1.1"; + "punycode-1.3.2" = { + name = "punycode"; + packageName = "punycode"; + version = "1.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz"; - sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe"; + url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; + sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; }; }; - "vinyl-assign-1.2.1" = { - name = "vinyl-assign"; - packageName = "vinyl-assign"; - version = "1.2.1"; + "querystring-0.2.0" = { + name = "querystring"; + packageName = "querystring"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/vinyl-assign/-/vinyl-assign-1.2.1.tgz"; - sha1 = "4d198891b5515911d771a8cd9c5480a46a074a45"; + url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; + sha1 = "b209849203bb25df820da756e747005878521620"; }; }; - "vinyl-fs-2.4.4" = { - name = "vinyl-fs"; - packageName = "vinyl-fs"; - version = "2.4.4"; + "file-type-4.4.0" = { + name = "file-type"; + packageName = "file-type"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz"; - sha1 = "be6ff3270cb55dfd7d3063640de81f25d7532239"; + url = "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz"; + sha1 = "1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5"; }; }; - "uuid-2.0.3" = { - name = "uuid"; - packageName = "uuid"; - version = "2.0.3"; + "gulp-util-3.0.8" = { + name = "gulp-util"; + packageName = "gulp-util"; + version = "3.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz"; - sha1 = "67e2e863797215530dff318e5bf9dcebfd47b21a"; + url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz"; + sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; }; }; - "vinyl-1.2.0" = { - name = "vinyl"; - packageName = "vinyl"; - version = "1.2.0"; + "image-size-0.5.5" = { + name = "image-size"; + packageName = "image-size"; + version = "0.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz"; - sha1 = "5c88036cf565e5df05558bfc911f8656df218884"; + url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz"; + sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c"; }; }; - "is-tar-1.0.0" = { - name = "is-tar"; - packageName = "is-tar"; - version = "1.0.0"; + "imagemin-5.3.1" = { + name = "imagemin"; + packageName = "imagemin"; + version = "5.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-tar/-/is-tar-1.0.0.tgz"; - sha1 = "2f6b2e1792c1f5bb36519acaa9d65c0d26fe853d"; + url = "https://registry.npmjs.org/imagemin/-/imagemin-5.3.1.tgz"; + sha1 = "f19c2eee1e71ba6c6558c515f9fc96680189a6d4"; }; }; - "object-assign-2.1.1" = { - name = "object-assign"; - packageName = "object-assign"; - version = "2.1.1"; + "imagemin-pngquant-5.0.1" = { + name = "imagemin-pngquant"; + packageName = "imagemin-pngquant"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz"; - sha1 = "43c36e5d569ff8e4816c4efa8be02d26967c18aa"; + url = "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-5.0.1.tgz"; + sha1 = "d8a329da553afa226b11ce62debe0b7e37b439e6"; }; }; - "strip-dirs-1.1.1" = { - name = "strip-dirs"; - packageName = "strip-dirs"; - version = "1.1.1"; + "pngquant-bin-3.1.1" = { + name = "pngquant-bin"; + packageName = "pngquant-bin"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/strip-dirs/-/strip-dirs-1.1.1.tgz"; - sha1 = "960bbd1287844f3975a4558aa103a8255e2456a0"; + url = "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-3.1.1.tgz"; + sha1 = "d124d98a75a9487f40c1640b4dbfcbb2bd5a1fd1"; }; }; - "through2-0.6.5" = { - name = "through2"; - packageName = "through2"; - version = "0.6.5"; + "pretty-bytes-4.0.2" = { + name = "pretty-bytes"; + packageName = "pretty-bytes"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; - sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; + url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz"; + sha1 = "b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"; }; }; - "vinyl-0.4.6" = { - name = "vinyl"; - packageName = "vinyl"; - version = "0.4.6"; + "array-differ-1.0.0" = { + name = "array-differ"; + packageName = "array-differ"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz"; - sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847"; + url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz"; + sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031"; }; }; - "is-absolute-0.1.7" = { - name = "is-absolute"; - packageName = "is-absolute"; - version = "0.1.7"; + "beeper-1.1.1" = { + name = "beeper"; + packageName = "beeper"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz"; - sha1 = "847491119fccb5fb436217cc737f7faad50f603f"; + url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz"; + sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; }; }; - "is-natural-number-2.1.1" = { - name = "is-natural-number"; - packageName = "is-natural-number"; - version = "2.1.1"; + "dateformat-2.2.0" = { + name = "dateformat"; + packageName = "dateformat"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-natural-number/-/is-natural-number-2.1.1.tgz"; - sha1 = "7d4c5728377ef386c3e194a9911bf57c6dc335e7"; + url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; + sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062"; }; }; - "sum-up-1.0.3" = { - name = "sum-up"; - packageName = "sum-up"; - version = "1.0.3"; + "fancy-log-1.3.2" = { + name = "fancy-log"; + packageName = "fancy-log"; + version = "1.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/sum-up/-/sum-up-1.0.3.tgz"; - sha1 = "1c661f667057f63bcb7875aa1438bc162525156e"; + url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz"; + sha1 = "f41125e3d84f2e7d89a43d06d958c8f78be16be1"; }; }; - "is-relative-0.1.3" = { - name = "is-relative"; - packageName = "is-relative"; - version = "0.1.3"; + "gulplog-1.0.0" = { + name = "gulplog"; + packageName = "gulplog"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz"; - sha1 = "905fee8ae86f45b3ec614bc3c15c869df0876e82"; + url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz"; + sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5"; }; }; - "clone-0.2.0" = { - name = "clone"; - packageName = "clone"; - version = "0.2.0"; + "has-gulplog-0.1.0" = { + name = "has-gulplog"; + packageName = "has-gulplog"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz"; - sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"; + url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz"; + sha1 = "6414c82913697da51590397dafb12f22967811ce"; }; }; - "is-bzip2-1.0.0" = { - name = "is-bzip2"; - packageName = "is-bzip2"; - version = "1.0.0"; + "lodash._reescape-3.0.0" = { + name = "lodash._reescape"; + packageName = "lodash._reescape"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-bzip2/-/is-bzip2-1.0.0.tgz"; - sha1 = "5ee58eaa5a2e9c80e21407bedf23ae5ac091b3fc"; + url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz"; + sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"; }; }; - "seek-bzip-1.0.5" = { - name = "seek-bzip"; - packageName = "seek-bzip"; - version = "1.0.5"; + "lodash._reevaluate-3.0.0" = { + name = "lodash._reevaluate"; + packageName = "lodash._reevaluate"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz"; - sha1 = "cfe917cb3d274bcffac792758af53173eb1fabdc"; + url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz"; + sha1 = "58bc74c40664953ae0b124d806996daca431e2ed"; }; }; - "commander-2.8.1" = { - name = "commander"; - packageName = "commander"; - version = "2.8.1"; + "lodash._reinterpolate-3.0.0" = { + name = "lodash._reinterpolate"; + packageName = "lodash._reinterpolate"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz"; - sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4"; + url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; + sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; }; }; - "is-gzip-1.0.0" = { - name = "is-gzip"; - packageName = "is-gzip"; - version = "1.0.0"; + "lodash.template-3.6.2" = { + name = "lodash.template"; + packageName = "lodash.template"; + version = "3.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz"; - sha1 = "6ca8b07b99c77998025900e555ced8ed80879a83"; + url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz"; + sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f"; }; }; - "is-zip-1.0.0" = { - name = "is-zip"; - packageName = "is-zip"; - version = "1.0.0"; + "multipipe-0.1.2" = { + name = "multipipe"; + packageName = "multipipe"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-zip/-/is-zip-1.0.0.tgz"; - sha1 = "47b0a8ff4d38a76431ccfd99a8e15a4c86ba2325"; + url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; + sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; }; }; - "read-all-stream-3.1.0" = { - name = "read-all-stream"; - packageName = "read-all-stream"; - version = "3.1.0"; + "replace-ext-0.0.1" = { + name = "replace-ext"; + packageName = "replace-ext"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz"; - sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa"; + url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz"; + sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924"; }; }; - "stat-mode-0.2.2" = { - name = "stat-mode"; - packageName = "stat-mode"; - version = "0.2.2"; + "vinyl-0.5.3" = { + name = "vinyl"; + packageName = "vinyl"; + version = "0.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz"; - sha1 = "e6c80b623123d7d80cf132ce538f346289072502"; + url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz"; + sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde"; }; }; - "yauzl-2.8.0" = { - name = "yauzl"; - packageName = "yauzl"; - version = "2.8.0"; + "ansi-gray-0.1.1" = { + name = "ansi-gray"; + packageName = "ansi-gray"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/yauzl/-/yauzl-2.8.0.tgz"; - sha1 = "79450aff22b2a9c5a41ef54e02db907ccfbf9ee2"; + url = "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz"; + sha1 = "2962cf54ec9792c48510a3deb524436861ef7251"; }; }; - "fd-slicer-1.0.1" = { - name = "fd-slicer"; - packageName = "fd-slicer"; - version = "1.0.1"; + "color-support-1.1.3" = { + name = "color-support"; + packageName = "color-support"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz"; - sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"; + url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz"; + sha1 = "93834379a1cc9a0c61f82f52f0d04322251bd5a2"; }; }; - "buffer-crc32-0.2.13" = { - name = "buffer-crc32"; - packageName = "buffer-crc32"; - version = "0.2.13"; + "time-stamp-1.1.0" = { + name = "time-stamp"; + packageName = "time-stamp"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; - sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"; + url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz"; + sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3"; }; }; - "pend-1.2.0" = { - name = "pend"; - packageName = "pend"; - version = "1.2.0"; + "ansi-wrap-0.1.0" = { + name = "ansi-wrap"; + packageName = "ansi-wrap"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz"; - sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; + url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz"; + sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf"; }; }; - "duplexer2-0.1.4" = { - name = "duplexer2"; - packageName = "duplexer2"; - version = "0.1.4"; + "glogg-1.0.0" = { + name = "glogg"; + packageName = "glogg"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"; - sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1"; + url = "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz"; + sha1 = "7fe0f199f57ac906cf512feead8f90ee4a284fc5"; }; }; - "duplexify-3.5.0" = { - name = "duplexify"; - packageName = "duplexify"; - version = "3.5.0"; + "sparkles-1.0.0" = { + name = "sparkles"; + packageName = "sparkles"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.0.tgz"; - sha1 = "1aa773002e1578457e9d9d4a50b0ccaaebcbd604"; + url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz"; + sha1 = "1acbbfb592436d10bbe8f785b7cc6f82815012c3"; }; }; - "glob-stream-5.3.5" = { - name = "glob-stream"; - packageName = "glob-stream"; - version = "5.3.5"; + "lodash._basecopy-3.0.1" = { + name = "lodash._basecopy"; + packageName = "lodash._basecopy"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz"; - sha1 = "a55665a9a8ccdc41915a87c701e32d4e016fad22"; + url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz"; + sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"; }; }; - "gulp-sourcemaps-1.6.0" = { - name = "gulp-sourcemaps"; - packageName = "gulp-sourcemaps"; - version = "1.6.0"; + "lodash._basetostring-3.0.1" = { + name = "lodash._basetostring"; + packageName = "lodash._basetostring"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz"; - sha1 = "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c"; + url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz"; + sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5"; }; }; - "is-valid-glob-0.3.0" = { - name = "is-valid-glob"; - packageName = "is-valid-glob"; - version = "0.3.0"; + "lodash._basevalues-3.0.0" = { + name = "lodash._basevalues"; + packageName = "lodash._basevalues"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz"; - sha1 = "d4b55c69f51886f9b65c70d6c2622d37e29f48fe"; + url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz"; + sha1 = "5b775762802bde3d3297503e26300820fdf661b7"; }; }; - "lazystream-1.0.0" = { - name = "lazystream"; - packageName = "lazystream"; - version = "1.0.0"; + "lodash._isiterateecall-3.0.9" = { + name = "lodash._isiterateecall"; + packageName = "lodash._isiterateecall"; + version = "3.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz"; - sha1 = "f6995fe0f820392f61396be89462407bb77168e4"; + url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz"; + sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c"; }; }; - "lodash.isequal-4.5.0" = { - name = "lodash.isequal"; - packageName = "lodash.isequal"; - version = "4.5.0"; + "lodash.escape-3.2.0" = { + name = "lodash.escape"; + packageName = "lodash.escape"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz"; - sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0"; + url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz"; + sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698"; }; }; - "merge-stream-1.0.1" = { - name = "merge-stream"; - packageName = "merge-stream"; - version = "1.0.1"; + "lodash.keys-3.1.2" = { + name = "lodash.keys"; + packageName = "lodash.keys"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz"; - sha1 = "4041202d508a342ba00174008df0c251b8c135e1"; + url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz"; + sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a"; }; }; - "strip-bom-stream-1.0.0" = { - name = "strip-bom-stream"; - packageName = "strip-bom-stream"; - version = "1.0.0"; + "lodash.templatesettings-3.1.1" = { + name = "lodash.templatesettings"; + packageName = "lodash.templatesettings"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz"; - sha1 = "e7144398577d51a6bed0fa1994fa05f43fd988ee"; + url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz"; + sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5"; }; }; - "through2-filter-2.0.0" = { - name = "through2-filter"; - packageName = "through2-filter"; - version = "2.0.0"; + "lodash._root-3.0.1" = { + name = "lodash._root"; + packageName = "lodash._root"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz"; - sha1 = "60bc55a0dacb76085db1f9dae99ab43f83d622ec"; + url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz"; + sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692"; }; }; - "vali-date-1.0.0" = { - name = "vali-date"; - packageName = "vali-date"; - version = "1.0.0"; + "clone-stats-0.0.1" = { + name = "clone-stats"; + packageName = "clone-stats"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz"; - sha1 = "1b904a59609fb328ef078138420934f6b86709a6"; + url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz"; + sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1"; }; }; - "end-of-stream-1.0.0" = { - name = "end-of-stream"; - packageName = "end-of-stream"; - version = "1.0.0"; + "make-dir-1.1.0" = { + name = "make-dir"; + packageName = "make-dir"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz"; - sha1 = "d4596e702734a93e40e9af864319eabd99ff2f0e"; + url = "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz"; + sha1 = "19b4369fe48c116f53c2af95ad102c0e39e85d51"; }; }; - "stream-shift-1.0.0" = { - name = "stream-shift"; - packageName = "stream-shift"; - version = "1.0.0"; + "p-pipe-1.2.0" = { + name = "p-pipe"; + packageName = "p-pipe"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz"; - sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; + url = "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz"; + sha1 = "4b1a11399a11520a67790ee5a0c1d5881d6befe9"; }; }; - "once-1.3.3" = { - name = "once"; - packageName = "once"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz"; - sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20"; + "pify-3.0.0" = { + name = "pify"; + packageName = "pify"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"; + sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; }; }; - "glob-parent-3.1.0" = { - name = "glob-parent"; - packageName = "glob-parent"; - version = "3.1.0"; + "exec-buffer-3.2.0" = { + name = "exec-buffer"; + packageName = "exec-buffer"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz"; - sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; + url = "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz"; + sha1 = "b1686dbd904c7cf982e652c1f5a79b1e5573082b"; }; }; - "ordered-read-streams-0.3.0" = { - name = "ordered-read-streams"; - packageName = "ordered-read-streams"; - version = "0.3.0"; + "is-png-1.1.0" = { + name = "is-png"; + packageName = "is-png"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz"; - sha1 = "7137e69b3298bb342247a1bbee3881c80e2fd78b"; + url = "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz"; + sha1 = "d574b12bf275c0350455570b0e5b57ab062077ce"; }; }; - "to-absolute-glob-0.1.1" = { - name = "to-absolute-glob"; - packageName = "to-absolute-glob"; - version = "0.1.1"; + "execa-0.7.0" = { + name = "execa"; + packageName = "execa"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz"; - sha1 = "1cdfa472a9ef50c239ee66999b662ca0eb39937f"; + url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"; + sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; }; }; - "unique-stream-2.2.1" = { - name = "unique-stream"; - packageName = "unique-stream"; - version = "2.2.1"; + "p-finally-1.0.0" = { + name = "p-finally"; + packageName = "p-finally"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz"; - sha1 = "5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369"; + url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"; + sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; }; }; - "is-glob-3.1.0" = { - name = "is-glob"; - packageName = "is-glob"; - version = "3.1.0"; + "tempfile-2.0.0" = { + name = "tempfile"; + packageName = "tempfile"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"; - sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; + url = "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz"; + sha1 = "6b0446856a9b1114d1856ffcbe509cccb0977265"; }; }; - "path-dirname-1.0.2" = { - name = "path-dirname"; - packageName = "path-dirname"; - version = "1.0.2"; + "cross-spawn-5.1.0" = { + name = "cross-spawn"; + packageName = "cross-spawn"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz"; - sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0"; + url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"; + sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; }; }; - "is-extglob-2.1.1" = { - name = "is-extglob"; - packageName = "is-extglob"; - version = "2.1.1"; + "get-stream-3.0.0" = { + name = "get-stream"; + packageName = "get-stream"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; + url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; + sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; }; }; - "extend-shallow-2.0.1" = { - name = "extend-shallow"; - packageName = "extend-shallow"; - version = "2.0.1"; + "is-stream-1.1.0" = { + name = "is-stream"; + packageName = "is-stream"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"; - sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; + url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; + sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; }; }; - "first-chunk-stream-1.0.0" = { - name = "first-chunk-stream"; - packageName = "first-chunk-stream"; - version = "1.0.0"; + "npm-run-path-2.0.2" = { + name = "npm-run-path"; + packageName = "npm-run-path"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz"; - sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"; + url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; + sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; }; }; - "caw-1.2.0" = { - name = "caw"; - packageName = "caw"; - version = "1.2.0"; + "strip-eof-1.0.0" = { + name = "strip-eof"; + packageName = "strip-eof"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/caw/-/caw-1.2.0.tgz"; - sha1 = "ffb226fe7efc547288dc62ee3e97073c212d1034"; + url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; + sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; }; }; - "each-async-1.1.1" = { - name = "each-async"; - packageName = "each-async"; - version = "1.1.1"; + "lru-cache-4.1.1" = { + name = "lru-cache"; + packageName = "lru-cache"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz"; - sha1 = "dee5229bdf0ab6ba2012a395e1b869abf8813473"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz"; + sha1 = "622e32e82488b49279114a4f9ecf45e7cd6bba55"; }; }; - "filenamify-1.2.1" = { - name = "filenamify"; - packageName = "filenamify"; - version = "1.2.1"; + "shebang-command-1.2.0" = { + name = "shebang-command"; + packageName = "shebang-command"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/filenamify/-/filenamify-1.2.1.tgz"; - sha1 = "a9f2ffd11c503bed300015029272378f1f1365a5"; + url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; + sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; }; }; - "got-5.7.1" = { - name = "got"; - packageName = "got"; - version = "5.7.1"; + "yallist-2.1.2" = { + name = "yallist"; + packageName = "yallist"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-5.7.1.tgz"; - sha1 = "5f81635a61e4a6589f180569ea4e381680a51f35"; + url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; + sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; }; }; - "gulp-decompress-1.2.0" = { - name = "gulp-decompress"; - packageName = "gulp-decompress"; - version = "1.2.0"; + "shebang-regex-1.0.0" = { + name = "shebang-regex"; + packageName = "shebang-regex"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-decompress/-/gulp-decompress-1.2.0.tgz"; - sha1 = "8eeb65a5e015f8ed8532cafe28454960626f0dc7"; + url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; + sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; }; }; - "gulp-rename-1.2.2" = { - name = "gulp-rename"; - packageName = "gulp-rename"; - version = "1.2.2"; + "path-key-2.0.1" = { + name = "path-key"; + packageName = "path-key"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.2.2.tgz"; - sha1 = "3ad4428763f05e2764dec1c67d868db275687817"; + url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; + sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; }; }; - "is-url-1.2.2" = { - name = "is-url"; - packageName = "is-url"; - version = "1.2.2"; + "temp-dir-1.0.0" = { + name = "temp-dir"; + packageName = "temp-dir"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-url/-/is-url-1.2.2.tgz"; - sha1 = "498905a593bf47cc2d9e7f738372bbf7696c7f26"; + url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"; + sha1 = "0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"; }; }; - "ware-1.3.0" = { - name = "ware"; - packageName = "ware"; - version = "1.3.0"; + "bin-build-2.2.0" = { + name = "bin-build"; + packageName = "bin-build"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz"; - sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4"; + url = "https://registry.npmjs.org/bin-build/-/bin-build-2.2.0.tgz"; + sha1 = "11f8dd61f70ffcfa2bdcaa5b46f5e8fedd4221cc"; }; }; - "get-proxy-1.1.0" = { - name = "get-proxy"; - packageName = "get-proxy"; - version = "1.1.0"; + "bin-wrapper-3.0.2" = { + name = "bin-wrapper"; + packageName = "bin-wrapper"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/get-proxy/-/get-proxy-1.1.0.tgz"; - sha1 = "894854491bc591b0f147d7ae570f5c678b7256eb"; + url = "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-3.0.2.tgz"; + sha1 = "67d3306262e4b1a5f2f88ee23464f6a655677aeb"; }; }; - "is-obj-1.0.1" = { - name = "is-obj"; - packageName = "is-obj"; - version = "1.0.1"; + "logalot-2.1.0" = { + name = "logalot"; + packageName = "logalot"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; - sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; + url = "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz"; + sha1 = "5f8e8c90d304edf12530951a5554abb8c5e3f552"; }; }; - "tunnel-agent-0.4.3" = { - name = "tunnel-agent"; - packageName = "tunnel-agent"; - version = "0.4.3"; + "archive-type-3.2.0" = { + name = "archive-type"; + packageName = "archive-type"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz"; - sha1 = "6373db76909fe570e08d73583365ed828a74eeeb"; + url = "https://registry.npmjs.org/archive-type/-/archive-type-3.2.0.tgz"; + sha1 = "9cd9c006957ebe95fadad5bd6098942a813737f6"; }; }; - "onetime-1.1.0" = { - name = "onetime"; - packageName = "onetime"; - version = "1.1.0"; + "decompress-3.0.0" = { + name = "decompress"; + packageName = "decompress"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz"; - sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"; + url = "https://registry.npmjs.org/decompress/-/decompress-3.0.0.tgz"; + sha1 = "af1dd50d06e3bfc432461d37de11b38c0d991bed"; }; }; - "filename-reserved-regex-1.0.0" = { - name = "filename-reserved-regex"; - packageName = "filename-reserved-regex"; - version = "1.0.0"; + "download-4.4.3" = { + name = "download"; + packageName = "download"; + version = "4.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz"; - sha1 = "e61cf805f0de1c984567d0386dc5df50ee5af7e4"; + url = "https://registry.npmjs.org/download/-/download-4.4.3.tgz"; + sha1 = "aa55fdad392d95d4b68e8c2be03e0c2aa21ba9ac"; }; }; - "strip-outer-1.0.0" = { - name = "strip-outer"; - packageName = "strip-outer"; - version = "1.0.0"; + "exec-series-1.0.3" = { + name = "exec-series"; + packageName = "exec-series"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.0.tgz"; - sha1 = "aac0ba60d2e90c5d4f275fd8869fd9a2d310ffb8"; + url = "https://registry.npmjs.org/exec-series/-/exec-series-1.0.3.tgz"; + sha1 = "6d257a9beac482a872c7783bc8615839fc77143a"; }; }; - "trim-repeated-1.0.0" = { - name = "trim-repeated"; - packageName = "trim-repeated"; - version = "1.0.0"; + "tempfile-1.1.1" = { + name = "tempfile"; + packageName = "tempfile"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz"; - sha1 = "e3646a2ea4e891312bf7eace6cfb05380bc01c21"; + url = "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz"; + sha1 = "5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2"; }; }; - "create-error-class-3.0.2" = { - name = "create-error-class"; - packageName = "create-error-class"; - version = "3.0.2"; + "url-regex-3.2.0" = { + name = "url-regex"; + packageName = "url-regex"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz"; - sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; + url = "https://registry.npmjs.org/url-regex/-/url-regex-3.2.0.tgz"; + sha1 = "dbad1e0c9e29e105dd0b1f09f6862f7fdb482724"; }; }; - "is-redirect-1.0.0" = { - name = "is-redirect"; - packageName = "is-redirect"; - version = "1.0.0"; + "file-type-3.9.0" = { + name = "file-type"; + packageName = "file-type"; + version = "3.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; - sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; + url = "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz"; + sha1 = "257a078384d1db8087bc449d107d52a52672b9e9"; }; }; - "is-retry-allowed-1.1.0" = { - name = "is-retry-allowed"; - packageName = "is-retry-allowed"; + "buffer-to-vinyl-1.1.0" = { + name = "buffer-to-vinyl"; + packageName = "buffer-to-vinyl"; version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz"; - sha1 = "11a060568b67339444033d0125a61a20d564fb34"; + url = "https://registry.npmjs.org/buffer-to-vinyl/-/buffer-to-vinyl-1.1.0.tgz"; + sha1 = "00f15faee3ab7a1dda2cde6d9121bffdd07b2262"; }; }; - "lowercase-keys-1.0.0" = { - name = "lowercase-keys"; - packageName = "lowercase-keys"; - version = "1.0.0"; + "decompress-tar-3.1.0" = { + name = "decompress-tar"; + packageName = "decompress-tar"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz"; - sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"; + url = "https://registry.npmjs.org/decompress-tar/-/decompress-tar-3.1.0.tgz"; + sha1 = "217c789f9b94450efaadc5c5e537978fc333c466"; }; }; - "node-status-codes-1.0.0" = { - name = "node-status-codes"; - packageName = "node-status-codes"; - version = "1.0.0"; + "decompress-tarbz2-3.1.0" = { + name = "decompress-tarbz2"; + packageName = "decompress-tarbz2"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz"; - sha1 = "5ae5541d024645d32a58fcddc9ceecea7ae3ac2f"; + url = "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-3.1.0.tgz"; + sha1 = "8b23935681355f9f189d87256a0f8bdd96d9666d"; }; }; - "timed-out-3.1.3" = { - name = "timed-out"; - packageName = "timed-out"; - version = "3.1.3"; + "decompress-targz-3.1.0" = { + name = "decompress-targz"; + packageName = "decompress-targz"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz"; - sha1 = "95860bfcc5c76c277f8f8326fd0f5b2e20eba217"; + url = "https://registry.npmjs.org/decompress-targz/-/decompress-targz-3.1.0.tgz"; + sha1 = "b2c13df98166268991b715d6447f642e9696f5a0"; }; }; - "unzip-response-1.0.2" = { - name = "unzip-response"; - packageName = "unzip-response"; - version = "1.0.2"; + "decompress-unzip-3.4.0" = { + name = "decompress-unzip"; + packageName = "decompress-unzip"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz"; - sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe"; + url = "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-3.4.0.tgz"; + sha1 = "61475b4152066bbe3fee12f9d629d15fe6478eeb"; }; }; - "url-parse-lax-1.0.0" = { - name = "url-parse-lax"; - packageName = "url-parse-lax"; - version = "1.0.0"; + "stream-combiner2-1.1.1" = { + name = "stream-combiner2"; + packageName = "stream-combiner2"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz"; - sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73"; + url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz"; + sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe"; }; }; - "capture-stack-trace-1.0.0" = { - name = "capture-stack-trace"; - packageName = "capture-stack-trace"; - version = "1.0.0"; + "vinyl-assign-1.2.1" = { + name = "vinyl-assign"; + packageName = "vinyl-assign"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz"; - sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d"; + url = "https://registry.npmjs.org/vinyl-assign/-/vinyl-assign-1.2.1.tgz"; + sha1 = "4d198891b5515911d771a8cd9c5480a46a074a45"; }; }; - "wrap-fn-0.1.5" = { - name = "wrap-fn"; - packageName = "wrap-fn"; - version = "0.1.5"; + "vinyl-fs-2.4.4" = { + name = "vinyl-fs"; + packageName = "vinyl-fs"; + version = "2.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz"; - sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845"; + url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz"; + sha1 = "be6ff3270cb55dfd7d3063640de81f25d7532239"; }; }; - "co-3.1.0" = { - name = "co"; - packageName = "co"; - version = "3.1.0"; + "uuid-2.0.3" = { + name = "uuid"; + packageName = "uuid"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz"; - sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78"; + url = "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz"; + sha1 = "67e2e863797215530dff318e5bf9dcebfd47b21a"; }; }; - "async-each-series-1.1.0" = { - name = "async-each-series"; - packageName = "async-each-series"; - version = "1.1.0"; + "vinyl-1.2.0" = { + name = "vinyl"; + packageName = "vinyl"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/async-each-series/-/async-each-series-1.1.0.tgz"; - sha1 = "f42fd8155d38f21a5b8ea07c28e063ed1700b138"; + url = "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz"; + sha1 = "5c88036cf565e5df05558bfc911f8656df218884"; }; }; - "ip-regex-1.0.3" = { - name = "ip-regex"; - packageName = "ip-regex"; - version = "1.0.3"; + "is-tar-1.0.0" = { + name = "is-tar"; + packageName = "is-tar"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz"; - sha1 = "dc589076f659f419c222039a33316f1c7387effd"; + url = "https://registry.npmjs.org/is-tar/-/is-tar-1.0.0.tgz"; + sha1 = "2f6b2e1792c1f5bb36519acaa9d65c0d26fe853d"; }; }; - "bin-check-2.0.0" = { - name = "bin-check"; - packageName = "bin-check"; - version = "2.0.0"; + "object-assign-2.1.1" = { + name = "object-assign"; + packageName = "object-assign"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/bin-check/-/bin-check-2.0.0.tgz"; - sha1 = "86f8e6f4253893df60dc316957f5af02acb05930"; + url = "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz"; + sha1 = "43c36e5d569ff8e4816c4efa8be02d26967c18aa"; }; }; - "bin-version-check-2.1.0" = { - name = "bin-version-check"; - packageName = "bin-version-check"; - version = "2.1.0"; + "strip-dirs-1.1.1" = { + name = "strip-dirs"; + packageName = "strip-dirs"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz"; - sha1 = "e4e5df290b9069f7d111324031efc13fdd11a5b0"; + url = "https://registry.npmjs.org/strip-dirs/-/strip-dirs-1.1.1.tgz"; + sha1 = "960bbd1287844f3975a4558aa103a8255e2456a0"; }; }; - "lazy-req-1.1.0" = { - name = "lazy-req"; - packageName = "lazy-req"; - version = "1.1.0"; + "through2-0.6.5" = { + name = "through2"; + packageName = "through2"; + version = "0.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/lazy-req/-/lazy-req-1.1.0.tgz"; - sha1 = "bdaebead30f8d824039ce0ce149d4daa07ba1fac"; + url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; + sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; }; }; - "os-filter-obj-1.0.3" = { - name = "os-filter-obj"; - packageName = "os-filter-obj"; - version = "1.0.3"; + "vinyl-0.4.6" = { + name = "vinyl"; + packageName = "vinyl"; + version = "0.4.6"; src = fetchurl { - url = "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-1.0.3.tgz"; - sha1 = "5915330d90eced557d2d938a31c6dd214d9c63ad"; + url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz"; + sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847"; }; }; - "executable-1.1.0" = { - name = "executable"; - packageName = "executable"; - version = "1.1.0"; + "is-absolute-0.1.7" = { + name = "is-absolute"; + packageName = "is-absolute"; + version = "0.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/executable/-/executable-1.1.0.tgz"; - sha1 = "877980e9112f3391066da37265de7ad8434ab4d9"; + url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz"; + sha1 = "847491119fccb5fb436217cc737f7faad50f603f"; }; }; - "bin-version-1.0.4" = { - name = "bin-version"; - packageName = "bin-version"; - version = "1.0.4"; + "is-natural-number-2.1.1" = { + name = "is-natural-number"; + packageName = "is-natural-number"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz"; - sha1 = "9eb498ee6fd76f7ab9a7c160436f89579435d78e"; + url = "https://registry.npmjs.org/is-natural-number/-/is-natural-number-2.1.1.tgz"; + sha1 = "7d4c5728377ef386c3e194a9911bf57c6dc335e7"; }; }; - "semver-truncate-1.1.2" = { - name = "semver-truncate"; - packageName = "semver-truncate"; - version = "1.1.2"; + "sum-up-1.0.3" = { + name = "sum-up"; + packageName = "sum-up"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz"; - sha1 = "57f41de69707a62709a7e0104ba2117109ea47e8"; + url = "https://registry.npmjs.org/sum-up/-/sum-up-1.0.3.tgz"; + sha1 = "1c661f667057f63bcb7875aa1438bc162525156e"; }; }; - "find-versions-1.2.1" = { - name = "find-versions"; - packageName = "find-versions"; - version = "1.2.1"; + "is-relative-0.1.3" = { + name = "is-relative"; + packageName = "is-relative"; + version = "0.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/find-versions/-/find-versions-1.2.1.tgz"; - sha1 = "cbde9f12e38575a0af1be1b9a2c5d5fd8f186b62"; + url = "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz"; + sha1 = "905fee8ae86f45b3ec614bc3c15c869df0876e82"; }; }; - "semver-regex-1.0.0" = { - name = "semver-regex"; - packageName = "semver-regex"; - version = "1.0.0"; + "clone-0.2.0" = { + name = "clone"; + packageName = "clone"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz"; - sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9"; + url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz"; + sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"; }; }; - "figures-1.7.0" = { - name = "figures"; - packageName = "figures"; - version = "1.7.0"; + "is-bzip2-1.0.0" = { + name = "is-bzip2"; + packageName = "is-bzip2"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz"; - sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"; + url = "https://registry.npmjs.org/is-bzip2/-/is-bzip2-1.0.0.tgz"; + sha1 = "5ee58eaa5a2e9c80e21407bedf23ae5ac091b3fc"; }; }; - "squeak-1.3.0" = { - name = "squeak"; - packageName = "squeak"; - version = "1.3.0"; + "seek-bzip-1.0.5" = { + name = "seek-bzip"; + packageName = "seek-bzip"; + version = "1.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz"; - sha1 = "33045037b64388b567674b84322a6521073916c3"; + url = "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.5.tgz"; + sha1 = "cfe917cb3d274bcffac792758af53173eb1fabdc"; }; }; - "console-stream-0.1.1" = { - name = "console-stream"; - packageName = "console-stream"; - version = "0.1.1"; + "commander-2.8.1" = { + name = "commander"; + packageName = "commander"; + version = "2.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz"; - sha1 = "a095fe07b20465955f2fafd28b5d72bccd949d44"; + url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz"; + sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4"; }; }; - "lpad-align-1.1.2" = { - name = "lpad-align"; - packageName = "lpad-align"; - version = "1.1.2"; + "is-gzip-1.0.0" = { + name = "is-gzip"; + packageName = "is-gzip"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz"; - sha1 = "21f600ac1c3095c3c6e497ee67271ee08481fe9e"; + url = "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz"; + sha1 = "6ca8b07b99c77998025900e555ced8ed80879a83"; }; }; - "css-mqpacker-5.0.1" = { - name = "css-mqpacker"; - packageName = "css-mqpacker"; - version = "5.0.1"; + "is-zip-1.0.0" = { + name = "is-zip"; + packageName = "is-zip"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-mqpacker/-/css-mqpacker-5.0.1.tgz"; - sha1 = "6f2d62252623fd7c33a68e1b88dc1370c885921e"; + url = "https://registry.npmjs.org/is-zip/-/is-zip-1.0.0.tgz"; + sha1 = "47b0a8ff4d38a76431ccfd99a8e15a4c86ba2325"; }; }; - "cssstats-3.1.0" = { - name = "cssstats"; - packageName = "cssstats"; + "read-all-stream-3.1.0" = { + name = "read-all-stream"; + packageName = "read-all-stream"; version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssstats/-/cssstats-3.1.0.tgz"; - sha1 = "fad1f4189a89c6a2d3b9c98c10f285bc9f16213d"; + url = "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz"; + sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa"; }; }; - "lodash.uniqby-4.7.0" = { - name = "lodash.uniqby"; - packageName = "lodash.uniqby"; - version = "4.7.0"; + "stat-mode-0.2.2" = { + name = "stat-mode"; + packageName = "stat-mode"; + version = "0.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz"; - sha1 = "d99c07a669e9e6d24e1362dfe266c67616af1302"; + url = "https://registry.npmjs.org/stat-mode/-/stat-mode-0.2.2.tgz"; + sha1 = "e6c80b623123d7d80cf132ce538f346289072502"; }; }; - "parse-css-font-2.0.2" = { - name = "parse-css-font"; - packageName = "parse-css-font"; - version = "2.0.2"; + "yauzl-2.9.1" = { + name = "yauzl"; + packageName = "yauzl"; + version = "2.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/parse-css-font/-/parse-css-font-2.0.2.tgz"; - sha1 = "7b60b060705a25a9b90b7f0ed493e5823248a652"; + url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz"; + sha1 = "a81981ea70a57946133883f029c5821a89359a7f"; }; }; - "parse-css-sides-2.0.0" = { - name = "parse-css-sides"; - packageName = "parse-css-sides"; - version = "2.0.0"; + "fd-slicer-1.0.1" = { + name = "fd-slicer"; + packageName = "fd-slicer"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/parse-css-sides/-/parse-css-sides-2.0.0.tgz"; - sha1 = "5edbe94361086fadfe314899fbe524ab24bd1b30"; + url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz"; + sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"; }; }; - "postcss-resolve-prop-3.1.0" = { - name = "postcss-resolve-prop"; - packageName = "postcss-resolve-prop"; - version = "3.1.0"; + "buffer-crc32-0.2.13" = { + name = "buffer-crc32"; + packageName = "buffer-crc32"; + version = "0.2.13"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-resolve-prop/-/postcss-resolve-prop-3.1.0.tgz"; - sha1 = "c35700277c0ac8216aac5d1687704b1a06df070c"; + url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; + sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"; }; }; - "pretty-bytes-3.0.1" = { - name = "pretty-bytes"; - packageName = "pretty-bytes"; - version = "3.0.1"; + "pend-1.2.0" = { + name = "pend"; + packageName = "pend"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz"; - sha1 = "27d0008d778063a0b4811bb35c79f1bd5d5fbccf"; + url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz"; + sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; }; }; - "shorthash-0.0.2" = { - name = "shorthash"; - packageName = "shorthash"; - version = "0.0.2"; + "duplexer2-0.1.4" = { + name = "duplexer2"; + packageName = "duplexer2"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz"; - sha1 = "59b268eecbde59038b30da202bcfbddeb2c4a4eb"; + url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"; + sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1"; }; }; - "bytes-2.5.0" = { - name = "bytes"; - packageName = "bytes"; - version = "2.5.0"; + "duplexify-3.5.1" = { + name = "duplexify"; + packageName = "duplexify"; + version = "3.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/bytes/-/bytes-2.5.0.tgz"; - sha1 = "4c9423ea2d252c270c41b2bdefeff9bb6b62c06a"; + url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz"; + sha1 = "4e1516be68838bc90a49994f0b39a6e5960befcd"; }; }; - "css-selector-tokenizer-0.7.0" = { - name = "css-selector-tokenizer"; - packageName = "css-selector-tokenizer"; - version = "0.7.0"; + "glob-stream-5.3.5" = { + name = "glob-stream"; + packageName = "glob-stream"; + version = "5.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz"; - sha1 = "e6988474ae8c953477bf5e7efecfceccd9cf4c86"; + url = "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz"; + sha1 = "a55665a9a8ccdc41915a87c701e32d4e016fad22"; }; }; - "css-shorthand-expand-1.1.0" = { - name = "css-shorthand-expand"; - packageName = "css-shorthand-expand"; - version = "1.1.0"; + "gulp-sourcemaps-1.6.0" = { + name = "gulp-sourcemaps"; + packageName = "gulp-sourcemaps"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-shorthand-expand/-/css-shorthand-expand-1.1.0.tgz"; - sha1 = "102f7286cbd32375430b5849d4e2fea3aa21ea64"; + url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz"; + sha1 = "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c"; }; }; - "gzip-size-3.0.0" = { - name = "gzip-size"; - packageName = "gzip-size"; - version = "3.0.0"; + "is-valid-glob-0.3.0" = { + name = "is-valid-glob"; + packageName = "is-valid-glob"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz"; - sha1 = "546188e9bdc337f673772f81660464b389dce520"; + url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz"; + sha1 = "d4b55c69f51886f9b65c70d6c2622d37e29f48fe"; }; }; - "has-element-selector-1.0.0" = { - name = "has-element-selector"; - packageName = "has-element-selector"; + "lazystream-1.0.0" = { + name = "lazystream"; + packageName = "lazystream"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/has-element-selector/-/has-element-selector-1.0.0.tgz"; - sha1 = "26884225e123437e8df9604c013581d29d190b97"; + url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz"; + sha1 = "f6995fe0f820392f61396be89462407bb77168e4"; }; }; - "has-id-selector-1.0.0" = { - name = "has-id-selector"; - packageName = "has-id-selector"; - version = "1.0.0"; + "lodash.isequal-4.5.0" = { + name = "lodash.isequal"; + packageName = "lodash.isequal"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/has-id-selector/-/has-id-selector-1.0.0.tgz"; - sha1 = "d41b42e9228586e6fec566728ceb33aae71acb45"; + url = "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz"; + sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0"; }; }; - "has-pseudo-class-1.0.1" = { - name = "has-pseudo-class"; - packageName = "has-pseudo-class"; + "merge-stream-1.0.1" = { + name = "merge-stream"; + packageName = "merge-stream"; version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/has-pseudo-class/-/has-pseudo-class-1.0.1.tgz"; - sha1 = "063edc8e9f5946976af4ff4ebb32c330d556e007"; + url = "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz"; + sha1 = "4041202d508a342ba00174008df0c251b8c135e1"; }; }; - "has-pseudo-element-1.0.0" = { - name = "has-pseudo-element"; - packageName = "has-pseudo-element"; + "strip-bom-stream-1.0.0" = { + name = "strip-bom-stream"; + packageName = "strip-bom-stream"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/has-pseudo-element/-/has-pseudo-element-1.0.0.tgz"; - sha1 = "34ca191201c0143709f42b4b73f1dc63b760f03f"; + url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz"; + sha1 = "e7144398577d51a6bed0fa1994fa05f43fd988ee"; }; }; - "is-css-shorthand-1.0.1" = { - name = "is-css-shorthand"; - packageName = "is-css-shorthand"; - version = "1.0.1"; + "through2-filter-2.0.0" = { + name = "through2-filter"; + packageName = "through2-filter"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-css-shorthand/-/is-css-shorthand-1.0.1.tgz"; - sha1 = "30f95d03210605fedfdd128e53dac4a4437a933c"; + url = "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz"; + sha1 = "60bc55a0dacb76085db1f9dae99ab43f83d622ec"; }; }; - "is-present-1.0.0" = { - name = "is-present"; - packageName = "is-present"; + "vali-date-1.0.0" = { + name = "vali-date"; + packageName = "vali-date"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-present/-/is-present-1.0.0.tgz"; - sha1 = "29c9b8e8e6e786a594c292fc7239aa24be70b80c"; + url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz"; + sha1 = "1b904a59609fb328ef078138420934f6b86709a6"; }; }; - "is-vendor-prefixed-0.0.1" = { - name = "is-vendor-prefixed"; - packageName = "is-vendor-prefixed"; - version = "0.0.1"; + "stream-shift-1.0.0" = { + name = "stream-shift"; + packageName = "stream-shift"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-vendor-prefixed/-/is-vendor-prefixed-0.0.1.tgz"; - sha1 = "05cf0d853c6274d7fb2bf86d53e107820b9c6b44"; + url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz"; + sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; }; }; - "postcss-safe-parser-2.0.1" = { - name = "postcss-safe-parser"; - packageName = "postcss-safe-parser"; - version = "2.0.1"; + "glob-parent-3.1.0" = { + name = "glob-parent"; + packageName = "glob-parent"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-2.0.1.tgz"; - sha1 = "3b3d1c4b43a24c3942e2f0be7961382b348b3b13"; + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz"; + sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; }; }; - "specificity-0.3.1" = { - name = "specificity"; - packageName = "specificity"; - version = "0.3.1"; + "ordered-read-streams-0.3.0" = { + name = "ordered-read-streams"; + packageName = "ordered-read-streams"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/specificity/-/specificity-0.3.1.tgz"; - sha1 = "f1b068424ce317ae07478d95de3c21cf85e8d567"; + url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz"; + sha1 = "7137e69b3298bb342247a1bbee3881c80e2fd78b"; }; }; - "regexpu-core-1.0.0" = { - name = "regexpu-core"; - packageName = "regexpu-core"; - version = "1.0.0"; + "to-absolute-glob-0.1.1" = { + name = "to-absolute-glob"; + packageName = "to-absolute-glob"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz"; - sha1 = "86a763f58ee4d7c2f6b102e4764050de7ed90c6b"; + url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz"; + sha1 = "1cdfa472a9ef50c239ee66999b662ca0eb39937f"; }; }; - "regenerate-1.3.2" = { - name = "regenerate"; - packageName = "regenerate"; - version = "1.3.2"; + "unique-stream-2.2.1" = { + name = "unique-stream"; + packageName = "unique-stream"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/regenerate/-/regenerate-1.3.2.tgz"; - sha1 = "d1941c67bad437e1be76433add5b385f95b19260"; + url = "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz"; + sha1 = "5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369"; }; }; - "regjsgen-0.2.0" = { - name = "regjsgen"; - packageName = "regjsgen"; - version = "0.2.0"; + "path-dirname-1.0.2" = { + name = "path-dirname"; + packageName = "path-dirname"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz"; - sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7"; + url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz"; + sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0"; }; }; - "regjsparser-0.1.5" = { - name = "regjsparser"; - packageName = "regjsparser"; - version = "0.1.5"; + "first-chunk-stream-1.0.0" = { + name = "first-chunk-stream"; + packageName = "first-chunk-stream"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz"; - sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"; + url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz"; + sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"; }; }; - "jsesc-0.5.0" = { - name = "jsesc"; - packageName = "jsesc"; - version = "0.5.0"; + "caw-1.2.0" = { + name = "caw"; + packageName = "caw"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; - sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; + url = "https://registry.npmjs.org/caw/-/caw-1.2.0.tgz"; + sha1 = "ffb226fe7efc547288dc62ee3e97073c212d1034"; }; }; - "css-url-regex-0.0.1" = { - name = "css-url-regex"; - packageName = "css-url-regex"; - version = "0.0.1"; + "each-async-1.1.1" = { + name = "each-async"; + packageName = "each-async"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/css-url-regex/-/css-url-regex-0.0.1.tgz"; - sha1 = "e05af8c6c290d451ef1632b455ea5c81b4b1395c"; + url = "https://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz"; + sha1 = "dee5229bdf0ab6ba2012a395e1b869abf8813473"; }; }; - "hex-color-regex-1.1.0" = { - name = "hex-color-regex"; - packageName = "hex-color-regex"; - version = "1.1.0"; + "filenamify-1.2.1" = { + name = "filenamify"; + packageName = "filenamify"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz"; - sha1 = "4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"; + url = "https://registry.npmjs.org/filenamify/-/filenamify-1.2.1.tgz"; + sha1 = "a9f2ffd11c503bed300015029272378f1f1365a5"; }; }; - "hsl-regex-1.0.0" = { - name = "hsl-regex"; - packageName = "hsl-regex"; - version = "1.0.0"; + "got-5.7.1" = { + name = "got"; + packageName = "got"; + version = "5.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz"; - sha1 = "d49330c789ed819e276a4c0d272dffa30b18fe6e"; + url = "https://registry.npmjs.org/got/-/got-5.7.1.tgz"; + sha1 = "5f81635a61e4a6589f180569ea4e381680a51f35"; }; }; - "hsla-regex-1.0.0" = { - name = "hsla-regex"; - packageName = "hsla-regex"; - version = "1.0.0"; + "gulp-decompress-1.2.0" = { + name = "gulp-decompress"; + packageName = "gulp-decompress"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz"; - sha1 = "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"; + url = "https://registry.npmjs.org/gulp-decompress/-/gulp-decompress-1.2.0.tgz"; + sha1 = "8eeb65a5e015f8ed8532cafe28454960626f0dc7"; }; }; - "rgb-regex-1.0.1" = { - name = "rgb-regex"; - packageName = "rgb-regex"; - version = "1.0.1"; + "gulp-rename-1.2.2" = { + name = "gulp-rename"; + packageName = "gulp-rename"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz"; - sha1 = "c0e0d6882df0e23be254a475e8edd41915feaeb1"; + url = "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.2.2.tgz"; + sha1 = "3ad4428763f05e2764dec1c67d868db275687817"; }; }; - "rgba-regex-1.0.0" = { - name = "rgba-regex"; - packageName = "rgba-regex"; - version = "1.0.0"; + "is-url-1.2.2" = { + name = "is-url"; + packageName = "is-url"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz"; - sha1 = "43374e2e2ca0968b0ef1523460b7d730ff22eeb3"; + url = "https://registry.npmjs.org/is-url/-/is-url-1.2.2.tgz"; + sha1 = "498905a593bf47cc2d9e7f738372bbf7696c7f26"; }; }; - "duplexer-0.1.1" = { - name = "duplexer"; - packageName = "duplexer"; - version = "0.1.1"; + "ware-1.3.0" = { + name = "ware"; + packageName = "ware"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; - sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; + url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz"; + sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4"; }; }; - "pseudo-classes-0.0.1" = { - name = "pseudo-classes"; - packageName = "pseudo-classes"; - version = "0.0.1"; + "get-proxy-1.1.0" = { + name = "get-proxy"; + packageName = "get-proxy"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/pseudo-classes/-/pseudo-classes-0.0.1.tgz"; - sha1 = "dec983d94a68d03ddfdef3f07c44af9f6c223a5b"; + url = "https://registry.npmjs.org/get-proxy/-/get-proxy-1.1.0.tgz"; + sha1 = "894854491bc591b0f147d7ae570f5c678b7256eb"; }; }; - "pseudo-elements-1.0.0" = { - name = "pseudo-elements"; - packageName = "pseudo-elements"; - version = "1.0.0"; + "tunnel-agent-0.4.3" = { + name = "tunnel-agent"; + packageName = "tunnel-agent"; + version = "0.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/pseudo-elements/-/pseudo-elements-1.0.0.tgz"; - sha1 = "4be60cbcd8499692a1d72cfdd3e5839dabad1618"; + url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz"; + sha1 = "6373db76909fe570e08d73583365ed828a74eeeb"; }; }; - "css-shorthand-properties-1.0.0" = { - name = "css-shorthand-properties"; - packageName = "css-shorthand-properties"; - version = "1.0.0"; + "onetime-1.1.0" = { + name = "onetime"; + packageName = "onetime"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-shorthand-properties/-/css-shorthand-properties-1.0.0.tgz"; - sha1 = "567be671103679b9aa05a48155e51474b275877f"; + url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz"; + sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"; }; }; - "is-blank-1.0.0" = { - name = "is-blank"; - packageName = "is-blank"; + "filename-reserved-regex-1.0.0" = { + name = "filename-reserved-regex"; + packageName = "filename-reserved-regex"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-blank/-/is-blank-1.0.0.tgz"; - sha1 = "60e39beb41f92c3b27acbb5029cb0f29f983ee67"; + url = "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz"; + sha1 = "e61cf805f0de1c984567d0386dc5df50ee5af7e4"; }; }; - "vendor-prefixes-0.0.1" = { - name = "vendor-prefixes"; - packageName = "vendor-prefixes"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vendor-prefixes/-/vendor-prefixes-0.0.1.tgz"; - sha1 = "98b4367f8cb7099230efc20e040f54aed018d06d"; - }; - }; - "css-font-size-keywords-1.0.0" = { - name = "css-font-size-keywords"; - packageName = "css-font-size-keywords"; + "strip-outer-1.0.0" = { + name = "strip-outer"; + packageName = "strip-outer"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz"; - sha1 = "854875ace9aca6a8d2ee0d345a44aae9bb6db6cb"; + url = "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.0.tgz"; + sha1 = "aac0ba60d2e90c5d4f275fd8869fd9a2d310ffb8"; }; }; - "css-font-stretch-keywords-1.0.1" = { - name = "css-font-stretch-keywords"; - packageName = "css-font-stretch-keywords"; - version = "1.0.1"; + "trim-repeated-1.0.0" = { + name = "trim-repeated"; + packageName = "trim-repeated"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz"; - sha1 = "50cee9b9ba031fb5c952d4723139f1e107b54b10"; + url = "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz"; + sha1 = "e3646a2ea4e891312bf7eace6cfb05380bc01c21"; }; }; - "css-font-style-keywords-1.0.1" = { - name = "css-font-style-keywords"; - packageName = "css-font-style-keywords"; - version = "1.0.1"; + "create-error-class-3.0.2" = { + name = "create-error-class"; + packageName = "create-error-class"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz"; - sha1 = "5c3532813f63b4a1de954d13cea86ab4333409e4"; + url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz"; + sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; }; }; - "css-font-weight-keywords-1.0.0" = { - name = "css-font-weight-keywords"; - packageName = "css-font-weight-keywords"; + "is-redirect-1.0.0" = { + name = "is-redirect"; + packageName = "is-redirect"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz"; - sha1 = "9bc04671ac85bc724b574ef5d3ac96b0d604fd97"; + url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; + sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; }; }; - "css-global-keywords-1.0.1" = { - name = "css-global-keywords"; - packageName = "css-global-keywords"; - version = "1.0.1"; + "is-retry-allowed-1.1.0" = { + name = "is-retry-allowed"; + packageName = "is-retry-allowed"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-global-keywords/-/css-global-keywords-1.0.1.tgz"; - sha1 = "72a9aea72796d019b1d2a3252de4e5aaa37e4a69"; + url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz"; + sha1 = "11a060568b67339444033d0125a61a20d564fb34"; }; }; - "css-list-helpers-1.0.1" = { - name = "css-list-helpers"; - packageName = "css-list-helpers"; - version = "1.0.1"; + "lowercase-keys-1.0.0" = { + name = "lowercase-keys"; + packageName = "lowercase-keys"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-list-helpers/-/css-list-helpers-1.0.1.tgz"; - sha1 = "fff57192202db83240c41686f919e449a7024f7d"; + url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz"; + sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"; }; }; - "css-system-font-keywords-1.0.0" = { - name = "css-system-font-keywords"; - packageName = "css-system-font-keywords"; + "node-status-codes-1.0.0" = { + name = "node-status-codes"; + packageName = "node-status-codes"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz"; - sha1 = "85c6f086aba4eb32c571a3086affc434b84823ed"; + url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz"; + sha1 = "5ae5541d024645d32a58fcddc9ceecea7ae3ac2f"; }; }; - "unquote-1.1.0" = { - name = "unquote"; - packageName = "unquote"; - version = "1.1.0"; + "timed-out-3.1.3" = { + name = "timed-out"; + packageName = "timed-out"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/unquote/-/unquote-1.1.0.tgz"; - sha1 = "98e1fc608b6b854c75afb1b95afc099ba69d942f"; + url = "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz"; + sha1 = "95860bfcc5c76c277f8f8326fd0f5b2e20eba217"; }; }; - "postcss-each-decl-1.0.2" = { - name = "postcss-each-decl"; - packageName = "postcss-each-decl"; + "unzip-response-1.0.2" = { + name = "unzip-response"; + packageName = "unzip-response"; version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-each-decl/-/postcss-each-decl-1.0.2.tgz"; - sha1 = "2708e385a939b7af6115e713fb9724fe5f7884fe"; + url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz"; + sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe"; }; }; - "tcomb-postcss-1.0.2" = { - name = "tcomb-postcss"; - packageName = "tcomb-postcss"; - version = "1.0.2"; + "url-parse-lax-1.0.0" = { + name = "url-parse-lax"; + packageName = "url-parse-lax"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/tcomb-postcss/-/tcomb-postcss-1.0.2.tgz"; - sha1 = "b407b6e90cfb34df0ebbc3c8faa460dccaeb97ee"; + url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz"; + sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73"; }; }; - "postcss-js-1.0.0" = { - name = "postcss-js"; - packageName = "postcss-js"; + "capture-stack-trace-1.0.0" = { + name = "capture-stack-trace"; + packageName = "capture-stack-trace"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-js/-/postcss-js-1.0.0.tgz"; - sha1 = "ccee5aa3b1970dd457008e79438165f66919ba30"; + url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz"; + sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d"; }; }; - "banks-db-0.10.9" = { - name = "banks-db"; - packageName = "banks-db"; - version = "0.10.9"; + "wrap-fn-0.1.5" = { + name = "wrap-fn"; + packageName = "wrap-fn"; + version = "0.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/banks-db/-/banks-db-0.10.9.tgz"; - sha1 = "1c6b84901e5f7ca377c56de85cb6d4c8f57dfde1"; + url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz"; + sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845"; }; }; - "JSV-4.0.2" = { - name = "JSV"; - packageName = "JSV"; - version = "4.0.2"; + "co-3.1.0" = { + name = "co"; + packageName = "co"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz"; - sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; + url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz"; + sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78"; }; }; - "ava-0.16.0" = { - name = "ava"; - packageName = "ava"; - version = "0.16.0"; + "async-each-series-1.1.0" = { + name = "async-each-series"; + packageName = "async-each-series"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/ava/-/ava-0.16.0.tgz"; - sha1 = "07d7e06c627820115a84d7ee346f0bb165730454"; + url = "https://registry.npmjs.org/async-each-series/-/async-each-series-1.1.0.tgz"; + sha1 = "f42fd8155d38f21a5b8ea07c28e063ed1700b138"; }; }; - "ava-files-0.1.1" = { - name = "ava-files"; - packageName = "ava-files"; - version = "0.1.1"; + "ip-regex-1.0.3" = { + name = "ip-regex"; + packageName = "ip-regex"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/ava-files/-/ava-files-0.1.1.tgz"; - sha1 = "18abb6f4b87029c32fc35f2053fecd3a55f1d2b0"; + url = "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz"; + sha1 = "dc589076f659f419c222039a33316f1c7387effd"; }; }; - "ava-init-0.1.6" = { - name = "ava-init"; - packageName = "ava-init"; - version = "0.1.6"; + "bin-check-2.0.0" = { + name = "bin-check"; + packageName = "bin-check"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/ava-init/-/ava-init-0.1.6.tgz"; - sha1 = "ef19ed0b24b6bf359dad6fbadf1a05d836395c91"; + url = "https://registry.npmjs.org/bin-check/-/bin-check-2.0.0.tgz"; + sha1 = "86f8e6f4253893df60dc316957f5af02acb05930"; }; }; - "babel-plugin-ava-throws-helper-0.1.0" = { - name = "babel-plugin-ava-throws-helper"; - packageName = "babel-plugin-ava-throws-helper"; - version = "0.1.0"; + "bin-version-check-2.1.0" = { + name = "bin-version-check"; + packageName = "bin-version-check"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-ava-throws-helper/-/babel-plugin-ava-throws-helper-0.1.0.tgz"; - sha1 = "951107708a12208026bf8ca4cef18a87bc9b0cfe"; + url = "https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz"; + sha1 = "e4e5df290b9069f7d111324031efc13fdd11a5b0"; }; }; - "babel-plugin-detective-2.0.0" = { - name = "babel-plugin-detective"; - packageName = "babel-plugin-detective"; - version = "2.0.0"; + "lazy-req-1.1.0" = { + name = "lazy-req"; + packageName = "lazy-req"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-detective/-/babel-plugin-detective-2.0.0.tgz"; - sha1 = "6e642e83c22a335279754ebe2d754d2635f49f13"; + url = "https://registry.npmjs.org/lazy-req/-/lazy-req-1.1.0.tgz"; + sha1 = "bdaebead30f8d824039ce0ce149d4daa07ba1fac"; }; }; - "babel-plugin-espower-2.3.2" = { - name = "babel-plugin-espower"; - packageName = "babel-plugin-espower"; - version = "2.3.2"; + "os-filter-obj-1.0.3" = { + name = "os-filter-obj"; + packageName = "os-filter-obj"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz"; - sha1 = "5516b8fcdb26c9f0e1d8160749f6e4c65e71271e"; + url = "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-1.0.3.tgz"; + sha1 = "5915330d90eced557d2d938a31c6dd214d9c63ad"; }; }; - "babel-plugin-transform-runtime-6.23.0" = { - name = "babel-plugin-transform-runtime"; - packageName = "babel-plugin-transform-runtime"; - version = "6.23.0"; + "executable-1.1.0" = { + name = "executable"; + packageName = "executable"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz"; - sha1 = "88490d446502ea9b8e7efb0fe09ec4d99479b1ee"; + url = "https://registry.npmjs.org/executable/-/executable-1.1.0.tgz"; + sha1 = "877980e9112f3391066da37265de7ad8434ab4d9"; }; }; - "babel-preset-es2015-6.24.1" = { - name = "babel-preset-es2015"; - packageName = "babel-preset-es2015"; - version = "6.24.1"; + "bin-version-1.0.4" = { + name = "bin-version"; + packageName = "bin-version"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz"; - sha1 = "d44050d6bc2c9feea702aaf38d727a0210538939"; + url = "https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz"; + sha1 = "9eb498ee6fd76f7ab9a7c160436f89579435d78e"; }; }; - "babel-preset-stage-2-6.24.1" = { - name = "babel-preset-stage-2"; - packageName = "babel-preset-stage-2"; - version = "6.24.1"; + "semver-truncate-1.1.2" = { + name = "semver-truncate"; + packageName = "semver-truncate"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz"; - sha1 = "d9e2960fb3d71187f0e64eec62bc07767219bdc1"; + url = "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz"; + sha1 = "57f41de69707a62709a7e0104ba2117109ea47e8"; }; }; - "caching-transform-1.0.1" = { - name = "caching-transform"; - packageName = "caching-transform"; - version = "1.0.1"; + "find-versions-1.2.1" = { + name = "find-versions"; + packageName = "find-versions"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/caching-transform/-/caching-transform-1.0.1.tgz"; - sha1 = "6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1"; + url = "https://registry.npmjs.org/find-versions/-/find-versions-1.2.1.tgz"; + sha1 = "cbde9f12e38575a0af1be1b9a2c5d5fd8f186b62"; }; }; - "clean-yaml-object-0.1.0" = { - name = "clean-yaml-object"; - packageName = "clean-yaml-object"; - version = "0.1.0"; + "semver-regex-1.0.0" = { + name = "semver-regex"; + packageName = "semver-regex"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz"; - sha1 = "63fb110dc2ce1a84dc21f6d9334876d010ae8b68"; + url = "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz"; + sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9"; }; }; - "cli-cursor-1.0.2" = { - name = "cli-cursor"; - packageName = "cli-cursor"; - version = "1.0.2"; + "figures-1.7.0" = { + name = "figures"; + packageName = "figures"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz"; - sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987"; + url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz"; + sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"; }; }; - "cli-spinners-0.1.2" = { - name = "cli-spinners"; - packageName = "cli-spinners"; - version = "0.1.2"; + "squeak-1.3.0" = { + name = "squeak"; + packageName = "squeak"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-0.1.2.tgz"; - sha1 = "bb764d88e185fb9e1e6a2a1f19772318f605e31c"; + url = "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz"; + sha1 = "33045037b64388b567674b84322a6521073916c3"; }; }; - "cli-truncate-0.2.1" = { - name = "cli-truncate"; - packageName = "cli-truncate"; - version = "0.2.1"; + "console-stream-0.1.1" = { + name = "console-stream"; + packageName = "console-stream"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz"; - sha1 = "9f15cfbb0705005369216c626ac7d05ab90dd574"; + url = "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz"; + sha1 = "a095fe07b20465955f2fafd28b5d72bccd949d44"; }; }; - "co-with-promise-4.6.0" = { - name = "co-with-promise"; - packageName = "co-with-promise"; - version = "4.6.0"; + "lpad-align-1.1.2" = { + name = "lpad-align"; + packageName = "lpad-align"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/co-with-promise/-/co-with-promise-4.6.0.tgz"; - sha1 = "413e7db6f5893a60b942cf492c4bec93db415ab7"; + url = "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz"; + sha1 = "21f600ac1c3095c3c6e497ee67271ee08481fe9e"; }; }; - "common-path-prefix-1.0.0" = { - name = "common-path-prefix"; - packageName = "common-path-prefix"; - version = "1.0.0"; + "css-mqpacker-5.0.1" = { + name = "css-mqpacker"; + packageName = "css-mqpacker"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-1.0.0.tgz"; - sha1 = "cd52f6f0712e0baab97d6f9732874f22f47752c0"; + url = "https://registry.npmjs.org/css-mqpacker/-/css-mqpacker-5.0.1.tgz"; + sha1 = "6f2d62252623fd7c33a68e1b88dc1370c885921e"; }; }; - "core-assert-0.2.1" = { - name = "core-assert"; - packageName = "core-assert"; - version = "0.2.1"; + "cssstats-3.1.0" = { + name = "cssstats"; + packageName = "cssstats"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/core-assert/-/core-assert-0.2.1.tgz"; - sha1 = "f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f"; + url = "https://registry.npmjs.org/cssstats/-/cssstats-3.1.0.tgz"; + sha1 = "fad1f4189a89c6a2d3b9c98c10f285bc9f16213d"; }; }; - "empower-core-0.6.2" = { - name = "empower-core"; - packageName = "empower-core"; - version = "0.6.2"; + "lodash.uniqby-4.7.0" = { + name = "lodash.uniqby"; + packageName = "lodash.uniqby"; + version = "4.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/empower-core/-/empower-core-0.6.2.tgz"; - sha1 = "5adef566088e31fba80ba0a36df47d7094169144"; + url = "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz"; + sha1 = "d99c07a669e9e6d24e1362dfe266c67616af1302"; }; }; - "find-cache-dir-0.1.1" = { - name = "find-cache-dir"; - packageName = "find-cache-dir"; - version = "0.1.1"; + "parse-css-font-2.0.2" = { + name = "parse-css-font"; + packageName = "parse-css-font"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz"; - sha1 = "c8defae57c8a52a8a784f9e31c57c742e993a0b9"; + url = "https://registry.npmjs.org/parse-css-font/-/parse-css-font-2.0.2.tgz"; + sha1 = "7b60b060705a25a9b90b7f0ed493e5823248a652"; }; }; - "fn-name-2.0.1" = { - name = "fn-name"; - packageName = "fn-name"; - version = "2.0.1"; + "parse-css-sides-2.0.0" = { + name = "parse-css-sides"; + packageName = "parse-css-sides"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/fn-name/-/fn-name-2.0.1.tgz"; - sha1 = "5214d7537a4d06a4a301c0cc262feb84188002e7"; + url = "https://registry.npmjs.org/parse-css-sides/-/parse-css-sides-2.0.0.tgz"; + sha1 = "5edbe94361086fadfe314899fbe524ab24bd1b30"; }; }; - "ignore-by-default-1.0.1" = { - name = "ignore-by-default"; - packageName = "ignore-by-default"; - version = "1.0.1"; + "postcss-resolve-prop-3.1.0" = { + name = "postcss-resolve-prop"; + packageName = "postcss-resolve-prop"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz"; - sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"; + url = "https://registry.npmjs.org/postcss-resolve-prop/-/postcss-resolve-prop-3.1.0.tgz"; + sha1 = "c35700277c0ac8216aac5d1687704b1a06df070c"; }; }; - "is-ci-1.0.10" = { - name = "is-ci"; - packageName = "is-ci"; - version = "1.0.10"; + "pretty-bytes-3.0.1" = { + name = "pretty-bytes"; + packageName = "pretty-bytes"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz"; - sha1 = "f739336b2632365061a9d48270cd56ae3369318e"; + url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz"; + sha1 = "27d0008d778063a0b4811bb35c79f1bd5d5fbccf"; }; }; - "is-generator-fn-1.0.0" = { - name = "is-generator-fn"; - packageName = "is-generator-fn"; - version = "1.0.0"; + "shorthash-0.0.2" = { + name = "shorthash"; + packageName = "shorthash"; + version = "0.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz"; - sha1 = "969d49e1bb3329f6bb7f09089be26578b2ddd46a"; + url = "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz"; + sha1 = "59b268eecbde59038b30da202bcfbddeb2c4a4eb"; }; }; - "is-observable-0.2.0" = { - name = "is-observable"; - packageName = "is-observable"; - version = "0.2.0"; + "bytes-2.5.0" = { + name = "bytes"; + packageName = "bytes"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-observable/-/is-observable-0.2.0.tgz"; - sha1 = "b361311d83c6e5d726cabf5e250b0237106f5ae2"; + url = "https://registry.npmjs.org/bytes/-/bytes-2.5.0.tgz"; + sha1 = "4c9423ea2d252c270c41b2bdefeff9bb6b62c06a"; }; }; - "is-promise-2.1.0" = { - name = "is-promise"; - packageName = "is-promise"; - version = "2.1.0"; + "css-selector-tokenizer-0.7.0" = { + name = "css-selector-tokenizer"; + packageName = "css-selector-tokenizer"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz"; - sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; + url = "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz"; + sha1 = "e6988474ae8c953477bf5e7efecfceccd9cf4c86"; }; }; - "last-line-stream-1.0.0" = { - name = "last-line-stream"; - packageName = "last-line-stream"; - version = "1.0.0"; + "css-shorthand-expand-1.1.0" = { + name = "css-shorthand-expand"; + packageName = "css-shorthand-expand"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/last-line-stream/-/last-line-stream-1.0.0.tgz"; - sha1 = "d1b64d69f86ff24af2d04883a2ceee14520a5600"; + url = "https://registry.npmjs.org/css-shorthand-expand/-/css-shorthand-expand-1.1.0.tgz"; + sha1 = "102f7286cbd32375430b5849d4e2fea3aa21ea64"; }; }; - "lodash.debounce-4.0.8" = { - name = "lodash.debounce"; - packageName = "lodash.debounce"; - version = "4.0.8"; + "gzip-size-3.0.0" = { + name = "gzip-size"; + packageName = "gzip-size"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; - sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; + url = "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz"; + sha1 = "546188e9bdc337f673772f81660464b389dce520"; }; }; - "lodash.difference-4.5.0" = { - name = "lodash.difference"; - packageName = "lodash.difference"; - version = "4.5.0"; + "has-element-selector-1.0.0" = { + name = "has-element-selector"; + packageName = "has-element-selector"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz"; - sha1 = "9ccb4e505d486b91651345772885a2df27fd017c"; + url = "https://registry.npmjs.org/has-element-selector/-/has-element-selector-1.0.0.tgz"; + sha1 = "26884225e123437e8df9604c013581d29d190b97"; }; }; - "matcher-0.1.2" = { - name = "matcher"; - packageName = "matcher"; - version = "0.1.2"; + "has-id-selector-1.0.0" = { + name = "has-id-selector"; + packageName = "has-id-selector"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/matcher/-/matcher-0.1.2.tgz"; - sha1 = "ef20cbde64c24c50cc61af5b83ee0b1b8ff00101"; + url = "https://registry.npmjs.org/has-id-selector/-/has-id-selector-1.0.0.tgz"; + sha1 = "d41b42e9228586e6fec566728ceb33aae71acb45"; }; }; - "max-timeout-1.0.0" = { - name = "max-timeout"; - packageName = "max-timeout"; - version = "1.0.0"; + "has-pseudo-class-1.0.1" = { + name = "has-pseudo-class"; + packageName = "has-pseudo-class"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/max-timeout/-/max-timeout-1.0.0.tgz"; - sha1 = "b68f69a2f99e0b476fd4cb23e2059ca750715e1f"; + url = "https://registry.npmjs.org/has-pseudo-class/-/has-pseudo-class-1.0.1.tgz"; + sha1 = "063edc8e9f5946976af4ff4ebb32c330d556e007"; }; }; - "md5-hex-1.3.0" = { - name = "md5-hex"; - packageName = "md5-hex"; - version = "1.3.0"; + "has-pseudo-element-1.0.0" = { + name = "has-pseudo-element"; + packageName = "has-pseudo-element"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/md5-hex/-/md5-hex-1.3.0.tgz"; - sha1 = "d2c4afe983c4370662179b8cad145219135046c4"; + url = "https://registry.npmjs.org/has-pseudo-element/-/has-pseudo-element-1.0.0.tgz"; + sha1 = "34ca191201c0143709f42b4b73f1dc63b760f03f"; }; }; - "ms-0.7.3" = { - name = "ms"; - packageName = "ms"; - version = "0.7.3"; + "is-css-shorthand-1.0.1" = { + name = "is-css-shorthand"; + packageName = "is-css-shorthand"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-0.7.3.tgz"; - sha1 = "708155a5e44e33f5fd0fc53e81d0d40a91be1fff"; + url = "https://registry.npmjs.org/is-css-shorthand/-/is-css-shorthand-1.0.1.tgz"; + sha1 = "30f95d03210605fedfdd128e53dac4a4437a933c"; }; }; - "not-so-shallow-0.1.4" = { - name = "not-so-shallow"; - packageName = "not-so-shallow"; - version = "0.1.4"; + "is-present-1.0.0" = { + name = "is-present"; + packageName = "is-present"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/not-so-shallow/-/not-so-shallow-0.1.4.tgz"; - sha1 = "e8c7f7b9c9b9f069594344368330cbcea387c3c7"; + url = "https://registry.npmjs.org/is-present/-/is-present-1.0.0.tgz"; + sha1 = "29c9b8e8e6e786a594c292fc7239aa24be70b80c"; }; }; - "observable-to-promise-0.4.0" = { - name = "observable-to-promise"; - packageName = "observable-to-promise"; - version = "0.4.0"; + "is-vendor-prefixed-0.0.1" = { + name = "is-vendor-prefixed"; + packageName = "is-vendor-prefixed"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/observable-to-promise/-/observable-to-promise-0.4.0.tgz"; - sha1 = "28afe71645308f2d41d71f47ad3fece1a377e52b"; + url = "https://registry.npmjs.org/is-vendor-prefixed/-/is-vendor-prefixed-0.0.1.tgz"; + sha1 = "05cf0d853c6274d7fb2bf86d53e107820b9c6b44"; }; }; - "option-chain-0.1.1" = { - name = "option-chain"; - packageName = "option-chain"; - version = "0.1.1"; + "postcss-safe-parser-2.0.1" = { + name = "postcss-safe-parser"; + packageName = "postcss-safe-parser"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/option-chain/-/option-chain-0.1.1.tgz"; - sha1 = "e9b811e006f1c0f54802f28295bfc8970f8dcfbd"; + url = "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-2.0.1.tgz"; + sha1 = "3b3d1c4b43a24c3942e2f0be7961382b348b3b13"; }; }; - "package-hash-1.2.0" = { - name = "package-hash"; - packageName = "package-hash"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/package-hash/-/package-hash-1.2.0.tgz"; - sha1 = "003e56cd57b736a6ed6114cc2b81542672770e44"; - }; - }; - "pkg-conf-1.1.3" = { - name = "pkg-conf"; - packageName = "pkg-conf"; - version = "1.1.3"; + "specificity-0.3.2" = { + name = "specificity"; + packageName = "specificity"; + version = "0.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/pkg-conf/-/pkg-conf-1.1.3.tgz"; - sha1 = "378e56d6fd13e88bfb6f4a25df7a83faabddba5b"; + url = "https://registry.npmjs.org/specificity/-/specificity-0.3.2.tgz"; + sha1 = "99e6511eceef0f8d9b57924937aac2cb13d13c42"; }; }; - "power-assert-context-formatter-1.1.1" = { - name = "power-assert-context-formatter"; - packageName = "power-assert-context-formatter"; - version = "1.1.1"; + "regexpu-core-1.0.0" = { + name = "regexpu-core"; + packageName = "regexpu-core"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/power-assert-context-formatter/-/power-assert-context-formatter-1.1.1.tgz"; - sha1 = "edba352d3ed8a603114d667265acce60d689ccdf"; + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz"; + sha1 = "86a763f58ee4d7c2f6b102e4764050de7ed90c6b"; }; }; - "power-assert-renderer-assertion-1.1.1" = { - name = "power-assert-renderer-assertion"; - packageName = "power-assert-renderer-assertion"; - version = "1.1.1"; + "regenerate-1.3.3" = { + name = "regenerate"; + packageName = "regenerate"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/power-assert-renderer-assertion/-/power-assert-renderer-assertion-1.1.1.tgz"; - sha1 = "cbfc0e77e0086a8f96af3f1d8e67b9ee7e28ce98"; + url = "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz"; + sha1 = "0c336d3980553d755c39b586ae3b20aa49c82b7f"; }; }; - "power-assert-renderer-succinct-1.1.1" = { - name = "power-assert-renderer-succinct"; - packageName = "power-assert-renderer-succinct"; - version = "1.1.1"; + "regjsgen-0.2.0" = { + name = "regjsgen"; + packageName = "regjsgen"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/power-assert-renderer-succinct/-/power-assert-renderer-succinct-1.1.1.tgz"; - sha1 = "c2a468b23822abd6f80e2aba5322347b09df476e"; + url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz"; + sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7"; }; }; - "pretty-ms-2.1.0" = { - name = "pretty-ms"; - packageName = "pretty-ms"; - version = "2.1.0"; + "regjsparser-0.1.5" = { + name = "regjsparser"; + packageName = "regjsparser"; + version = "0.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz"; - sha1 = "4257c256df3fb0b451d6affaab021884126981dc"; + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz"; + sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"; }; }; - "require-precompiled-0.1.0" = { - name = "require-precompiled"; - packageName = "require-precompiled"; - version = "0.1.0"; + "jsesc-0.5.0" = { + name = "jsesc"; + packageName = "jsesc"; + version = "0.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/require-precompiled/-/require-precompiled-0.1.0.tgz"; - sha1 = "5a1b52eb70ebed43eb982e974c85ab59571e56fa"; + url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; + sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; }; }; - "resolve-cwd-1.0.0" = { - name = "resolve-cwd"; - packageName = "resolve-cwd"; - version = "1.0.0"; + "css-url-regex-0.0.1" = { + name = "css-url-regex"; + packageName = "css-url-regex"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-1.0.0.tgz"; - sha1 = "4eaeea41ed040d1702457df64a42b2b07d246f9f"; + url = "https://registry.npmjs.org/css-url-regex/-/css-url-regex-0.0.1.tgz"; + sha1 = "e05af8c6c290d451ef1632b455ea5c81b4b1395c"; }; }; - "stack-utils-0.4.0" = { - name = "stack-utils"; - packageName = "stack-utils"; - version = "0.4.0"; + "hex-color-regex-1.1.0" = { + name = "hex-color-regex"; + packageName = "hex-color-regex"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/stack-utils/-/stack-utils-0.4.0.tgz"; - sha1 = "940cb82fccfa84e8ff2f3fdf293fe78016beccd1"; + url = "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz"; + sha1 = "4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"; }; }; - "time-require-0.1.2" = { - name = "time-require"; - packageName = "time-require"; - version = "0.1.2"; + "hsl-regex-1.0.0" = { + name = "hsl-regex"; + packageName = "hsl-regex"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/time-require/-/time-require-0.1.2.tgz"; - sha1 = "f9e12cb370fc2605e11404582ba54ef5ca2b2d98"; + url = "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz"; + sha1 = "d49330c789ed819e276a4c0d272dffa30b18fe6e"; }; }; - "unique-temp-dir-1.0.0" = { - name = "unique-temp-dir"; - packageName = "unique-temp-dir"; + "hsla-regex-1.0.0" = { + name = "hsla-regex"; + packageName = "hsla-regex"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz"; - sha1 = "6dce95b2681ca003eebfb304a415f9cbabcc5385"; + url = "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz"; + sha1 = "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"; }; }; - "update-notifier-1.0.3" = { - name = "update-notifier"; - packageName = "update-notifier"; - version = "1.0.3"; + "rgb-regex-1.0.1" = { + name = "rgb-regex"; + packageName = "rgb-regex"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/update-notifier/-/update-notifier-1.0.3.tgz"; - sha1 = "8f92c515482bd6831b7c93013e70f87552c7cf5a"; + url = "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz"; + sha1 = "c0e0d6882df0e23be254a475e8edd41915feaeb1"; }; }; - "globby-5.0.0" = { - name = "globby"; - packageName = "globby"; - version = "5.0.0"; + "rgba-regex-1.0.0" = { + name = "rgba-regex"; + packageName = "rgba-regex"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz"; - sha1 = "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"; + url = "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz"; + sha1 = "43374e2e2ca0968b0ef1523460b7d730ff22eeb3"; }; }; - "multimatch-2.1.0" = { - name = "multimatch"; - packageName = "multimatch"; - version = "2.1.0"; + "duplexer-0.1.1" = { + name = "duplexer"; + packageName = "duplexer"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz"; - sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"; + url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; + sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; }; }; - "arr-exclude-1.0.0" = { - name = "arr-exclude"; - packageName = "arr-exclude"; - version = "1.0.0"; + "pseudo-classes-0.0.1" = { + name = "pseudo-classes"; + packageName = "pseudo-classes"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/arr-exclude/-/arr-exclude-1.0.0.tgz"; - sha1 = "dfc7c2e552a270723ccda04cf3128c8cbfe5c631"; + url = "https://registry.npmjs.org/pseudo-classes/-/pseudo-classes-0.0.1.tgz"; + sha1 = "dec983d94a68d03ddfdef3f07c44af9f6c223a5b"; }; }; - "cross-spawn-4.0.2" = { - name = "cross-spawn"; - packageName = "cross-spawn"; - version = "4.0.2"; + "pseudo-elements-1.0.0" = { + name = "pseudo-elements"; + packageName = "pseudo-elements"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz"; - sha1 = "7b9247621c23adfdd3856004a823cbe397424d41"; + url = "https://registry.npmjs.org/pseudo-elements/-/pseudo-elements-1.0.0.tgz"; + sha1 = "4be60cbcd8499692a1d72cfdd3e5839dabad1618"; }; }; - "the-argv-1.0.0" = { - name = "the-argv"; - packageName = "the-argv"; - version = "1.0.0"; + "css-shorthand-properties-1.1.0" = { + name = "css-shorthand-properties"; + packageName = "css-shorthand-properties"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/the-argv/-/the-argv-1.0.0.tgz"; - sha1 = "0084705005730dd84db755253c931ae398db9522"; + url = "https://registry.npmjs.org/css-shorthand-properties/-/css-shorthand-properties-1.1.0.tgz"; + sha1 = "e40a11e17f003cc1a9a772b19865508323659fff"; }; }; - "write-pkg-1.0.0" = { - name = "write-pkg"; - packageName = "write-pkg"; + "is-blank-1.0.0" = { + name = "is-blank"; + packageName = "is-blank"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/write-pkg/-/write-pkg-1.0.0.tgz"; - sha1 = "aeb8aa9d4d788e1d893dfb0854968b543a919f57"; + url = "https://registry.npmjs.org/is-blank/-/is-blank-1.0.0.tgz"; + sha1 = "60e39beb41f92c3b27acbb5029cb0f29f983ee67"; }; }; - "write-json-file-1.2.0" = { - name = "write-json-file"; - packageName = "write-json-file"; - version = "1.2.0"; + "vendor-prefixes-0.0.1" = { + name = "vendor-prefixes"; + packageName = "vendor-prefixes"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/write-json-file/-/write-json-file-1.2.0.tgz"; - sha1 = "2d5dfe96abc3c889057c93971aa4005efb548134"; + url = "https://registry.npmjs.org/vendor-prefixes/-/vendor-prefixes-0.0.1.tgz"; + sha1 = "98b4367f8cb7099230efc20e040f54aed018d06d"; }; }; - "write-file-atomic-1.3.4" = { - name = "write-file-atomic"; - packageName = "write-file-atomic"; - version = "1.3.4"; + "css-font-size-keywords-1.0.0" = { + name = "css-font-size-keywords"; + packageName = "css-font-size-keywords"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz"; - sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"; + url = "https://registry.npmjs.org/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz"; + sha1 = "854875ace9aca6a8d2ee0d345a44aae9bb6db6cb"; }; }; - "slide-1.1.6" = { - name = "slide"; - packageName = "slide"; - version = "1.1.6"; + "css-font-stretch-keywords-1.0.1" = { + name = "css-font-stretch-keywords"; + packageName = "css-font-stretch-keywords"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz"; - sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"; + url = "https://registry.npmjs.org/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz"; + sha1 = "50cee9b9ba031fb5c952d4723139f1e107b54b10"; }; }; - "call-matcher-1.0.1" = { - name = "call-matcher"; - packageName = "call-matcher"; + "css-font-style-keywords-1.0.1" = { + name = "css-font-style-keywords"; + packageName = "css-font-style-keywords"; version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/call-matcher/-/call-matcher-1.0.1.tgz"; - sha1 = "5134d077984f712a54dad3cbf62de28dce416ca8"; + url = "https://registry.npmjs.org/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz"; + sha1 = "5c3532813f63b4a1de954d13cea86ab4333409e4"; }; }; - "espower-location-detector-1.0.0" = { - name = "espower-location-detector"; - packageName = "espower-location-detector"; + "css-font-weight-keywords-1.0.0" = { + name = "css-font-weight-keywords"; + packageName = "css-font-weight-keywords"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/espower-location-detector/-/espower-location-detector-1.0.0.tgz"; - sha1 = "a17b7ecc59d30e179e2bef73fb4137704cb331b5"; + url = "https://registry.npmjs.org/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz"; + sha1 = "9bc04671ac85bc724b574ef5d3ac96b0d604fd97"; }; }; - "espurify-1.7.0" = { - name = "espurify"; - packageName = "espurify"; - version = "1.7.0"; + "css-global-keywords-1.0.1" = { + name = "css-global-keywords"; + packageName = "css-global-keywords"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/espurify/-/espurify-1.7.0.tgz"; - sha1 = "1c5cf6cbccc32e6f639380bd4f991fab9ba9d226"; + url = "https://registry.npmjs.org/css-global-keywords/-/css-global-keywords-1.0.1.tgz"; + sha1 = "72a9aea72796d019b1d2a3252de4e5aaa37e4a69"; }; }; - "estraverse-4.2.0" = { - name = "estraverse"; - packageName = "estraverse"; - version = "4.2.0"; + "css-list-helpers-1.0.1" = { + name = "css-list-helpers"; + packageName = "css-list-helpers"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz"; - sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; + url = "https://registry.npmjs.org/css-list-helpers/-/css-list-helpers-1.0.1.tgz"; + sha1 = "fff57192202db83240c41686f919e449a7024f7d"; }; }; - "deep-equal-1.0.1" = { - name = "deep-equal"; - packageName = "deep-equal"; - version = "1.0.1"; + "css-system-font-keywords-1.0.0" = { + name = "css-system-font-keywords"; + packageName = "css-system-font-keywords"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz"; - sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; + url = "https://registry.npmjs.org/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz"; + sha1 = "85c6f086aba4eb32c571a3086affc434b84823ed"; }; }; - "babel-plugin-check-es2015-constants-6.22.0" = { - name = "babel-plugin-check-es2015-constants"; - packageName = "babel-plugin-check-es2015-constants"; - version = "6.22.0"; + "unquote-1.1.1" = { + name = "unquote"; + packageName = "unquote"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz"; - sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a"; + url = "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz"; + sha1 = "8fded7324ec6e88a0ff8b905e7c098cdc086d544"; }; }; - "babel-plugin-transform-es2015-arrow-functions-6.22.0" = { - name = "babel-plugin-transform-es2015-arrow-functions"; - packageName = "babel-plugin-transform-es2015-arrow-functions"; - version = "6.22.0"; + "postcss-each-decl-1.0.2" = { + name = "postcss-each-decl"; + packageName = "postcss-each-decl"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz"; - sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221"; + url = "https://registry.npmjs.org/postcss-each-decl/-/postcss-each-decl-1.0.2.tgz"; + sha1 = "2708e385a939b7af6115e713fb9724fe5f7884fe"; }; }; - "babel-plugin-transform-es2015-block-scoped-functions-6.22.0" = { - name = "babel-plugin-transform-es2015-block-scoped-functions"; - packageName = "babel-plugin-transform-es2015-block-scoped-functions"; - version = "6.22.0"; + "tcomb-postcss-1.0.2" = { + name = "tcomb-postcss"; + packageName = "tcomb-postcss"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz"; - sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141"; + url = "https://registry.npmjs.org/tcomb-postcss/-/tcomb-postcss-1.0.2.tgz"; + sha1 = "b407b6e90cfb34df0ebbc3c8faa460dccaeb97ee"; }; }; - "babel-plugin-transform-es2015-block-scoping-6.24.1" = { - name = "babel-plugin-transform-es2015-block-scoping"; - packageName = "babel-plugin-transform-es2015-block-scoping"; - version = "6.24.1"; + "postcss-js-1.0.1" = { + name = "postcss-js"; + packageName = "postcss-js"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz"; - sha1 = "76c295dc3a4741b1665adfd3167215dcff32a576"; + url = "https://registry.npmjs.org/postcss-js/-/postcss-js-1.0.1.tgz"; + sha1 = "ffaf29226e399ea74b5dce02cab1729d7addbc7b"; }; }; - "babel-plugin-transform-es2015-classes-6.24.1" = { - name = "babel-plugin-transform-es2015-classes"; - packageName = "babel-plugin-transform-es2015-classes"; - version = "6.24.1"; + "banks-db-0.12.0" = { + name = "banks-db"; + packageName = "banks-db"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz"; - sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"; + url = "https://registry.npmjs.org/banks-db/-/banks-db-0.12.0.tgz"; + sha1 = "c28105a7cd0a6eaa1a6979d9db13d58584a889e3"; }; }; - "babel-plugin-transform-es2015-computed-properties-6.24.1" = { - name = "babel-plugin-transform-es2015-computed-properties"; - packageName = "babel-plugin-transform-es2015-computed-properties"; - version = "6.24.1"; + "css-2.2.1" = { + name = "css"; + packageName = "css"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz"; - sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3"; + url = "https://registry.npmjs.org/css/-/css-2.2.1.tgz"; + sha1 = "73a4c81de85db664d4ee674f7d47085e3b2d55dc"; }; }; - "babel-plugin-transform-es2015-destructuring-6.23.0" = { - name = "babel-plugin-transform-es2015-destructuring"; - packageName = "babel-plugin-transform-es2015-destructuring"; - version = "6.23.0"; + "cssmin-0.4.3" = { + name = "cssmin"; + packageName = "cssmin"; + version = "0.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz"; - sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d"; + url = "https://registry.npmjs.org/cssmin/-/cssmin-0.4.3.tgz"; + sha1 = "c9194077e0ebdacd691d5f59015b9d819f38d015"; }; }; - "babel-plugin-transform-es2015-duplicate-keys-6.24.1" = { - name = "babel-plugin-transform-es2015-duplicate-keys"; - packageName = "babel-plugin-transform-es2015-duplicate-keys"; - version = "6.24.1"; + "jsdom-nogyp-0.8.3" = { + name = "jsdom-nogyp"; + packageName = "jsdom-nogyp"; + version = "0.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz"; - sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e"; + url = "https://registry.npmjs.org/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz"; + sha1 = "924b3f03cfe487dfcdf6375e6324252ceb80d0cc"; }; }; - "babel-plugin-transform-es2015-for-of-6.23.0" = { - name = "babel-plugin-transform-es2015-for-of"; - packageName = "babel-plugin-transform-es2015-for-of"; - version = "6.23.0"; + "source-map-resolve-0.3.1" = { + name = "source-map-resolve"; + packageName = "source-map-resolve"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz"; - sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691"; + url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.3.1.tgz"; + sha1 = "610f6122a445b8dd51535a2a71b783dfc1248761"; }; }; - "babel-plugin-transform-es2015-function-name-6.24.1" = { - name = "babel-plugin-transform-es2015-function-name"; - packageName = "babel-plugin-transform-es2015-function-name"; - version = "6.24.1"; + "source-map-url-0.3.0" = { + name = "source-map-url"; + packageName = "source-map-url"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz"; - sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"; + url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.3.0.tgz"; + sha1 = "7ecaf13b57bcd09da8a40c5d269db33799d4aaf9"; }; }; - "babel-plugin-transform-es2015-literals-6.22.0" = { - name = "babel-plugin-transform-es2015-literals"; - packageName = "babel-plugin-transform-es2015-literals"; - version = "6.22.0"; + "atob-1.1.3" = { + name = "atob"; + packageName = "atob"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz"; - sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e"; + url = "https://registry.npmjs.org/atob/-/atob-1.1.3.tgz"; + sha1 = "95f13629b12c3a51a5d215abdce2aa9f32f80773"; }; }; - "babel-plugin-transform-es2015-modules-amd-6.24.1" = { - name = "babel-plugin-transform-es2015-modules-amd"; - packageName = "babel-plugin-transform-es2015-modules-amd"; - version = "6.24.1"; + "htmlparser2-3.9.2" = { + name = "htmlparser2"; + packageName = "htmlparser2"; + version = "3.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz"; - sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154"; + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz"; + sha1 = "1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"; }; }; - "babel-plugin-transform-es2015-modules-commonjs-6.24.1" = { - name = "babel-plugin-transform-es2015-modules-commonjs"; - packageName = "babel-plugin-transform-es2015-modules-commonjs"; - version = "6.24.1"; + "nwmatcher-1.3.9" = { + name = "nwmatcher"; + packageName = "nwmatcher"; + version = "1.3.9"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz"; - sha1 = "d3e310b40ef664a36622200097c6d440298f2bfe"; + url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.3.9.tgz"; + sha1 = "8bab486ff7fa3dfd086656bbe8b17116d3692d2a"; }; }; - "babel-plugin-transform-es2015-modules-umd-6.24.1" = { - name = "babel-plugin-transform-es2015-modules-umd"; - packageName = "babel-plugin-transform-es2015-modules-umd"; - version = "6.24.1"; + "xmlhttprequest-1.8.0" = { + name = "xmlhttprequest"; + packageName = "xmlhttprequest"; + version = "1.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz"; - sha1 = "ac997e6285cd18ed6176adb607d602344ad38468"; + url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"; + sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc"; }; }; - "babel-plugin-transform-es2015-object-super-6.24.1" = { - name = "babel-plugin-transform-es2015-object-super"; - packageName = "babel-plugin-transform-es2015-object-super"; - version = "6.24.1"; + "cssom-0.2.5" = { + name = "cssom"; + packageName = "cssom"; + version = "0.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz"; - sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d"; + url = "https://registry.npmjs.org/cssom/-/cssom-0.2.5.tgz"; + sha1 = "2682709b5902e7212df529116ff788cd5b254894"; }; }; - "babel-plugin-transform-es2015-parameters-6.24.1" = { - name = "babel-plugin-transform-es2015-parameters"; - packageName = "babel-plugin-transform-es2015-parameters"; - version = "6.24.1"; + "cssstyle-0.2.37" = { + name = "cssstyle"; + packageName = "cssstyle"; + version = "0.2.37"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz"; - sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b"; + url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz"; + sha1 = "541097234cb2513c83ceed3acddc27ff27987d54"; }; }; - "babel-plugin-transform-es2015-shorthand-properties-6.24.1" = { - name = "babel-plugin-transform-es2015-shorthand-properties"; - packageName = "babel-plugin-transform-es2015-shorthand-properties"; - version = "6.24.1"; + "domelementtype-1.3.0" = { + name = "domelementtype"; + packageName = "domelementtype"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz"; - sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0"; + url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz"; + sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2"; }; }; - "babel-plugin-transform-es2015-spread-6.22.0" = { - name = "babel-plugin-transform-es2015-spread"; - packageName = "babel-plugin-transform-es2015-spread"; - version = "6.22.0"; + "domhandler-2.4.1" = { + name = "domhandler"; + packageName = "domhandler"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz"; - sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"; + url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz"; + sha1 = "892e47000a99be55bbf3774ffea0561d8879c259"; }; }; - "babel-plugin-transform-es2015-sticky-regex-6.24.1" = { - name = "babel-plugin-transform-es2015-sticky-regex"; - packageName = "babel-plugin-transform-es2015-sticky-regex"; - version = "6.24.1"; + "domutils-1.6.2" = { + name = "domutils"; + packageName = "domutils"; + version = "1.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz"; - sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"; + url = "https://registry.npmjs.org/domutils/-/domutils-1.6.2.tgz"; + sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff"; }; }; - "babel-plugin-transform-es2015-template-literals-6.22.0" = { - name = "babel-plugin-transform-es2015-template-literals"; - packageName = "babel-plugin-transform-es2015-template-literals"; - version = "6.22.0"; + "entities-1.1.1" = { + name = "entities"; + packageName = "entities"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz"; - sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"; + url = "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz"; + sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"; }; }; - "babel-plugin-transform-es2015-typeof-symbol-6.23.0" = { - name = "babel-plugin-transform-es2015-typeof-symbol"; - packageName = "babel-plugin-transform-es2015-typeof-symbol"; - version = "6.23.0"; + "dom-serializer-0.1.0" = { + name = "dom-serializer"; + packageName = "dom-serializer"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz"; - sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372"; + url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz"; + sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82"; }; }; - "babel-plugin-transform-es2015-unicode-regex-6.24.1" = { - name = "babel-plugin-transform-es2015-unicode-regex"; - packageName = "babel-plugin-transform-es2015-unicode-regex"; - version = "6.24.1"; + "domelementtype-1.1.3" = { + name = "domelementtype"; + packageName = "domelementtype"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz"; - sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9"; + url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz"; + sha1 = "bd28773e2642881aec51544924299c5cd822185b"; }; }; - "babel-plugin-transform-regenerator-6.24.1" = { - name = "babel-plugin-transform-regenerator"; - packageName = "babel-plugin-transform-regenerator"; - version = "6.24.1"; + "cssom-0.3.2" = { + name = "cssom"; + packageName = "cssom"; + version = "0.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz"; - sha1 = "b8da305ad43c3c99b4848e4fe4037b770d23c418"; + url = "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz"; + sha1 = "b8036170c79f07a90ff2f16e22284027a243848b"; }; }; - "babel-helper-optimise-call-expression-6.24.1" = { - name = "babel-helper-optimise-call-expression"; - packageName = "babel-helper-optimise-call-expression"; - version = "6.24.1"; + "bemed-1.0.0" = { + name = "bemed"; + packageName = "bemed"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz"; - sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257"; + url = "https://registry.npmjs.org/bemed/-/bemed-1.0.0.tgz"; + sha1 = "168b3292a54f1eac43d60ba2a82d556de51aeeda"; }; }; - "babel-helper-function-name-6.24.1" = { - name = "babel-helper-function-name"; - packageName = "babel-helper-function-name"; - version = "6.24.1"; + "css-color-list-0.0.2" = { + name = "css-color-list"; + packageName = "css-color-list"; + version = "0.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz"; - sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9"; + url = "https://registry.npmjs.org/css-color-list/-/css-color-list-0.0.2.tgz"; + sha1 = "29e18f331e384520e9f42070f18175869eace75c"; }; }; - "babel-helper-replace-supers-6.24.1" = { - name = "babel-helper-replace-supers"; - packageName = "babel-helper-replace-supers"; - version = "6.24.1"; + "postcss-6.0.1" = { + name = "postcss"; + packageName = "postcss"; + version = "6.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz"; - sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"; + url = "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz"; + sha1 = "000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2"; }; }; - "babel-helper-define-map-6.24.1" = { - name = "babel-helper-define-map"; - packageName = "babel-helper-define-map"; - version = "6.24.1"; + "brand-colors-2.0.1" = { + name = "brand-colors"; + packageName = "brand-colors"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz"; - sha1 = "7a9747f258d8947d32d515f6aa1c7bd02204a080"; + url = "https://registry.npmjs.org/brand-colors/-/brand-colors-2.0.1.tgz"; + sha1 = "d6bffee2c144186edebd8a64cabd79742f2b9c89"; }; }; - "babel-helper-get-function-arity-6.24.1" = { - name = "babel-helper-get-function-arity"; - packageName = "babel-helper-get-function-arity"; - version = "6.24.1"; + "glob-7.0.6" = { + name = "glob"; + packageName = "glob"; + version = "7.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz"; - sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d"; + url = "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz"; + sha1 = "211bafaf49e525b8cd93260d14ab136152b3f57a"; }; }; - "babel-plugin-transform-strict-mode-6.24.1" = { - name = "babel-plugin-transform-strict-mode"; - packageName = "babel-plugin-transform-strict-mode"; - version = "6.24.1"; + "node-notifier-4.6.1" = { + name = "node-notifier"; + packageName = "node-notifier"; + version = "4.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz"; - sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758"; + url = "https://registry.npmjs.org/node-notifier/-/node-notifier-4.6.1.tgz"; + sha1 = "056d14244f3dcc1ceadfe68af9cff0c5473a33f3"; }; }; - "babel-helper-call-delegate-6.24.1" = { - name = "babel-helper-call-delegate"; - packageName = "babel-helper-call-delegate"; - version = "6.24.1"; + "postcss-5.0.21" = { + name = "postcss"; + packageName = "postcss"; + version = "5.0.21"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz"; - sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d"; + url = "https://registry.npmjs.org/postcss/-/postcss-5.0.21.tgz"; + sha1 = "d4cf6f19774648c492ac57c298f6afb3c04caefe"; }; }; - "babel-helper-regex-6.24.1" = { - name = "babel-helper-regex"; - packageName = "babel-helper-regex"; - version = "6.24.1"; + "shelljs-0.7.8" = { + name = "shelljs"; + packageName = "shelljs"; + version = "0.7.8"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz"; - sha1 = "d36e22fab1008d79d88648e32116868128456ce8"; + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz"; + sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3"; }; }; - "regexpu-core-2.0.0" = { - name = "regexpu-core"; - packageName = "regexpu-core"; - version = "2.0.0"; + "watch-0.19.3" = { + name = "watch"; + packageName = "watch"; + version = "0.19.3"; src = fetchurl { - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz"; - sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240"; + url = "https://registry.npmjs.org/watch/-/watch-0.19.3.tgz"; + sha1 = "78221aee8e2dbe23cd4458917da31eece54b3766"; }; }; - "regenerator-transform-0.9.11" = { - name = "regenerator-transform"; - packageName = "regenerator-transform"; - version = "0.9.11"; + "cli-usage-0.1.4" = { + name = "cli-usage"; + packageName = "cli-usage"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.9.11.tgz"; - sha1 = "3a7d067520cb7b7176769eb5ff868691befe1283"; + url = "https://registry.npmjs.org/cli-usage/-/cli-usage-0.1.4.tgz"; + sha1 = "7c01e0dc706c234b39c933838c8e20b2175776e2"; }; }; - "babel-plugin-transform-class-properties-6.24.1" = { - name = "babel-plugin-transform-class-properties"; - packageName = "babel-plugin-transform-class-properties"; - version = "6.24.1"; + "growly-1.3.0" = { + name = "growly"; + packageName = "growly"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz"; - sha1 = "6a79763ea61d33d36f37b611aa9def81a81b46ac"; + url = "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz"; + sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081"; }; }; - "babel-plugin-transform-decorators-6.24.1" = { - name = "babel-plugin-transform-decorators"; - packageName = "babel-plugin-transform-decorators"; - version = "6.24.1"; + "lodash.clonedeep-3.0.2" = { + name = "lodash.clonedeep"; + packageName = "lodash.clonedeep"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz"; - sha1 = "788013d8f8c6b5222bdf7b344390dfd77569e24d"; + url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz"; + sha1 = "a0a1e40d82a5ea89ff5b147b8444ed63d92827db"; }; }; - "babel-preset-stage-3-6.24.1" = { - name = "babel-preset-stage-3"; - packageName = "babel-preset-stage-3"; - version = "6.24.1"; + "shellwords-0.1.1" = { + name = "shellwords"; + packageName = "shellwords"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz"; - sha1 = "836ada0a9e7a7fa37cb138fb9326f87934a48395"; + url = "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz"; + sha1 = "d6b9181c1a48d397324c84871efbcfc73fc0654b"; }; }; - "babel-plugin-syntax-class-properties-6.13.0" = { - name = "babel-plugin-syntax-class-properties"; - packageName = "babel-plugin-syntax-class-properties"; - version = "6.13.0"; + "marked-terminal-1.7.0" = { + name = "marked-terminal"; + packageName = "marked-terminal"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz"; - sha1 = "d7eb23b79a317f8543962c505b827c7d6cac27de"; + url = "https://registry.npmjs.org/marked-terminal/-/marked-terminal-1.7.0.tgz"; + sha1 = "c8c460881c772c7604b64367007ee5f77f125904"; }; }; - "babel-plugin-syntax-decorators-6.13.0" = { - name = "babel-plugin-syntax-decorators"; - packageName = "babel-plugin-syntax-decorators"; - version = "6.13.0"; + "cardinal-1.0.0" = { + name = "cardinal"; + packageName = "cardinal"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz"; - sha1 = "312563b4dbde3cc806cee3e416cceeaddd11ac0b"; + url = "https://registry.npmjs.org/cardinal/-/cardinal-1.0.0.tgz"; + sha1 = "50e21c1b0aa37729f9377def196b5a9cec932ee9"; }; }; - "babel-helper-explode-class-6.24.1" = { - name = "babel-helper-explode-class"; - packageName = "babel-helper-explode-class"; - version = "6.24.1"; + "cli-table-0.3.1" = { + name = "cli-table"; + packageName = "cli-table"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz"; - sha1 = "7dc2a3910dee007056e1e31d640ced3d54eaa9eb"; + url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz"; + sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"; }; }; - "babel-helper-bindify-decorators-6.24.1" = { - name = "babel-helper-bindify-decorators"; - packageName = "babel-helper-bindify-decorators"; - version = "6.24.1"; + "lodash.assign-4.2.0" = { + name = "lodash.assign"; + packageName = "lodash.assign"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz"; - sha1 = "14c19e5f142d7b47f19a52431e52b1ccbc40a330"; + url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz"; + sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7"; }; }; - "babel-plugin-syntax-trailing-function-commas-6.22.0" = { - name = "babel-plugin-syntax-trailing-function-commas"; - packageName = "babel-plugin-syntax-trailing-function-commas"; - version = "6.22.0"; + "node-emoji-1.8.1" = { + name = "node-emoji"; + packageName = "node-emoji"; + version = "1.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz"; - sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3"; + url = "https://registry.npmjs.org/node-emoji/-/node-emoji-1.8.1.tgz"; + sha1 = "6eec6bfb07421e2148c75c6bba72421f8530a826"; }; }; - "babel-plugin-transform-async-generator-functions-6.24.1" = { - name = "babel-plugin-transform-async-generator-functions"; - packageName = "babel-plugin-transform-async-generator-functions"; - version = "6.24.1"; + "ansicolors-0.2.1" = { + name = "ansicolors"; + packageName = "ansicolors"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz"; - sha1 = "f058900145fd3e9907a6ddf28da59f215258a5db"; + url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.2.1.tgz"; + sha1 = "be089599097b74a5c9c4a84a0cdbcdb62bd87aef"; }; }; - "babel-plugin-transform-async-to-generator-6.24.1" = { - name = "babel-plugin-transform-async-to-generator"; - packageName = "babel-plugin-transform-async-to-generator"; - version = "6.24.1"; + "redeyed-1.0.1" = { + name = "redeyed"; + packageName = "redeyed"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz"; - sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"; + url = "https://registry.npmjs.org/redeyed/-/redeyed-1.0.1.tgz"; + sha1 = "e96c193b40c0816b00aec842698e61185e55498a"; }; }; - "babel-plugin-transform-exponentiation-operator-6.24.1" = { - name = "babel-plugin-transform-exponentiation-operator"; - packageName = "babel-plugin-transform-exponentiation-operator"; - version = "6.24.1"; + "esprima-3.0.0" = { + name = "esprima"; + packageName = "esprima"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz"; - sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"; + url = "https://registry.npmjs.org/esprima/-/esprima-3.0.0.tgz"; + sha1 = "53cf247acda77313e551c3aa2e73342d3fb4f7d9"; }; }; - "babel-plugin-transform-object-rest-spread-6.23.0" = { - name = "babel-plugin-transform-object-rest-spread"; - packageName = "babel-plugin-transform-object-rest-spread"; - version = "6.23.0"; + "colors-1.0.3" = { + name = "colors"; + packageName = "colors"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz"; - sha1 = "875d6bc9be761c58a2ae3feee5dc4895d8c7f921"; + url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; + sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; }; }; - "babel-helper-remap-async-to-generator-6.24.1" = { - name = "babel-helper-remap-async-to-generator"; - packageName = "babel-helper-remap-async-to-generator"; - version = "6.24.1"; + "lodash.toarray-4.4.0" = { + name = "lodash.toarray"; + packageName = "lodash.toarray"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz"; - sha1 = "5ec581827ad723fecdd381f1c928390676e4551b"; + url = "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz"; + sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; }; }; - "babel-plugin-syntax-async-generators-6.13.0" = { - name = "babel-plugin-syntax-async-generators"; - packageName = "babel-plugin-syntax-async-generators"; - version = "6.13.0"; + "lodash._baseclone-3.3.0" = { + name = "lodash._baseclone"; + packageName = "lodash._baseclone"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz"; - sha1 = "6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"; + url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz"; + sha1 = "303519bf6393fe7e42f34d8b630ef7794e3542b7"; }; }; - "babel-plugin-syntax-async-functions-6.13.0" = { - name = "babel-plugin-syntax-async-functions"; - packageName = "babel-plugin-syntax-async-functions"; - version = "6.13.0"; + "lodash._bindcallback-3.0.1" = { + name = "lodash._bindcallback"; + packageName = "lodash._bindcallback"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz"; - sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95"; + url = "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz"; + sha1 = "e531c27644cf8b57a99e17ed95b35c748789392e"; }; }; - "babel-plugin-syntax-exponentiation-operator-6.13.0" = { - name = "babel-plugin-syntax-exponentiation-operator"; - packageName = "babel-plugin-syntax-exponentiation-operator"; - version = "6.13.0"; + "lodash._arraycopy-3.0.0" = { + name = "lodash._arraycopy"; + packageName = "lodash._arraycopy"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz"; - sha1 = "9ee7e8337290da95288201a6a57f4170317830de"; + url = "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz"; + sha1 = "76e7b7c1f1fb92547374878a562ed06a3e50f6e1"; }; }; - "babel-helper-builder-binary-assignment-operator-visitor-6.24.1" = { - name = "babel-helper-builder-binary-assignment-operator-visitor"; - packageName = "babel-helper-builder-binary-assignment-operator-visitor"; - version = "6.24.1"; + "lodash._arrayeach-3.0.0" = { + name = "lodash._arrayeach"; + packageName = "lodash._arrayeach"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz"; - sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664"; + url = "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz"; + sha1 = "bab156b2a90d3f1bbd5c653403349e5e5933ef9e"; }; }; - "babel-helper-explode-assignable-expression-6.24.1" = { - name = "babel-helper-explode-assignable-expression"; - packageName = "babel-helper-explode-assignable-expression"; - version = "6.24.1"; + "lodash._baseassign-3.2.0" = { + name = "lodash._baseassign"; + packageName = "lodash._baseassign"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz"; - sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa"; + url = "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz"; + sha1 = "8c38a099500f215ad09e59f1722fd0c52bfe0a4e"; }; }; - "babel-plugin-syntax-object-rest-spread-6.13.0" = { - name = "babel-plugin-syntax-object-rest-spread"; - packageName = "babel-plugin-syntax-object-rest-spread"; - version = "6.13.0"; + "lodash._basefor-3.0.3" = { + name = "lodash._basefor"; + packageName = "lodash._basefor"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; - sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; + url = "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz"; + sha1 = "7550b4e9218ef09fad24343b612021c79b4c20c2"; }; }; - "restore-cursor-1.0.1" = { - name = "restore-cursor"; - packageName = "restore-cursor"; - version = "1.0.1"; + "interpret-1.1.0" = { + name = "interpret"; + packageName = "interpret"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz"; - sha1 = "34661f46886327fed2991479152252df92daa541"; + url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz"; + sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"; }; }; - "exit-hook-1.1.1" = { - name = "exit-hook"; - packageName = "exit-hook"; - version = "1.1.1"; + "ava-0.23.0" = { + name = "ava"; + packageName = "ava"; + version = "0.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz"; - sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8"; + url = "https://registry.npmjs.org/ava/-/ava-0.23.0.tgz"; + sha1 = "beed11730adef74a857761b62b8882bf16d5a038"; }; }; - "slice-ansi-0.0.4" = { - name = "slice-ansi"; - packageName = "slice-ansi"; - version = "0.0.4"; + "@ava/babel-preset-stage-4-1.1.0" = { + name = "@ava/babel-preset-stage-4"; + packageName = "@ava/babel-preset-stage-4"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz"; - sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; + url = "https://registry.npmjs.org/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz"; + sha1 = "ae60be881a0babf7d35f52aba770d1f6194f76bd"; }; }; - "pinkie-promise-1.0.0" = { - name = "pinkie-promise"; - packageName = "pinkie-promise"; - version = "1.0.0"; + "@ava/babel-preset-transform-test-files-3.0.0" = { + name = "@ava/babel-preset-transform-test-files"; + packageName = "@ava/babel-preset-transform-test-files"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz"; - sha1 = "d1da67f5482563bb7cf57f286ae2822ecfbf3670"; + url = "https://registry.npmjs.org/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz"; + sha1 = "cded1196a8d8d9381a509240ab92e91a5ec069f7"; }; }; - "pinkie-1.0.0" = { - name = "pinkie"; - packageName = "pinkie"; - version = "1.0.0"; + "@ava/write-file-atomic-2.2.0" = { + name = "@ava/write-file-atomic"; + packageName = "@ava/write-file-atomic"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz"; - sha1 = "5a47f28ba1015d0201bda7bf0f358e47bec8c7e4"; + url = "https://registry.npmjs.org/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz"; + sha1 = "d625046f3495f1f5e372135f473909684b429247"; }; }; - "buf-compare-1.0.1" = { - name = "buf-compare"; - packageName = "buf-compare"; - version = "1.0.1"; + "@concordance/react-1.0.0" = { + name = "@concordance/react"; + packageName = "@concordance/react"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/buf-compare/-/buf-compare-1.0.1.tgz"; - sha1 = "fef28da8b8113a0a0db4430b0b6467b69730b34a"; + url = "https://registry.npmjs.org/@concordance/react/-/react-1.0.0.tgz"; + sha1 = "fcf3cad020e5121bfd1c61d05bc3516aac25f734"; }; }; - "is-error-2.2.1" = { - name = "is-error"; - packageName = "is-error"; - version = "2.2.1"; + "ansi-escapes-2.0.0" = { + name = "ansi-escapes"; + packageName = "ansi-escapes"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-error/-/is-error-2.2.1.tgz"; - sha1 = "684a96d84076577c98f4cdb40c6d26a5123bf19c"; + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-2.0.0.tgz"; + sha1 = "5bae52be424878dd9783e8910e3fc2922e83c81b"; }; }; - "call-signature-0.0.2" = { - name = "call-signature"; - packageName = "call-signature"; - version = "0.0.2"; + "auto-bind-1.1.0" = { + name = "auto-bind"; + packageName = "auto-bind"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/call-signature/-/call-signature-0.0.2.tgz"; - sha1 = "a84abc825a55ef4cb2b028bd74e205a65b9a4996"; + url = "https://registry.npmjs.org/auto-bind/-/auto-bind-1.1.0.tgz"; + sha1 = "93b864dc7ee01a326281775d5c75ca0a751e5961"; }; }; - "commondir-1.0.1" = { - name = "commondir"; - packageName = "commondir"; - version = "1.0.1"; + "ava-init-0.2.1" = { + name = "ava-init"; + packageName = "ava-init"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; - sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; + url = "https://registry.npmjs.org/ava-init/-/ava-init-0.2.1.tgz"; + sha1 = "75ac4c8553326290d2866e63b62fa7035684bd58"; }; }; - "pkg-dir-1.0.0" = { - name = "pkg-dir"; - packageName = "pkg-dir"; - version = "1.0.0"; + "caching-transform-1.0.1" = { + name = "caching-transform"; + packageName = "caching-transform"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz"; - sha1 = "7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"; + url = "https://registry.npmjs.org/caching-transform/-/caching-transform-1.0.1.tgz"; + sha1 = "6dbdb2f20f8d8fbce79f3e94e9d1742dcdf5c0a1"; }; }; - "ci-info-1.0.0" = { - name = "ci-info"; - packageName = "ci-info"; - version = "1.0.0"; + "clean-stack-1.3.0" = { + name = "clean-stack"; + packageName = "clean-stack"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/ci-info/-/ci-info-1.0.0.tgz"; - sha1 = "dc5285f2b4e251821683681c381c3388f46ec534"; + url = "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz"; + sha1 = "9e821501ae979986c46b1d66d2d432db2fd4ae31"; }; }; - "symbol-observable-0.2.4" = { - name = "symbol-observable"; - packageName = "symbol-observable"; - version = "0.2.4"; + "clean-yaml-object-0.1.0" = { + name = "clean-yaml-object"; + packageName = "clean-yaml-object"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-0.2.4.tgz"; - sha1 = "95a83db26186d6af7e7a18dbd9760a2f86d08f40"; + url = "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz"; + sha1 = "63fb110dc2ce1a84dc21f6d9334876d010ae8b68"; }; }; - "md5-o-matic-0.1.1" = { - name = "md5-o-matic"; - packageName = "md5-o-matic"; - version = "0.1.1"; + "cli-cursor-2.1.0" = { + name = "cli-cursor"; + packageName = "cli-cursor"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz"; - sha1 = "822bccd65e117c514fab176b25945d54100a03c3"; + url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"; + sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; }; }; - "buffer-equals-1.0.4" = { - name = "buffer-equals"; - packageName = "buffer-equals"; - version = "1.0.4"; + "cli-spinners-1.1.0" = { + name = "cli-spinners"; + packageName = "cli-spinners"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz"; - sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5"; + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.1.0.tgz"; + sha1 = "f1847b168844d917a671eb9d147e3df497c90d06"; }; }; - "symbol-0.2.3" = { - name = "symbol"; - packageName = "symbol"; - version = "0.2.3"; + "cli-truncate-1.1.0" = { + name = "cli-truncate"; + packageName = "cli-truncate"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/symbol/-/symbol-0.2.3.tgz"; - sha1 = "3b9873b8a901e47c6efe21526a3ac372ef28bbc7"; + url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.1.0.tgz"; + sha1 = "2b2dfd83c53cfd3572b87fc4d430a808afb04086"; }; }; - "power-assert-context-traversal-1.1.1" = { - name = "power-assert-context-traversal"; - packageName = "power-assert-context-traversal"; - version = "1.1.1"; + "co-with-promise-4.6.0" = { + name = "co-with-promise"; + packageName = "co-with-promise"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/power-assert-context-traversal/-/power-assert-context-traversal-1.1.1.tgz"; - sha1 = "88cabca0d13b6359f07d3d3e8afa699264577ed9"; + url = "https://registry.npmjs.org/co-with-promise/-/co-with-promise-4.6.0.tgz"; + sha1 = "413e7db6f5893a60b942cf492c4bec93db415ab7"; }; }; - "power-assert-renderer-base-1.1.1" = { - name = "power-assert-renderer-base"; - packageName = "power-assert-renderer-base"; - version = "1.1.1"; + "code-excerpt-2.1.0" = { + name = "code-excerpt"; + packageName = "code-excerpt"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/power-assert-renderer-base/-/power-assert-renderer-base-1.1.1.tgz"; - sha1 = "96a650c6fd05ee1bc1f66b54ad61442c8b3f63eb"; + url = "https://registry.npmjs.org/code-excerpt/-/code-excerpt-2.1.0.tgz"; + sha1 = "5dcc081e88f4a7e3b554e9e35d7ef232d47f8147"; }; }; - "power-assert-util-string-width-1.1.1" = { - name = "power-assert-util-string-width"; - packageName = "power-assert-util-string-width"; - version = "1.1.1"; + "common-path-prefix-1.0.0" = { + name = "common-path-prefix"; + packageName = "common-path-prefix"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/power-assert-util-string-width/-/power-assert-util-string-width-1.1.1.tgz"; - sha1 = "be659eb7937fdd2e6c9a77268daaf64bd5b7c592"; + url = "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-1.0.0.tgz"; + sha1 = "cd52f6f0712e0baab97d6f9732874f22f47752c0"; }; }; - "eastasianwidth-0.1.1" = { - name = "eastasianwidth"; - packageName = "eastasianwidth"; - version = "0.1.1"; + "concordance-3.0.0" = { + name = "concordance"; + packageName = "concordance"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.1.1.tgz"; - sha1 = "44d656de9da415694467335365fb3147b8572b7c"; + url = "https://registry.npmjs.org/concordance/-/concordance-3.0.0.tgz"; + sha1 = "b2286af54405fc995fc7345b0b106d8dd073cb29"; }; }; - "power-assert-renderer-diagram-1.1.2" = { - name = "power-assert-renderer-diagram"; - packageName = "power-assert-renderer-diagram"; - version = "1.1.2"; + "core-assert-0.2.1" = { + name = "core-assert"; + packageName = "core-assert"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/power-assert-renderer-diagram/-/power-assert-renderer-diagram-1.1.2.tgz"; - sha1 = "655f8f711935a9b6d541b86327654717c637a986"; + url = "https://registry.npmjs.org/core-assert/-/core-assert-0.2.1.tgz"; + sha1 = "f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f"; }; }; - "stringifier-1.3.0" = { - name = "stringifier"; - packageName = "stringifier"; - version = "1.3.0"; + "empower-core-0.6.2" = { + name = "empower-core"; + packageName = "empower-core"; + version = "0.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/stringifier/-/stringifier-1.3.0.tgz"; - sha1 = "def18342f6933db0f2dbfc9aa02175b448c17959"; + url = "https://registry.npmjs.org/empower-core/-/empower-core-0.6.2.tgz"; + sha1 = "5adef566088e31fba80ba0a36df47d7094169144"; }; }; - "traverse-0.6.6" = { - name = "traverse"; - packageName = "traverse"; - version = "0.6.6"; + "equal-length-1.0.1" = { + name = "equal-length"; + packageName = "equal-length"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz"; - sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137"; + url = "https://registry.npmjs.org/equal-length/-/equal-length-1.0.1.tgz"; + sha1 = "21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c"; }; }; - "type-name-2.0.2" = { - name = "type-name"; - packageName = "type-name"; - version = "2.0.2"; + "figures-2.0.0" = { + name = "figures"; + packageName = "figures"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/type-name/-/type-name-2.0.2.tgz"; - sha1 = "efe7d4123d8ac52afff7f40c7e4dec5266008fb4"; + url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz"; + sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; }; }; - "parse-ms-1.0.1" = { - name = "parse-ms"; - packageName = "parse-ms"; - version = "1.0.1"; + "find-cache-dir-1.0.0" = { + name = "find-cache-dir"; + packageName = "find-cache-dir"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz"; - sha1 = "56346d4749d78f23430ca0c713850aef91aa361d"; + url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz"; + sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f"; }; }; - "plur-1.0.0" = { - name = "plur"; - packageName = "plur"; - version = "1.0.0"; + "fn-name-2.0.1" = { + name = "fn-name"; + packageName = "fn-name"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz"; - sha1 = "db85c6814f5e5e5a3b49efc28d604fec62975156"; + url = "https://registry.npmjs.org/fn-name/-/fn-name-2.0.1.tgz"; + sha1 = "5214d7537a4d06a4a301c0cc262feb84188002e7"; }; }; - "chalk-0.4.0" = { - name = "chalk"; - packageName = "chalk"; - version = "0.4.0"; + "get-port-3.2.0" = { + name = "get-port"; + packageName = "get-port"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; - sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; + url = "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz"; + sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc"; }; }; - "date-time-0.1.1" = { - name = "date-time"; - packageName = "date-time"; - version = "0.1.1"; + "hullabaloo-config-manager-1.1.1" = { + name = "hullabaloo-config-manager"; + packageName = "hullabaloo-config-manager"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/date-time/-/date-time-0.1.1.tgz"; - sha1 = "ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07"; + url = "https://registry.npmjs.org/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz"; + sha1 = "1d9117813129ad035fd9e8477eaf066911269fe3"; }; }; - "pretty-ms-0.2.2" = { - name = "pretty-ms"; - packageName = "pretty-ms"; - version = "0.2.2"; + "ignore-by-default-1.0.1" = { + name = "ignore-by-default"; + packageName = "ignore-by-default"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-0.2.2.tgz"; - sha1 = "da879a682ff33a37011046f13d627f67c73b84f6"; + url = "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz"; + sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"; }; }; - "has-color-0.1.7" = { - name = "has-color"; - packageName = "has-color"; - version = "0.1.7"; + "import-local-0.1.1" = { + name = "import-local"; + packageName = "import-local"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; - sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; + url = "https://registry.npmjs.org/import-local/-/import-local-0.1.1.tgz"; + sha1 = "b1179572aacdc11c6a91009fb430dbcab5f668a8"; }; }; - "ansi-styles-1.0.0" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "1.0.0"; + "indent-string-3.2.0" = { + name = "indent-string"; + packageName = "indent-string"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; - sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; + url = "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz"; + sha1 = "4a5fd6d27cc332f37e5419a504dbb837105c9289"; }; }; - "strip-ansi-0.1.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "0.1.1"; + "is-ci-1.0.10" = { + name = "is-ci"; + packageName = "is-ci"; + version = "1.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; - sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; + url = "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz"; + sha1 = "f739336b2632365061a9d48270cd56ae3369318e"; }; }; - "parse-ms-0.1.2" = { - name = "parse-ms"; - packageName = "parse-ms"; - version = "0.1.2"; + "is-generator-fn-1.0.0" = { + name = "is-generator-fn"; + packageName = "is-generator-fn"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/parse-ms/-/parse-ms-0.1.2.tgz"; - sha1 = "dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e"; + url = "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz"; + sha1 = "969d49e1bb3329f6bb7f09089be26578b2ddd46a"; }; }; - "uid2-0.0.3" = { - name = "uid2"; - packageName = "uid2"; - version = "0.0.3"; + "is-observable-0.2.0" = { + name = "is-observable"; + packageName = "is-observable"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz"; - sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; + url = "https://registry.npmjs.org/is-observable/-/is-observable-0.2.0.tgz"; + sha1 = "b361311d83c6e5d726cabf5e250b0237106f5ae2"; }; }; - "boxen-0.6.0" = { - name = "boxen"; - packageName = "boxen"; - version = "0.6.0"; + "is-promise-2.1.0" = { + name = "is-promise"; + packageName = "is-promise"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/boxen/-/boxen-0.6.0.tgz"; - sha1 = "8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6"; + url = "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz"; + sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; }; }; - "configstore-2.1.0" = { - name = "configstore"; - packageName = "configstore"; - version = "2.1.0"; + "js-yaml-3.10.0" = { + name = "js-yaml"; + packageName = "js-yaml"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/configstore/-/configstore-2.1.0.tgz"; - sha1 = "737a3a7036e9886102aa6099e47bb33ab1aba1a1"; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"; + sha1 = "2e78441646bd4682e963f22b6e92823c309c62dc"; }; }; - "is-npm-1.0.0" = { - name = "is-npm"; - packageName = "is-npm"; + "last-line-stream-1.0.0" = { + name = "last-line-stream"; + packageName = "last-line-stream"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz"; - sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4"; + url = "https://registry.npmjs.org/last-line-stream/-/last-line-stream-1.0.0.tgz"; + sha1 = "d1b64d69f86ff24af2d04883a2ceee14520a5600"; }; }; - "latest-version-2.0.0" = { - name = "latest-version"; - packageName = "latest-version"; - version = "2.0.0"; + "lodash.clonedeepwith-4.5.0" = { + name = "lodash.clonedeepwith"; + packageName = "lodash.clonedeepwith"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/latest-version/-/latest-version-2.0.0.tgz"; - sha1 = "56f8d6139620847b8017f8f1f4d78e211324168b"; + url = "https://registry.npmjs.org/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz"; + sha1 = "6ee30573a03a1a60d670a62ef33c10cf1afdbdd4"; }; }; - "semver-diff-2.1.0" = { - name = "semver-diff"; - packageName = "semver-diff"; - version = "2.1.0"; + "lodash.debounce-4.0.8" = { + name = "lodash.debounce"; + packageName = "lodash.debounce"; + version = "4.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; - sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"; + url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; + sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; }; }; - "xdg-basedir-2.0.0" = { - name = "xdg-basedir"; - packageName = "xdg-basedir"; - version = "2.0.0"; + "lodash.difference-4.5.0" = { + name = "lodash.difference"; + packageName = "lodash.difference"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz"; - sha1 = "edbc903cc385fc04523d966a335504b5504d1bd2"; + url = "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz"; + sha1 = "9ccb4e505d486b91651345772885a2df27fd017c"; }; }; - "ansi-align-1.1.0" = { - name = "ansi-align"; - packageName = "ansi-align"; - version = "1.1.0"; + "lodash.flatten-4.4.0" = { + name = "lodash.flatten"; + packageName = "lodash.flatten"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-align/-/ansi-align-1.1.0.tgz"; - sha1 = "2f0c1658829739add5ebb15e6b0c6e3423f016ba"; + url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; + sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; }; }; - "cli-boxes-1.0.0" = { - name = "cli-boxes"; - packageName = "cli-boxes"; + "matcher-1.0.0" = { + name = "matcher"; + packageName = "matcher"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz"; - sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143"; + url = "https://registry.npmjs.org/matcher/-/matcher-1.0.0.tgz"; + sha1 = "aaf0c4816eb69b92094674175625f3466b0e3e19"; }; }; - "filled-array-1.1.0" = { - name = "filled-array"; - packageName = "filled-array"; - version = "1.1.0"; + "md5-hex-2.0.0" = { + name = "md5-hex"; + packageName = "md5-hex"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/filled-array/-/filled-array-1.1.0.tgz"; - sha1 = "c3c4f6c663b923459a9aa29912d2d031f1507f84"; + url = "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz"; + sha1 = "d0588e9f1c74954492ecd24ac0ac6ce997d92e33"; }; }; - "widest-line-1.0.0" = { - name = "widest-line"; - packageName = "widest-line"; - version = "1.0.0"; + "ms-2.1.1" = { + name = "ms"; + packageName = "ms"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz"; - sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c"; + url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; + sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"; }; }; - "dot-prop-3.0.0" = { - name = "dot-prop"; - packageName = "dot-prop"; - version = "3.0.0"; + "multimatch-2.1.0" = { + name = "multimatch"; + packageName = "multimatch"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz"; - sha1 = "1b708af094a49c9a0e7dbcad790aba539dac1177"; + url = "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz"; + sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"; }; }; - "package-json-2.4.0" = { - name = "package-json"; - packageName = "package-json"; - version = "2.4.0"; + "observable-to-promise-0.5.0" = { + name = "observable-to-promise"; + packageName = "observable-to-promise"; + version = "0.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/package-json/-/package-json-2.4.0.tgz"; - sha1 = "0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb"; + url = "https://registry.npmjs.org/observable-to-promise/-/observable-to-promise-0.5.0.tgz"; + sha1 = "c828f0f0dc47e9f86af8a4977c5d55076ce7a91f"; }; }; - "registry-auth-token-3.3.1" = { - name = "registry-auth-token"; - packageName = "registry-auth-token"; - version = "3.3.1"; + "option-chain-1.0.0" = { + name = "option-chain"; + packageName = "option-chain"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz"; - sha1 = "fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006"; + url = "https://registry.npmjs.org/option-chain/-/option-chain-1.0.0.tgz"; + sha1 = "938d73bd4e1783f948d34023644ada23669e30f2"; }; }; - "registry-url-3.1.0" = { - name = "registry-url"; - packageName = "registry-url"; - version = "3.1.0"; + "package-hash-2.0.0" = { + name = "package-hash"; + packageName = "package-hash"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz"; - sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942"; + url = "https://registry.npmjs.org/package-hash/-/package-hash-2.0.0.tgz"; + sha1 = "78ae326c89e05a4d813b68601977af05c00d2a0d"; }; }; - "css-2.2.1" = { - name = "css"; - packageName = "css"; - version = "2.2.1"; + "pkg-conf-2.0.0" = { + name = "pkg-conf"; + packageName = "pkg-conf"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css/-/css-2.2.1.tgz"; - sha1 = "73a4c81de85db664d4ee674f7d47085e3b2d55dc"; + url = "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.0.0.tgz"; + sha1 = "071c87650403bccfb9c627f58751bfe47c067279"; }; }; - "cssmin-0.4.3" = { - name = "cssmin"; - packageName = "cssmin"; - version = "0.4.3"; + "pretty-ms-3.1.0" = { + name = "pretty-ms"; + packageName = "pretty-ms"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssmin/-/cssmin-0.4.3.tgz"; - sha1 = "c9194077e0ebdacd691d5f59015b9d819f38d015"; + url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-3.1.0.tgz"; + sha1 = "e9cac9c76bf6ee52fe942dd9c6c4213153b12881"; }; }; - "jsdom-nogyp-0.8.3" = { - name = "jsdom-nogyp"; - packageName = "jsdom-nogyp"; - version = "0.8.3"; + "require-precompiled-0.1.0" = { + name = "require-precompiled"; + packageName = "require-precompiled"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz"; - sha1 = "924b3f03cfe487dfcdf6375e6324252ceb80d0cc"; + url = "https://registry.npmjs.org/require-precompiled/-/require-precompiled-0.1.0.tgz"; + sha1 = "5a1b52eb70ebed43eb982e974c85ab59571e56fa"; }; }; - "source-map-resolve-0.3.1" = { - name = "source-map-resolve"; - packageName = "source-map-resolve"; - version = "0.3.1"; + "resolve-cwd-2.0.0" = { + name = "resolve-cwd"; + packageName = "resolve-cwd"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.3.1.tgz"; - sha1 = "610f6122a445b8dd51535a2a71b783dfc1248761"; + url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz"; + sha1 = "00a9f7387556e27038eae232caa372a6a59b665a"; }; }; - "urix-0.1.0" = { - name = "urix"; - packageName = "urix"; - version = "0.1.0"; + "stack-utils-1.0.1" = { + name = "stack-utils"; + packageName = "stack-utils"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"; - sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; + url = "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz"; + sha1 = "d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"; }; }; - "source-map-url-0.3.0" = { - name = "source-map-url"; - packageName = "source-map-url"; - version = "0.3.0"; + "strip-ansi-4.0.0" = { + name = "strip-ansi"; + packageName = "strip-ansi"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.3.0.tgz"; - sha1 = "7ecaf13b57bcd09da8a40c5d269db33799d4aaf9"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; + sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; }; }; - "atob-1.1.3" = { - name = "atob"; - packageName = "atob"; - version = "1.1.3"; + "strip-bom-buf-1.0.0" = { + name = "strip-bom-buf"; + packageName = "strip-bom-buf"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/atob/-/atob-1.1.3.tgz"; - sha1 = "95f13629b12c3a51a5d215abdce2aa9f32f80773"; + url = "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz"; + sha1 = "1cb45aaf57530f4caf86c7f75179d2c9a51dd572"; }; }; - "resolve-url-0.2.1" = { - name = "resolve-url"; - packageName = "resolve-url"; - version = "0.2.1"; + "time-require-0.1.2" = { + name = "time-require"; + packageName = "time-require"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; - sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; + url = "https://registry.npmjs.org/time-require/-/time-require-0.1.2.tgz"; + sha1 = "f9e12cb370fc2605e11404582ba54ef5ca2b2d98"; }; }; - "htmlparser2-3.9.2" = { - name = "htmlparser2"; - packageName = "htmlparser2"; - version = "3.9.2"; + "trim-off-newlines-1.0.1" = { + name = "trim-off-newlines"; + packageName = "trim-off-newlines"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz"; - sha1 = "1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"; + url = "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz"; + sha1 = "9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"; }; }; - "nwmatcher-1.3.9" = { - name = "nwmatcher"; - packageName = "nwmatcher"; - version = "1.3.9"; + "unique-temp-dir-1.0.0" = { + name = "unique-temp-dir"; + packageName = "unique-temp-dir"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.3.9.tgz"; - sha1 = "8bab486ff7fa3dfd086656bbe8b17116d3692d2a"; + url = "https://registry.npmjs.org/unique-temp-dir/-/unique-temp-dir-1.0.0.tgz"; + sha1 = "6dce95b2681ca003eebfb304a415f9cbabcc5385"; }; }; - "xmlhttprequest-1.8.0" = { - name = "xmlhttprequest"; - packageName = "xmlhttprequest"; - version = "1.8.0"; + "update-notifier-2.3.0" = { + name = "update-notifier"; + packageName = "update-notifier"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"; - sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc"; + url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.3.0.tgz"; + sha1 = "4e8827a6bb915140ab093559d7014e3ebb837451"; }; }; - "cssom-0.2.5" = { - name = "cssom"; - packageName = "cssom"; - version = "0.2.5"; + "babel-plugin-check-es2015-constants-6.22.0" = { + name = "babel-plugin-check-es2015-constants"; + packageName = "babel-plugin-check-es2015-constants"; + version = "6.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssom/-/cssom-0.2.5.tgz"; - sha1 = "2682709b5902e7212df529116ff788cd5b254894"; + url = "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz"; + sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a"; }; }; - "cssstyle-0.2.37" = { - name = "cssstyle"; - packageName = "cssstyle"; - version = "0.2.37"; + "babel-plugin-syntax-trailing-function-commas-6.22.0" = { + name = "babel-plugin-syntax-trailing-function-commas"; + packageName = "babel-plugin-syntax-trailing-function-commas"; + version = "6.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz"; - sha1 = "541097234cb2513c83ceed3acddc27ff27987d54"; + url = "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz"; + sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3"; }; }; - "domelementtype-1.3.0" = { - name = "domelementtype"; - packageName = "domelementtype"; - version = "1.3.0"; + "babel-plugin-transform-async-to-generator-6.24.1" = { + name = "babel-plugin-transform-async-to-generator"; + packageName = "babel-plugin-transform-async-to-generator"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz"; - sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2"; + url = "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz"; + sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"; }; }; - "domhandler-2.4.1" = { - name = "domhandler"; - packageName = "domhandler"; - version = "2.4.1"; + "babel-plugin-transform-es2015-destructuring-6.23.0" = { + name = "babel-plugin-transform-es2015-destructuring"; + packageName = "babel-plugin-transform-es2015-destructuring"; + version = "6.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz"; - sha1 = "892e47000a99be55bbf3774ffea0561d8879c259"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz"; + sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d"; }; }; - "domutils-1.6.2" = { - name = "domutils"; - packageName = "domutils"; - version = "1.6.2"; + "babel-plugin-transform-es2015-function-name-6.24.1" = { + name = "babel-plugin-transform-es2015-function-name"; + packageName = "babel-plugin-transform-es2015-function-name"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/domutils/-/domutils-1.6.2.tgz"; - sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz"; + sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"; }; }; - "entities-1.1.1" = { - name = "entities"; - packageName = "entities"; - version = "1.1.1"; + "babel-plugin-transform-es2015-modules-commonjs-6.26.0" = { + name = "babel-plugin-transform-es2015-modules-commonjs"; + packageName = "babel-plugin-transform-es2015-modules-commonjs"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz"; - sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz"; + sha1 = "0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"; }; }; - "dom-serializer-0.1.0" = { - name = "dom-serializer"; - packageName = "dom-serializer"; - version = "0.1.0"; + "babel-plugin-transform-es2015-parameters-6.24.1" = { + name = "babel-plugin-transform-es2015-parameters"; + packageName = "babel-plugin-transform-es2015-parameters"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz"; - sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz"; + sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b"; }; }; - "domelementtype-1.1.3" = { - name = "domelementtype"; - packageName = "domelementtype"; - version = "1.1.3"; + "babel-plugin-transform-es2015-spread-6.22.0" = { + name = "babel-plugin-transform-es2015-spread"; + packageName = "babel-plugin-transform-es2015-spread"; + version = "6.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz"; - sha1 = "bd28773e2642881aec51544924299c5cd822185b"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz"; + sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"; }; }; - "cssom-0.3.2" = { - name = "cssom"; - packageName = "cssom"; - version = "0.3.2"; + "babel-plugin-transform-es2015-sticky-regex-6.24.1" = { + name = "babel-plugin-transform-es2015-sticky-regex"; + packageName = "babel-plugin-transform-es2015-sticky-regex"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz"; - sha1 = "b8036170c79f07a90ff2f16e22284027a243848b"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz"; + sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"; }; }; - "bemed-1.0.0" = { - name = "bemed"; - packageName = "bemed"; - version = "1.0.0"; + "babel-plugin-transform-es2015-unicode-regex-6.24.1" = { + name = "babel-plugin-transform-es2015-unicode-regex"; + packageName = "babel-plugin-transform-es2015-unicode-regex"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/bemed/-/bemed-1.0.0.tgz"; - sha1 = "168b3292a54f1eac43d60ba2a82d556de51aeeda"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz"; + sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9"; }; }; - "postcss-6.0.1" = { - name = "postcss"; - packageName = "postcss"; - version = "6.0.1"; + "babel-plugin-transform-exponentiation-operator-6.24.1" = { + name = "babel-plugin-transform-exponentiation-operator"; + packageName = "babel-plugin-transform-exponentiation-operator"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz"; - sha1 = "000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2"; + url = "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz"; + sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"; }; }; - "glob-7.0.6" = { - name = "glob"; - packageName = "glob"; - version = "7.0.6"; + "package-hash-1.2.0" = { + name = "package-hash"; + packageName = "package-hash"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz"; - sha1 = "211bafaf49e525b8cd93260d14ab136152b3f57a"; + url = "https://registry.npmjs.org/package-hash/-/package-hash-1.2.0.tgz"; + sha1 = "003e56cd57b736a6ed6114cc2b81542672770e44"; }; }; - "node-notifier-4.6.1" = { - name = "node-notifier"; - packageName = "node-notifier"; - version = "4.6.1"; + "babel-helper-remap-async-to-generator-6.24.1" = { + name = "babel-helper-remap-async-to-generator"; + packageName = "babel-helper-remap-async-to-generator"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-4.6.1.tgz"; - sha1 = "056d14244f3dcc1ceadfe68af9cff0c5473a33f3"; + url = "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz"; + sha1 = "5ec581827ad723fecdd381f1c928390676e4551b"; }; }; - "postcss-5.0.21" = { - name = "postcss"; - packageName = "postcss"; - version = "5.0.21"; + "babel-plugin-syntax-async-functions-6.13.0" = { + name = "babel-plugin-syntax-async-functions"; + packageName = "babel-plugin-syntax-async-functions"; + version = "6.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-5.0.21.tgz"; - sha1 = "d4cf6f19774648c492ac57c298f6afb3c04caefe"; + url = "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz"; + sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95"; }; }; - "shelljs-0.7.8" = { - name = "shelljs"; - packageName = "shelljs"; - version = "0.7.8"; + "babel-helper-function-name-6.24.1" = { + name = "babel-helper-function-name"; + packageName = "babel-helper-function-name"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz"; - sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3"; - }; + url = "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz"; + sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9"; + }; }; - "watch-0.19.3" = { - name = "watch"; - packageName = "watch"; - version = "0.19.3"; + "babel-helper-get-function-arity-6.24.1" = { + name = "babel-helper-get-function-arity"; + packageName = "babel-helper-get-function-arity"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/watch/-/watch-0.19.3.tgz"; - sha1 = "78221aee8e2dbe23cd4458917da31eece54b3766"; + url = "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz"; + sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d"; }; }; - "cli-usage-0.1.4" = { - name = "cli-usage"; - packageName = "cli-usage"; - version = "0.1.4"; + "babel-plugin-transform-strict-mode-6.24.1" = { + name = "babel-plugin-transform-strict-mode"; + packageName = "babel-plugin-transform-strict-mode"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/cli-usage/-/cli-usage-0.1.4.tgz"; - sha1 = "7c01e0dc706c234b39c933838c8e20b2175776e2"; + url = "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz"; + sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758"; }; }; - "growly-1.3.0" = { - name = "growly"; - packageName = "growly"; - version = "1.3.0"; + "babel-helper-call-delegate-6.24.1" = { + name = "babel-helper-call-delegate"; + packageName = "babel-helper-call-delegate"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz"; - sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081"; + url = "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz"; + sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d"; }; }; - "lodash.clonedeep-3.0.2" = { - name = "lodash.clonedeep"; - packageName = "lodash.clonedeep"; - version = "3.0.2"; + "babel-helper-regex-6.26.0" = { + name = "babel-helper-regex"; + packageName = "babel-helper-regex"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz"; - sha1 = "a0a1e40d82a5ea89ff5b147b8444ed63d92827db"; + url = "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz"; + sha1 = "325c59f902f82f24b74faceed0363954f6495e72"; }; }; - "shellwords-0.1.0" = { - name = "shellwords"; - packageName = "shellwords"; - version = "0.1.0"; + "regexpu-core-2.0.0" = { + name = "regexpu-core"; + packageName = "regexpu-core"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/shellwords/-/shellwords-0.1.0.tgz"; - sha1 = "66afd47b6a12932d9071cbfd98a52e785cd0ba14"; + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz"; + sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240"; }; }; - "marked-terminal-1.7.0" = { - name = "marked-terminal"; - packageName = "marked-terminal"; - version = "1.7.0"; + "babel-plugin-syntax-exponentiation-operator-6.13.0" = { + name = "babel-plugin-syntax-exponentiation-operator"; + packageName = "babel-plugin-syntax-exponentiation-operator"; + version = "6.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/marked-terminal/-/marked-terminal-1.7.0.tgz"; - sha1 = "c8c460881c772c7604b64367007ee5f77f125904"; + url = "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz"; + sha1 = "9ee7e8337290da95288201a6a57f4170317830de"; }; }; - "cardinal-1.0.0" = { - name = "cardinal"; - packageName = "cardinal"; - version = "1.0.0"; + "babel-helper-builder-binary-assignment-operator-visitor-6.24.1" = { + name = "babel-helper-builder-binary-assignment-operator-visitor"; + packageName = "babel-helper-builder-binary-assignment-operator-visitor"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/cardinal/-/cardinal-1.0.0.tgz"; - sha1 = "50e21c1b0aa37729f9377def196b5a9cec932ee9"; + url = "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz"; + sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664"; }; }; - "cli-table-0.3.1" = { - name = "cli-table"; - packageName = "cli-table"; - version = "0.3.1"; + "babel-helper-explode-assignable-expression-6.24.1" = { + name = "babel-helper-explode-assignable-expression"; + packageName = "babel-helper-explode-assignable-expression"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz"; - sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"; + url = "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz"; + sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa"; }; }; - "lodash.assign-4.2.0" = { - name = "lodash.assign"; - packageName = "lodash.assign"; - version = "4.2.0"; + "md5-hex-1.3.0" = { + name = "md5-hex"; + packageName = "md5-hex"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz"; - sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7"; + url = "https://registry.npmjs.org/md5-hex/-/md5-hex-1.3.0.tgz"; + sha1 = "d2c4afe983c4370662179b8cad145219135046c4"; }; }; - "node-emoji-1.7.0" = { - name = "node-emoji"; - packageName = "node-emoji"; - version = "1.7.0"; + "md5-o-matic-0.1.1" = { + name = "md5-o-matic"; + packageName = "md5-o-matic"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/node-emoji/-/node-emoji-1.7.0.tgz"; - sha1 = "a400490aac409b616d13941532200f128af037f9"; + url = "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz"; + sha1 = "822bccd65e117c514fab176b25945d54100a03c3"; }; }; - "ansicolors-0.2.1" = { - name = "ansicolors"; - packageName = "ansicolors"; - version = "0.2.1"; + "@ava/babel-plugin-throws-helper-2.0.0" = { + name = "@ava/babel-plugin-throws-helper"; + packageName = "@ava/babel-plugin-throws-helper"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.2.1.tgz"; - sha1 = "be089599097b74a5c9c4a84a0cdbcdb62bd87aef"; + url = "https://registry.npmjs.org/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz"; + sha1 = "2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c"; }; }; - "redeyed-1.0.1" = { - name = "redeyed"; - packageName = "redeyed"; - version = "1.0.1"; + "babel-plugin-espower-2.3.2" = { + name = "babel-plugin-espower"; + packageName = "babel-plugin-espower"; + version = "2.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/redeyed/-/redeyed-1.0.1.tgz"; - sha1 = "e96c193b40c0816b00aec842698e61185e55498a"; + url = "https://registry.npmjs.org/babel-plugin-espower/-/babel-plugin-espower-2.3.2.tgz"; + sha1 = "5516b8fcdb26c9f0e1d8160749f6e4c65e71271e"; }; }; - "esprima-3.0.0" = { - name = "esprima"; - packageName = "esprima"; - version = "3.0.0"; + "call-matcher-1.0.1" = { + name = "call-matcher"; + packageName = "call-matcher"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-3.0.0.tgz"; - sha1 = "53cf247acda77313e551c3aa2e73342d3fb4f7d9"; + url = "https://registry.npmjs.org/call-matcher/-/call-matcher-1.0.1.tgz"; + sha1 = "5134d077984f712a54dad3cbf62de28dce416ca8"; }; }; - "colors-1.0.3" = { - name = "colors"; - packageName = "colors"; - version = "1.0.3"; + "espower-location-detector-1.0.0" = { + name = "espower-location-detector"; + packageName = "espower-location-detector"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; - sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; + url = "https://registry.npmjs.org/espower-location-detector/-/espower-location-detector-1.0.0.tgz"; + sha1 = "a17b7ecc59d30e179e2bef73fb4137704cb331b5"; }; }; - "lodash.toarray-4.4.0" = { - name = "lodash.toarray"; - packageName = "lodash.toarray"; - version = "4.4.0"; + "espurify-1.7.0" = { + name = "espurify"; + packageName = "espurify"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz"; - sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561"; + url = "https://registry.npmjs.org/espurify/-/espurify-1.7.0.tgz"; + sha1 = "1c5cf6cbccc32e6f639380bd4f991fab9ba9d226"; }; }; - "string.prototype.codepointat-0.2.0" = { - name = "string.prototype.codepointat"; - packageName = "string.prototype.codepointat"; - version = "0.2.0"; + "estraverse-4.2.0" = { + name = "estraverse"; + packageName = "estraverse"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz"; - sha1 = "6b26e9bd3afcaa7be3b4269b526de1b82000ac78"; + url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz"; + sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; }; }; - "lodash._baseclone-3.3.0" = { - name = "lodash._baseclone"; - packageName = "lodash._baseclone"; - version = "3.3.0"; + "deep-equal-1.0.1" = { + name = "deep-equal"; + packageName = "deep-equal"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz"; - sha1 = "303519bf6393fe7e42f34d8b630ef7794e3542b7"; + url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz"; + sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; }; }; - "lodash._bindcallback-3.0.1" = { - name = "lodash._bindcallback"; - packageName = "lodash._bindcallback"; - version = "3.0.1"; + "slide-1.1.6" = { + name = "slide"; + packageName = "slide"; + version = "1.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz"; - sha1 = "e531c27644cf8b57a99e17ed95b35c748789392e"; + url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz"; + sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"; }; }; - "lodash._arraycopy-3.0.0" = { - name = "lodash._arraycopy"; - packageName = "lodash._arraycopy"; - version = "3.0.0"; + "arr-exclude-1.0.0" = { + name = "arr-exclude"; + packageName = "arr-exclude"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz"; - sha1 = "76e7b7c1f1fb92547374878a562ed06a3e50f6e1"; + url = "https://registry.npmjs.org/arr-exclude/-/arr-exclude-1.0.0.tgz"; + sha1 = "dfc7c2e552a270723ccda04cf3128c8cbfe5c631"; }; }; - "lodash._arrayeach-3.0.0" = { - name = "lodash._arrayeach"; - packageName = "lodash._arrayeach"; - version = "3.0.0"; + "has-yarn-1.0.0" = { + name = "has-yarn"; + packageName = "has-yarn"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz"; - sha1 = "bab156b2a90d3f1bbd5c653403349e5e5933ef9e"; + url = "https://registry.npmjs.org/has-yarn/-/has-yarn-1.0.0.tgz"; + sha1 = "89e25db604b725c8f5976fff0addc921b828a5a7"; }; }; - "lodash._baseassign-3.2.0" = { - name = "lodash._baseassign"; - packageName = "lodash._baseassign"; - version = "3.2.0"; + "read-pkg-up-2.0.0" = { + name = "read-pkg-up"; + packageName = "read-pkg-up"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz"; - sha1 = "8c38a099500f215ad09e59f1722fd0c52bfe0a4e"; + url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; + sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; }; }; - "lodash._basefor-3.0.3" = { - name = "lodash._basefor"; - packageName = "lodash._basefor"; - version = "3.0.3"; + "write-pkg-3.1.0" = { + name = "write-pkg"; + packageName = "write-pkg"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz"; - sha1 = "7550b4e9218ef09fad24343b612021c79b4c20c2"; + url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz"; + sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9"; }; }; - "interpret-1.0.3" = { - name = "interpret"; - packageName = "interpret"; - version = "1.0.3"; + "find-up-2.1.0" = { + name = "find-up"; + packageName = "find-up"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz"; - sha1 = "cbc35c62eeee73f19ab7b10a801511401afc0f90"; + url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"; + sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; }; }; - "canonical-path-0.0.2" = { - name = "canonical-path"; - packageName = "canonical-path"; - version = "0.0.2"; + "read-pkg-2.0.0" = { + name = "read-pkg"; + packageName = "read-pkg"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/canonical-path/-/canonical-path-0.0.2.tgz"; - sha1 = "e31eb937a8c93ee2a01df1839794721902874574"; + url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"; + sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; }; }; - "path-0.12.7" = { - name = "path"; - packageName = "path"; - version = "0.12.7"; + "locate-path-2.0.0" = { + name = "locate-path"; + packageName = "locate-path"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/path/-/path-0.12.7.tgz"; - sha1 = "d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"; + url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"; + sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; }; }; - "process-0.11.10" = { - name = "process"; - packageName = "process"; - version = "0.11.10"; + "p-locate-2.0.0" = { + name = "p-locate"; + packageName = "p-locate"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz"; - sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; + url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"; + sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; }; }; - "util-0.10.3" = { - name = "util"; - packageName = "util"; - version = "0.10.3"; + "path-exists-3.0.0" = { + name = "path-exists"; + packageName = "path-exists"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; - sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; + url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; + sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; }; }; - "inherits-2.0.1" = { - name = "inherits"; - packageName = "inherits"; - version = "2.0.1"; + "p-limit-1.1.0" = { + name = "p-limit"; + packageName = "p-limit"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; - sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; + url = "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz"; + sha1 = "b07ff2d9a5d88bec806035895a2bab66a27988bc"; }; }; - "mathjs-2.7.0" = { - name = "mathjs"; - packageName = "mathjs"; - version = "2.7.0"; + "load-json-file-2.0.0" = { + name = "load-json-file"; + packageName = "load-json-file"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/mathjs/-/mathjs-2.7.0.tgz"; - sha1 = "cfc301fd1c59944a5830b3989093a4179cb9d8df"; + url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; + sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; }; }; - "decimal.js-4.0.4" = { - name = "decimal.js"; - packageName = "decimal.js"; - version = "4.0.4"; + "path-type-2.0.0" = { + name = "path-type"; + packageName = "path-type"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-4.0.4.tgz"; - sha1 = "af3249465e133988c30750f77eaaf44505caa5e3"; + url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"; + sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; }; }; - "fraction.js-3.3.1" = { - name = "fraction.js"; - packageName = "fraction.js"; - version = "3.3.1"; + "strip-bom-3.0.0" = { + name = "strip-bom"; + packageName = "strip-bom"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/fraction.js/-/fraction.js-3.3.1.tgz"; - sha1 = "5d6a31ff07707294f204ccbb6b53791607771083"; + url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"; + sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; }; }; - "tiny-emitter-1.2.0" = { - name = "tiny-emitter"; - packageName = "tiny-emitter"; - version = "1.2.0"; + "sort-keys-2.0.0" = { + name = "sort-keys"; + packageName = "sort-keys"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-1.2.0.tgz"; - sha1 = "6dc845052cb08ebefc1874723b58f24a648c3b6f"; + url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"; + sha1 = "658535584861ec97d730d6cf41822e1f56684128"; }; }; - "camelcase-4.1.0" = { - name = "camelcase"; - packageName = "camelcase"; - version = "4.1.0"; + "write-json-file-2.3.0" = { + name = "write-json-file"; + packageName = "write-json-file"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"; - sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; + url = "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz"; + sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f"; }; }; - "chinese-css-properties-1.0.2" = { - name = "chinese-css-properties"; - packageName = "chinese-css-properties"; - version = "1.0.2"; + "detect-indent-5.0.0" = { + name = "detect-indent"; + packageName = "detect-indent"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/chinese-css-properties/-/chinese-css-properties-1.0.2.tgz"; - sha1 = "6f9c9706e7077a1f4996ed47fe5f1192ce43e10e"; + url = "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz"; + sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"; }; }; - "chinese-css-values-1.0.6" = { - name = "chinese-css-values"; - packageName = "chinese-css-values"; - version = "1.0.6"; + "write-file-atomic-2.3.0" = { + name = "write-file-atomic"; + packageName = "write-file-atomic"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/chinese-css-values/-/chinese-css-values-1.0.6.tgz"; - sha1 = "98323ce7099228956559d5da53290045bc5b828a"; + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz"; + sha1 = "1ff61575c2e2a4e8e510d6fa4e243cce183999ab"; }; }; - "chai-3.5.0" = { - name = "chai"; - packageName = "chai"; - version = "3.5.0"; + "write-file-atomic-1.3.4" = { + name = "write-file-atomic"; + packageName = "write-file-atomic"; + version = "1.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz"; - sha1 = "4d02637b067fe958bdbfdd3a40ec56fef7373247"; + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz"; + sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f"; }; }; - "mocha-2.5.3" = { - name = "mocha"; - packageName = "mocha"; - version = "2.5.3"; + "restore-cursor-2.0.0" = { + name = "restore-cursor"; + packageName = "restore-cursor"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz"; - sha1 = "161be5bdeb496771eb9b35745050b622b5aefc58"; + url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"; + sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; }; }; - "assertion-error-1.0.2" = { - name = "assertion-error"; - packageName = "assertion-error"; - version = "1.0.2"; + "onetime-2.0.1" = { + name = "onetime"; + packageName = "onetime"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.2.tgz"; - sha1 = "13ca515d86206da0bac66e834dd397d87581094c"; + url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"; + sha1 = "067428230fd67443b2794b22bba528b6867962d4"; }; }; - "deep-eql-0.1.3" = { - name = "deep-eql"; - packageName = "deep-eql"; - version = "0.1.3"; + "mimic-fn-1.1.0" = { + name = "mimic-fn"; + packageName = "mimic-fn"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz"; - sha1 = "ef558acab8de25206cd713906d74e56930eb69f2"; + url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz"; + sha1 = "e667783d92e89dbd342818b5230b9d62a672ad18"; }; }; - "type-detect-1.0.0" = { - name = "type-detect"; - packageName = "type-detect"; + "slice-ansi-1.0.0" = { + name = "slice-ansi"; + packageName = "slice-ansi"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz"; - sha1 = "762217cc06db258ec48908a1298e8b95121e8ea2"; + url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz"; + sha1 = "044f1a49d8842ff307aad6b505ed178bd950134d"; }; }; - "type-detect-0.1.1" = { - name = "type-detect"; - packageName = "type-detect"; - version = "0.1.1"; + "string-width-2.1.1" = { + name = "string-width"; + packageName = "string-width"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz"; - sha1 = "0ba5ec2a885640e470ea4e8505971900dac58822"; + url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; + sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; }; }; - "commander-2.3.0" = { - name = "commander"; - packageName = "commander"; - version = "2.3.0"; + "is-fullwidth-code-point-2.0.0" = { + name = "is-fullwidth-code-point"; + packageName = "is-fullwidth-code-point"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz"; - sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873"; + url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; + sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; }; }; - "debug-2.2.0" = { - name = "debug"; - packageName = "debug"; - version = "2.2.0"; + "pinkie-promise-1.0.0" = { + name = "pinkie-promise"; + packageName = "pinkie-promise"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; - sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da"; + url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz"; + sha1 = "d1da67f5482563bb7cf57f286ae2822ecfbf3670"; }; }; - "diff-1.4.0" = { - name = "diff"; - packageName = "diff"; - version = "1.4.0"; + "pinkie-1.0.0" = { + name = "pinkie"; + packageName = "pinkie"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz"; - sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"; + url = "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz"; + sha1 = "5a47f28ba1015d0201bda7bf0f358e47bec8c7e4"; }; }; - "escape-string-regexp-1.0.2" = { - name = "escape-string-regexp"; - packageName = "escape-string-regexp"; + "convert-to-spaces-1.0.2" = { + name = "convert-to-spaces"; + packageName = "convert-to-spaces"; version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz"; - sha1 = "4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1"; + url = "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz"; + sha1 = "7e3e48bbe6d997b1417ddca2868204b4d3d85715"; }; }; - "glob-3.2.11" = { - name = "glob"; - packageName = "glob"; - version = "3.2.11"; + "date-time-2.1.0" = { + name = "date-time"; + packageName = "date-time"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz"; - sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d"; + url = "https://registry.npmjs.org/date-time/-/date-time-2.1.0.tgz"; + sha1 = "0286d1b4c769633b3ca13e1e62558d2dbdc2eba2"; }; }; - "growl-1.9.2" = { - name = "growl"; - packageName = "growl"; - version = "1.9.2"; + "fast-diff-1.1.2" = { + name = "fast-diff"; + packageName = "fast-diff"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz"; - sha1 = "0ea7743715db8d8de2c5ede1775e1b45ac85c02f"; + url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz"; + sha1 = "4b62c42b8e03de3f848460b639079920695d0154"; }; }; - "jade-0.26.3" = { - name = "jade"; - packageName = "jade"; - version = "0.26.3"; + "function-name-support-0.2.0" = { + name = "function-name-support"; + packageName = "function-name-support"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz"; - sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c"; + url = "https://registry.npmjs.org/function-name-support/-/function-name-support-0.2.0.tgz"; + sha1 = "55d3bfaa6eafd505a50f9bc81fdf57564a0bb071"; }; }; - "supports-color-1.2.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "1.2.0"; + "js-string-escape-1.0.1" = { + name = "js-string-escape"; + packageName = "js-string-escape"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz"; - sha1 = "ff1ed1e61169d06b3cf2d588e188b18d8847e17e"; + url = "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz"; + sha1 = "e2625badbc0d67c7533e9edc1068c587ae4137ef"; }; }; - "to-iso-string-0.0.2" = { - name = "to-iso-string"; - packageName = "to-iso-string"; - version = "0.0.2"; + "lodash.clonedeep-4.5.0" = { + name = "lodash.clonedeep"; + packageName = "lodash.clonedeep"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/to-iso-string/-/to-iso-string-0.0.2.tgz"; - sha1 = "4dc19e664dfccbe25bd8db508b00c6da158255d1"; + url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; + sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; }; }; - "ms-0.7.1" = { - name = "ms"; - packageName = "ms"; - version = "0.7.1"; + "lodash.flattendeep-4.4.0" = { + name = "lodash.flattendeep"; + packageName = "lodash.flattendeep"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; - sha1 = "9cd13c03adbff25b65effde7ce864ee952017098"; + url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"; + sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2"; }; }; - "commander-0.6.1" = { - name = "commander"; - packageName = "commander"; - version = "0.6.1"; + "lodash.merge-4.6.0" = { + name = "lodash.merge"; + packageName = "lodash.merge"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; - sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; + url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.0.tgz"; + sha1 = "69884ba144ac33fe699737a6086deffadd0f89c5"; }; }; - "mkdirp-0.3.0" = { - name = "mkdirp"; - packageName = "mkdirp"; - version = "0.3.0"; + "well-known-symbols-1.0.0" = { + name = "well-known-symbols"; + packageName = "well-known-symbols"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"; - sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e"; + url = "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-1.0.0.tgz"; + sha1 = "73c78ae81a7726a8fa598e2880801c8b16225518"; }; }; - "class-repeat-1.0.1" = { - name = "class-repeat"; - packageName = "class-repeat"; - version = "1.0.1"; + "time-zone-1.0.0" = { + name = "time-zone"; + packageName = "time-zone"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/class-repeat/-/class-repeat-1.0.1.tgz"; - sha1 = "92735830fec3a7b21d90f98c9f8084799d243d28"; + url = "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz"; + sha1 = "99c5bf55958966af6d06d83bdf3800dc82faec5d"; }; }; - "clean-css-3.4.28" = { - name = "clean-css"; - packageName = "clean-css"; - version = "3.4.28"; + "buf-compare-1.0.1" = { + name = "buf-compare"; + packageName = "buf-compare"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz"; - sha1 = "bf1945e82fc808f55695e6ddeaec01400efd03ff"; + url = "https://registry.npmjs.org/buf-compare/-/buf-compare-1.0.1.tgz"; + sha1 = "fef28da8b8113a0a0db4430b0b6467b69730b34a"; }; }; - "fs-0.0.2" = { - name = "fs"; - packageName = "fs"; - version = "0.0.2"; + "is-error-2.2.1" = { + name = "is-error"; + packageName = "is-error"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/fs/-/fs-0.0.2.tgz"; - sha1 = "e1f244ef3933c1b2a64bd4799136060d0f5914f8"; + url = "https://registry.npmjs.org/is-error/-/is-error-2.2.1.tgz"; + sha1 = "684a96d84076577c98f4cdb40c6d26a5123bf19c"; }; }; - "js-beautify-1.6.14" = { - name = "js-beautify"; - packageName = "js-beautify"; - version = "1.6.14"; + "call-signature-0.0.2" = { + name = "call-signature"; + packageName = "call-signature"; + version = "0.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.6.14.tgz"; - sha1 = "d3b8f7322d02b9277d58bd238264c327e58044cd"; + url = "https://registry.npmjs.org/call-signature/-/call-signature-0.0.2.tgz"; + sha1 = "a84abc825a55ef4cb2b028bd74e205a65b9a4996"; }; }; - "config-chain-1.1.11" = { - name = "config-chain"; - packageName = "config-chain"; - version = "1.1.11"; + "commondir-1.0.1" = { + name = "commondir"; + packageName = "commondir"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz"; - sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2"; + url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; + sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; }; }; - "nopt-3.0.6" = { - name = "nopt"; - packageName = "nopt"; - version = "3.0.6"; + "pkg-dir-2.0.0" = { + name = "pkg-dir"; + packageName = "pkg-dir"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"; - sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; + url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz"; + sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; }; }; - "proto-list-1.2.4" = { - name = "proto-list"; - packageName = "proto-list"; - version = "1.2.4"; + "es6-error-4.0.2" = { + name = "es6-error"; + packageName = "es6-error"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"; - sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; + url = "https://registry.npmjs.org/es6-error/-/es6-error-4.0.2.tgz"; + sha1 = "eec5c726eacef51b7f6b73c20db6e1b13b069c98"; }; }; - "color-1.0.3" = { - name = "color"; - packageName = "color"; - version = "1.0.3"; + "resolve-from-3.0.0" = { + name = "resolve-from"; + packageName = "resolve-from"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/color/-/color-1.0.3.tgz"; - sha1 = "e48e832d85f14ef694fb468811c2d5cfe729b55d"; + url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz"; + sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; }; }; - "color-string-1.5.2" = { - name = "color-string"; - packageName = "color-string"; - version = "1.5.2"; + "ci-info-1.1.2" = { + name = "ci-info"; + packageName = "ci-info"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz"; - sha1 = "26e45814bc3c9a7cbd6751648a41434514a773a9"; + url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.2.tgz"; + sha1 = "03561259db48d0474c8bdc90f5b47b068b6bbfb4"; }; }; - "simple-swizzle-0.2.2" = { - name = "simple-swizzle"; - packageName = "simple-swizzle"; - version = "0.2.2"; + "symbol-observable-0.2.4" = { + name = "symbol-observable"; + packageName = "symbol-observable"; + version = "0.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz"; - sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a"; + url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-0.2.4.tgz"; + sha1 = "95a83db26186d6af7e7a18dbd9760a2f86d08f40"; }; }; - "is-arrayish-0.3.1" = { - name = "is-arrayish"; - packageName = "is-arrayish"; - version = "0.3.1"; + "esprima-4.0.0" = { + name = "esprima"; + packageName = "esprima"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.1.tgz"; - sha1 = "c2dfc386abaa0c3e33c48db3fe87059e69065efd"; + url = "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz"; + sha1 = "4499eddcd1110e0b218bacf2fa7f7f59f55ca804"; }; }; - "d3-color-0.4.2" = { - name = "d3-color"; - packageName = "d3-color"; - version = "0.4.2"; + "symbol-observable-1.1.0" = { + name = "symbol-observable"; + packageName = "symbol-observable"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/d3-color/-/d3-color-0.4.2.tgz"; - sha1 = "df013e789d9bfef0f8ea3986c92340cdf340d8a0"; + url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.1.0.tgz"; + sha1 = "5c68fd8d54115d9dfb72a84720549222e8db9b32"; }; }; - "units-css-0.4.0" = { - name = "units-css"; - packageName = "units-css"; - version = "0.4.0"; + "release-zalgo-1.0.0" = { + name = "release-zalgo"; + packageName = "release-zalgo"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/units-css/-/units-css-0.4.0.tgz"; - sha1 = "d6228653a51983d7c16ff28f8b9dc3b1ffed3a07"; + url = "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz"; + sha1 = "09700b7e5074329739330e535c5a90fb67851730"; }; }; - "isnumeric-0.2.0" = { - name = "isnumeric"; - packageName = "isnumeric"; - version = "0.2.0"; + "parse-ms-1.0.1" = { + name = "parse-ms"; + packageName = "parse-ms"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/isnumeric/-/isnumeric-0.2.0.tgz"; - sha1 = "a2347ba360de19e33d0ffd590fddf7755cbf2e64"; + url = "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz"; + sha1 = "56346d4749d78f23430ca0c713850aef91aa361d"; }; }; - "viewport-dimensions-0.2.0" = { - name = "viewport-dimensions"; - packageName = "viewport-dimensions"; - version = "0.2.0"; + "ansi-regex-3.0.0" = { + name = "ansi-regex"; + packageName = "ansi-regex"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/viewport-dimensions/-/viewport-dimensions-0.2.0.tgz"; - sha1 = "de740747db5387fd1725f5175e91bac76afdf36c"; + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; + sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; }; }; - "rgb-hex-2.1.0" = { - name = "rgb-hex"; - packageName = "rgb-hex"; - version = "2.1.0"; + "chalk-0.4.0" = { + name = "chalk"; + packageName = "chalk"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/rgb-hex/-/rgb-hex-2.1.0.tgz"; - sha1 = "c773c5fe2268a25578d92539a82a7a5ce53beda6"; + url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; + sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; }; }; - "color-scale-1.1.0" = { - name = "color-scale"; - packageName = "color-scale"; - version = "1.1.0"; + "date-time-0.1.1" = { + name = "date-time"; + packageName = "date-time"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/color-scale/-/color-scale-1.1.0.tgz"; - sha1 = "0e60fae6a5fc298d153a4d9cae956d266e14e17b"; + url = "https://registry.npmjs.org/date-time/-/date-time-0.1.1.tgz"; + sha1 = "ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07"; }; }; - "color-0.8.0" = { - name = "color"; - packageName = "color"; - version = "0.8.0"; + "pretty-ms-0.2.2" = { + name = "pretty-ms"; + packageName = "pretty-ms"; + version = "0.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/color/-/color-0.8.0.tgz"; - sha1 = "890c07c3fd4e649537638911cf691e5458b6fca5"; + url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-0.2.2.tgz"; + sha1 = "da879a682ff33a37011046f13d627f67c73b84f6"; }; }; - "color-blind-0.1.1" = { - name = "color-blind"; - packageName = "color-blind"; - version = "0.1.1"; + "has-color-0.1.7" = { + name = "has-color"; + packageName = "has-color"; + version = "0.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/color-blind/-/color-blind-0.1.1.tgz"; - sha1 = "d6cf97b635fb6605c9dcc48efb58d5eb972a371e"; - }; - }; - "hex-color-regex-git+https://github.com/btholt/hex-color-regex.git" = { - name = "hex-color-regex"; - packageName = "hex-color-regex"; - version = "1.1.0"; - src = fetchgit { - url = "https://github.com/btholt/hex-color-regex.git"; - rev = "9486788aab7c8d79a9bc70a9141669b95a03f2eb"; - sha256 = "0ac0c6c29fef1813154595da477dbaac3be3708c68126476148416465d1500a4"; + url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; + sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; }; }; - "hexa-color-regex-1.0.0" = { - name = "hexa-color-regex"; - packageName = "hexa-color-regex"; + "ansi-styles-1.0.0" = { + name = "ansi-styles"; + packageName = "ansi-styles"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/hexa-color-regex/-/hexa-color-regex-1.0.0.tgz"; - sha1 = "3155e7d672ba046d309bb1f5e0d3b0d02dbc8213"; + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; + sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; }; }; - "jimp-0.2.28" = { - name = "jimp"; - packageName = "jimp"; - version = "0.2.28"; + "strip-ansi-0.1.1" = { + name = "strip-ansi"; + packageName = "strip-ansi"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/jimp/-/jimp-0.2.28.tgz"; - sha1 = "dd529a937190f42957a7937d1acc3a7762996ea2"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; + sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; }; }; - "onecolor-2.5.0" = { - name = "onecolor"; - packageName = "onecolor"; - version = "2.5.0"; + "parse-ms-0.1.2" = { + name = "parse-ms"; + packageName = "parse-ms"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/onecolor/-/onecolor-2.5.0.tgz"; - sha1 = "2256b651dc807c101f00aedbd49925c57a4431c1"; + url = "https://registry.npmjs.org/parse-ms/-/parse-ms-0.1.2.tgz"; + sha1 = "dd3fa25ed6c2efc7bdde12ad9b46c163aa29224e"; }; }; - "bignumber.js-2.4.0" = { - name = "bignumber.js"; - packageName = "bignumber.js"; - version = "2.4.0"; + "uid2-0.0.3" = { + name = "uid2"; + packageName = "uid2"; + version = "0.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz"; - sha1 = "838a992da9f9d737e0f4b2db0be62bb09dd0c5e8"; + url = "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz"; + sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; }; }; - "bmp-js-0.0.3" = { - name = "bmp-js"; - packageName = "bmp-js"; - version = "0.0.3"; + "boxen-1.3.0" = { + name = "boxen"; + packageName = "boxen"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/bmp-js/-/bmp-js-0.0.3.tgz"; - sha1 = "64113e9c7cf1202b376ed607bf30626ebe57b18a"; + url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz"; + sha1 = "55c6c39a8ba58d9c61ad22cd877532deb665a20b"; }; }; - "es6-promise-3.3.1" = { - name = "es6-promise"; - packageName = "es6-promise"; - version = "3.3.1"; + "configstore-3.1.1" = { + name = "configstore"; + packageName = "configstore"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz"; - sha1 = "a08cdde84ccdbf34d027a1451bc91d4bcd28a613"; + url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz"; + sha1 = "094ee662ab83fad9917678de114faaea8fcdca90"; }; }; - "exif-parser-0.1.11" = { - name = "exif-parser"; - packageName = "exif-parser"; - version = "0.1.11"; + "import-lazy-2.1.0" = { + name = "import-lazy"; + packageName = "import-lazy"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.11.tgz"; - sha1 = "8a97d1c9315ffd4754b6ae938ce4488d1b1a26b7"; + url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz"; + sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43"; }; }; - "jpeg-js-0.2.0" = { - name = "jpeg-js"; - packageName = "jpeg-js"; - version = "0.2.0"; + "is-installed-globally-0.1.0" = { + name = "is-installed-globally"; + packageName = "is-installed-globally"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.2.0.tgz"; - sha1 = "53e448ec9d263e683266467e9442d2c5a2ef5482"; + url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz"; + sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80"; }; }; - "load-bmfont-1.3.0" = { - name = "load-bmfont"; - packageName = "load-bmfont"; - version = "1.3.0"; + "is-npm-1.0.0" = { + name = "is-npm"; + packageName = "is-npm"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.3.0.tgz"; - sha1 = "bb7e7c710de6bcafcb13cb3b8c81e0c0131ecbc9"; + url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz"; + sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4"; }; }; - "pixelmatch-4.0.2" = { - name = "pixelmatch"; - packageName = "pixelmatch"; - version = "4.0.2"; + "latest-version-3.1.0" = { + name = "latest-version"; + packageName = "latest-version"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz"; - sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854"; + url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz"; + sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15"; }; }; - "pngjs-3.2.0" = { - name = "pngjs"; - packageName = "pngjs"; - version = "3.2.0"; + "semver-diff-2.1.0" = { + name = "semver-diff"; + packageName = "semver-diff"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/pngjs/-/pngjs-3.2.0.tgz"; - sha1 = "fc9fcea1a8a375da54a51148019d5abd41dbabde"; + url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; + sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"; }; }; - "read-chunk-1.0.1" = { - name = "read-chunk"; - packageName = "read-chunk"; - version = "1.0.1"; + "xdg-basedir-3.0.0" = { + name = "xdg-basedir"; + packageName = "xdg-basedir"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/read-chunk/-/read-chunk-1.0.1.tgz"; - sha1 = "5f68cab307e663f19993527d9b589cace4661194"; + url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz"; + sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4"; }; }; - "stream-to-buffer-0.1.0" = { - name = "stream-to-buffer"; - packageName = "stream-to-buffer"; - version = "0.1.0"; + "ansi-align-2.0.0" = { + name = "ansi-align"; + packageName = "ansi-align"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/stream-to-buffer/-/stream-to-buffer-0.1.0.tgz"; - sha1 = "26799d903ab2025c9bd550ac47171b00f8dd80a9"; + url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz"; + sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f"; }; }; - "tinycolor2-1.4.1" = { - name = "tinycolor2"; - packageName = "tinycolor2"; - version = "1.4.1"; + "camelcase-4.1.0" = { + name = "camelcase"; + packageName = "camelcase"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz"; - sha1 = "f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"; + url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"; + sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; }; }; - "buffer-equal-0.0.1" = { - name = "buffer-equal"; - packageName = "buffer-equal"; - version = "0.0.1"; + "cli-boxes-1.0.0" = { + name = "cli-boxes"; + packageName = "cli-boxes"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz"; - sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b"; + url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz"; + sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143"; }; }; - "parse-bmfont-ascii-1.0.6" = { - name = "parse-bmfont-ascii"; - packageName = "parse-bmfont-ascii"; - version = "1.0.6"; + "term-size-1.2.0" = { + name = "term-size"; + packageName = "term-size"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz"; - sha1 = "11ac3c3ff58f7c2020ab22769079108d4dfa0285"; + url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz"; + sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; }; }; - "parse-bmfont-binary-1.0.6" = { - name = "parse-bmfont-binary"; - packageName = "parse-bmfont-binary"; - version = "1.0.6"; + "widest-line-2.0.0" = { + name = "widest-line"; + packageName = "widest-line"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz"; - sha1 = "d038b476d3e9dd9db1e11a0b0e53a22792b69006"; + url = "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz"; + sha1 = "0142a4e8a243f8882c0233aa0e0281aa76152273"; }; }; - "parse-bmfont-xml-1.1.3" = { - name = "parse-bmfont-xml"; - packageName = "parse-bmfont-xml"; - version = "1.1.3"; + "unique-string-1.0.0" = { + name = "unique-string"; + packageName = "unique-string"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.3.tgz"; - sha1 = "d6b66a371afd39c5007d9f0eeb262a4f2cce7b7c"; + url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"; + sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a"; }; }; - "xhr-2.4.0" = { - name = "xhr"; - packageName = "xhr"; - version = "2.4.0"; + "crypto-random-string-1.0.0" = { + name = "crypto-random-string"; + packageName = "crypto-random-string"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/xhr/-/xhr-2.4.0.tgz"; - sha1 = "e16e66a45f869861eeefab416d5eff722dc40993"; + url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"; + sha1 = "a230f64f568310e1498009940790ec99545bca7e"; }; }; - "xml-parse-from-string-1.0.1" = { - name = "xml-parse-from-string"; - packageName = "xml-parse-from-string"; - version = "1.0.1"; + "global-dirs-0.1.1" = { + name = "global-dirs"; + packageName = "global-dirs"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz"; - sha1 = "a9029e929d3dbcded169f3c6e28238d95a5d5a28"; + url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz"; + sha1 = "b319c0dd4607f353f3be9cca4c72fc148c49f445"; }; }; - "xml2js-0.4.17" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.4.17"; + "is-path-inside-1.0.1" = { + name = "is-path-inside"; + packageName = "is-path-inside"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.17.tgz"; - sha1 = "17be93eaae3f3b779359c795b419705a8817e868"; + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz"; + sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"; }; }; - "xmlbuilder-4.2.1" = { - name = "xmlbuilder"; - packageName = "xmlbuilder"; - version = "4.2.1"; + "path-is-inside-1.0.2" = { + name = "path-is-inside"; + packageName = "path-is-inside"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.2.1.tgz"; - sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5"; + url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; + sha1 = "365417dede44430d1c11af61027facf074bdfc53"; }; }; - "global-4.3.2" = { - name = "global"; - packageName = "global"; - version = "4.3.2"; + "package-json-4.0.1" = { + name = "package-json"; + packageName = "package-json"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz"; - sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f"; + url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz"; + sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed"; }; }; - "is-function-1.0.1" = { - name = "is-function"; - packageName = "is-function"; - version = "1.0.1"; + "got-6.7.1" = { + name = "got"; + packageName = "got"; + version = "6.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz"; - sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5"; + url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz"; + sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0"; }; }; - "parse-headers-2.0.1" = { - name = "parse-headers"; - packageName = "parse-headers"; - version = "2.0.1"; + "registry-auth-token-3.3.1" = { + name = "registry-auth-token"; + packageName = "registry-auth-token"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz"; - sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536"; + url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz"; + sha1 = "fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006"; }; }; - "min-document-2.19.0" = { - name = "min-document"; - packageName = "min-document"; - version = "2.19.0"; + "registry-url-3.1.0" = { + name = "registry-url"; + packageName = "registry-url"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz"; - sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685"; + url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz"; + sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942"; }; }; - "process-0.5.2" = { - name = "process"; - packageName = "process"; - version = "0.5.2"; + "duplexer3-0.1.4" = { + name = "duplexer3"; + packageName = "duplexer3"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz"; - sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf"; + url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz"; + sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"; }; }; - "dom-walk-0.1.1" = { - name = "dom-walk"; - packageName = "dom-walk"; - version = "0.1.1"; + "timed-out-4.0.1" = { + name = "timed-out"; + packageName = "timed-out"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz"; - sha1 = "672226dc74c8f799ad35307df936aba11acd6018"; + url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz"; + sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f"; }; }; - "for-each-0.3.2" = { - name = "for-each"; - packageName = "for-each"; - version = "0.3.2"; + "unzip-response-2.0.1" = { + name = "unzip-response"; + packageName = "unzip-response"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz"; - sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4"; + url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz"; + sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; }; }; - "stream-to-0.2.2" = { - name = "stream-to"; - packageName = "stream-to"; - version = "0.2.2"; + "canonical-path-0.0.2" = { + name = "canonical-path"; + packageName = "canonical-path"; + version = "0.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/stream-to/-/stream-to-0.2.2.tgz"; - sha1 = "84306098d85fdb990b9fa300b1b3ccf55e8ef01d"; + url = "https://registry.npmjs.org/canonical-path/-/canonical-path-0.0.2.tgz"; + sha1 = "e31eb937a8c93ee2a01df1839794721902874574"; }; }; - "css-color-extractor-0.0.5" = { - name = "css-color-extractor"; - packageName = "css-color-extractor"; - version = "0.0.5"; + "path-0.12.7" = { + name = "path"; + packageName = "path"; + version = "0.12.7"; src = fetchurl { - url = "https://registry.npmjs.org/css-color-extractor/-/css-color-extractor-0.0.5.tgz"; - sha1 = "b737a2553320b837b12e124affae03dd53c4acf2"; + url = "https://registry.npmjs.org/path/-/path-0.12.7.tgz"; + sha1 = "d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"; }; }; - "colors.css-2.3.0" = { - name = "colors.css"; - packageName = "colors.css"; - version = "2.3.0"; + "process-0.11.10" = { + name = "process"; + packageName = "process"; + version = "0.11.10"; src = fetchurl { - url = "https://registry.npmjs.org/colors.css/-/colors.css-2.3.0.tgz"; - sha1 = "e8953837543e19d98e2917ff0b998f6db286213b"; + url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz"; + sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; }; }; - "postcss-modules-local-by-default-1.2.0" = { - name = "postcss-modules-local-by-default"; - packageName = "postcss-modules-local-by-default"; - version = "1.2.0"; + "util-0.10.3" = { + name = "util"; + packageName = "util"; + version = "0.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz"; - sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069"; + url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; + sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; }; }; - "css-color-converter-1.1.0" = { - name = "css-color-converter"; - packageName = "css-color-converter"; - version = "1.1.0"; + "inherits-2.0.1" = { + name = "inherits"; + packageName = "inherits"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/css-color-converter/-/css-color-converter-1.1.0.tgz"; - sha1 = "c2e7d93c2e96c8ad8cb1ac7a1f2e49d8052ade36"; + url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; + sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; }; }; - "canvas-1.6.5" = { - name = "canvas"; - packageName = "canvas"; - version = "1.6.5"; + "css-unit-converter-1.1.1" = { + name = "css-unit-converter"; + packageName = "css-unit-converter"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/canvas/-/canvas-1.6.5.tgz"; - sha1 = "557f9988f5d2c95fdc247c61a5ee43de52f6717c"; + url = "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz"; + sha1 = "d9b9281adcfd8ced935bdbaba83786897f64e996"; }; }; - "dotty-0.0.2" = { - name = "dotty"; - packageName = "dotty"; - version = "0.0.2"; + "reduce-css-calc-2.1.3" = { + name = "reduce-css-calc"; + packageName = "reduce-css-calc"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/dotty/-/dotty-0.0.2.tgz"; - sha1 = "e1de8d46267b62fade12b5b58c21ca514c4a7aa1"; + url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.3.tgz"; + sha1 = "63c4c6325ffbbf4ea6c23f1d4deb47c3953f3b81"; }; }; - "require-reload-0.2.2" = { - name = "require-reload"; - packageName = "require-reload"; - version = "0.2.2"; + "mathjs-2.7.0" = { + name = "mathjs"; + packageName = "mathjs"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/require-reload/-/require-reload-0.2.2.tgz"; - sha1 = "29a7591846caf91b6e8a3cda991683f95f8d7d42"; + url = "https://registry.npmjs.org/mathjs/-/mathjs-2.7.0.tgz"; + sha1 = "cfc301fd1c59944a5830b3989093a4179cb9d8df"; }; }; - "html-entities-1.2.1" = { - name = "html-entities"; - packageName = "html-entities"; - version = "1.2.1"; + "decimal.js-4.0.4" = { + name = "decimal.js"; + packageName = "decimal.js"; + version = "4.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz"; - sha1 = "0df29351f0721163515dfb9e5543e5f6eed5162f"; + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-4.0.4.tgz"; + sha1 = "af3249465e133988c30750f77eaaf44505caa5e3"; }; }; - "postcss-5.2.5" = { - name = "postcss"; - packageName = "postcss"; - version = "5.2.5"; + "fraction.js-3.3.1" = { + name = "fraction.js"; + packageName = "fraction.js"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-5.2.5.tgz"; - sha1 = "ec428c27dffc7fac65961340a9b022fa4af5f056"; + url = "https://registry.npmjs.org/fraction.js/-/fraction.js-3.3.1.tgz"; + sha1 = "5d6a31ff07707294f204ccbb6b53791607771083"; }; }; - "contrast-1.0.1" = { - name = "contrast"; - packageName = "contrast"; - version = "1.0.1"; + "tiny-emitter-1.2.0" = { + name = "tiny-emitter"; + packageName = "tiny-emitter"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/contrast/-/contrast-1.0.1.tgz"; - sha1 = "839c66d8852269d33f4eb0a1b92d994bdd16385e"; + url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-1.2.0.tgz"; + sha1 = "6dc845052cb08ebefc1874723b58f24a648c3b6f"; }; }; - "hex-to-rgb-1.0.1" = { - name = "hex-to-rgb"; - packageName = "hex-to-rgb"; - version = "1.0.1"; + "curse-words-common-1.1.0" = { + name = "curse-words-common"; + packageName = "curse-words-common"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/hex-to-rgb/-/hex-to-rgb-1.0.1.tgz"; - sha1 = "100b9df126b32f2762adf8486be68c65ef8ed2a4"; + url = "https://registry.npmjs.org/curse-words-common/-/curse-words-common-1.1.0.tgz"; + sha1 = "05dc8e851575cb13965873cf1938e05cfe5a8e02"; }; }; - "micromatch-3.0.4" = { - name = "micromatch"; - packageName = "micromatch"; - version = "3.0.4"; + "chinese-css-properties-1.0.2" = { + name = "chinese-css-properties"; + packageName = "chinese-css-properties"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/micromatch/-/micromatch-3.0.4.tgz"; - sha1 = "1543f1d04813447ac852001c5f5a933401786d1d"; + url = "https://registry.npmjs.org/chinese-css-properties/-/chinese-css-properties-1.0.2.tgz"; + sha1 = "6f9c9706e7077a1f4996ed47fe5f1192ce43e10e"; }; }; - "arr-diff-4.0.0" = { - name = "arr-diff"; - packageName = "arr-diff"; - version = "4.0.0"; + "chinese-css-values-1.0.6" = { + name = "chinese-css-values"; + packageName = "chinese-css-values"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"; - sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; + url = "https://registry.npmjs.org/chinese-css-values/-/chinese-css-values-1.0.6.tgz"; + sha1 = "98323ce7099228956559d5da53290045bc5b828a"; }; }; - "array-unique-0.3.2" = { - name = "array-unique"; - packageName = "array-unique"; - version = "0.3.2"; + "chai-3.5.0" = { + name = "chai"; + packageName = "chai"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"; - sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; + url = "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz"; + sha1 = "4d02637b067fe958bdbfdd3a40ec56fef7373247"; }; }; - "braces-2.2.2" = { - name = "braces"; - packageName = "braces"; - version = "2.2.2"; + "mocha-2.5.3" = { + name = "mocha"; + packageName = "mocha"; + version = "2.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/braces/-/braces-2.2.2.tgz"; - sha1 = "241f868c2b2690d9febeee5a7c83fbbf25d00b1b"; + url = "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz"; + sha1 = "161be5bdeb496771eb9b35745050b622b5aefc58"; }; }; - "define-property-1.0.0" = { - name = "define-property"; - packageName = "define-property"; - version = "1.0.0"; + "assertion-error-1.0.2" = { + name = "assertion-error"; + packageName = "assertion-error"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"; - sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; + url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.2.tgz"; + sha1 = "13ca515d86206da0bac66e834dd397d87581094c"; }; }; - "extglob-1.1.0" = { - name = "extglob"; - packageName = "extglob"; - version = "1.1.0"; + "deep-eql-0.1.3" = { + name = "deep-eql"; + packageName = "deep-eql"; + version = "0.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/extglob/-/extglob-1.1.0.tgz"; - sha1 = "0678b4e2ce45c0e4e50f5e5eafb1b0dab5b4e424"; + url = "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz"; + sha1 = "ef558acab8de25206cd713906d74e56930eb69f2"; }; }; - "fragment-cache-0.2.1" = { - name = "fragment-cache"; - packageName = "fragment-cache"; - version = "0.2.1"; + "type-detect-1.0.0" = { + name = "type-detect"; + packageName = "type-detect"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"; - sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; + url = "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz"; + sha1 = "762217cc06db258ec48908a1298e8b95121e8ea2"; }; }; - "nanomatch-1.2.0" = { - name = "nanomatch"; - packageName = "nanomatch"; - version = "1.2.0"; + "type-detect-0.1.1" = { + name = "type-detect"; + packageName = "type-detect"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.0.tgz"; - sha1 = "76fdb3d4ae7617e37719e7a4047b840857c0cb1c"; + url = "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz"; + sha1 = "0ba5ec2a885640e470ea4e8505971900dac58822"; }; }; - "regex-not-1.0.0" = { - name = "regex-not"; - packageName = "regex-not"; - version = "1.0.0"; + "commander-2.3.0" = { + name = "commander"; + packageName = "commander"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz"; - sha1 = "42f83e39771622df826b02af176525d6a5f157f9"; + url = "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz"; + sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873"; }; }; - "snapdragon-0.8.1" = { - name = "snapdragon"; - packageName = "snapdragon"; - version = "0.8.1"; + "debug-2.2.0" = { + name = "debug"; + packageName = "debug"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz"; - sha1 = "e12b5487faded3e3dea0ac91e9400bf75b401370"; + url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; + sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da"; }; }; - "to-regex-3.0.1" = { - name = "to-regex"; - packageName = "to-regex"; - version = "3.0.1"; + "diff-1.4.0" = { + name = "diff"; + packageName = "diff"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz"; - sha1 = "15358bee4a2c83bd76377ba1dc049d0f18837aae"; + url = "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz"; + sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"; }; }; - "fill-range-4.0.0" = { - name = "fill-range"; - packageName = "fill-range"; - version = "4.0.0"; + "escape-string-regexp-1.0.2" = { + name = "escape-string-regexp"; + packageName = "escape-string-regexp"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"; - sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz"; + sha1 = "4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1"; }; }; - "snapdragon-node-2.1.1" = { - name = "snapdragon-node"; - packageName = "snapdragon-node"; - version = "2.1.1"; + "glob-3.2.11" = { + name = "glob"; + packageName = "glob"; + version = "3.2.11"; src = fetchurl { - url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; - sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; + url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz"; + sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d"; }; }; - "split-string-2.1.1" = { - name = "split-string"; - packageName = "split-string"; - version = "2.1.1"; + "growl-1.9.2" = { + name = "growl"; + packageName = "growl"; + version = "1.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/split-string/-/split-string-2.1.1.tgz"; - sha1 = "af4b06d821560426446c3cd931cda618940d37d0"; + url = "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz"; + sha1 = "0ea7743715db8d8de2c5ede1775e1b45ac85c02f"; }; }; - "to-regex-range-2.1.1" = { - name = "to-regex-range"; - packageName = "to-regex-range"; - version = "2.1.1"; + "jade-0.26.3" = { + name = "jade"; + packageName = "jade"; + version = "0.26.3"; src = fetchurl { - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"; - sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; + url = "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz"; + sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c"; }; }; - "snapdragon-util-3.0.1" = { - name = "snapdragon-util"; - packageName = "snapdragon-util"; - version = "3.0.1"; + "supports-color-1.2.0" = { + name = "supports-color"; + packageName = "supports-color"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; - sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; + url = "https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz"; + sha1 = "ff1ed1e61169d06b3cf2d588e188b18d8847e17e"; }; }; - "is-descriptor-1.0.0" = { - name = "is-descriptor"; - packageName = "is-descriptor"; - version = "1.0.0"; + "to-iso-string-0.0.2" = { + name = "to-iso-string"; + packageName = "to-iso-string"; + version = "0.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.0.tgz"; - sha1 = "d6ec686f238f6b02f23757abe12cf6b2ea2790f9"; + url = "https://registry.npmjs.org/to-iso-string/-/to-iso-string-0.0.2.tgz"; + sha1 = "4dc19e664dfccbe25bd8db508b00c6da158255d1"; }; }; - "is-accessor-descriptor-0.1.6" = { - name = "is-accessor-descriptor"; - packageName = "is-accessor-descriptor"; - version = "0.1.6"; + "ms-0.7.1" = { + name = "ms"; + packageName = "ms"; + version = "0.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; - sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; + sha1 = "9cd13c03adbff25b65effde7ce864ee952017098"; }; }; - "is-data-descriptor-0.1.4" = { - name = "is-data-descriptor"; - packageName = "is-data-descriptor"; - version = "0.1.4"; + "commander-0.6.1" = { + name = "commander"; + packageName = "commander"; + version = "0.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; - sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; + url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; + sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; }; }; - "lazy-cache-2.0.2" = { - name = "lazy-cache"; - packageName = "lazy-cache"; - version = "2.0.2"; + "mkdirp-0.3.0" = { + name = "mkdirp"; + packageName = "mkdirp"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz"; - sha1 = "b9190a4f913354694840859f8a8f7084d8822264"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"; + sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e"; }; }; - "set-getter-0.1.0" = { - name = "set-getter"; - packageName = "set-getter"; - version = "0.1.0"; + "class-repeat-1.0.2" = { + name = "class-repeat"; + packageName = "class-repeat"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz"; - sha1 = "d769c182c9d5a51f409145f2fba82e5e86e80376"; + url = "https://registry.npmjs.org/class-repeat/-/class-repeat-1.0.2.tgz"; + sha1 = "3aa3e4b6ee044e10a03a6650b064d3a335d275e9"; }; }; - "to-object-path-0.3.0" = { - name = "to-object-path"; - packageName = "to-object-path"; - version = "0.3.0"; + "clean-css-4.1.9" = { + name = "clean-css"; + packageName = "clean-css"; + version = "4.1.9"; src = fetchurl { - url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"; - sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; + url = "https://registry.npmjs.org/clean-css/-/clean-css-4.1.9.tgz"; + sha1 = "35cee8ae7687a49b98034f70de00c4edd3826301"; }; }; - "define-property-0.2.5" = { - name = "define-property"; - packageName = "define-property"; - version = "0.2.5"; + "fs-0.0.2" = { + name = "fs"; + packageName = "fs"; + version = "0.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"; - sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; + url = "https://registry.npmjs.org/fs/-/fs-0.0.2.tgz"; + sha1 = "e1f244ef3933c1b2a64bd4799136060d0f5914f8"; }; }; - "expand-brackets-2.1.4" = { - name = "expand-brackets"; - packageName = "expand-brackets"; - version = "2.1.4"; + "js-beautify-1.7.5" = { + name = "js-beautify"; + packageName = "js-beautify"; + version = "1.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"; - sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.7.5.tgz"; + sha1 = "69d9651ef60dbb649f65527b53674950138a7919"; }; }; - "to-regex-2.1.0" = { - name = "to-regex"; - packageName = "to-regex"; - version = "2.1.0"; + "config-chain-1.1.11" = { + name = "config-chain"; + packageName = "config-chain"; + version = "1.1.11"; src = fetchurl { - url = "https://registry.npmjs.org/to-regex/-/to-regex-2.1.0.tgz"; - sha1 = "e3ad3a40cfe119559a05aea43e4caefacc5e901d"; + url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz"; + sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2"; }; }; - "is-descriptor-0.1.5" = { - name = "is-descriptor"; - packageName = "is-descriptor"; - version = "0.1.5"; + "nopt-3.0.6" = { + name = "nopt"; + packageName = "nopt"; + version = "3.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.5.tgz"; - sha1 = "e3fb8b4ab65f3a37373388e18b401d78c58cbea7"; + url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"; + sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; }; }; - "posix-character-classes-0.1.1" = { - name = "posix-character-classes"; - packageName = "posix-character-classes"; - version = "0.1.1"; + "proto-list-1.2.4" = { + name = "proto-list"; + packageName = "proto-list"; + version = "1.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; - sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; + url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"; + sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; }; }; - "regex-not-0.1.2" = { - name = "regex-not"; - packageName = "regex-not"; - version = "0.1.2"; + "color-1.0.3" = { + name = "color"; + packageName = "color"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/regex-not/-/regex-not-0.1.2.tgz"; - sha1 = "bc7f1c4944b1188353d07deeb912b94e0ade25db"; + url = "https://registry.npmjs.org/color/-/color-1.0.3.tgz"; + sha1 = "e48e832d85f14ef694fb468811c2d5cfe729b55d"; }; }; - "is-odd-1.0.0" = { - name = "is-odd"; - packageName = "is-odd"; - version = "1.0.0"; + "color-string-1.5.2" = { + name = "color-string"; + packageName = "color-string"; + version = "1.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz"; - sha1 = "3b8a932eb028b3775c39bb09e91767accdb69088"; + url = "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz"; + sha1 = "26e45814bc3c9a7cbd6751648a41434514a773a9"; }; }; - "base-0.11.1" = { - name = "base"; - packageName = "base"; - version = "0.11.1"; + "simple-swizzle-0.2.2" = { + name = "simple-swizzle"; + packageName = "simple-swizzle"; + version = "0.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/base/-/base-0.11.1.tgz"; - sha1 = "b36a7f11113853a342a15691d98e2dcc8a6cc270"; + url = "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz"; + sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a"; }; }; - "source-map-resolve-0.5.0" = { - name = "source-map-resolve"; - packageName = "source-map-resolve"; - version = "0.5.0"; + "is-arrayish-0.3.1" = { + name = "is-arrayish"; + packageName = "is-arrayish"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.0.tgz"; - sha1 = "fcad0b64b70afb27699e425950cb5ebcd410bc20"; + url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.1.tgz"; + sha1 = "c2dfc386abaa0c3e33c48db3fe87059e69065efd"; }; }; - "use-2.0.2" = { - name = "use"; - packageName = "use"; - version = "2.0.2"; + "color-2.0.1" = { + name = "color"; + packageName = "color"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/use/-/use-2.0.2.tgz"; - sha1 = "ae28a0d72f93bf22422a18a2e379993112dec8e8"; + url = "https://registry.npmjs.org/color/-/color-2.0.1.tgz"; + sha1 = "e4ed78a3c4603d0891eba5430b04b86314f4c839"; }; }; - "arr-union-3.1.0" = { - name = "arr-union"; - packageName = "arr-union"; - version = "3.1.0"; + "d3-color-0.4.2" = { + name = "d3-color"; + packageName = "d3-color"; + version = "0.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; - sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; + url = "https://registry.npmjs.org/d3-color/-/d3-color-0.4.2.tgz"; + sha1 = "df013e789d9bfef0f8ea3986c92340cdf340d8a0"; }; }; - "cache-base-0.8.5" = { - name = "cache-base"; - packageName = "cache-base"; - version = "0.8.5"; + "units-css-0.4.0" = { + name = "units-css"; + packageName = "units-css"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/cache-base/-/cache-base-0.8.5.tgz"; - sha1 = "60ceb3504021eceec7011fd3384b7f4e95729bfa"; + url = "https://registry.npmjs.org/units-css/-/units-css-0.4.0.tgz"; + sha1 = "d6228653a51983d7c16ff28f8b9dc3b1ffed3a07"; }; }; - "class-utils-0.3.5" = { - name = "class-utils"; - packageName = "class-utils"; - version = "0.3.5"; + "isnumeric-0.2.0" = { + name = "isnumeric"; + packageName = "isnumeric"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.5.tgz"; - sha1 = "17e793103750f9627b2176ea34cfd1b565903c80"; + url = "https://registry.npmjs.org/isnumeric/-/isnumeric-0.2.0.tgz"; + sha1 = "a2347ba360de19e33d0ffd590fddf7755cbf2e64"; }; }; - "component-emitter-1.2.1" = { - name = "component-emitter"; - packageName = "component-emitter"; - version = "1.2.1"; + "viewport-dimensions-0.2.0" = { + name = "viewport-dimensions"; + packageName = "viewport-dimensions"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"; - sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; + url = "https://registry.npmjs.org/viewport-dimensions/-/viewport-dimensions-0.2.0.tgz"; + sha1 = "de740747db5387fd1725f5175e91bac76afdf36c"; }; }; - "mixin-deep-1.2.0" = { - name = "mixin-deep"; - packageName = "mixin-deep"; - version = "1.2.0"; + "color-scale-1.1.0" = { + name = "color-scale"; + packageName = "color-scale"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.2.0.tgz"; - sha1 = "d02b8c6f8b6d4b8f5982d3fd009c4919851c3fe2"; + url = "https://registry.npmjs.org/color-scale/-/color-scale-1.1.0.tgz"; + sha1 = "0e60fae6a5fc298d153a4d9cae956d266e14e17b"; }; }; - "pascalcase-0.1.1" = { - name = "pascalcase"; - packageName = "pascalcase"; + "color-0.8.0" = { + name = "color"; + packageName = "color"; + version = "0.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/color/-/color-0.8.0.tgz"; + sha1 = "890c07c3fd4e649537638911cf691e5458b6fca5"; + }; + }; + "color-blind-0.1.1" = { + name = "color-blind"; + packageName = "color-blind"; version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"; - sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; + url = "https://registry.npmjs.org/color-blind/-/color-blind-0.1.1.tgz"; + sha1 = "d6cf97b635fb6605c9dcc48efb58d5eb972a371e"; }; }; - "collection-visit-0.2.3" = { - name = "collection-visit"; - packageName = "collection-visit"; - version = "0.2.3"; + "hex-color-regex-git+https://github.com/btholt/hex-color-regex.git" = { + name = "hex-color-regex"; + packageName = "hex-color-regex"; + version = "1.1.0"; + src = fetchgit { + url = "https://github.com/btholt/hex-color-regex.git"; + rev = "9486788aab7c8d79a9bc70a9141669b95a03f2eb"; + sha256 = "0ac0c6c29fef1813154595da477dbaac3be3708c68126476148416465d1500a4"; + }; + }; + "hexa-color-regex-1.0.0" = { + name = "hexa-color-regex"; + packageName = "hexa-color-regex"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/collection-visit/-/collection-visit-0.2.3.tgz"; - sha1 = "2f62483caecc95f083b9a454a3ee9e6139ad7957"; + url = "https://registry.npmjs.org/hexa-color-regex/-/hexa-color-regex-1.0.0.tgz"; + sha1 = "3155e7d672ba046d309bb1f5e0d3b0d02dbc8213"; }; }; - "get-value-2.0.6" = { - name = "get-value"; - packageName = "get-value"; - version = "2.0.6"; + "jimp-0.2.28" = { + name = "jimp"; + packageName = "jimp"; + version = "0.2.28"; src = fetchurl { - url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"; - sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; + url = "https://registry.npmjs.org/jimp/-/jimp-0.2.28.tgz"; + sha1 = "dd529a937190f42957a7937d1acc3a7762996ea2"; }; }; - "has-value-0.3.1" = { - name = "has-value"; - packageName = "has-value"; - version = "0.3.1"; + "onecolor-2.5.0" = { + name = "onecolor"; + packageName = "onecolor"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"; - sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; + url = "https://registry.npmjs.org/onecolor/-/onecolor-2.5.0.tgz"; + sha1 = "2256b651dc807c101f00aedbd49925c57a4431c1"; }; }; - "set-value-0.4.3" = { - name = "set-value"; - packageName = "set-value"; - version = "0.4.3"; + "bignumber.js-2.4.0" = { + name = "bignumber.js"; + packageName = "bignumber.js"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz"; - sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"; + url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz"; + sha1 = "838a992da9f9d737e0f4b2db0be62bb09dd0c5e8"; }; }; - "union-value-0.2.4" = { - name = "union-value"; - packageName = "union-value"; - version = "0.2.4"; + "bmp-js-0.0.3" = { + name = "bmp-js"; + packageName = "bmp-js"; + version = "0.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/union-value/-/union-value-0.2.4.tgz"; - sha1 = "7375152786679057e7b37aa676e83468fc0274f0"; + url = "https://registry.npmjs.org/bmp-js/-/bmp-js-0.0.3.tgz"; + sha1 = "64113e9c7cf1202b376ed607bf30626ebe57b18a"; }; }; - "unset-value-0.1.2" = { - name = "unset-value"; - packageName = "unset-value"; - version = "0.1.2"; + "es6-promise-3.3.1" = { + name = "es6-promise"; + packageName = "es6-promise"; + version = "3.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz"; + sha1 = "a08cdde84ccdbf34d027a1451bc91d4bcd28a613"; + }; + }; + "exif-parser-0.1.12" = { + name = "exif-parser"; + packageName = "exif-parser"; + version = "0.1.12"; src = fetchurl { - url = "https://registry.npmjs.org/unset-value/-/unset-value-0.1.2.tgz"; - sha1 = "506810b867f27c2a5a6e9b04833631f6de58d310"; + url = "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz"; + sha1 = "58a9d2d72c02c1f6f02a0ef4a9166272b7760922"; }; }; - "map-visit-0.1.5" = { - name = "map-visit"; - packageName = "map-visit"; - version = "0.1.5"; + "jpeg-js-0.2.0" = { + name = "jpeg-js"; + packageName = "jpeg-js"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/map-visit/-/map-visit-0.1.5.tgz"; - sha1 = "dbe43927ce5525b80dfc1573a44d68c51f26816b"; + url = "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.2.0.tgz"; + sha1 = "53e448ec9d263e683266467e9442d2c5a2ef5482"; }; }; - "object-visit-0.3.4" = { - name = "object-visit"; - packageName = "object-visit"; - version = "0.3.4"; + "load-bmfont-1.3.0" = { + name = "load-bmfont"; + packageName = "load-bmfont"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/object-visit/-/object-visit-0.3.4.tgz"; - sha1 = "ae15cf86f0b2fdd551771636448452c54c3da829"; + url = "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.3.0.tgz"; + sha1 = "bb7e7c710de6bcafcb13cb3b8c81e0c0131ecbc9"; }; }; - "has-values-0.1.4" = { - name = "has-values"; - packageName = "has-values"; - version = "0.1.4"; + "pixelmatch-4.0.2" = { + name = "pixelmatch"; + packageName = "pixelmatch"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"; - sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; + url = "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz"; + sha1 = "8f47dcec5011b477b67db03c243bc1f3085e8854"; }; }; - "static-extend-0.1.2" = { - name = "static-extend"; - packageName = "static-extend"; - version = "0.1.2"; + "pngjs-3.3.1" = { + name = "pngjs"; + packageName = "pngjs"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"; - sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; + url = "https://registry.npmjs.org/pngjs/-/pngjs-3.3.1.tgz"; + sha1 = "8e14e6679ee7424b544334c3b2d21cea6d8c209a"; }; }; - "object-copy-0.1.0" = { - name = "object-copy"; - packageName = "object-copy"; + "read-chunk-1.0.1" = { + name = "read-chunk"; + packageName = "read-chunk"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/read-chunk/-/read-chunk-1.0.1.tgz"; + sha1 = "5f68cab307e663f19993527d9b589cace4661194"; + }; + }; + "stream-to-buffer-0.1.0" = { + name = "stream-to-buffer"; + packageName = "stream-to-buffer"; version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"; - sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; + url = "https://registry.npmjs.org/stream-to-buffer/-/stream-to-buffer-0.1.0.tgz"; + sha1 = "26799d903ab2025c9bd550ac47171b00f8dd80a9"; }; }; - "copy-descriptor-0.1.1" = { - name = "copy-descriptor"; - packageName = "copy-descriptor"; + "tinycolor2-1.4.1" = { + name = "tinycolor2"; + packageName = "tinycolor2"; + version = "1.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.1.tgz"; + sha1 = "f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"; + }; + }; + "buffer-equal-0.0.1" = { + name = "buffer-equal"; + packageName = "buffer-equal"; + version = "0.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz"; + sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b"; + }; + }; + "parse-bmfont-ascii-1.0.6" = { + name = "parse-bmfont-ascii"; + packageName = "parse-bmfont-ascii"; + version = "1.0.6"; + src = fetchurl { + url = "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz"; + sha1 = "11ac3c3ff58f7c2020ab22769079108d4dfa0285"; + }; + }; + "parse-bmfont-binary-1.0.6" = { + name = "parse-bmfont-binary"; + packageName = "parse-bmfont-binary"; + version = "1.0.6"; + src = fetchurl { + url = "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz"; + sha1 = "d038b476d3e9dd9db1e11a0b0e53a22792b69006"; + }; + }; + "parse-bmfont-xml-1.1.3" = { + name = "parse-bmfont-xml"; + packageName = "parse-bmfont-xml"; + version = "1.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.3.tgz"; + sha1 = "d6b66a371afd39c5007d9f0eeb262a4f2cce7b7c"; + }; + }; + "xhr-2.4.1" = { + name = "xhr"; + packageName = "xhr"; + version = "2.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz"; + sha1 = "ba982cced205ae5eec387169ac9dc77ca4853d38"; + }; + }; + "xml-parse-from-string-1.0.1" = { + name = "xml-parse-from-string"; + packageName = "xml-parse-from-string"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz"; + sha1 = "a9029e929d3dbcded169f3c6e28238d95a5d5a28"; + }; + }; + "xml2js-0.4.19" = { + name = "xml2js"; + packageName = "xml2js"; + version = "0.4.19"; + src = fetchurl { + url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz"; + sha1 = "686c20f213209e94abf0d1bcf1efaa291c7827a7"; + }; + }; + "xmlbuilder-9.0.4" = { + name = "xmlbuilder"; + packageName = "xmlbuilder"; + version = "9.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.4.tgz"; + sha1 = "519cb4ca686d005a8420d3496f3f0caeecca580f"; + }; + }; + "global-4.3.2" = { + name = "global"; + packageName = "global"; + version = "4.3.2"; + src = fetchurl { + url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz"; + sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f"; + }; + }; + "is-function-1.0.1" = { + name = "is-function"; + packageName = "is-function"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz"; + sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5"; + }; + }; + "parse-headers-2.0.1" = { + name = "parse-headers"; + packageName = "parse-headers"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz"; + sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536"; + }; + }; + "min-document-2.19.0" = { + name = "min-document"; + packageName = "min-document"; + version = "2.19.0"; + src = fetchurl { + url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz"; + sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685"; + }; + }; + "process-0.5.2" = { + name = "process"; + packageName = "process"; + version = "0.5.2"; + src = fetchurl { + url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz"; + sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf"; + }; + }; + "dom-walk-0.1.1" = { + name = "dom-walk"; + packageName = "dom-walk"; version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; - sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; + url = "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz"; + sha1 = "672226dc74c8f799ad35307df936aba11acd6018"; }; }; - "source-map-url-0.4.0" = { - name = "source-map-url"; - packageName = "source-map-url"; - version = "0.4.0"; + "for-each-0.3.2" = { + name = "for-each"; + packageName = "for-each"; + version = "0.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz"; - sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; + url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz"; + sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4"; }; }; - "atob-2.0.3" = { - name = "atob"; - packageName = "atob"; - version = "2.0.3"; + "stream-to-0.2.2" = { + name = "stream-to"; + packageName = "stream-to"; + version = "0.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz"; - sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d"; + url = "https://registry.npmjs.org/stream-to/-/stream-to-0.2.2.tgz"; + sha1 = "84306098d85fdb990b9fa300b1b3ccf55e8ef01d"; + }; + }; + "css-color-extractor-0.0.5" = { + name = "css-color-extractor"; + packageName = "css-color-extractor"; + version = "0.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/css-color-extractor/-/css-color-extractor-0.0.5.tgz"; + sha1 = "b737a2553320b837b12e124affae03dd53c4acf2"; + }; + }; + "colors.css-2.3.0" = { + name = "colors.css"; + packageName = "colors.css"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/colors.css/-/colors.css-2.3.0.tgz"; + sha1 = "e8953837543e19d98e2917ff0b998f6db286213b"; + }; + }; + "postcss-modules-local-by-default-1.2.0" = { + name = "postcss-modules-local-by-default"; + packageName = "postcss-modules-local-by-default"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz"; + sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069"; + }; + }; + "css-color-converter-1.1.0" = { + name = "css-color-converter"; + packageName = "css-color-converter"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/css-color-converter/-/css-color-converter-1.1.0.tgz"; + sha1 = "c2e7d93c2e96c8ad8cb1ac7a1f2e49d8052ade36"; + }; + }; + "canvas-1.6.9" = { + name = "canvas"; + packageName = "canvas"; + version = "1.6.9"; + src = fetchurl { + url = "https://registry.npmjs.org/canvas/-/canvas-1.6.9.tgz"; + sha1 = "e3f95cec7b16bf2d6f3fc725c02d940d3258f69b"; + }; + }; + "dotty-0.0.2" = { + name = "dotty"; + packageName = "dotty"; + version = "0.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/dotty/-/dotty-0.0.2.tgz"; + sha1 = "e1de8d46267b62fade12b5b58c21ca514c4a7aa1"; + }; + }; + "require-reload-0.2.2" = { + name = "require-reload"; + packageName = "require-reload"; + version = "0.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/require-reload/-/require-reload-0.2.2.tgz"; + sha1 = "29a7591846caf91b6e8a3cda991683f95f8d7d42"; + }; + }; + "html-entities-1.2.1" = { + name = "html-entities"; + packageName = "html-entities"; + version = "1.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz"; + sha1 = "0df29351f0721163515dfb9e5543e5f6eed5162f"; + }; + }; + "postcss-5.2.5" = { + name = "postcss"; + packageName = "postcss"; + version = "5.2.5"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss/-/postcss-5.2.5.tgz"; + sha1 = "ec428c27dffc7fac65961340a9b022fa4af5f056"; + }; + }; + "contrast-1.0.1" = { + name = "contrast"; + packageName = "contrast"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/contrast/-/contrast-1.0.1.tgz"; + sha1 = "839c66d8852269d33f4eb0a1b92d994bdd16385e"; + }; + }; + "hex-to-rgb-1.0.1" = { + name = "hex-to-rgb"; + packageName = "hex-to-rgb"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/hex-to-rgb/-/hex-to-rgb-1.0.1.tgz"; + sha1 = "100b9df126b32f2762adf8486be68c65ef8ed2a4"; }; }; "crass-0.7.12" = { @@ -12624,13 +13065,13 @@ let sha1 = "83ee9089db3c254bec1e98e498d9aacf11adcc54"; }; }; - "coffee-script-1.12.6" = { + "coffee-script-1.12.7" = { name = "coffee-script"; packageName = "coffee-script"; - version = "1.12.6"; + version = "1.12.7"; src = fetchurl { - url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.6.tgz"; - sha1 = "285a3f7115689065064d6bf9ef4572db66695cbf"; + url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz"; + sha1 = "c05dae0cb79591d05b3070a8433a98c9a89ccc53"; }; }; "cson-parser-1.3.5" = { @@ -12696,15 +13137,6 @@ let sha1 = "f97b95f51b038417212d677d45a373ee7bced7e6"; }; }; - "extend-2.0.1" = { - name = "extend"; - packageName = "extend"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/extend/-/extend-2.0.1.tgz"; - sha1 = "1ee8010689e7395ff9448241c98652bc759a8260"; - }; - }; "csscomb-3.1.8" = { name = "csscomb"; packageName = "csscomb"; @@ -12804,22 +13236,22 @@ let sha1 = "650ba93d7ed26f1d3f7dc35543c8232f4bd6402c"; }; }; - "autoprefixer-7.1.2" = { + "autoprefixer-7.2.3" = { name = "autoprefixer"; packageName = "autoprefixer"; - version = "7.1.2"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.2.tgz"; - sha1 = "fbeaf07d48fd878e0682bf7cbeeade728adb2b18"; + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.2.3.tgz"; + sha1 = "c2841e38b7940c2d0a9bbffd72c75f33637854f8"; }; }; - "pixrem-4.0.1" = { - name = "pixrem"; - packageName = "pixrem"; - version = "4.0.1"; + "caniuse-api-2.0.0" = { + name = "caniuse-api"; + packageName = "caniuse-api"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/pixrem/-/pixrem-4.0.1.tgz"; - sha1 = "2da4a1de6ec4423c5fc3794e930b81d4490ec686"; + url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-2.0.0.tgz"; + sha1 = "b1ddb5a5966b16f48dc4998444d4bbc6c7d9d834"; }; }; "pleeease-filters-4.0.0" = { @@ -12849,31 +13281,31 @@ let sha1 = "94dc422c8f90997f16bd33a3654bbbec084963b4"; }; }; - "postcss-calc-6.0.0" = { + "postcss-calc-6.0.1" = { name = "postcss-calc"; packageName = "postcss-calc"; - version = "6.0.0"; + version = "6.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-6.0.0.tgz"; - sha1 = "b681b279c6d24fbe0e33ed9045803705445d613b"; + url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-6.0.1.tgz"; + sha1 = "3d24171bbf6e7629d422a436ebfe6dd9511f4330"; }; }; - "postcss-color-function-4.0.0" = { + "postcss-color-function-4.0.1" = { name = "postcss-color-function"; packageName = "postcss-color-function"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-function/-/postcss-color-function-4.0.0.tgz"; - sha1 = "7e0106f4f6a1ecb1ad5b3a8553ace5e828aae187"; + url = "https://registry.npmjs.org/postcss-color-function/-/postcss-color-function-4.0.1.tgz"; + sha1 = "402b3f2cebc3f6947e618fb6be3654fbecef6444"; }; }; - "postcss-color-gray-4.0.0" = { + "postcss-color-gray-4.1.0" = { name = "postcss-color-gray"; packageName = "postcss-color-gray"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-4.0.0.tgz"; - sha1 = "681bf305097dd66bfef0e1e6282d5d99b5acc95d"; + url = "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-4.1.0.tgz"; + sha1 = "e5581ed57eaa826fb652ca11b1e2b7b136a9f9df"; }; }; "postcss-color-hex-alpha-3.0.0" = { @@ -12921,15 +13353,6 @@ let sha1 = "14539c8a7131494b482e0dd1cc265ff6514b5263"; }; }; - "postcss-color-rgba-fallback-3.0.0" = { - name = "postcss-color-rgba-fallback"; - packageName = "postcss-color-rgba-fallback"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-rgba-fallback/-/postcss-color-rgba-fallback-3.0.0.tgz"; - sha1 = "37d5c9353a07a09270912a82606bb42a0d702c04"; - }; - }; "postcss-custom-media-6.0.0" = { name = "postcss-custom-media"; packageName = "postcss-custom-media"; @@ -12939,13 +13362,13 @@ let sha1 = "be532784110ecb295044fb5395a18006eb21a737"; }; }; - "postcss-custom-properties-6.1.0" = { + "postcss-custom-properties-6.2.0" = { name = "postcss-custom-properties"; packageName = "postcss-custom-properties"; - version = "6.1.0"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-6.1.0.tgz"; - sha1 = "9caf1151ac41b1e9e64d3a2ff9ece996ca18977d"; + url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-6.2.0.tgz"; + sha1 = "5d929a7f06e9b84e0f11334194c0ba9a30acfbe9"; }; }; "postcss-custom-selectors-4.0.1" = { @@ -12957,13 +13380,13 @@ let sha1 = "781382f94c52e727ef5ca4776ea2adf49a611382"; }; }; - "postcss-font-family-system-ui-2.0.1" = { + "postcss-font-family-system-ui-2.1.1" = { name = "postcss-font-family-system-ui"; packageName = "postcss-font-family-system-ui"; - version = "2.0.1"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-family-system-ui/-/postcss-font-family-system-ui-2.0.1.tgz"; - sha1 = "318a075fdcb84b864aa823a51935ef0a5872e911"; + url = "https://registry.npmjs.org/postcss-font-family-system-ui/-/postcss-font-family-system-ui-2.1.1.tgz"; + sha1 = "1ee54246cd02b199755ebe5781b91188ed908006"; }; }; "postcss-font-variant-3.0.0" = { @@ -13002,13 +13425,13 @@ let sha1 = "675256037a43ef40bc4f0760bfd06d4dc69d48d2"; }; }; - "postcss-nesting-4.0.1" = { + "postcss-nesting-4.2.1" = { name = "postcss-nesting"; packageName = "postcss-nesting"; - version = "4.0.1"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-4.0.1.tgz"; - sha1 = "8fc2ce40cbfcfab7ee24e7b68fb6ebe84b641469"; + url = "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-4.2.1.tgz"; + sha1 = "0483bce338b3f0828ced90ff530b29b98b00300d"; }; }; "postcss-pseudo-class-any-link-4.0.0" = { @@ -13020,15 +13443,6 @@ let sha1 = "9152a0613d3450720513e8892854bae42d0ee68e"; }; }; - "postcss-pseudoelements-5.0.0" = { - name = "postcss-pseudoelements"; - packageName = "postcss-pseudoelements"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-pseudoelements/-/postcss-pseudoelements-5.0.0.tgz"; - sha1 = "eef194e8d524645ca520a949e95e518e812402cb"; - }; - }; "postcss-replace-overflow-wrap-2.0.0" = { name = "postcss-replace-overflow-wrap"; packageName = "postcss-replace-overflow-wrap"; @@ -13056,6 +13470,15 @@ let sha1 = "2e4db2f0965336c01e7cec7db6c60dff767335d9"; }; }; + "@std/esm-0.16.0" = { + name = "@std/esm"; + packageName = "@std/esm"; + version = "0.16.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@std/esm/-/esm-0.16.0.tgz"; + sha1 = "2a7a33ecb7f1701cebd4c87df6d0d945ed51f730"; + }; + }; "postcss-media-query-parser-0.2.3" = { name = "postcss-media-query-parser"; packageName = "postcss-media-query-parser"; @@ -13191,13 +13614,22 @@ let sha1 = "ffeec0c7bf11d46ea155dcb6ec157f175546cd52"; }; }; - "babel-polyfill-6.23.0" = { + "babel-polyfill-6.26.0" = { name = "babel-polyfill"; packageName = "babel-polyfill"; - version = "6.23.0"; + version = "6.26.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz"; + sha1 = "379937abc67d7895970adc621f284cd966cf2153"; + }; + }; + "regenerator-runtime-0.10.5" = { + name = "regenerator-runtime"; + packageName = "regenerator-runtime"; + version = "0.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.23.0.tgz"; - sha1 = "8364ca62df8eafb830499f699177466c3b03499d"; + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz"; + sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658"; }; }; "postcss-5.0.14" = { @@ -13299,13 +13731,13 @@ let sha1 = "611c23e814db375527df851193db59dd2af27f45"; }; }; - "sha.js-2.4.8" = { + "sha.js-2.4.9" = { name = "sha.js"; packageName = "sha.js"; - version = "2.4.8"; + version = "2.4.9"; src = fetchurl { - url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.8.tgz"; - sha1 = "37068c2c476b6baf402d14a49c67f597921f634f"; + url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.9.tgz"; + sha1 = "98f64880474b74f4a38b8da9d3c0f2d104633e7d"; }; }; "gulp-3.9.1" = { @@ -13407,6 +13839,15 @@ let sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c"; }; }; + "once-1.3.3" = { + name = "once"; + packageName = "once"; + version = "1.3.3"; + src = fetchurl { + url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz"; + sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20"; + }; + }; "user-home-1.1.1" = { name = "user-home"; packageName = "user-home"; @@ -13578,13 +14019,13 @@ let sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"; }; }; - "natives-1.1.0" = { + "natives-1.1.1" = { name = "natives"; packageName = "natives"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/natives/-/natives-1.1.0.tgz"; - sha1 = "e9ff841418a6b2ec7a495e939984f78f163e6e31"; + url = "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz"; + sha1 = "011acce1f7cbd87f7ba6b3093d6cd9392be1c574"; }; }; "concat-stream-1.5.2" = { @@ -13659,6 +14100,15 @@ let sha1 = "d4e4342a96675cb7846633a6099249332b539952"; }; }; + "clean-css-3.4.28" = { + name = "clean-css"; + packageName = "clean-css"; + version = "3.4.28"; + src = fetchurl { + url = "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz"; + sha1 = "bf1945e82fc808f55695e6ddeaec01400efd03ff"; + }; + }; "custom-resolve-0.2.1" = { name = "custom-resolve"; packageName = "custom-resolve"; @@ -13722,13 +14172,13 @@ let sha1 = "6b466d53f6df1b658f496575cd9a48262a5ca557"; }; }; - "rtlcss-2.2.0" = { + "rtlcss-2.2.1" = { name = "rtlcss"; packageName = "rtlcss"; - version = "2.2.0"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/rtlcss/-/rtlcss-2.2.0.tgz"; - sha1 = "134415254d0c26b5c403e2ead2c1b8bf4fc000dd"; + url = "https://registry.npmjs.org/rtlcss/-/rtlcss-2.2.1.tgz"; + sha1 = "f8537e4155208166b05e189802131936fcefd29e"; }; }; "findup-0.1.5" = { @@ -13767,13 +14217,13 @@ let sha1 = "b8a9c5493212a9392f0222b649c9611497ebfb88"; }; }; - "postcss-simple-vars-4.0.0" = { + "postcss-simple-vars-4.1.0" = { name = "postcss-simple-vars"; packageName = "postcss-simple-vars"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-4.0.0.tgz"; - sha1 = "d49e082897d9a4824f2268fa91d969d943e2ea76"; + url = "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-4.1.0.tgz"; + sha1 = "043248cfef8d3f51b3486a28c09f8375dbf1b2f9"; }; }; "eases-1.0.8" = { @@ -13839,13 +14289,22 @@ let sha1 = "d438e13868c9cbd37fdba12594de4d8fe14430a4"; }; }; - "postcss-import-9.1.0" = { + "is-glob-4.0.0" = { + name = "is-glob"; + packageName = "is-glob"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz"; + sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0"; + }; + }; + "postcss-import-10.0.0" = { name = "postcss-import"; packageName = "postcss-import"; - version = "9.1.0"; + version = "10.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-import/-/postcss-import-9.1.0.tgz"; - sha1 = "95fe9876a1e79af49fbdc3589f01fe5aa7cc1e80"; + url = "https://registry.npmjs.org/postcss-import/-/postcss-import-10.0.0.tgz"; + sha1 = "4c85c97b099136cc5ea0240dc1dfdbfde4e2ebbe"; }; }; "async-1.5.0" = { @@ -13947,13 +14406,13 @@ let sha1 = "f5c6c051d73f86f11b4ee14267cc1029fce261d0"; }; }; - "pixelsmith-2.1.1" = { + "pixelsmith-2.1.3" = { name = "pixelsmith"; packageName = "pixelsmith"; - version = "2.1.1"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.1.1.tgz"; - sha1 = "dd5653c87bac9a88c0e687ea4ff3ab5fcb0fd6e5"; + url = "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.1.3.tgz"; + sha1 = "260a5025ba276df6948c898212ab7abaf5e503bf"; }; }; "get-pixels-3.3.0" = { @@ -13974,13 +14433,13 @@ let sha1 = "11d1e12b9cb64d63e30c143a330f4c1f567da85f"; }; }; - "generic-names-1.0.2" = { + "generic-names-1.0.3" = { name = "generic-names"; packageName = "generic-names"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/generic-names/-/generic-names-1.0.2.tgz"; - sha1 = "e25b7feceb5b5a8f28f5f972a7ccfe57e562adcd"; + url = "https://registry.npmjs.org/generic-names/-/generic-names-1.0.3.tgz"; + sha1 = "2d786a121aee508876796939e8e3bff836c20917"; }; }; "postcss-icss-selectors-2.0.3" = { @@ -14073,6 +14532,33 @@ let sha1 = "8b520c85fae7a253382d4b02652e045576e13bb8"; }; }; + "fs-extra-3.0.1" = { + name = "fs-extra"; + packageName = "fs-extra"; + version = "3.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz"; + sha1 = "3794f378c58b342ea7dbbb23095109c4b3b62291"; + }; + }; + "jsonfile-3.0.1" = { + name = "jsonfile"; + packageName = "jsonfile"; + version = "3.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz"; + sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; + }; + }; + "universalify-0.1.1" = { + name = "universalify"; + packageName = "universalify"; + version = "0.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz"; + sha1 = "fa71badd4437af4c148841e3b3b165f9e9e590b7"; + }; + }; "file-save-0.2.0" = { name = "file-save"; packageName = "file-save"; @@ -14091,13 +14577,13 @@ let sha1 = "cbc7569355cb3c83afeb4ace43ecff95231e5a7d"; }; }; - "nearest-color-0.4.0" = { + "nearest-color-0.4.2" = { name = "nearest-color"; packageName = "nearest-color"; - version = "0.4.0"; + version = "0.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/nearest-color/-/nearest-color-0.4.0.tgz"; - sha1 = "dab0b96b80aea91d1e7f6674479b855234effe08"; + url = "https://registry.npmjs.org/nearest-color/-/nearest-color-0.4.2.tgz"; + sha1 = "6ebd3a859969e76dd834e609beeecef73c3881e0"; }; }; "parse-color-1.0.0" = { @@ -14118,13 +14604,13 @@ let sha1 = "8a41518b22284351faca636a6fdb1b6b904ca207"; }; }; - "postcss-flexbugs-fixes-3.0.0" = { + "postcss-flexbugs-fixes-3.2.0" = { name = "postcss-flexbugs-fixes"; packageName = "postcss-flexbugs-fixes"; - version = "3.0.0"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.0.0.tgz"; - sha1 = "7b31cb6c27d0417a35a67914c295f83c403c7ed4"; + url = "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz"; + sha1 = "9b8b932c53f9cf13ba0f61875303e447c33dcc51"; }; }; "postcss-nth-child-fix-2.0.0" = { @@ -14136,15 +14622,6 @@ let sha1 = "d38df7693a373779925f43ee1176e7259c5d9c74"; }; }; - "postcss-vmin-3.0.0" = { - name = "postcss-vmin"; - packageName = "postcss-vmin"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-vmin/-/postcss-vmin-3.0.0.tgz"; - sha1 = "6d6ae6b3e84fe3ff7a4df1eb86f3a69a07e8a144"; - }; - }; "bootstrap-fonts-complete-1.0.0" = { name = "bootstrap-fonts-complete"; packageName = "bootstrap-fonts-complete"; @@ -14154,22 +14631,31 @@ let sha1 = "037a987c008722313fd5889f8689cf3cc58ca06e"; }; }; - "directory-fonts-complete-1.1.0" = { + "directory-fonts-complete-1.2.0" = { name = "directory-fonts-complete"; packageName = "directory-fonts-complete"; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/directory-fonts-complete/-/directory-fonts-complete-1.1.0.tgz"; - sha1 = "f68c4cdd4d31dffe3761fda62f43a4b273853091"; + url = "https://registry.npmjs.org/directory-fonts-complete/-/directory-fonts-complete-1.2.0.tgz"; + sha1 = "0980c1f0ea262fd17d1b32094a97c86789f9aa8b"; }; }; - "google-fonts-complete-1.1.1" = { + "google-fonts-complete-1.2.0" = { name = "google-fonts-complete"; packageName = "google-fonts-complete"; - version = "1.1.1"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/google-fonts-complete/-/google-fonts-complete-1.2.0.tgz"; + sha1 = "dca7568d10a639bac3f725588c89a75c07ca50df"; + }; + }; + "brotli-1.3.2" = { + name = "brotli"; + packageName = "brotli"; + version = "1.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/google-fonts-complete/-/google-fonts-complete-1.1.1.tgz"; - sha1 = "c2e33b7566d8619e31950d6f97767a141e05ff5d"; + url = "https://registry.npmjs.org/brotli/-/brotli-1.3.2.tgz"; + sha1 = "525a9cad4fcba96475d7d388f6aecb13eed52f46"; }; }; "is-eot-1.0.0" = { @@ -14208,6 +14694,24 @@ let sha1 = "4951de604a9218f458c2c18c64c835802e02fa6b"; }; }; + "is-woff2-1.0.0" = { + name = "is-woff2"; + packageName = "is-woff2"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/is-woff2/-/is-woff2-1.0.0.tgz"; + sha1 = "5eb9cad96d9c3d1d384f26792f95324e1582edd8"; + }; + }; + "base64-js-1.2.1" = { + name = "base64-js"; + packageName = "base64-js"; + version = "1.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz"; + sha1 = "a91947da1f4a516ea38e5b4ec0ec3773675e0886"; + }; + }; "b3b-0.0.1" = { name = "b3b"; packageName = "b3b"; @@ -14298,2065 +14802,1642 @@ let sha1 = "6aca7096b07b8b2a37d519dba87770447259d3a3"; }; }; - "ava-0.19.1" = { - name = "ava"; - packageName = "ava"; - version = "0.19.1"; + "postcss-merge-grid-template-0.6.0" = { + name = "postcss-merge-grid-template"; + packageName = "postcss-merge-grid-template"; + version = "0.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/ava/-/ava-0.19.1.tgz"; - sha1 = "43dd82435ad19b3980ffca2488f05daab940b273"; + url = "https://registry.npmjs.org/postcss-merge-grid-template/-/postcss-merge-grid-template-0.6.0.tgz"; + sha1 = "5be176c6dae64f6afd266e264e372cbc08674241"; }; }; - "@ava/babel-preset-stage-4-1.1.0" = { - name = "@ava/babel-preset-stage-4"; - packageName = "@ava/babel-preset-stage-4"; - version = "1.1.0"; + "color-parser-0.1.0" = { + name = "color-parser"; + packageName = "color-parser"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz"; - sha1 = "ae60be881a0babf7d35f52aba770d1f6194f76bd"; + url = "https://registry.npmjs.org/color-parser/-/color-parser-0.1.0.tgz"; + sha1 = "8e17c93ca02cc7b4d998d9b20cc6b0c8e1ce19ca"; }; }; - "@ava/babel-preset-transform-test-files-3.0.0" = { - name = "@ava/babel-preset-transform-test-files"; - packageName = "@ava/babel-preset-transform-test-files"; - version = "3.0.0"; + "postcss-import-5.2.2" = { + name = "postcss-import"; + packageName = "postcss-import"; + version = "5.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-3.0.0.tgz"; - sha1 = "cded1196a8d8d9381a509240ab92e91a5ec069f7"; + url = "https://registry.npmjs.org/postcss-import/-/postcss-import-5.2.2.tgz"; + sha1 = "2090ffd4028713447d711e0b353eed99fc972736"; }; }; - "@ava/pretty-format-1.1.0" = { - name = "@ava/pretty-format"; - packageName = "@ava/pretty-format"; - version = "1.1.0"; + "string-hash-1.1.3" = { + name = "string-hash"; + packageName = "string-hash"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/@ava/pretty-format/-/pretty-format-1.1.0.tgz"; - sha1 = "d0a57d25eb9aeab9643bdd1a030642b91c123e28"; + url = "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz"; + sha1 = "e8aafc0ac1855b4666929ed7dd1275df5d6c811b"; }; }; - "auto-bind-1.1.0" = { - name = "auto-bind"; - packageName = "auto-bind"; - version = "1.1.0"; + "fs-extra-1.0.0" = { + name = "fs-extra"; + packageName = "fs-extra"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/auto-bind/-/auto-bind-1.1.0.tgz"; - sha1 = "93b864dc7ee01a326281775d5c75ca0a751e5961"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"; + sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950"; }; }; - "ava-init-0.2.1" = { - name = "ava-init"; - packageName = "ava-init"; - version = "0.2.1"; + "postcss-functions-2.1.1" = { + name = "postcss-functions"; + packageName = "postcss-functions"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/ava-init/-/ava-init-0.2.1.tgz"; - sha1 = "75ac4c8553326290d2866e63b62fa7035684bd58"; + url = "https://registry.npmjs.org/postcss-functions/-/postcss-functions-2.1.1.tgz"; + sha1 = "f9b64d3b5690f6795fe42a180496805375b7a840"; }; }; - "clean-stack-1.3.0" = { - name = "clean-stack"; - packageName = "clean-stack"; - version = "1.3.0"; + "promise-7.3.1" = { + name = "promise"; + packageName = "promise"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz"; - sha1 = "9e821501ae979986c46b1d66d2d432db2fd4ae31"; + url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"; + sha1 = "064b72602b18f90f29192b8b1bc418ffd1ebd3bf"; }; }; - "cli-cursor-2.1.0" = { - name = "cli-cursor"; - packageName = "cli-cursor"; - version = "2.1.0"; + "quote-0.4.0" = { + name = "quote"; + packageName = "quote"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"; - sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; + url = "https://registry.npmjs.org/quote/-/quote-0.4.0.tgz"; + sha1 = "10839217f6c1362b89194044d29b233fd7f32f01"; }; }; - "cli-spinners-1.0.0" = { - name = "cli-spinners"; - packageName = "cli-spinners"; - version = "1.0.0"; + "asap-2.0.6" = { + name = "asap"; + packageName = "asap"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.0.0.tgz"; - sha1 = "ef987ed3d48391ac3dab9180b406a742180d6e6a"; + url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"; + sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; }; }; - "cli-truncate-1.0.0" = { - name = "cli-truncate"; - packageName = "cli-truncate"; + "array.prototype.find-1.0.0" = { + name = "array.prototype.find"; + packageName = "array.prototype.find"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.0.0.tgz"; - sha1 = "21eb91f47b3f6560f004db77a769b4668d9c5518"; - }; - }; - "code-excerpt-2.1.0" = { - name = "code-excerpt"; - packageName = "code-excerpt"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/code-excerpt/-/code-excerpt-2.1.0.tgz"; - sha1 = "5dcc081e88f4a7e3b554e9e35d7ef232d47f8147"; + url = "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-1.0.0.tgz"; + sha1 = "52d81768eb1c5692577ee29d96ca603dc76eb3a6"; }; }; - "diff-3.3.0" = { - name = "diff"; - packageName = "diff"; - version = "3.3.0"; + "gulp-iconfont-9.0.2" = { + name = "gulp-iconfont"; + packageName = "gulp-iconfont"; + version = "9.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/diff/-/diff-3.3.0.tgz"; - sha1 = "056695150d7aa93237ca7e378ac3b1682b7963b9"; + url = "https://registry.npmjs.org/gulp-iconfont/-/gulp-iconfont-9.0.2.tgz"; + sha1 = "aaba62a993b1db446892b03d2212ac694d04ff90"; }; }; - "diff-match-patch-1.0.0" = { - name = "diff-match-patch"; - packageName = "diff-match-patch"; + "gulp-cond-1.0.0" = { + name = "gulp-cond"; + packageName = "gulp-cond"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.0.tgz"; - sha1 = "1cc3c83a490d67f95d91e39f6ad1f2e086b63048"; + url = "https://registry.npmjs.org/gulp-cond/-/gulp-cond-1.0.0.tgz"; + sha1 = "9980c3cdcafa9bc4cd30ab871087ac135955b558"; }; }; - "dot-prop-4.1.1" = { - name = "dot-prop"; - packageName = "dot-prop"; - version = "4.1.1"; + "gulp-spawn-0.4.0" = { + name = "gulp-spawn"; + packageName = "gulp-spawn"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.1.1.tgz"; - sha1 = "a8493f0b7b5eeec82525b5c7587fa7de7ca859c1"; + url = "https://registry.npmjs.org/gulp-spawn/-/gulp-spawn-0.4.0.tgz"; + sha1 = "9b5511b523f4f3c84145ab8a0be49d735afe6aa8"; }; }; - "equal-length-1.0.1" = { - name = "equal-length"; - packageName = "equal-length"; - version = "1.0.1"; + "gulp-svg2ttf-2.0.1" = { + name = "gulp-svg2ttf"; + packageName = "gulp-svg2ttf"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/equal-length/-/equal-length-1.0.1.tgz"; - sha1 = "21ca112d48ab24b4e1e7ffc0e5339d31fdfc274c"; + url = "https://registry.npmjs.org/gulp-svg2ttf/-/gulp-svg2ttf-2.0.1.tgz"; + sha1 = "11d68bbbe27b89f47657b4d8f29cf33854d7e68c"; }; }; - "figures-2.0.0" = { - name = "figures"; - packageName = "figures"; - version = "2.0.0"; + "gulp-svgicons2svgfont-4.0.2" = { + name = "gulp-svgicons2svgfont"; + packageName = "gulp-svgicons2svgfont"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz"; - sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; + url = "https://registry.npmjs.org/gulp-svgicons2svgfont/-/gulp-svgicons2svgfont-4.0.2.tgz"; + sha1 = "76f19824bf3d1c0dd7e934679b9d63da799991a6"; }; }; - "get-port-3.1.0" = { - name = "get-port"; - packageName = "get-port"; - version = "3.1.0"; + "gulp-ttf2eot-1.1.2" = { + name = "gulp-ttf2eot"; + packageName = "gulp-ttf2eot"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/get-port/-/get-port-3.1.0.tgz"; - sha1 = "ef01b18a84ca6486970ff99e54446141a73ffd3e"; + url = "https://registry.npmjs.org/gulp-ttf2eot/-/gulp-ttf2eot-1.1.2.tgz"; + sha1 = "67516fe253baecbb3910b417a08dcb51e34acb0c"; }; }; - "hullabaloo-config-manager-1.1.1" = { - name = "hullabaloo-config-manager"; - packageName = "hullabaloo-config-manager"; + "gulp-ttf2woff-1.1.1" = { + name = "gulp-ttf2woff"; + packageName = "gulp-ttf2woff"; version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz"; - sha1 = "1d9117813129ad035fd9e8477eaf066911269fe3"; + url = "https://registry.npmjs.org/gulp-ttf2woff/-/gulp-ttf2woff-1.1.1.tgz"; + sha1 = "e22ca6e71bd9ad105751644f8b1c7e3be3b086ac"; }; }; - "indent-string-3.1.0" = { - name = "indent-string"; - packageName = "indent-string"; - version = "3.1.0"; + "gulp-ttf2woff2-2.0.2" = { + name = "gulp-ttf2woff2"; + packageName = "gulp-ttf2woff2"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/indent-string/-/indent-string-3.1.0.tgz"; - sha1 = "08ff4334603388399b329e6b9538dc7a3cf5de7d"; + url = "https://registry.npmjs.org/gulp-ttf2woff2/-/gulp-ttf2woff2-2.0.2.tgz"; + sha1 = "f101b1520f236aa6767ec45bf47541cb159eeb32"; }; }; - "jest-diff-19.0.0" = { - name = "jest-diff"; - packageName = "jest-diff"; - version = "19.0.0"; + "plexer-1.0.2" = { + name = "plexer"; + packageName = "plexer"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-19.0.0.tgz"; - sha1 = "d1563cfc56c8b60232988fbc05d4d16ed90f063c"; + url = "https://registry.npmjs.org/plexer/-/plexer-1.0.2.tgz"; + sha1 = "a8549ecbcda551043540cab765d723af037fc067"; }; }; - "jest-snapshot-19.0.2" = { - name = "jest-snapshot"; - packageName = "jest-snapshot"; - version = "19.0.2"; + "streamfilter-1.0.7" = { + name = "streamfilter"; + packageName = "streamfilter"; + version = "1.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-19.0.2.tgz"; - sha1 = "9c1b216214f7187c38bfd5c70b1efab16b0ff50b"; + url = "https://registry.npmjs.org/streamfilter/-/streamfilter-1.0.7.tgz"; + sha1 = "ae3e64522aa5a35c061fd17f67620c7653c643c9"; }; }; - "js-yaml-3.9.0" = { - name = "js-yaml"; - packageName = "js-yaml"; - version = "3.9.0"; + "gulp-util-2.2.20" = { + name = "gulp-util"; + packageName = "gulp-util"; + version = "2.2.20"; src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.0.tgz"; - sha1 = "4ffbbf25c2ac963b8299dc74da7e3740de1c18ce"; + url = "https://registry.npmjs.org/gulp-util/-/gulp-util-2.2.20.tgz"; + sha1 = "d7146e5728910bd8f047a6b0b1e549bc22dbd64c"; }; }; - "lodash.flatten-4.4.0" = { - name = "lodash.flatten"; - packageName = "lodash.flatten"; - version = "4.4.0"; + "plexer-0.0.1" = { + name = "plexer"; + packageName = "plexer"; + version = "0.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; - sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; + url = "https://registry.npmjs.org/plexer/-/plexer-0.0.1.tgz"; + sha1 = "6982db8d1cc83c88af608acd9cea5d29208fb99f"; }; }; - "md5-hex-2.0.0" = { - name = "md5-hex"; - packageName = "md5-hex"; - version = "2.0.0"; + "chalk-0.5.1" = { + name = "chalk"; + packageName = "chalk"; + version = "0.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz"; - sha1 = "d0588e9f1c74954492ecd24ac0ac6ce997d92e33"; + url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"; + sha1 = "663b3a648b68b55d04690d49167aa837858f2174"; }; }; - "observable-to-promise-0.5.0" = { - name = "observable-to-promise"; - packageName = "observable-to-promise"; - version = "0.5.0"; + "lodash._reinterpolate-2.4.1" = { + name = "lodash._reinterpolate"; + packageName = "lodash._reinterpolate"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/observable-to-promise/-/observable-to-promise-0.5.0.tgz"; - sha1 = "c828f0f0dc47e9f86af8a4977c5d55076ce7a91f"; + url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-2.4.1.tgz"; + sha1 = "4f1227aa5a8711fc632f5b07a1f4607aab8b3222"; }; }; - "package-hash-2.0.0" = { - name = "package-hash"; - packageName = "package-hash"; - version = "2.0.0"; + "lodash.template-2.4.1" = { + name = "lodash.template"; + packageName = "lodash.template"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/package-hash/-/package-hash-2.0.0.tgz"; - sha1 = "78ae326c89e05a4d813b68601977af05c00d2a0d"; + url = "https://registry.npmjs.org/lodash.template/-/lodash.template-2.4.1.tgz"; + sha1 = "9e611007edf629129a974ab3c48b817b3e1cf20d"; }; }; - "pkg-conf-2.0.0" = { - name = "pkg-conf"; - packageName = "pkg-conf"; - version = "2.0.0"; + "minimist-0.2.0" = { + name = "minimist"; + packageName = "minimist"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.0.0.tgz"; - sha1 = "071c87650403bccfb9c627f58751bfe47c067279"; + url = "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz"; + sha1 = "4dffe525dae2b864c66c2e23c6271d7afdecefce"; }; }; - "stack-utils-1.0.1" = { - name = "stack-utils"; - packageName = "stack-utils"; - version = "1.0.1"; + "through2-0.5.1" = { + name = "through2"; + packageName = "through2"; + version = "0.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz"; - sha1 = "d4f33ab54e8e38778b0ca5cfd3b3afb12db68620"; + url = "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz"; + sha1 = "dfdd012eb9c700e2323fd334f38ac622ab372da7"; }; }; - "strip-bom-buf-1.0.0" = { - name = "strip-bom-buf"; - packageName = "strip-bom-buf"; - version = "1.0.0"; + "vinyl-0.2.3" = { + name = "vinyl"; + packageName = "vinyl"; + version = "0.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz"; - sha1 = "1cb45aaf57530f4caf86c7f75179d2c9a51dd572"; + url = "https://registry.npmjs.org/vinyl/-/vinyl-0.2.3.tgz"; + sha1 = "bca938209582ec5a49ad538a00fa1f125e513252"; }; }; - "update-notifier-2.2.0" = { - name = "update-notifier"; - packageName = "update-notifier"; - version = "2.2.0"; + "ansi-styles-1.1.0" = { + name = "ansi-styles"; + packageName = "ansi-styles"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.2.0.tgz"; - sha1 = "1b5837cf90c0736d88627732b661c138f86de72f"; + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz"; + sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de"; }; }; - "@ava/babel-plugin-throws-helper-2.0.0" = { - name = "@ava/babel-plugin-throws-helper"; - packageName = "@ava/babel-plugin-throws-helper"; - version = "2.0.0"; + "has-ansi-0.1.0" = { + name = "has-ansi"; + packageName = "has-ansi"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz"; - sha1 = "2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c"; + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz"; + sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e"; }; }; - "has-yarn-1.0.0" = { - name = "has-yarn"; - packageName = "has-yarn"; - version = "1.0.0"; + "strip-ansi-0.3.0" = { + name = "strip-ansi"; + packageName = "strip-ansi"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/has-yarn/-/has-yarn-1.0.0.tgz"; - sha1 = "89e25db604b725c8f5976fff0addc921b828a5a7"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz"; + sha1 = "25f48ea22ca79187f3174a4db8759347bb126220"; }; }; - "read-pkg-up-2.0.0" = { - name = "read-pkg-up"; - packageName = "read-pkg-up"; - version = "2.0.0"; + "supports-color-0.2.0" = { + name = "supports-color"; + packageName = "supports-color"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; - sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; + url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz"; + sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a"; }; }; - "write-pkg-3.1.0" = { - name = "write-pkg"; - packageName = "write-pkg"; - version = "3.1.0"; + "ansi-regex-0.2.1" = { + name = "ansi-regex"; + packageName = "ansi-regex"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz"; - sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9"; - }; - }; - "find-up-2.1.0" = { - name = "find-up"; - packageName = "find-up"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"; - sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz"; + sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9"; }; }; - "read-pkg-2.0.0" = { - name = "read-pkg"; - packageName = "read-pkg"; - version = "2.0.0"; + "lodash.defaults-2.4.1" = { + name = "lodash.defaults"; + packageName = "lodash.defaults"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"; - sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; + url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz"; + sha1 = "a7e8885f05e68851144b6e12a8f3678026bc4c54"; }; }; - "locate-path-2.0.0" = { - name = "locate-path"; - packageName = "locate-path"; - version = "2.0.0"; + "lodash.escape-2.4.1" = { + name = "lodash.escape"; + packageName = "lodash.escape"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"; - sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; + url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-2.4.1.tgz"; + sha1 = "2ce12c5e084db0a57dda5e5d1eeeb9f5d175a3b4"; }; }; - "p-locate-2.0.0" = { - name = "p-locate"; - packageName = "p-locate"; - version = "2.0.0"; + "lodash._escapestringchar-2.4.1" = { + name = "lodash._escapestringchar"; + packageName = "lodash._escapestringchar"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"; - sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; + url = "https://registry.npmjs.org/lodash._escapestringchar/-/lodash._escapestringchar-2.4.1.tgz"; + sha1 = "ecfe22618a2ade50bfeea43937e51df66f0edb72"; }; }; - "path-exists-3.0.0" = { - name = "path-exists"; - packageName = "path-exists"; - version = "3.0.0"; + "lodash.keys-2.4.1" = { + name = "lodash.keys"; + packageName = "lodash.keys"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; + url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz"; + sha1 = "48dea46df8ff7632b10d706b8acb26591e2b3727"; }; }; - "p-limit-1.1.0" = { - name = "p-limit"; - packageName = "p-limit"; - version = "1.1.0"; + "lodash.templatesettings-2.4.1" = { + name = "lodash.templatesettings"; + packageName = "lodash.templatesettings"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz"; - sha1 = "b07ff2d9a5d88bec806035895a2bab66a27988bc"; + url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-2.4.1.tgz"; + sha1 = "ea76c75d11eb86d4dbe89a83893bb861929ac699"; }; }; - "load-json-file-2.0.0" = { - name = "load-json-file"; - packageName = "load-json-file"; - version = "2.0.0"; + "lodash.values-2.4.1" = { + name = "lodash.values"; + packageName = "lodash.values"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; - sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; + url = "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz"; + sha1 = "abf514436b3cb705001627978cbcf30b1280eea4"; }; }; - "path-type-2.0.0" = { - name = "path-type"; - packageName = "path-type"; - version = "2.0.0"; + "lodash._objecttypes-2.4.1" = { + name = "lodash._objecttypes"; + packageName = "lodash._objecttypes"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"; - sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; + url = "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz"; + sha1 = "7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11"; }; }; - "strip-bom-3.0.0" = { - name = "strip-bom"; - packageName = "strip-bom"; - version = "3.0.0"; + "lodash._isnative-2.4.1" = { + name = "lodash._isnative"; + packageName = "lodash._isnative"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"; - sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; + url = "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz"; + sha1 = "3ea6404b784a7be836c7b57580e1cdf79b14832c"; }; }; - "sort-keys-2.0.0" = { - name = "sort-keys"; - packageName = "sort-keys"; - version = "2.0.0"; + "lodash.isobject-2.4.1" = { + name = "lodash.isobject"; + packageName = "lodash.isobject"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"; - sha1 = "658535584861ec97d730d6cf41822e1f56684128"; + url = "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz"; + sha1 = "5a2e47fe69953f1ee631a7eba1fe64d2d06558f5"; }; }; - "write-json-file-2.2.0" = { - name = "write-json-file"; - packageName = "write-json-file"; - version = "2.2.0"; + "lodash._shimkeys-2.4.1" = { + name = "lodash._shimkeys"; + packageName = "lodash._shimkeys"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/write-json-file/-/write-json-file-2.2.0.tgz"; - sha1 = "51862506bbb3b619eefab7859f1fd6c6d0530876"; + url = "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz"; + sha1 = "6e9cc9666ff081f0b5a6c978b83e242e6949d203"; }; }; - "detect-indent-5.0.0" = { - name = "detect-indent"; - packageName = "detect-indent"; - version = "5.0.0"; + "lodash._escapehtmlchar-2.4.1" = { + name = "lodash._escapehtmlchar"; + packageName = "lodash._escapehtmlchar"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz"; - sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"; + url = "https://registry.npmjs.org/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.4.1.tgz"; + sha1 = "df67c3bb6b7e8e1e831ab48bfa0795b92afe899d"; }; }; - "write-file-atomic-2.1.0" = { - name = "write-file-atomic"; - packageName = "write-file-atomic"; - version = "2.1.0"; + "lodash._reunescapedhtml-2.4.1" = { + name = "lodash._reunescapedhtml"; + packageName = "lodash._reunescapedhtml"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz"; - sha1 = "1769f4b551eedce419f0505deae2e26763542d37"; + url = "https://registry.npmjs.org/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz"; + sha1 = "747c4fc40103eb3bb8a0976e571f7a2659e93ba7"; }; }; - "restore-cursor-2.0.0" = { - name = "restore-cursor"; - packageName = "restore-cursor"; - version = "2.0.0"; + "lodash._htmlescapes-2.4.1" = { + name = "lodash._htmlescapes"; + packageName = "lodash._htmlescapes"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"; - sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; + url = "https://registry.npmjs.org/lodash._htmlescapes/-/lodash._htmlescapes-2.4.1.tgz"; + sha1 = "32d14bf0844b6de6f8b62a051b4f67c228b624cb"; }; }; - "onetime-2.0.1" = { - name = "onetime"; - packageName = "onetime"; - version = "2.0.1"; + "xtend-3.0.0" = { + name = "xtend"; + packageName = "xtend"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"; - sha1 = "067428230fd67443b2794b22bba528b6867962d4"; + url = "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz"; + sha1 = "5cce7407baf642cba7becda568111c493f59665a"; }; }; - "mimic-fn-1.1.0" = { - name = "mimic-fn"; - packageName = "mimic-fn"; - version = "1.1.0"; + "bufferstreams-1.1.3" = { + name = "bufferstreams"; + packageName = "bufferstreams"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz"; - sha1 = "e667783d92e89dbd342818b5230b9d62a672ad18"; + url = "https://registry.npmjs.org/bufferstreams/-/bufferstreams-1.1.3.tgz"; + sha1 = "a8515ac024fa90e8fa7d58c11b13dea1f28abe72"; }; }; - "string-width-2.1.0" = { - name = "string-width"; - packageName = "string-width"; - version = "2.1.0"; + "svg2ttf-4.1.0" = { + name = "svg2ttf"; + packageName = "svg2ttf"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.0.tgz"; - sha1 = "030664561fc146c9423ec7d978fe2457437fe6d0"; + url = "https://registry.npmjs.org/svg2ttf/-/svg2ttf-4.1.0.tgz"; + sha1 = "82022e568bd03c1abb668fdd8d15f008956a0e10"; }; }; - "is-fullwidth-code-point-2.0.0" = { - name = "is-fullwidth-code-point"; - packageName = "is-fullwidth-code-point"; - version = "2.0.0"; + "cubic2quad-1.1.1" = { + name = "cubic2quad"; + packageName = "cubic2quad"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; + url = "https://registry.npmjs.org/cubic2quad/-/cubic2quad-1.1.1.tgz"; + sha1 = "69b19c61a3f5b41ecf2f1d5fae8fb03415aa8b15"; }; }; - "strip-ansi-4.0.0" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "4.0.0"; + "microbuffer-1.0.0" = { + name = "microbuffer"; + packageName = "microbuffer"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; + url = "https://registry.npmjs.org/microbuffer/-/microbuffer-1.0.0.tgz"; + sha1 = "8b3832ed40c87d51f47bb234913a698a756d19d2"; }; }; - "ansi-regex-3.0.0" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "3.0.0"; + "svgpath-2.2.1" = { + name = "svgpath"; + packageName = "svgpath"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; + url = "https://registry.npmjs.org/svgpath/-/svgpath-2.2.1.tgz"; + sha1 = "0834bb67c89a76472b2bd06cc101fa7b517b222c"; }; }; - "convert-to-spaces-1.0.2" = { - name = "convert-to-spaces"; - packageName = "convert-to-spaces"; - version = "1.0.2"; + "xmldom-0.1.27" = { + name = "xmldom"; + packageName = "xmldom"; + version = "0.1.27"; src = fetchurl { - url = "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz"; - sha1 = "7e3e48bbe6d997b1417ddca2868204b4d3d85715"; + url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz"; + sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; }; }; - "es6-error-4.0.2" = { - name = "es6-error"; - packageName = "es6-error"; - version = "4.0.2"; + "plexer-1.0.1" = { + name = "plexer"; + packageName = "plexer"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/es6-error/-/es6-error-4.0.2.tgz"; - sha1 = "eec5c726eacef51b7f6b73c20db6e1b13b069c98"; + url = "https://registry.npmjs.org/plexer/-/plexer-1.0.1.tgz"; + sha1 = "a801b652bf8145739795ea4d3bf0af946c30c0dd"; }; }; - "lodash.clonedeep-4.5.0" = { - name = "lodash.clonedeep"; - packageName = "lodash.clonedeep"; - version = "4.5.0"; + "svgicons2svgfont-7.0.2" = { + name = "svgicons2svgfont"; + packageName = "svgicons2svgfont"; + version = "7.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; - sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; + url = "https://registry.npmjs.org/svgicons2svgfont/-/svgicons2svgfont-7.0.2.tgz"; + sha1 = "df4b03e53f0d2e607bb71772faf3237088efe805"; }; }; - "lodash.clonedeepwith-4.5.0" = { - name = "lodash.clonedeepwith"; - packageName = "lodash.clonedeepwith"; - version = "4.5.0"; + "debug-2.6.1" = { + name = "debug"; + packageName = "debug"; + version = "2.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.clonedeepwith/-/lodash.clonedeepwith-4.5.0.tgz"; - sha1 = "6ee30573a03a1a60d670a62ef33c10cf1afdbdd4"; + url = "https://registry.npmjs.org/debug/-/debug-2.6.1.tgz"; + sha1 = "79855090ba2c4e3115cc7d8769491d58f0491351"; }; }; - "lodash.merge-4.6.0" = { - name = "lodash.merge"; - packageName = "lodash.merge"; - version = "4.6.0"; + "geometry-interfaces-1.1.4" = { + name = "geometry-interfaces"; + packageName = "geometry-interfaces"; + version = "1.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.0.tgz"; - sha1 = "69884ba144ac33fe699737a6086deffadd0f89c5"; + url = "https://registry.npmjs.org/geometry-interfaces/-/geometry-interfaces-1.1.4.tgz"; + sha1 = "9e82af6700ca639a675299f08e1f5fbc4a79d48d"; }; }; - "pkg-dir-2.0.0" = { - name = "pkg-dir"; - packageName = "pkg-dir"; - version = "2.0.0"; + "neatequal-1.0.0" = { + name = "neatequal"; + packageName = "neatequal"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz"; - sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; + url = "https://registry.npmjs.org/neatequal/-/neatequal-1.0.0.tgz"; + sha1 = "2ee1211bc9fa6e4c55715fd210bb05602eb1ae3b"; }; }; - "jest-matcher-utils-19.0.0" = { - name = "jest-matcher-utils"; - packageName = "jest-matcher-utils"; - version = "19.0.0"; + "string.fromcodepoint-0.2.1" = { + name = "string.fromcodepoint"; + packageName = "string.fromcodepoint"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz"; - sha1 = "5ecd9b63565d2b001f61fbf7ec4c7f537964564d"; + url = "https://registry.npmjs.org/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz"; + sha1 = "8d978333c0bc92538f50f383e4888f3e5619d653"; }; }; - "pretty-format-19.0.0" = { - name = "pretty-format"; - packageName = "pretty-format"; - version = "19.0.0"; + "string.prototype.codepointat-0.2.0" = { + name = "string.prototype.codepointat"; + packageName = "string.prototype.codepointat"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-19.0.0.tgz"; - sha1 = "56530d32acb98a3fa4851c4e2b9d37b420684c84"; + url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz"; + sha1 = "6b26e9bd3afcaa7be3b4269b526de1b82000ac78"; }; }; - "jest-file-exists-19.0.0" = { - name = "jest-file-exists"; - packageName = "jest-file-exists"; - version = "19.0.0"; + "svg-pathdata-4.0.1" = { + name = "svg-pathdata"; + packageName = "svg-pathdata"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/jest-file-exists/-/jest-file-exists-19.0.0.tgz"; - sha1 = "cca2e587a11ec92e24cfeab3f8a94d657f3fceb8"; + url = "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-4.0.1.tgz"; + sha1 = "7d880d05140ef3bda312c72a023db733e9d8ef7a"; }; }; - "jest-util-19.0.2" = { - name = "jest-util"; - packageName = "jest-util"; - version = "19.0.2"; + "transformation-matrix-js-2.7.1" = { + name = "transformation-matrix-js"; + packageName = "transformation-matrix-js"; + version = "2.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/jest-util/-/jest-util-19.0.2.tgz"; - sha1 = "e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41"; + url = "https://registry.npmjs.org/transformation-matrix-js/-/transformation-matrix-js-2.7.1.tgz"; + sha1 = "0b62e88b655e843e8e5972a668159554ffdcc910"; }; }; - "natural-compare-1.4.0" = { - name = "natural-compare"; - packageName = "natural-compare"; - version = "1.4.0"; + "ms-0.7.2" = { + name = "ms"; + packageName = "ms"; + version = "0.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; - sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz"; + sha1 = "ae25cf2512b3885a1d95d7f037868d8431124765"; }; }; - "jest-mock-19.0.0" = { - name = "jest-mock"; - packageName = "jest-mock"; - version = "19.0.0"; + "varstream-0.3.2" = { + name = "varstream"; + packageName = "varstream"; + version = "0.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/jest-mock/-/jest-mock-19.0.0.tgz"; - sha1 = "67038641e9607ab2ce08ec4a8cb83aabbc899d01"; + url = "https://registry.npmjs.org/varstream/-/varstream-0.3.2.tgz"; + sha1 = "18ac6494765f3ff1a35ad9a4be053bec188a5de1"; }; }; - "jest-validate-19.0.2" = { - name = "jest-validate"; - packageName = "jest-validate"; - version = "19.0.2"; + "ttf2eot-2.0.0" = { + name = "ttf2eot"; + packageName = "ttf2eot"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-19.0.2.tgz"; - sha1 = "dc534df5f1278d5b63df32b14241d4dbf7244c0c"; + url = "https://registry.npmjs.org/ttf2eot/-/ttf2eot-2.0.0.tgz"; + sha1 = "8e6337a585abd1608a0c84958ab483ce69f6654b"; }; }; - "jest-message-util-19.0.0" = { - name = "jest-message-util"; - packageName = "jest-message-util"; - version = "19.0.0"; + "ttf2woff-2.0.1" = { + name = "ttf2woff"; + packageName = "ttf2woff"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-19.0.0.tgz"; - sha1 = "721796b89c0e4d761606f9ba8cb828a3b6246416"; + url = "https://registry.npmjs.org/ttf2woff/-/ttf2woff-2.0.1.tgz"; + sha1 = "871832240024b09db9570904c7c1928b8057c969"; }; }; - "leven-2.1.0" = { - name = "leven"; - packageName = "leven"; - version = "2.1.0"; + "pako-1.0.6" = { + name = "pako"; + packageName = "pako"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz"; - sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; + url = "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz"; + sha1 = "0101211baa70c4bca4a0f63f2206e97b7dfaf258"; }; }; - "esprima-4.0.0" = { - name = "esprima"; - packageName = "esprima"; - version = "4.0.0"; + "ttf2woff2-2.0.3" = { + name = "ttf2woff2"; + packageName = "ttf2woff2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz"; - sha1 = "4499eddcd1110e0b218bacf2fa7f7f59f55ca804"; + url = "https://registry.npmjs.org/ttf2woff2/-/ttf2woff2-2.0.3.tgz"; + sha1 = "5e020afe6e643287f3ad7687abed20fe654eb329"; }; }; - "symbol-observable-1.0.4" = { - name = "symbol-observable"; - packageName = "symbol-observable"; - version = "1.0.4"; + "bindings-1.3.0" = { + name = "bindings"; + packageName = "bindings"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.4.tgz"; - sha1 = "29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"; + url = "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz"; + sha1 = "b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7"; }; }; - "lodash.flattendeep-4.4.0" = { - name = "lodash.flattendeep"; - packageName = "lodash.flattendeep"; - version = "4.4.0"; + "node-gyp-3.6.2" = { + name = "node-gyp"; + packageName = "node-gyp"; + version = "3.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"; - sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2"; + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz"; + sha1 = "9bfbe54562286284838e750eac05295853fa1c60"; }; }; - "release-zalgo-1.0.0" = { - name = "release-zalgo"; - packageName = "release-zalgo"; - version = "1.0.0"; + "semver-5.3.0" = { + name = "semver"; + packageName = "semver"; + version = "5.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz"; - sha1 = "09700b7e5074329739330e535c5a90fb67851730"; + url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; + sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; }; }; - "boxen-1.2.0" = { - name = "boxen"; - packageName = "boxen"; - version = "1.2.0"; + "icss-replace-symbols-1.1.0" = { + name = "icss-replace-symbols"; + packageName = "icss-replace-symbols"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/boxen/-/boxen-1.2.0.tgz"; - sha1 = "03478d84be7fe02189b80904d81d6a80384368f1"; + url = "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz"; + sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded"; }; }; - "configstore-3.1.0" = { - name = "configstore"; - packageName = "configstore"; - version = "3.1.0"; + "icss-utils-2.1.0" = { + name = "icss-utils"; + packageName = "icss-utils"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/configstore/-/configstore-3.1.0.tgz"; - sha1 = "45df907073e26dfa1cf4b2d52f5b60545eaa11d1"; + url = "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz"; + sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962"; }; }; - "import-lazy-2.1.0" = { - name = "import-lazy"; - packageName = "import-lazy"; - version = "2.1.0"; + "lodash.foreach-3.0.3" = { + name = "lodash.foreach"; + packageName = "lodash.foreach"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz"; - sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43"; + url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-3.0.3.tgz"; + sha1 = "6fd7efb79691aecd67fdeac2761c98e701d6c39a"; }; }; - "latest-version-3.1.0" = { - name = "latest-version"; - packageName = "latest-version"; - version = "3.1.0"; + "lodash._baseeach-3.0.4" = { + name = "lodash._baseeach"; + packageName = "lodash._baseeach"; + version = "3.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz"; - sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15"; + url = "https://registry.npmjs.org/lodash._baseeach/-/lodash._baseeach-3.0.4.tgz"; + sha1 = "cf8706572ca144e8d9d75227c990da982f932af3"; }; }; - "xdg-basedir-3.0.0" = { - name = "xdg-basedir"; - packageName = "xdg-basedir"; - version = "3.0.0"; + "asset-resolver-1.0.0" = { + name = "asset-resolver"; + packageName = "asset-resolver"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz"; - sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4"; + url = "https://registry.npmjs.org/asset-resolver/-/asset-resolver-1.0.0.tgz"; + sha1 = "529f2e861b551090cbb1a0c6453c3923bba4929c"; }; }; - "ansi-align-2.0.0" = { - name = "ansi-align"; - packageName = "ansi-align"; - version = "2.0.0"; + "filesize-3.5.11" = { + name = "filesize"; + packageName = "filesize"; + version = "3.5.11"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz"; - sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f"; + url = "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz"; + sha1 = "1919326749433bb3cf77368bd158caabcc19e9ee"; }; }; - "term-size-1.2.0" = { - name = "term-size"; - packageName = "term-size"; - version = "1.2.0"; + "lodash.defaults-4.2.0" = { + name = "lodash.defaults"; + packageName = "lodash.defaults"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz"; - sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; + url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz"; + sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c"; }; }; - "unique-string-1.0.0" = { - name = "unique-string"; - packageName = "unique-string"; - version = "1.0.0"; + "lodash.escaperegexp-4.1.2" = { + name = "lodash.escaperegexp"; + packageName = "lodash.escaperegexp"; + version = "4.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"; - sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a"; + url = "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz"; + sha1 = "64762c48618082518ac3df4ccf5d5886dae20347"; }; }; - "crypto-random-string-1.0.0" = { - name = "crypto-random-string"; - packageName = "crypto-random-string"; - version = "1.0.0"; + "lodash.isstring-4.0.1" = { + name = "lodash.isstring"; + packageName = "lodash.isstring"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"; - sha1 = "a230f64f568310e1498009940790ec99545bca7e"; + url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz"; + sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; }; }; - "package-json-4.0.1" = { - name = "package-json"; - packageName = "package-json"; - version = "4.0.1"; + "lodash.last-3.0.0" = { + name = "lodash.last"; + packageName = "lodash.last"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz"; - sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed"; + url = "https://registry.npmjs.org/lodash.last/-/lodash.last-3.0.0.tgz"; + sha1 = "242f663112dd4c6e63728c60a3c909d1bdadbd4c"; }; }; - "got-6.7.1" = { - name = "got"; - packageName = "got"; - version = "6.7.1"; + "lodash.map-4.6.0" = { + name = "lodash.map"; + packageName = "lodash.map"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz"; - sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0"; + url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz"; + sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; }; }; - "duplexer3-0.1.4" = { - name = "duplexer3"; - packageName = "duplexer3"; - version = "0.1.4"; + "lodash.partialright-4.2.1" = { + name = "lodash.partialright"; + packageName = "lodash.partialright"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz"; - sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"; + url = "https://registry.npmjs.org/lodash.partialright/-/lodash.partialright-4.2.1.tgz"; + sha1 = "0130d80e83363264d40074f329b8a3e7a8a1cc4b"; }; }; - "timed-out-4.0.1" = { - name = "timed-out"; - packageName = "timed-out"; - version = "4.0.1"; + "lodash.reduce-4.6.0" = { + name = "lodash.reduce"; + packageName = "lodash.reduce"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz"; - sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f"; + url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz"; + sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b"; }; }; - "unzip-response-2.0.1" = { - name = "unzip-response"; - packageName = "unzip-response"; - version = "2.0.1"; + "lodash.reject-4.6.0" = { + name = "lodash.reject"; + packageName = "lodash.reject"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz"; - sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; + url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz"; + sha1 = "80d6492dc1470864bbf583533b651f42a9f52415"; }; }; - "color-parser-0.1.0" = { - name = "color-parser"; - packageName = "color-parser"; - version = "0.1.0"; + "lodash.result-4.5.2" = { + name = "lodash.result"; + packageName = "lodash.result"; + version = "4.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/color-parser/-/color-parser-0.1.0.tgz"; - sha1 = "8e17c93ca02cc7b4d998d9b20cc6b0c8e1ce19ca"; + url = "https://registry.npmjs.org/lodash.result/-/lodash.result-4.5.2.tgz"; + sha1 = "cb45b27fb914eaa8d8ee6f0ce7b2870b87cb70aa"; }; }; - "postcss-import-5.2.2" = { - name = "postcss-import"; - packageName = "postcss-import"; - version = "5.2.2"; + "mime-2.0.3" = { + name = "mime"; + packageName = "mime"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-import/-/postcss-import-5.2.2.tgz"; - sha1 = "2090ffd4028713447d711e0b353eed99fc972736"; + url = "https://registry.npmjs.org/mime/-/mime-2.0.3.tgz"; + sha1 = "4353337854747c48ea498330dc034f9f4bbbcc0b"; }; }; - "string-hash-1.1.3" = { - name = "string-hash"; - packageName = "string-hash"; - version = "1.1.3"; + "object-hash-1.2.0" = { + name = "object-hash"; + packageName = "object-hash"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz"; - sha1 = "e8aafc0ac1855b4666929ed7dd1275df5d6c811b"; + url = "https://registry.npmjs.org/object-hash/-/object-hash-1.2.0.tgz"; + sha1 = "e96af0e96981996a1d47f88ead8f74f1ebc4422b"; }; }; - "fs-extra-1.0.0" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "1.0.0"; + "svgo-1.0.3" = { + name = "svgo"; + packageName = "svgo"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"; - sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950"; + url = "https://registry.npmjs.org/svgo/-/svgo-1.0.3.tgz"; + sha1 = "c93be52d98ffa2a7273c7a0ac5bf34f470973dad"; }; }; - "promise-7.3.1" = { - name = "promise"; - packageName = "promise"; - version = "7.3.1"; + "then-fs-2.0.0" = { + name = "then-fs"; + packageName = "then-fs"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"; - sha1 = "064b72602b18f90f29192b8b1bc418ffd1ebd3bf"; + url = "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz"; + sha1 = "72f792dd9d31705a91ae19ebfcf8b3f968c81da2"; }; }; - "quote-0.4.0" = { - name = "quote"; - packageName = "quote"; - version = "0.4.0"; + "fs-extra-5.0.0" = { + name = "fs-extra"; + packageName = "fs-extra"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/quote/-/quote-0.4.0.tgz"; - sha1 = "10839217f6c1362b89194044d29b233fd7f32f01"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz"; + sha1 = "414d0110cdd06705734d055652c5411260c31abd"; }; }; - "asap-2.0.6" = { - name = "asap"; - packageName = "asap"; - version = "2.0.6"; + "globby-7.1.1" = { + name = "globby"; + packageName = "globby"; + version = "7.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"; - sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; + url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz"; + sha1 = "fb2ccff9401f8600945dfada97440cca972b8680"; }; }; - "array.prototype.find-1.0.0" = { - name = "array.prototype.find"; - packageName = "array.prototype.find"; - version = "1.0.0"; + "hash-0.2.0" = { + name = "hash"; + packageName = "hash"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-1.0.0.tgz"; - sha1 = "52d81768eb1c5692577ee29d96ca603dc76eb3a6"; + url = "https://registry.npmjs.org/hash/-/hash-0.2.0.tgz"; + sha1 = "978654fa723b1252eea844e560c3931dad27289b"; }; }; - "gulp-iconfont-8.0.1" = { - name = "gulp-iconfont"; - packageName = "gulp-iconfont"; - version = "8.0.1"; + "object-0.1.1" = { + name = "object"; + packageName = "object"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-iconfont/-/gulp-iconfont-8.0.1.tgz"; - sha1 = "bc32aa6e3ea5ca389fbb014ba8d2c08f0c3c0763"; + url = "https://registry.npmjs.org/object/-/object-0.1.1.tgz"; + sha1 = "1e02cede8ae1f358aaa872ad754bf640d77a22c2"; }; }; - "gulp-cond-1.0.0" = { - name = "gulp-cond"; - packageName = "gulp-cond"; - version = "1.0.0"; + "jsonfile-4.0.0" = { + name = "jsonfile"; + packageName = "jsonfile"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-cond/-/gulp-cond-1.0.0.tgz"; - sha1 = "9980c3cdcafa9bc4cd30ab871087ac135955b558"; + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; + sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; }; }; - "gulp-spawn-0.3.0" = { - name = "gulp-spawn"; - packageName = "gulp-spawn"; - version = "0.3.0"; + "dir-glob-2.0.0" = { + name = "dir-glob"; + packageName = "dir-glob"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-spawn/-/gulp-spawn-0.3.0.tgz"; - sha1 = "420faa8d070ecb60cb8316002936b254239c56ec"; + url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz"; + sha1 = "0b205d2b6aef98238ca286598a8204d29d0a0034"; }; }; - "gulp-svg2ttf-2.0.1" = { - name = "gulp-svg2ttf"; - packageName = "gulp-svg2ttf"; - version = "2.0.1"; + "ignore-3.3.7" = { + name = "ignore"; + packageName = "ignore"; + version = "3.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-svg2ttf/-/gulp-svg2ttf-2.0.1.tgz"; - sha1 = "11d68bbbe27b89f47657b4d8f29cf33854d7e68c"; + url = "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz"; + sha1 = "612289bfb3c220e186a58118618d5be8c1bab021"; }; }; - "gulp-svgicons2svgfont-3.0.2" = { - name = "gulp-svgicons2svgfont"; - packageName = "gulp-svgicons2svgfont"; - version = "3.0.2"; + "path-type-3.0.0" = { + name = "path-type"; + packageName = "path-type"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-svgicons2svgfont/-/gulp-svgicons2svgfont-3.0.2.tgz"; - sha1 = "f08f8308a4fd1aefb301d253fa835ce563a8189e"; + url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"; + sha1 = "cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"; }; }; - "gulp-ttf2eot-1.1.2" = { - name = "gulp-ttf2eot"; - packageName = "gulp-ttf2eot"; - version = "1.1.2"; + "coa-2.0.0" = { + name = "coa"; + packageName = "coa"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-ttf2eot/-/gulp-ttf2eot-1.1.2.tgz"; - sha1 = "67516fe253baecbb3910b417a08dcb51e34acb0c"; + url = "https://registry.npmjs.org/coa/-/coa-2.0.0.tgz"; + sha1 = "af881ebe214fc29bee4e9e76b4956b6132295546"; }; }; - "gulp-ttf2woff-1.1.1" = { - name = "gulp-ttf2woff"; - packageName = "gulp-ttf2woff"; - version = "1.1.1"; + "css-url-regex-1.1.0" = { + name = "css-url-regex"; + packageName = "css-url-regex"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-ttf2woff/-/gulp-ttf2woff-1.1.1.tgz"; - sha1 = "e22ca6e71bd9ad105751644f8b1c7e3be3b086ac"; + url = "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz"; + sha1 = "83834230cc9f74c457de59eebd1543feeb83b7ec"; }; }; - "gulp-ttf2woff2-2.0.2" = { - name = "gulp-ttf2woff2"; - packageName = "gulp-ttf2woff2"; - version = "2.0.2"; + "css-select-1.3.0-rc0" = { + name = "css-select"; + packageName = "css-select"; + version = "1.3.0-rc0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-ttf2woff2/-/gulp-ttf2woff2-2.0.2.tgz"; - sha1 = "f101b1520f236aa6767ec45bf47541cb159eeb32"; + url = "https://registry.npmjs.org/css-select/-/css-select-1.3.0-rc0.tgz"; + sha1 = "6f93196aaae737666ea1036a8cb14a8fcb7a9231"; }; }; - "plexer-1.0.1" = { - name = "plexer"; - packageName = "plexer"; - version = "1.0.1"; + "css-select-base-adapter-0.1.0" = { + name = "css-select-base-adapter"; + packageName = "css-select-base-adapter"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/plexer/-/plexer-1.0.1.tgz"; - sha1 = "a801b652bf8145739795ea4d3bf0af946c30c0dd"; + url = "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz"; + sha1 = "0102b3d14630df86c3eb9fa9f5456270106cf990"; }; }; - "streamfilter-1.0.5" = { - name = "streamfilter"; - packageName = "streamfilter"; - version = "1.0.5"; + "css-tree-1.0.0-alpha25" = { + name = "css-tree"; + packageName = "css-tree"; + version = "1.0.0-alpha25"; src = fetchurl { - url = "https://registry.npmjs.org/streamfilter/-/streamfilter-1.0.5.tgz"; - sha1 = "87507111beb8e298451717b511cfed8f002abf53"; + url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha25.tgz"; + sha1 = "1bbfabfbf6eeef4f01d9108ff2edd0be2fe35597"; }; }; - "gulp-util-2.2.20" = { - name = "gulp-util"; - packageName = "gulp-util"; - version = "2.2.20"; + "csso-3.4.0" = { + name = "csso"; + packageName = "csso"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/gulp-util/-/gulp-util-2.2.20.tgz"; - sha1 = "d7146e5728910bd8f047a6b0b1e549bc22dbd64c"; + url = "https://registry.npmjs.org/csso/-/csso-3.4.0.tgz"; + sha1 = "57b27ef553cccbf5aa964c641748641e9af113f3"; }; }; - "plexer-0.0.1" = { - name = "plexer"; - packageName = "plexer"; - version = "0.0.1"; + "object.values-1.0.4" = { + name = "object.values"; + packageName = "object.values"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/plexer/-/plexer-0.0.1.tgz"; - sha1 = "6982db8d1cc83c88af608acd9cea5d29208fb99f"; + url = "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz"; + sha1 = "e524da09b4f66ff05df457546ec72ac99f13069a"; }; }; - "chalk-0.5.1" = { - name = "chalk"; - packageName = "chalk"; - version = "0.5.1"; + "stable-0.1.6" = { + name = "stable"; + packageName = "stable"; + version = "0.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"; - sha1 = "663b3a648b68b55d04690d49167aa837858f2174"; + url = "https://registry.npmjs.org/stable/-/stable-0.1.6.tgz"; + sha1 = "910f5d2aed7b520c6e777499c1f32e139fdecb10"; }; }; - "lodash._reinterpolate-2.4.1" = { - name = "lodash._reinterpolate"; - packageName = "lodash._reinterpolate"; - version = "2.4.1"; + "util.promisify-1.0.0" = { + name = "util.promisify"; + packageName = "util.promisify"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-2.4.1.tgz"; - sha1 = "4f1227aa5a8711fc632f5b07a1f4607aab8b3222"; + url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz"; + sha1 = "440f7165a459c9a16dc145eb8e72f35687097030"; }; }; - "lodash.template-2.4.1" = { - name = "lodash.template"; - packageName = "lodash.template"; - version = "2.4.1"; + "boolbase-1.0.0" = { + name = "boolbase"; + packageName = "boolbase"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.template/-/lodash.template-2.4.1.tgz"; - sha1 = "9e611007edf629129a974ab3c48b817b3e1cf20d"; + url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; + sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; }; }; - "minimist-0.2.0" = { - name = "minimist"; - packageName = "minimist"; - version = "0.2.0"; + "css-what-2.1.0" = { + name = "css-what"; + packageName = "css-what"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz"; - sha1 = "4dffe525dae2b864c66c2e23c6271d7afdecefce"; + url = "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz"; + sha1 = "9467d032c38cfaefb9f2d79501253062f87fa1bd"; }; }; - "through2-0.5.1" = { - name = "through2"; - packageName = "through2"; - version = "0.5.1"; + "domutils-1.5.1" = { + name = "domutils"; + packageName = "domutils"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz"; - sha1 = "dfdd012eb9c700e2323fd334f38ac622ab372da7"; + url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz"; + sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; }; }; - "vinyl-0.2.3" = { - name = "vinyl"; - packageName = "vinyl"; - version = "0.2.3"; + "nth-check-1.0.1" = { + name = "nth-check"; + packageName = "nth-check"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/vinyl/-/vinyl-0.2.3.tgz"; - sha1 = "bca938209582ec5a49ad538a00fa1f125e513252"; + url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz"; + sha1 = "9929acdf628fc2c41098deab82ac580cf149aae4"; }; }; - "ansi-styles-1.1.0" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "1.1.0"; + "mdn-data-1.0.0" = { + name = "mdn-data"; + packageName = "mdn-data"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz"; - sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de"; + url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.0.0.tgz"; + sha1 = "a69d9da76847b4d5834c1465ea25c0653a1fbf66"; }; }; - "has-ansi-0.1.0" = { - name = "has-ansi"; - packageName = "has-ansi"; - version = "0.1.0"; + "define-properties-1.1.2" = { + name = "define-properties"; + packageName = "define-properties"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz"; - sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e"; + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz"; + sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94"; }; }; - "strip-ansi-0.3.0" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "0.3.0"; + "es-abstract-1.10.0" = { + name = "es-abstract"; + packageName = "es-abstract"; + version = "1.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz"; - sha1 = "25f48ea22ca79187f3174a4db8759347bb126220"; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz"; + sha1 = "1ecb36c197842a00d8ee4c2dfd8646bb97d60864"; }; }; - "supports-color-0.2.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "0.2.0"; + "es-to-primitive-1.1.1" = { + name = "es-to-primitive"; + packageName = "es-to-primitive"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz"; - sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a"; + url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz"; + sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d"; }; }; - "ansi-regex-0.2.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "0.2.1"; + "is-callable-1.1.3" = { + name = "is-callable"; + packageName = "is-callable"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz"; - sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9"; + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz"; + sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2"; }; }; - "lodash.defaults-2.4.1" = { - name = "lodash.defaults"; - packageName = "lodash.defaults"; - version = "2.4.1"; + "is-regex-1.0.4" = { + name = "is-regex"; + packageName = "is-regex"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz"; - sha1 = "a7e8885f05e68851144b6e12a8f3678026bc4c54"; + url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz"; + sha1 = "5517489b547091b0930e095654ced25ee97e9491"; }; }; - "lodash.escape-2.4.1" = { - name = "lodash.escape"; - packageName = "lodash.escape"; - version = "2.4.1"; + "is-date-object-1.0.1" = { + name = "is-date-object"; + packageName = "is-date-object"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-2.4.1.tgz"; - sha1 = "2ce12c5e084db0a57dda5e5d1eeeb9f5d175a3b4"; + url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz"; + sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; }; }; - "lodash._escapestringchar-2.4.1" = { - name = "lodash._escapestringchar"; - packageName = "lodash._escapestringchar"; - version = "2.4.1"; + "is-symbol-1.0.1" = { + name = "is-symbol"; + packageName = "is-symbol"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._escapestringchar/-/lodash._escapestringchar-2.4.1.tgz"; - sha1 = "ecfe22618a2ade50bfeea43937e51df66f0edb72"; + url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz"; + sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572"; }; }; - "lodash.keys-2.4.1" = { - name = "lodash.keys"; - packageName = "lodash.keys"; - version = "2.4.1"; + "object.getownpropertydescriptors-2.0.3" = { + name = "object.getownpropertydescriptors"; + packageName = "object.getownpropertydescriptors"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz"; - sha1 = "48dea46df8ff7632b10d706b8acb26591e2b3727"; + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz"; + sha1 = "8758c846f5b407adab0f236e0986f14b051caa16"; }; }; - "lodash.templatesettings-2.4.1" = { - name = "lodash.templatesettings"; - packageName = "lodash.templatesettings"; - version = "2.4.1"; + "sharp-0.18.4" = { + name = "sharp"; + packageName = "sharp"; + version = "0.18.4"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-2.4.1.tgz"; - sha1 = "ea76c75d11eb86d4dbe89a83893bb861929ac699"; + url = "https://registry.npmjs.org/sharp/-/sharp-0.18.4.tgz"; + sha1 = "fe329c0f06896c28aa24376df1fff02ae57f2d34"; }; }; - "lodash.values-2.4.1" = { - name = "lodash.values"; - packageName = "lodash.values"; - version = "2.4.1"; + "caw-2.0.1" = { + name = "caw"; + packageName = "caw"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz"; - sha1 = "abf514436b3cb705001627978cbcf30b1280eea4"; + url = "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz"; + sha1 = "6c3ca071fc194720883c2dc5da9b074bfc7e9e95"; }; }; - "lodash._objecttypes-2.4.1" = { - name = "lodash._objecttypes"; - packageName = "lodash._objecttypes"; - version = "2.4.1"; + "detect-libc-0.2.0" = { + name = "detect-libc"; + packageName = "detect-libc"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz"; - sha1 = "7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11"; + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-0.2.0.tgz"; + sha1 = "47fdf567348a17ec25fcbf0b9e446348a76f9fb5"; }; }; - "lodash._escapehtmlchar-2.4.1" = { - name = "lodash._escapehtmlchar"; - packageName = "lodash._escapehtmlchar"; - version = "2.4.1"; + "simple-get-2.7.0" = { + name = "simple-get"; + packageName = "simple-get"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.4.1.tgz"; - sha1 = "df67c3bb6b7e8e1e831ab48bfa0795b92afe899d"; + url = "https://registry.npmjs.org/simple-get/-/simple-get-2.7.0.tgz"; + sha1 = "ad37f926d08129237ff08c4f2edfd6f10e0380b5"; }; }; - "lodash._reunescapedhtml-2.4.1" = { - name = "lodash._reunescapedhtml"; - packageName = "lodash._reunescapedhtml"; - version = "2.4.1"; + "tar-3.2.1" = { + name = "tar"; + packageName = "tar"; + version = "3.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz"; - sha1 = "747c4fc40103eb3bb8a0976e571f7a2659e93ba7"; + url = "https://registry.npmjs.org/tar/-/tar-3.2.1.tgz"; + sha1 = "9aa8e41c88f09e76c166075bc71f93d5166e61b1"; }; }; - "lodash._htmlescapes-2.4.1" = { - name = "lodash._htmlescapes"; - packageName = "lodash._htmlescapes"; - version = "2.4.1"; + "get-proxy-2.1.0" = { + name = "get-proxy"; + packageName = "get-proxy"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._htmlescapes/-/lodash._htmlescapes-2.4.1.tgz"; - sha1 = "32d14bf0844b6de6f8b62a051b4f67c228b624cb"; + url = "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz"; + sha1 = "349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93"; }; }; - "lodash._isnative-2.4.1" = { - name = "lodash._isnative"; - packageName = "lodash._isnative"; - version = "2.4.1"; + "isurl-1.0.0" = { + name = "isurl"; + packageName = "isurl"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz"; - sha1 = "3ea6404b784a7be836c7b57580e1cdf79b14832c"; + url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz"; + sha1 = "b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67"; }; }; - "lodash.isobject-2.4.1" = { - name = "lodash.isobject"; - packageName = "lodash.isobject"; - version = "2.4.1"; + "url-to-options-1.0.1" = { + name = "url-to-options"; + packageName = "url-to-options"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz"; - sha1 = "5a2e47fe69953f1ee631a7eba1fe64d2d06558f5"; + url = "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz"; + sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9"; }; }; - "lodash._shimkeys-2.4.1" = { - name = "lodash._shimkeys"; - packageName = "lodash._shimkeys"; - version = "2.4.1"; + "npm-conf-1.1.3" = { + name = "npm-conf"; + packageName = "npm-conf"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz"; - sha1 = "6e9cc9666ff081f0b5a6c978b83e242e6949d203"; + url = "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz"; + sha1 = "256cc47bd0e218c259c4e9550bf413bc2192aff9"; }; }; - "xtend-3.0.0" = { - name = "xtend"; - packageName = "xtend"; - version = "3.0.0"; + "has-to-string-tag-x-1.4.1" = { + name = "has-to-string-tag-x"; + packageName = "has-to-string-tag-x"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz"; - sha1 = "5cce7407baf642cba7becda568111c493f59665a"; + url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz"; + sha1 = "a045ab383d7b4b2012a00148ab0aa5f290044d4d"; }; }; - "bufferstreams-1.1.1" = { - name = "bufferstreams"; - packageName = "bufferstreams"; - version = "1.1.1"; + "is-object-1.0.1" = { + name = "is-object"; + packageName = "is-object"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/bufferstreams/-/bufferstreams-1.1.1.tgz"; - sha1 = "0161373060ac5988eff99058731114f6e195d51e"; + url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz"; + sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470"; }; }; - "svg2ttf-4.1.0" = { - name = "svg2ttf"; - packageName = "svg2ttf"; - version = "4.1.0"; + "has-symbol-support-x-1.4.1" = { + name = "has-symbol-support-x"; + packageName = "has-symbol-support-x"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/svg2ttf/-/svg2ttf-4.1.0.tgz"; - sha1 = "82022e568bd03c1abb668fdd8d15f008956a0e10"; + url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz"; + sha1 = "66ec2e377e0c7d7ccedb07a3a84d77510ff1bc4c"; }; }; - "cubic2quad-1.1.1" = { - name = "cubic2quad"; - packageName = "cubic2quad"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cubic2quad/-/cubic2quad-1.1.1.tgz"; - sha1 = "69b19c61a3f5b41ecf2f1d5fae8fb03415aa8b15"; + "decompress-response-3.3.0" = { + name = "decompress-response"; + packageName = "decompress-response"; + version = "3.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz"; + sha1 = "80a4dd323748384bfa248083622aedec982adff3"; }; }; - "microbuffer-1.0.0" = { - name = "microbuffer"; - packageName = "microbuffer"; + "simple-concat-1.0.0" = { + name = "simple-concat"; + packageName = "simple-concat"; version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/microbuffer/-/microbuffer-1.0.0.tgz"; - sha1 = "8b3832ed40c87d51f47bb234913a698a756d19d2"; + url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz"; + sha1 = "7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6"; }; }; - "svgpath-2.2.1" = { - name = "svgpath"; - packageName = "svgpath"; - version = "2.2.1"; + "mimic-response-1.0.0" = { + name = "mimic-response"; + packageName = "mimic-response"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/svgpath/-/svgpath-2.2.1.tgz"; - sha1 = "0834bb67c89a76472b2bd06cc101fa7b517b222c"; + url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz"; + sha1 = "df3d3652a73fded6b9b0b24146e6fd052353458e"; }; }; - "xmldom-0.1.27" = { - name = "xmldom"; - packageName = "xmldom"; - version = "0.1.27"; + "minipass-2.2.1" = { + name = "minipass"; + packageName = "minipass"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz"; - sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; + url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz"; + sha1 = "5ada97538b1027b4cf7213432428578cb564011f"; }; }; - "svgicons2svgfont-6.0.0" = { - name = "svgicons2svgfont"; - packageName = "svgicons2svgfont"; - version = "6.0.0"; + "minizlib-1.1.0" = { + name = "minizlib"; + packageName = "minizlib"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/svgicons2svgfont/-/svgicons2svgfont-6.0.0.tgz"; - sha1 = "7a60e7a34de8807edac91ca85f31abc0094884f8"; + url = "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz"; + sha1 = "11e13658ce46bc3a70a267aac58359d1e0c29ceb"; }; }; - "debug-2.6.1" = { - name = "debug"; - packageName = "debug"; - version = "2.6.1"; + "yallist-3.0.2" = { + name = "yallist"; + packageName = "yallist"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.1.tgz"; - sha1 = "79855090ba2c4e3115cc7d8769491d58f0491351"; + url = "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz"; + sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"; }; }; - "neatequal-1.0.0" = { - name = "neatequal"; - packageName = "neatequal"; - version = "1.0.0"; + "image-size-0.3.5" = { + name = "image-size"; + packageName = "image-size"; + version = "0.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/neatequal/-/neatequal-1.0.0.tgz"; - sha1 = "2ee1211bc9fa6e4c55715fd210bb05602eb1ae3b"; + url = "https://registry.npmjs.org/image-size/-/image-size-0.3.5.tgz"; + sha1 = "83240eab2fb5b00b04aab8c74b0471e9cba7ad8c"; }; }; - "string.fromcodepoint-0.2.1" = { - name = "string.fromcodepoint"; - packageName = "string.fromcodepoint"; - version = "0.2.1"; + "array-includes-2.0.0" = { + name = "array-includes"; + packageName = "array-includes"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz"; - sha1 = "8d978333c0bc92538f50f383e4888f3e5619d653"; + url = "https://registry.npmjs.org/array-includes/-/array-includes-2.0.0.tgz"; + sha1 = "4a95c73514066dc81213d7da45a4d712ccdc2ba6"; }; }; - "svg-pathdata-3.1.0" = { - name = "svg-pathdata"; - packageName = "svg-pathdata"; - version = "3.1.0"; + "http-https-1.0.0" = { + name = "http-https"; + packageName = "http-https"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-3.1.0.tgz"; - sha1 = "402a34e25cd995dc37850ae1ad7248c7023a5a1f"; + url = "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz"; + sha1 = "2f908dd5f1db4068c058cd6e6d4ce392c913389b"; }; }; - "ms-0.7.2" = { - name = "ms"; - packageName = "ms"; - version = "0.7.2"; + "lodash.trim-4.5.1" = { + name = "lodash.trim"; + packageName = "lodash.trim"; + version = "4.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz"; - sha1 = "ae25cf2512b3885a1d95d7f037868d8431124765"; + url = "https://registry.npmjs.org/lodash.trim/-/lodash.trim-4.5.1.tgz"; + sha1 = "36425e7ee90be4aa5e27bcebb85b7d11ea47aa57"; }; }; - "varstream-0.3.2" = { - name = "varstream"; - packageName = "varstream"; - version = "0.3.2"; + "resolve-relative-url-1.0.0" = { + name = "resolve-relative-url"; + packageName = "resolve-relative-url"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/varstream/-/varstream-0.3.2.tgz"; - sha1 = "18ac6494765f3ff1a35ad9a4be053bec188a5de1"; + url = "https://registry.npmjs.org/resolve-relative-url/-/resolve-relative-url-1.0.0.tgz"; + sha1 = "d896e9555e0aee9d2e0180f406014bde3c9157c9"; }; }; - "ttf2eot-2.0.0" = { - name = "ttf2eot"; - packageName = "ttf2eot"; - version = "2.0.0"; + "postcss-inherit-parser-0.1.4" = { + name = "postcss-inherit-parser"; + packageName = "postcss-inherit-parser"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/ttf2eot/-/ttf2eot-2.0.0.tgz"; - sha1 = "8e6337a585abd1608a0c84958ab483ce69f6654b"; + url = "https://registry.npmjs.org/postcss-inherit-parser/-/postcss-inherit-parser-0.1.4.tgz"; + sha1 = "fd8685e1042609b75691ecd75678ca29217c6e11"; }; }; - "ttf2woff-2.0.1" = { - name = "ttf2woff"; - packageName = "ttf2woff"; - version = "2.0.1"; + "babel-cli-6.26.0" = { + name = "babel-cli"; + packageName = "babel-cli"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/ttf2woff/-/ttf2woff-2.0.1.tgz"; - sha1 = "871832240024b09db9570904c7c1928b8057c969"; + url = "https://registry.npmjs.org/babel-cli/-/babel-cli-6.26.0.tgz"; + sha1 = "502ab54874d7db88ad00b887a06383ce03d002f1"; }; }; - "pako-1.0.5" = { - name = "pako"; - packageName = "pako"; - version = "1.0.5"; + "babel-plugin-add-module-exports-0.2.1" = { + name = "babel-plugin-add-module-exports"; + packageName = "babel-plugin-add-module-exports"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/pako/-/pako-1.0.5.tgz"; - sha1 = "d2205dfe5b9da8af797e7c163db4d1f84e4600bc"; + url = "https://registry.npmjs.org/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz"; + sha1 = "9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25"; }; }; - "ttf2woff2-2.0.3" = { - name = "ttf2woff2"; - packageName = "ttf2woff2"; + "babel-plugin-istanbul-2.0.3" = { + name = "babel-plugin-istanbul"; + packageName = "babel-plugin-istanbul"; version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/ttf2woff2/-/ttf2woff2-2.0.3.tgz"; - sha1 = "5e020afe6e643287f3ad7687abed20fe654eb329"; + url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-2.0.3.tgz"; + sha1 = "266b304b9109607d60748474394676982f660df4"; }; }; - "bindings-1.2.1" = { - name = "bindings"; - packageName = "bindings"; - version = "1.2.1"; + "babel-plugin-precompile-charcodes-1.1.0" = { + name = "babel-plugin-precompile-charcodes"; + packageName = "babel-plugin-precompile-charcodes"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; - sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11"; + url = "https://registry.npmjs.org/babel-plugin-precompile-charcodes/-/babel-plugin-precompile-charcodes-1.1.0.tgz"; + sha1 = "8ac6bacb196c001146296467700df3e8e6079714"; }; }; - "node-gyp-3.6.2" = { - name = "node-gyp"; - packageName = "node-gyp"; - version = "3.6.2"; + "babel-preset-es2015-6.24.1" = { + name = "babel-preset-es2015"; + packageName = "babel-preset-es2015"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz"; - sha1 = "9bfbe54562286284838e750eac05295853fa1c60"; + url = "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz"; + sha1 = "d44050d6bc2c9feea702aaf38d727a0210538939"; }; }; - "icss-replace-symbols-1.1.0" = { - name = "icss-replace-symbols"; - packageName = "icss-replace-symbols"; + "fs-readdir-recursive-1.1.0" = { + name = "fs-readdir-recursive"; + packageName = "fs-readdir-recursive"; version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz"; - sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded"; + url = "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz"; + sha1 = "e32fc030a2ccee44a6b5371308da54be0b397d27"; }; }; - "icss-utils-2.1.0" = { - name = "icss-utils"; - packageName = "icss-utils"; - version = "2.1.0"; + "output-file-sync-1.1.2" = { + name = "output-file-sync"; + packageName = "output-file-sync"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz"; - sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962"; + url = "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz"; + sha1 = "d0a33eefe61a205facb90092e826598d5245ce76"; }; }; - "lodash.foreach-3.0.3" = { - name = "lodash.foreach"; - packageName = "lodash.foreach"; - version = "3.0.3"; + "istanbul-lib-instrument-1.9.1" = { + name = "istanbul-lib-instrument"; + packageName = "istanbul-lib-instrument"; + version = "1.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-3.0.3.tgz"; - sha1 = "6fd7efb79691aecd67fdeac2761c98e701d6c39a"; + url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz"; + sha1 = "250b30b3531e5d3251299fdd64b0b2c9db6b558e"; }; }; - "lodash._baseeach-3.0.4" = { - name = "lodash._baseeach"; - packageName = "lodash._baseeach"; - version = "3.0.4"; + "test-exclude-2.1.3" = { + name = "test-exclude"; + packageName = "test-exclude"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._baseeach/-/lodash._baseeach-3.0.4.tgz"; - sha1 = "cf8706572ca144e8d9d75227c990da982f932af3"; + url = "https://registry.npmjs.org/test-exclude/-/test-exclude-2.1.3.tgz"; + sha1 = "a8d8968e1da83266f9864f2852c55e220f06434a"; }; }; - "asset-resolver-0.3.3" = { - name = "asset-resolver"; - packageName = "asset-resolver"; - version = "0.3.3"; + "istanbul-lib-coverage-1.1.1" = { + name = "istanbul-lib-coverage"; + packageName = "istanbul-lib-coverage"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/asset-resolver/-/asset-resolver-0.3.3.tgz"; - sha1 = "195258fdc03a01739d6472141d3e8e00b564e8db"; + url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz"; + sha1 = "73bfb998885299415c93d38a3e9adf784a77a9da"; }; }; - "bluebird-3.4.7" = { - name = "bluebird"; - packageName = "bluebird"; - version = "3.4.7"; + "require-main-filename-1.0.1" = { + name = "require-main-filename"; + packageName = "require-main-filename"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz"; - sha1 = "f72d760be09b7f76d08ed8fae98b289a8d05fab3"; + url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"; + sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; }; }; - "filesize-3.5.5" = { - name = "filesize"; - packageName = "filesize"; - version = "3.5.5"; + "babel-plugin-transform-es2015-arrow-functions-6.22.0" = { + name = "babel-plugin-transform-es2015-arrow-functions"; + packageName = "babel-plugin-transform-es2015-arrow-functions"; + version = "6.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/filesize/-/filesize-3.5.5.tgz"; - sha1 = "3c2a5c14463919a218434721472b63cc30748992"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz"; + sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221"; }; }; - "lodash.defaults-4.2.0" = { - name = "lodash.defaults"; - packageName = "lodash.defaults"; - version = "4.2.0"; + "babel-plugin-transform-es2015-block-scoped-functions-6.22.0" = { + name = "babel-plugin-transform-es2015-block-scoped-functions"; + packageName = "babel-plugin-transform-es2015-block-scoped-functions"; + version = "6.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz"; - sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz"; + sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141"; }; }; - "lodash.escaperegexp-4.1.2" = { - name = "lodash.escaperegexp"; - packageName = "lodash.escaperegexp"; - version = "4.1.2"; + "babel-plugin-transform-es2015-block-scoping-6.26.0" = { + name = "babel-plugin-transform-es2015-block-scoping"; + packageName = "babel-plugin-transform-es2015-block-scoping"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz"; - sha1 = "64762c48618082518ac3df4ccf5d5886dae20347"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz"; + sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f"; }; }; - "lodash.last-3.0.0" = { - name = "lodash.last"; - packageName = "lodash.last"; - version = "3.0.0"; + "babel-plugin-transform-es2015-classes-6.24.1" = { + name = "babel-plugin-transform-es2015-classes"; + packageName = "babel-plugin-transform-es2015-classes"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.last/-/lodash.last-3.0.0.tgz"; - sha1 = "242f663112dd4c6e63728c60a3c909d1bdadbd4c"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz"; + sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"; }; }; - "lodash.map-4.6.0" = { - name = "lodash.map"; - packageName = "lodash.map"; - version = "4.6.0"; + "babel-plugin-transform-es2015-computed-properties-6.24.1" = { + name = "babel-plugin-transform-es2015-computed-properties"; + packageName = "babel-plugin-transform-es2015-computed-properties"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz"; - sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz"; + sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3"; }; }; - "lodash.partialright-4.2.1" = { - name = "lodash.partialright"; - packageName = "lodash.partialright"; - version = "4.2.1"; + "babel-plugin-transform-es2015-duplicate-keys-6.24.1" = { + name = "babel-plugin-transform-es2015-duplicate-keys"; + packageName = "babel-plugin-transform-es2015-duplicate-keys"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.partialright/-/lodash.partialright-4.2.1.tgz"; - sha1 = "0130d80e83363264d40074f329b8a3e7a8a1cc4b"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz"; + sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e"; }; }; - "lodash.reduce-4.6.0" = { - name = "lodash.reduce"; - packageName = "lodash.reduce"; - version = "4.6.0"; + "babel-plugin-transform-es2015-for-of-6.23.0" = { + name = "babel-plugin-transform-es2015-for-of"; + packageName = "babel-plugin-transform-es2015-for-of"; + version = "6.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz"; - sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz"; + sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691"; }; }; - "lodash.reject-4.6.0" = { - name = "lodash.reject"; - packageName = "lodash.reject"; - version = "4.6.0"; + "babel-plugin-transform-es2015-literals-6.22.0" = { + name = "babel-plugin-transform-es2015-literals"; + packageName = "babel-plugin-transform-es2015-literals"; + version = "6.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz"; - sha1 = "80d6492dc1470864bbf583533b651f42a9f52415"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz"; + sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e"; }; }; - "lodash.result-4.5.2" = { - name = "lodash.result"; - packageName = "lodash.result"; - version = "4.5.2"; + "babel-plugin-transform-es2015-modules-amd-6.24.1" = { + name = "babel-plugin-transform-es2015-modules-amd"; + packageName = "babel-plugin-transform-es2015-modules-amd"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.result/-/lodash.result-4.5.2.tgz"; - sha1 = "cb45b27fb914eaa8d8ee6f0ce7b2870b87cb70aa"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz"; + sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154"; }; }; - "mime-1.3.4" = { - name = "mime"; - packageName = "mime"; - version = "1.3.4"; + "babel-plugin-transform-es2015-modules-umd-6.24.1" = { + name = "babel-plugin-transform-es2015-modules-umd"; + packageName = "babel-plugin-transform-es2015-modules-umd"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz"; - sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz"; + sha1 = "ac997e6285cd18ed6176adb607d602344ad38468"; }; }; - "object-hash-1.1.5" = { - name = "object-hash"; - packageName = "object-hash"; - version = "1.1.5"; + "babel-plugin-transform-es2015-object-super-6.24.1" = { + name = "babel-plugin-transform-es2015-object-super"; + packageName = "babel-plugin-transform-es2015-object-super"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/object-hash/-/object-hash-1.1.5.tgz"; - sha1 = "bdd844e030d0861b692ca175c6cab6868ec233d7"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz"; + sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d"; }; }; - "postcss-5.2.15" = { - name = "postcss"; - packageName = "postcss"; - version = "5.2.15"; + "babel-plugin-transform-es2015-shorthand-properties-6.24.1" = { + name = "babel-plugin-transform-es2015-shorthand-properties"; + packageName = "babel-plugin-transform-es2015-shorthand-properties"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-5.2.15.tgz"; - sha1 = "a9e8685e50e06cc5b3fdea5297273246c26f5b30"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz"; + sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0"; }; }; - "request-2.79.0" = { - name = "request"; - packageName = "request"; - version = "2.79.0"; + "babel-plugin-transform-es2015-template-literals-6.22.0" = { + name = "babel-plugin-transform-es2015-template-literals"; + packageName = "babel-plugin-transform-es2015-template-literals"; + version = "6.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz"; - sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz"; + sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"; }; }; - "then-fs-2.0.0" = { - name = "then-fs"; - packageName = "then-fs"; - version = "2.0.0"; + "babel-plugin-transform-es2015-typeof-symbol-6.23.0" = { + name = "babel-plugin-transform-es2015-typeof-symbol"; + packageName = "babel-plugin-transform-es2015-typeof-symbol"; + version = "6.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz"; - sha1 = "72f792dd9d31705a91ae19ebfcf8b3f968c81da2"; + url = "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz"; + sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372"; }; }; - "hash-0.2.0" = { - name = "hash"; - packageName = "hash"; - version = "0.2.0"; + "babel-plugin-transform-regenerator-6.26.0" = { + name = "babel-plugin-transform-regenerator"; + packageName = "babel-plugin-transform-regenerator"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/hash/-/hash-0.2.0.tgz"; - sha1 = "978654fa723b1252eea844e560c3931dad27289b"; + url = "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz"; + sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"; }; }; - "object-0.1.1" = { - name = "object"; - packageName = "object"; - version = "0.1.1"; + "babel-helper-optimise-call-expression-6.24.1" = { + name = "babel-helper-optimise-call-expression"; + packageName = "babel-helper-optimise-call-expression"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/object/-/object-0.1.1.tgz"; - sha1 = "1e02cede8ae1f358aaa872ad754bf640d77a22c2"; + url = "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz"; + sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257"; }; }; - "caseless-0.11.0" = { - name = "caseless"; - packageName = "caseless"; - version = "0.11.0"; + "babel-helper-replace-supers-6.24.1" = { + name = "babel-helper-replace-supers"; + packageName = "babel-helper-replace-supers"; + version = "6.24.1"; src = fetchurl { - url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"; - sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7"; + url = "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz"; + sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"; }; }; - "har-validator-2.0.6" = { - name = "har-validator"; - packageName = "har-validator"; - version = "2.0.6"; + "babel-helper-define-map-6.26.0" = { + name = "babel-helper-define-map"; + packageName = "babel-helper-define-map"; + version = "6.26.0"; src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"; - sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"; + url = "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz"; + sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f"; }; }; - "qs-6.3.2" = { - name = "qs"; - packageName = "qs"; - version = "6.3.2"; + "regenerator-transform-0.10.1" = { + name = "regenerator-transform"; + packageName = "regenerator-transform"; + version = "0.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz"; - sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c"; + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz"; + sha1 = "1e4996837231da8b7f3cf4114d71b5691a0680dd"; }; }; - "is-my-json-valid-2.16.0" = { - name = "is-my-json-valid"; - packageName = "is-my-json-valid"; - version = "2.16.0"; + "file-type-3.8.0" = { + name = "file-type"; + packageName = "file-type"; + version = "3.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz"; - sha1 = "f079dd9bfdae65ee2038aae8acbc86ab109e3693"; + url = "https://registry.npmjs.org/file-type/-/file-type-3.8.0.tgz"; + sha1 = "bcadf6a8f624ebe4a10e5ad26727b6b93f16d78d"; }; }; - "generate-function-2.0.0" = { - name = "generate-function"; - packageName = "generate-function"; - version = "2.0.0"; + "got-6.3.0" = { + name = "got"; + packageName = "got"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz"; - sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74"; + url = "https://registry.npmjs.org/got/-/got-6.3.0.tgz"; + sha1 = "4699e801063f58052b6d66208dc9670c67c18883"; }; }; - "generate-object-property-1.2.0" = { - name = "generate-object-property"; - packageName = "generate-object-property"; - version = "1.2.0"; + "is-svg-2.0.1" = { + name = "is-svg"; + packageName = "is-svg"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; - sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; + url = "https://registry.npmjs.org/is-svg/-/is-svg-2.0.1.tgz"; + sha1 = "f93ab3bf1d6bbca30e9753cd3485b1300eebc013"; }; }; - "jsonpointer-4.0.1" = { - name = "jsonpointer"; - packageName = "jsonpointer"; - version = "4.0.1"; + "lagden-promisify-3.0.0" = { + name = "lagden-promisify"; + packageName = "lagden-promisify"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz"; - sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; + url = "https://registry.npmjs.org/lagden-promisify/-/lagden-promisify-3.0.0.tgz"; + sha1 = "e2db8b79c69caaf6ce5b213c73552524b5303155"; }; }; - "is-property-1.0.2" = { - name = "is-property"; - packageName = "is-property"; - version = "1.0.2"; + "postcss-5.1.2" = { + name = "postcss"; + packageName = "postcss"; + version = "5.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; - sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; + url = "https://registry.npmjs.org/postcss/-/postcss-5.1.2.tgz"; + sha1 = "bd84886a66bcad489afaf7c673eed5ef639551e2"; }; }; - "sharp-0.18.2" = { - name = "sharp"; - packageName = "sharp"; - version = "0.18.2"; + "get-stream-1.1.0" = { + name = "get-stream"; + packageName = "get-stream"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/sharp/-/sharp-0.18.2.tgz"; - sha1 = "1be0debb6190ba405efa5ee330985bfe423c3e7f"; + url = "https://registry.npmjs.org/get-stream/-/get-stream-1.1.0.tgz"; + sha1 = "554659093606c1b5284218be65f68385c9f0c18b"; }; }; - "caw-2.0.0" = { - name = "caw"; - packageName = "caw"; - version = "2.0.0"; + "node-status-codes-2.0.1" = { + name = "node-status-codes"; + packageName = "node-status-codes"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/caw/-/caw-2.0.0.tgz"; - sha1 = "11f8bddc2f801469952d5e3225ba98495a2fa0ff"; + url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-2.0.1.tgz"; + sha1 = "298067659cb68a2b4670abbefde02a3819981f5b"; }; }; - "color-2.0.0" = { - name = "color"; - packageName = "color"; + "timed-out-2.0.0" = { + name = "timed-out"; + packageName = "timed-out"; version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/color/-/color-2.0.0.tgz"; - sha1 = "e0c9972d1e969857004b101eaa55ceab5961d67d"; - }; - }; - "got-7.1.0" = { - name = "got"; - packageName = "got"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-7.1.0.tgz"; - sha1 = "05450fd84094e6bbea56f451a43a9c289166385a"; - }; - }; - "tar-3.1.5" = { - name = "tar"; - packageName = "tar"; - version = "3.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/tar/-/tar-3.1.5.tgz"; - sha1 = "4981e97ab7bad4cb1d5da9232047c9047a681aef"; - }; - }; - "decompress-response-3.3.0" = { - name = "decompress-response"; - packageName = "decompress-response"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz"; - sha1 = "80a4dd323748384bfa248083622aedec982adff3"; - }; - }; - "isurl-1.0.0" = { - name = "isurl"; - packageName = "isurl"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz"; - sha1 = "b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67"; - }; - }; - "p-cancelable-0.3.0" = { - name = "p-cancelable"; - packageName = "p-cancelable"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz"; - sha1 = "b9e123800bcebb7ac13a479be195b507b98d30fa"; - }; - }; - "p-timeout-1.2.0" = { - name = "p-timeout"; - packageName = "p-timeout"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.0.tgz"; - sha1 = "9820f99434c5817868b4f34809ee5291660d5b6c"; - }; - }; - "url-to-options-1.0.1" = { - name = "url-to-options"; - packageName = "url-to-options"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz"; - sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9"; - }; - }; - "mimic-response-1.0.0" = { - name = "mimic-response"; - packageName = "mimic-response"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz"; - sha1 = "df3d3652a73fded6b9b0b24146e6fd052353458e"; - }; - }; - "has-to-string-tag-x-1.4.0" = { - name = "has-to-string-tag-x"; - packageName = "has-to-string-tag-x"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.0.tgz"; - sha1 = "49d7bcde85c2409be38ac327e3e119a451657c7b"; - }; - }; - "is-object-1.0.1" = { - name = "is-object"; - packageName = "is-object"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz"; - sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470"; - }; - }; - "has-symbol-support-x-1.4.0" = { - name = "has-symbol-support-x"; - packageName = "has-symbol-support-x"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.0.tgz"; - sha1 = "442d89b1d0ac6cf5ff2f7b916ee539869b93a256"; - }; - }; - "minipass-2.2.1" = { - name = "minipass"; - packageName = "minipass"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz"; - sha1 = "5ada97538b1027b4cf7213432428578cb564011f"; - }; - }; - "minizlib-1.0.3" = { - name = "minizlib"; - packageName = "minizlib"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/minizlib/-/minizlib-1.0.3.tgz"; - sha1 = "d5c1abf77be154619952e253336eccab9b2a32f5"; - }; - }; - "yallist-3.0.2" = { - name = "yallist"; - packageName = "yallist"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz"; - sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"; - }; - }; - "image-size-0.3.5" = { - name = "image-size"; - packageName = "image-size"; - version = "0.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/image-size/-/image-size-0.3.5.tgz"; - sha1 = "83240eab2fb5b00b04aab8c74b0471e9cba7ad8c"; - }; - }; - "array-includes-2.0.0" = { - name = "array-includes"; - packageName = "array-includes"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/array-includes/-/array-includes-2.0.0.tgz"; - sha1 = "4a95c73514066dc81213d7da45a4d712ccdc2ba6"; - }; - }; - "define-properties-1.1.2" = { - name = "define-properties"; - packageName = "define-properties"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz"; - sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94"; - }; - }; - "es-abstract-1.7.0" = { - name = "es-abstract"; - packageName = "es-abstract"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.7.0.tgz"; - sha1 = "dfade774e01bfcd97f96180298c449c8623fb94c"; - }; - }; - "is-callable-1.1.3" = { - name = "is-callable"; - packageName = "is-callable"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz"; - sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2"; - }; - }; - "es-to-primitive-1.1.1" = { - name = "es-to-primitive"; - packageName = "es-to-primitive"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz"; - sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d"; - }; - }; - "is-regex-1.0.4" = { - name = "is-regex"; - packageName = "is-regex"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz"; - sha1 = "5517489b547091b0930e095654ced25ee97e9491"; - }; - }; - "is-date-object-1.0.1" = { - name = "is-date-object"; - packageName = "is-date-object"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz"; - sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; - }; - }; - "is-symbol-1.0.1" = { - name = "is-symbol"; - packageName = "is-symbol"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz"; - sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572"; - }; - }; - "http-https-1.0.0" = { - name = "http-https"; - packageName = "http-https"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz"; - sha1 = "2f908dd5f1db4068c058cd6e6d4ce392c913389b"; - }; - }; - "lodash.trim-4.5.1" = { - name = "lodash.trim"; - packageName = "lodash.trim"; - version = "4.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.trim/-/lodash.trim-4.5.1.tgz"; - sha1 = "36425e7ee90be4aa5e27bcebb85b7d11ea47aa57"; - }; - }; - "resolve-relative-url-1.0.0" = { - name = "resolve-relative-url"; - packageName = "resolve-relative-url"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-relative-url/-/resolve-relative-url-1.0.0.tgz"; - sha1 = "d896e9555e0aee9d2e0180f406014bde3c9157c9"; - }; - }; - "postcss-inherit-parser-0.1.4" = { - name = "postcss-inherit-parser"; - packageName = "postcss-inherit-parser"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-inherit-parser/-/postcss-inherit-parser-0.1.4.tgz"; - sha1 = "fd8685e1042609b75691ecd75678ca29217c6e11"; - }; - }; - "babel-cli-6.24.1" = { - name = "babel-cli"; - packageName = "babel-cli"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-cli/-/babel-cli-6.24.1.tgz"; - sha1 = "207cd705bba61489b2ea41b5312341cf6aca2283"; - }; - }; - "babel-plugin-add-module-exports-0.2.1" = { - name = "babel-plugin-add-module-exports"; - packageName = "babel-plugin-add-module-exports"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz"; - sha1 = "9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25"; - }; - }; - "babel-plugin-istanbul-2.0.3" = { - name = "babel-plugin-istanbul"; - packageName = "babel-plugin-istanbul"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-2.0.3.tgz"; - sha1 = "266b304b9109607d60748474394676982f660df4"; - }; - }; - "babel-plugin-precompile-charcodes-1.1.0" = { - name = "babel-plugin-precompile-charcodes"; - packageName = "babel-plugin-precompile-charcodes"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-precompile-charcodes/-/babel-plugin-precompile-charcodes-1.1.0.tgz"; - sha1 = "8ac6bacb196c001146296467700df3e8e6079714"; - }; - }; - "fs-readdir-recursive-1.0.0" = { - name = "fs-readdir-recursive"; - packageName = "fs-readdir-recursive"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz"; - sha1 = "8cd1745c8b4f8a29c8caec392476921ba195f560"; - }; - }; - "output-file-sync-1.1.2" = { - name = "output-file-sync"; - packageName = "output-file-sync"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz"; - sha1 = "d0a33eefe61a205facb90092e826598d5245ce76"; - }; - }; - "istanbul-lib-instrument-1.7.3" = { - name = "istanbul-lib-instrument"; - packageName = "istanbul-lib-instrument"; - version = "1.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.3.tgz"; - sha1 = "925b239163eabdd68cc4048f52c2fa4f899ecfa7"; - }; - }; - "test-exclude-2.1.3" = { - name = "test-exclude"; - packageName = "test-exclude"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/test-exclude/-/test-exclude-2.1.3.tgz"; - sha1 = "a8d8968e1da83266f9864f2852c55e220f06434a"; - }; - }; - "istanbul-lib-coverage-1.1.1" = { - name = "istanbul-lib-coverage"; - packageName = "istanbul-lib-coverage"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz"; - sha1 = "73bfb998885299415c93d38a3e9adf784a77a9da"; - }; - }; - "require-main-filename-1.0.1" = { - name = "require-main-filename"; - packageName = "require-main-filename"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"; - sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; - }; - }; - "file-type-3.8.0" = { - name = "file-type"; - packageName = "file-type"; - version = "3.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/file-type/-/file-type-3.8.0.tgz"; - sha1 = "bcadf6a8f624ebe4a10e5ad26727b6b93f16d78d"; - }; - }; - "got-6.3.0" = { - name = "got"; - packageName = "got"; - version = "6.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-6.3.0.tgz"; - sha1 = "4699e801063f58052b6d66208dc9670c67c18883"; - }; - }; - "is-svg-2.0.1" = { - name = "is-svg"; - packageName = "is-svg"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-svg/-/is-svg-2.0.1.tgz"; - sha1 = "f93ab3bf1d6bbca30e9753cd3485b1300eebc013"; - }; - }; - "lagden-promisify-3.0.0" = { - name = "lagden-promisify"; - packageName = "lagden-promisify"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lagden-promisify/-/lagden-promisify-3.0.0.tgz"; - sha1 = "e2db8b79c69caaf6ce5b213c73552524b5303155"; - }; - }; - "postcss-5.1.2" = { - name = "postcss"; - packageName = "postcss"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-5.1.2.tgz"; - sha1 = "bd84886a66bcad489afaf7c673eed5ef639551e2"; - }; - }; - "get-stream-1.1.0" = { - name = "get-stream"; - packageName = "get-stream"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/get-stream/-/get-stream-1.1.0.tgz"; - sha1 = "554659093606c1b5284218be65f68385c9f0c18b"; - }; - }; - "node-status-codes-2.0.1" = { - name = "node-status-codes"; - packageName = "node-status-codes"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-2.0.1.tgz"; - sha1 = "298067659cb68a2b4670abbefde02a3819981f5b"; - }; - }; - "timed-out-2.0.0" = { - name = "timed-out"; - packageName = "timed-out"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz"; - sha1 = "f38b0ae81d3747d628001f41dafc652ace671c0a"; + url = "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz"; + sha1 = "f38b0ae81d3747d628001f41dafc652ace671c0a"; }; }; "css-select-1.2.0" = { @@ -16368,42 +16449,6 @@ let sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858"; }; }; - "css-what-2.1.0" = { - name = "css-what"; - packageName = "css-what"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz"; - sha1 = "9467d032c38cfaefb9f2d79501253062f87fa1bd"; - }; - }; - "domutils-1.5.1" = { - name = "domutils"; - packageName = "domutils"; - version = "1.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz"; - sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; - }; - }; - "boolbase-1.0.0" = { - name = "boolbase"; - packageName = "boolbase"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; - sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; - }; - }; - "nth-check-1.0.1" = { - name = "nth-check"; - packageName = "nth-check"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz"; - sha1 = "9929acdf628fc2c41098deab82ac580cf149aae4"; - }; - }; "rev-hash-2.0.0" = { name = "rev-hash"; packageName = "rev-hash"; @@ -16422,13 +16467,13 @@ let sha1 = "3722227c54e2faf24b1dc6d933cc144e6f71bfef"; }; }; - "spritesmith-3.1.1" = { + "spritesmith-3.2.1" = { name = "spritesmith"; packageName = "spritesmith"; - version = "3.1.1"; + version = "3.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/spritesmith/-/spritesmith-3.1.1.tgz"; - sha1 = "4e5364eb9bfd987daf6c1b48a58d2be5b6a0f8d7"; + url = "https://registry.npmjs.org/spritesmith/-/spritesmith-3.2.1.tgz"; + sha1 = "af91ec794eaa557ff3b12d6b3c65faa598a04e29"; }; }; "ligang-px2rem-0.5.1" = { @@ -16485,13 +16530,13 @@ let sha1 = "fe3ac0e1e07282aef1de84a80b72386ff4e7ea37"; }; }; - "cosmiconfig-2.1.3" = { + "cosmiconfig-2.2.2" = { name = "cosmiconfig"; packageName = "cosmiconfig"; - version = "2.1.3"; + version = "2.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.1.3.tgz"; - sha1 = "952771eb0dddc1cb3fa2f6fbe51a522e93b3ee0a"; + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz"; + sha1 = "6173cebd56fac042c1f4390edf7af6c07c7cb892"; }; }; "is-directory-0.3.1" = { @@ -16557,13 +16602,13 @@ let sha1 = "e0671846b00acee2b3b46a4208a536150238491e"; }; }; - "string-replace-async-1.2.0" = { + "string-replace-async-1.2.1" = { name = "string-replace-async"; packageName = "string-replace-async"; - version = "1.2.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/string-replace-async/-/string-replace-async-1.2.0.tgz"; - sha1 = "0398d1d2d55a9c51c9b0f6a29d5a167e56c18cf1"; + url = "https://registry.npmjs.org/string-replace-async/-/string-replace-async-1.2.1.tgz"; + sha1 = "d52cdc7e338141bbeaea3471de31215028c9a3aa"; }; }; "mathjs-1.7.1" = { @@ -16593,13 +16638,13 @@ let sha1 = "64c83e0438a68c9edf449e8c552a7d9ab6009b0b"; }; }; - "sugarss-1.0.0" = { + "sugarss-1.0.1" = { name = "sugarss"; packageName = "sugarss"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/sugarss/-/sugarss-1.0.0.tgz"; - sha1 = "65e51b3958432fb70d5451a68bb33e32d0cf1ef7"; + url = "https://registry.npmjs.org/sugarss/-/sugarss-1.0.1.tgz"; + sha1 = "be826d9003e0f247735f92365dc3fd7f1bae9e44"; }; }; "modular-scale-4.4.1" = { @@ -16656,13 +16701,13 @@ let sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20"; }; }; - "enhanced-resolve-3.3.0" = { + "enhanced-resolve-3.4.1" = { name = "enhanced-resolve"; packageName = "enhanced-resolve"; - version = "3.3.0"; + version = "3.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.3.0.tgz"; - sha1 = "950964ecc7f0332a42321b673b38dc8ff15535b3"; + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz"; + sha1 = "0421e339fd71419b3da13d129b3979040230476e"; }; }; "es6-promisify-5.0.0" = { @@ -16683,40 +16728,40 @@ let sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552"; }; }; - "tapable-0.2.6" = { + "tapable-0.2.8" = { name = "tapable"; packageName = "tapable"; - version = "0.2.6"; + version = "0.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/tapable/-/tapable-0.2.6.tgz"; - sha1 = "206be8e188860b514425375e6f1ae89bfb01fd8d"; + url = "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz"; + sha1 = "99372a5c999bf2df160afc0d74bed4f47948cd22"; }; }; - "errno-0.1.4" = { + "errno-0.1.6" = { name = "errno"; packageName = "errno"; - version = "0.1.4"; + version = "0.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz"; - sha1 = "b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"; + url = "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz"; + sha1 = "c386ce8a6283f14fc09563b71560908c9bf53026"; }; }; - "prr-0.0.0" = { + "prr-1.0.1" = { name = "prr"; packageName = "prr"; - version = "0.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz"; - sha1 = "1a84b85908325501411853d0081ee3fa86e2926a"; + url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"; + sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476"; }; }; - "es6-promise-4.1.1" = { + "es6-promise-4.2.2" = { name = "es6-promise"; packageName = "es6-promise"; - version = "4.1.1"; + version = "4.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz"; - sha1 = "8811e90915d9a0dba36274f0b242dbda78f9c92a"; + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.2.tgz"; + sha1 = "f722d7769af88bd33bc13ec6605e1f92966b82d9"; }; }; "write-0.3.3" = { @@ -16728,6 +16773,42 @@ let sha1 = "09cdc5a2155607ee279f45e38d91ae29fb6a5178"; }; }; + "fs-exists-sync-0.1.0" = { + name = "fs-exists-sync"; + packageName = "fs-exists-sync"; + version = "0.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz"; + sha1 = "982d6893af918e72d08dec9e8673ff2b5a8d6add"; + }; + }; + "babel-polyfill-6.7.4" = { + name = "babel-polyfill"; + packageName = "babel-polyfill"; + version = "6.7.4"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.7.4.tgz"; + sha1 = "757ea852e32952b9bfe0db96f464fcee642796a8"; + }; + }; + "babel-regenerator-runtime-6.5.0" = { + name = "babel-regenerator-runtime"; + packageName = "babel-regenerator-runtime"; + version = "6.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-regenerator-runtime/-/babel-regenerator-runtime-6.5.0.tgz"; + sha1 = "0e41cd1c9f80442466f015c749fff8ba98f8e110"; + }; + }; + "babel-runtime-5.8.38" = { + name = "babel-runtime"; + packageName = "babel-runtime"; + version = "5.8.38"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-5.8.38.tgz"; + sha1 = "1c0b02eb63312f5f087ff20450827b425c9d4c19"; + }; + }; "postcss-resolve-nested-selector-0.1.1" = { name = "postcss-resolve-nested-selector"; packageName = "postcss-resolve-nested-selector"; @@ -16755,13 +16836,13 @@ let sha1 = "9ba6dd8ac3ce1f3d7d36d4355aa3e28d08391f28"; }; }; - "cssnano-util-get-arguments-4.0.0-rc.0" = { + "cssnano-util-get-arguments-4.0.0-rc.2" = { name = "cssnano-util-get-arguments"; packageName = "cssnano-util-get-arguments"; - version = "4.0.0-rc.0"; + version = "4.0.0-rc.2"; src = fetchurl { - url = "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0-rc.0.tgz"; - sha1 = "1c6b94d73d95d2079d9e22ac6d7a8223cf189b1e"; + url = "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0-rc.2.tgz"; + sha1 = "39d5cf9caee9e9027066c37954655c14419c06d4"; }; }; "normalize.css-5.0.0" = { @@ -16791,67 +16872,67 @@ let sha1 = "2094af8421e19152150d5893eb6416b312d9a22f"; }; }; - "postcss-import-10.0.0" = { - name = "postcss-import"; - packageName = "postcss-import"; - version = "10.0.0"; + "extend-2.0.1" = { + name = "extend"; + packageName = "extend"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-import/-/postcss-import-10.0.0.tgz"; - sha1 = "4c85c97b099136cc5ea0240dc1dfdbfde4e2ebbe"; + url = "https://registry.npmjs.org/extend/-/extend-2.0.1.tgz"; + sha1 = "1ee8010689e7395ff9448241c98652bc759a8260"; }; }; - "inquirer-1.2.3" = { + "inquirer-3.3.0" = { name = "inquirer"; packageName = "inquirer"; - version = "1.2.3"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-1.2.3.tgz"; - sha1 = "4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918"; + url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz"; + sha1 = "9dd2f2ad765dcab1ff0443b491442a20ba227dc9"; }; }; - "octonode-0.7.13" = { + "octonode-0.9.1" = { name = "octonode"; packageName = "octonode"; - version = "0.7.13"; + version = "0.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/octonode/-/octonode-0.7.13.tgz"; - sha1 = "d66cb26b9efefc4089e0df8830a6efab73976cad"; + url = "https://registry.npmjs.org/octonode/-/octonode-0.9.1.tgz"; + sha1 = "a8ac6e767a5db0256b9f064527134f3f4e92e635"; }; }; - "ansi-escapes-1.4.0" = { + "ansi-escapes-3.0.0" = { name = "ansi-escapes"; packageName = "ansi-escapes"; - version = "1.4.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"; - sha1 = "d3a8a83b319aa67793662b13e761c7911422306e"; + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz"; + sha1 = "ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"; }; }; - "cli-width-2.1.0" = { + "cli-width-2.2.0" = { name = "cli-width"; packageName = "cli-width"; - version = "2.1.0"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz"; - sha1 = "b234ca209b29ef66fc518d9b98d5847b00edf00a"; + url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz"; + sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; }; }; - "external-editor-1.1.1" = { + "external-editor-2.1.0" = { name = "external-editor"; packageName = "external-editor"; - version = "1.1.1"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/external-editor/-/external-editor-1.1.1.tgz"; - sha1 = "12d7b0db850f7ff7e7081baf4005700060c4600b"; + url = "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz"; + sha1 = "3d026a21b7f95b5726387d4200ac160d372c3b48"; }; }; - "mute-stream-0.0.6" = { + "mute-stream-0.0.7" = { name = "mute-stream"; packageName = "mute-stream"; - version = "0.0.6"; + version = "0.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz"; - sha1 = "48962b19e169fd1dfc240b3f1e7317627bbc47db"; + url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz"; + sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; }; }; "run-async-2.3.0" = { @@ -16863,40 +16944,40 @@ let sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"; }; }; - "rx-4.1.0" = { - name = "rx"; - packageName = "rx"; - version = "4.1.0"; + "rx-lite-4.0.8" = { + name = "rx-lite"; + packageName = "rx-lite"; + version = "4.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz"; - sha1 = "a5f13ff79ef3b740fe30aa803fb09f98805d4782"; + url = "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz"; + sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444"; }; }; - "spawn-sync-1.0.15" = { - name = "spawn-sync"; - packageName = "spawn-sync"; - version = "1.0.15"; + "rx-lite-aggregates-4.0.8" = { + name = "rx-lite-aggregates"; + packageName = "rx-lite-aggregates"; + version = "4.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz"; - sha1 = "b00799557eb7fb0c8376c29d44e8a1ea67e57476"; + url = "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz"; + sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be"; }; }; - "tmp-0.0.29" = { - name = "tmp"; - packageName = "tmp"; - version = "0.0.29"; + "chardet-0.4.2" = { + name = "chardet"; + packageName = "chardet"; + version = "0.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz"; - sha1 = "f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0"; + url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz"; + sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"; }; }; - "os-shim-0.1.3" = { - name = "os-shim"; - packageName = "os-shim"; - version = "0.1.3"; + "tmp-0.0.33" = { + name = "tmp"; + packageName = "tmp"; + version = "0.0.33"; src = fetchurl { - url = "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz"; - sha1 = "6b62c3791cf7909ea35ed46e17658bb417cb3917"; + url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"; + sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; }; }; "randomstring-1.1.5" = { @@ -16944,13 +17025,13 @@ let sha1 = "9bcd9234d0f16cd57508f2b488ed533f3684317e"; }; }; - "tcomb-3.2.21" = { + "tcomb-3.2.24" = { name = "tcomb"; packageName = "tcomb"; - version = "3.2.21"; + version = "3.2.24"; src = fetchurl { - url = "https://registry.npmjs.org/tcomb/-/tcomb-3.2.21.tgz"; - sha1 = "36c79fe234918d5e2807963137e476166970ff66"; + url = "https://registry.npmjs.org/tcomb/-/tcomb-3.2.24.tgz"; + sha1 = "7f427053cc393b5997c4c3d859ca20411180887b"; }; }; "px2rem-0.5.0" = { @@ -16971,15 +17052,6 @@ let sha1 = "868b9e0e4829228621bed56492c17a73696b0fa9"; }; }; - "bson-1.0.4" = { - name = "bson"; - packageName = "bson"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/bson/-/bson-1.0.4.tgz"; - sha1 = "93c10d39eaa5b58415cbc4052f3e53e562b0b72c"; - }; - }; "randomcolor-0.4.4" = { name = "randomcolor"; packageName = "randomcolor"; @@ -17097,13 +17169,13 @@ let sha1 = "7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0"; }; }; - "flow-parser-0.50.0" = { + "flow-parser-0.62.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.50.0"; + version = "0.62.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.50.0.tgz"; - sha1 = "ccc8bf80490974c631988b49e30856956b4c9e88"; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.62.0.tgz"; + sha1 = "e58d3002281570401cb50ee5cf392a522502001f"; }; }; "node-dir-0.1.8" = { @@ -17124,13 +17196,13 @@ let sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; }; }; - "recast-0.12.6" = { + "recast-0.12.9" = { name = "recast"; packageName = "recast"; - version = "0.12.6"; + version = "0.12.9"; src = fetchurl { - url = "https://registry.npmjs.org/recast/-/recast-0.12.6.tgz"; - sha1 = "4b0fb82feb1d10b3bd62d34943426d9b3ed30d4c"; + url = "https://registry.npmjs.org/recast/-/recast-0.12.9.tgz"; + sha1 = "e8e52bdb9691af462ccbd7c15d5a5113647a15f1"; }; }; "temp-0.8.3" = { @@ -17439,40 +17511,13 @@ let sha1 = "942808f7aa016f1fa7142c461d7e5704aaa8d697"; }; }; - "detective-4.5.0" = { + "detective-4.7.1" = { name = "detective"; packageName = "detective"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/detective/-/detective-4.5.0.tgz"; - sha1 = "6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1"; - }; - }; - "acorn-4.0.13" = { - name = "acorn"; - packageName = "acorn"; - version = "4.0.13"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"; - sha1 = "105495ae5361d697bd195c825192e1ad7f253787"; - }; - }; - "ast-types-0.9.6" = { - name = "ast-types"; - packageName = "ast-types"; - version = "0.9.6"; - src = fetchurl { - url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz"; - sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9"; - }; - }; - "esprima-3.1.3" = { - name = "esprima"; - packageName = "esprima"; - version = "3.1.3"; + version = "4.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz"; - sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633"; + url = "https://registry.npmjs.org/detective/-/detective-4.7.1.tgz"; + sha1 = "0eca7314338442febb6d65da54c10bb1c82b246e"; }; }; "alter-0.2.0" = { @@ -17556,15 +17601,6 @@ let sha1 = "21205469316e939131d59f2da0c6d7f98221ea40"; }; }; - "stable-0.1.6" = { - name = "stable"; - packageName = "stable"; - version = "0.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/stable/-/stable-0.1.6.tgz"; - sha1 = "910f5d2aed7b520c6e777499c1f32e139fdecb10"; - }; - }; "ast-types-0.8.12" = { name = "ast-types"; packageName = "ast-types"; @@ -17619,6 +17655,15 @@ let sha1 = "53738b47e75e8218589eea946cbbd39109bbe653"; }; }; + "babel-preset-stage-2-6.24.1" = { + name = "babel-preset-stage-2"; + packageName = "babel-preset-stage-2"; + version = "6.24.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz"; + sha1 = "d9e2960fb3d71187f0e64eec62bc07767219bdc1"; + }; + }; "babel-plugin-syntax-class-constructor-call-6.18.0" = { name = "babel-plugin-syntax-class-constructor-call"; packageName = "babel-plugin-syntax-class-constructor-call"; @@ -17637,6 +17682,105 @@ let sha1 = "70a1484f0f9089a4e84ad44bac353c95b9b12721"; }; }; + "babel-plugin-transform-class-properties-6.24.1" = { + name = "babel-plugin-transform-class-properties"; + packageName = "babel-plugin-transform-class-properties"; + version = "6.24.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz"; + sha1 = "6a79763ea61d33d36f37b611aa9def81a81b46ac"; + }; + }; + "babel-plugin-transform-decorators-6.24.1" = { + name = "babel-plugin-transform-decorators"; + packageName = "babel-plugin-transform-decorators"; + version = "6.24.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz"; + sha1 = "788013d8f8c6b5222bdf7b344390dfd77569e24d"; + }; + }; + "babel-preset-stage-3-6.24.1" = { + name = "babel-preset-stage-3"; + packageName = "babel-preset-stage-3"; + version = "6.24.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz"; + sha1 = "836ada0a9e7a7fa37cb138fb9326f87934a48395"; + }; + }; + "babel-plugin-syntax-class-properties-6.13.0" = { + name = "babel-plugin-syntax-class-properties"; + packageName = "babel-plugin-syntax-class-properties"; + version = "6.13.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz"; + sha1 = "d7eb23b79a317f8543962c505b827c7d6cac27de"; + }; + }; + "babel-plugin-syntax-decorators-6.13.0" = { + name = "babel-plugin-syntax-decorators"; + packageName = "babel-plugin-syntax-decorators"; + version = "6.13.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz"; + sha1 = "312563b4dbde3cc806cee3e416cceeaddd11ac0b"; + }; + }; + "babel-helper-explode-class-6.24.1" = { + name = "babel-helper-explode-class"; + packageName = "babel-helper-explode-class"; + version = "6.24.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz"; + sha1 = "7dc2a3910dee007056e1e31d640ced3d54eaa9eb"; + }; + }; + "babel-helper-bindify-decorators-6.24.1" = { + name = "babel-helper-bindify-decorators"; + packageName = "babel-helper-bindify-decorators"; + version = "6.24.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz"; + sha1 = "14c19e5f142d7b47f19a52431e52b1ccbc40a330"; + }; + }; + "babel-plugin-transform-async-generator-functions-6.24.1" = { + name = "babel-plugin-transform-async-generator-functions"; + packageName = "babel-plugin-transform-async-generator-functions"; + version = "6.24.1"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz"; + sha1 = "f058900145fd3e9907a6ddf28da59f215258a5db"; + }; + }; + "babel-plugin-transform-object-rest-spread-6.26.0" = { + name = "babel-plugin-transform-object-rest-spread"; + packageName = "babel-plugin-transform-object-rest-spread"; + version = "6.26.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz"; + sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06"; + }; + }; + "babel-plugin-syntax-async-generators-6.13.0" = { + name = "babel-plugin-syntax-async-generators"; + packageName = "babel-plugin-syntax-async-generators"; + version = "6.13.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz"; + sha1 = "6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"; + }; + }; + "babel-plugin-syntax-object-rest-spread-6.13.0" = { + name = "babel-plugin-syntax-object-rest-spread"; + packageName = "babel-plugin-syntax-object-rest-spread"; + version = "6.13.0"; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; + sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; + }; + }; "underscore-1.6.0" = { name = "underscore"; packageName = "underscore"; @@ -17646,13 +17790,31 @@ let sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; }; }; - "ast-types-0.9.11" = { + "ast-types-0.10.1" = { + name = "ast-types"; + packageName = "ast-types"; + version = "0.10.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.10.1.tgz"; + sha1 = "f52fca9715579a14f841d67d7f8d25432ab6a3dd"; + }; + }; + "ast-types-0.9.6" = { name = "ast-types"; packageName = "ast-types"; - version = "0.9.11"; + version = "0.9.6"; + src = fetchurl { + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz"; + sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9"; + }; + }; + "esprima-3.1.3" = { + name = "esprima"; + packageName = "esprima"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.11.tgz"; - sha1 = "371177bb59232ff5ceaa1d09ee5cad705b1a5aa9"; + url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz"; + sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633"; }; }; "css-border-property-1.1.0" = { @@ -18069,13 +18231,13 @@ let sha1 = "40a050ec8dc3b53b33d9909415c02c0bf1abfbad"; }; }; - "timers-browserify-2.0.2" = { + "timers-browserify-2.0.4" = { name = "timers-browserify"; packageName = "timers-browserify"; - version = "2.0.2"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.2.tgz"; - sha1 = "ab4883cf597dcd50af211349a00fbca56ac86b86"; + url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.4.tgz"; + sha1 = "96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6"; }; }; "tty-browserify-0.0.0" = { @@ -18096,15 +18258,6 @@ let sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"; }; }; - "base64-js-1.2.1" = { - name = "base64-js"; - packageName = "base64-js"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz"; - sha1 = "a91947da1f4a516ea38e5b4ec0ec3773675e0886"; - }; - }; "ieee754-1.1.8" = { name = "ieee754"; packageName = "ieee754"; @@ -18195,15 +18348,6 @@ let sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; }; }; - "minimist-0.0.10" = { - name = "minimist"; - packageName = "minimist"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; - sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; - }; - }; "source-list-map-0.1.8" = { name = "source-list-map"; packageName = "source-list-map"; @@ -18249,13 +18393,13 @@ let sha1 = "e0f596242f2fa228a840086b6c8ad82e4b71fd2d"; }; }; - "gonzales-pe-4.0.3" = { + "gonzales-pe-4.2.3" = { name = "gonzales-pe"; packageName = "gonzales-pe"; - version = "4.0.3"; + version = "4.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.0.3.tgz"; - sha1 = "36148e18e267184fbfdc929af28f29ad9fbf9746"; + url = "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.2.3.tgz"; + sha1 = "41091703625433285e0aee3aa47829fc1fbeb6f2"; }; }; "minimist-1.1.3" = { @@ -18357,13 +18501,13 @@ let sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26"; }; }; - "abab-1.0.3" = { + "abab-1.0.4" = { name = "abab"; packageName = "abab"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/abab/-/abab-1.0.3.tgz"; - sha1 = "b81de5f7274ec4e756d797cd834f303642724e5d"; + url = "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz"; + sha1 = "5faad9c2c07f60dd76770f71cf025b62a63cfd4e"; }; }; "acorn-2.7.0" = { @@ -18384,22 +18528,22 @@ let sha1 = "55bb5e98691507b74579d0513413217c380c54cf"; }; }; - "escodegen-1.8.1" = { + "escodegen-1.9.0" = { name = "escodegen"; packageName = "escodegen"; - version = "1.8.1"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz"; - sha1 = "5a5b53af4693110bebb0867aa3430dd3b70a1018"; + url = "https://registry.npmjs.org/escodegen/-/escodegen-1.9.0.tgz"; + sha1 = "9811a2f265dc1cd3894420ee3717064b632b8852"; }; }; - "nwmatcher-1.4.1" = { + "nwmatcher-1.4.3" = { name = "nwmatcher"; packageName = "nwmatcher"; - version = "1.4.1"; + version = "1.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.1.tgz"; - sha1 = "7ae9b07b0ea804db7e25f05cb5fe4097d4e4949f"; + url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.3.tgz"; + sha1 = "64348e3b3d80f035b40ac11563d278f8b72db89c"; }; }; "parse5-1.5.1" = { @@ -18447,15 +18591,6 @@ let sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635"; }; }; - "estraverse-1.9.3" = { - name = "estraverse"; - packageName = "estraverse"; - version = "1.9.3"; - src = fetchurl { - url = "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz"; - sha1 = "af67f2dc922582415950926091a4005d29c9bb44"; - }; - }; "optionator-0.8.2" = { name = "optionator"; packageName = "optionator"; @@ -18465,15 +18600,6 @@ let sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; }; }; - "source-map-0.2.0" = { - name = "source-map"; - packageName = "source-map"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz"; - sha1 = "dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d"; - }; - }; "prelude-ls-1.1.2" = { name = "prelude-ls"; packageName = "prelude-ls"; @@ -18556,13 +18682,13 @@ let sha256 = "2b63b47044f02bd87b7d1f3dd419c5c7e43176078789a4d446c6d7798a1b6904"; }; }; - "expr-eval-1.0.1" = { + "expr-eval-1.2.1" = { name = "expr-eval"; packageName = "expr-eval"; - version = "1.0.1"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/expr-eval/-/expr-eval-1.0.1.tgz"; - sha1 = "ba6b4296617dc3535046cf82f5d01fb3e474b163"; + url = "https://registry.npmjs.org/expr-eval/-/expr-eval-1.2.1.tgz"; + sha1 = "1425caf4d7ccb7439ce72d0488b20c3f6e4ea25a"; }; }; "postcss-flexbugs-fixes-2.1.1" = { @@ -18574,6 +18700,15 @@ let sha1 = "5fa40080ba216d398e41228be2765282f2060d8d"; }; }; + "postcss-will-change-1.1.0" = { + name = "postcss-will-change"; + packageName = "postcss-will-change"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-will-change/-/postcss-will-change-1.1.0.tgz"; + sha1 = "a651dd5a81e82c412d39a6cf90a92bb3269af18c"; + }; + }; "postcss-font-weights-4.0.0" = { name = "postcss-font-weights"; packageName = "postcss-font-weights"; @@ -18700,13 +18835,13 @@ let sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f"; }; }; - "mz-2.6.0" = { + "mz-2.7.0" = { name = "mz"; packageName = "mz"; - version = "2.6.0"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/mz/-/mz-2.6.0.tgz"; - sha1 = "c8b8521d958df0a4f2768025db69c719ee4ef1ce"; + url = "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz"; + sha1 = "95008057a56cafadc2bc63dde7f9ff6955948e32"; }; }; "thenify-all-1.6.0" = { @@ -18727,6 +18862,15 @@ let sha1 = "e69e38a1babe969b0108207978b9f62b88604839"; }; }; + "acorn-4.0.13" = { + name = "acorn"; + packageName = "acorn"; + version = "4.0.13"; + src = fetchurl { + url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"; + sha1 = "105495ae5361d697bd195c825192e1ad7f253787"; + }; + }; "acorn-globals-3.1.0" = { name = "acorn-globals"; packageName = "acorn-globals"; @@ -18745,40 +18889,40 @@ let sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93"; }; }; - "content-type-parser-1.0.1" = { + "content-type-parser-1.0.2" = { name = "content-type-parser"; packageName = "content-type-parser"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.1.tgz"; - sha1 = "c3e56988c53c65127fb46d4032a3a900246fdc94"; + url = "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.2.tgz"; + sha1 = "caabe80623e63638b2502fd4c7f12ff4ce2352e7"; }; }; - "html-encoding-sniffer-1.0.1" = { + "html-encoding-sniffer-1.0.2" = { name = "html-encoding-sniffer"; packageName = "html-encoding-sniffer"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz"; - sha1 = "79bf7a785ea495fe66165e734153f363ff5437da"; + url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz"; + sha1 = "e70d84b94da53aa375e11fe3a351be6642ca46f8"; }; }; - "webidl-conversions-4.0.1" = { + "webidl-conversions-4.0.2" = { name = "webidl-conversions"; packageName = "webidl-conversions"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.1.tgz"; - sha1 = "8015a17ab83e7e1b311638486ace81da6ce206a0"; + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; + sha1 = "a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"; }; }; - "whatwg-encoding-1.0.1" = { + "whatwg-encoding-1.0.3" = { name = "whatwg-encoding"; packageName = "whatwg-encoding"; - version = "1.0.1"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz"; - sha1 = "3c6c451a198ee7aec55b1ec61d0920c67801a5f4"; + url = "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz"; + sha1 = "57c235bc8657e914d24e1a397d3c82daee0a6ba3"; }; }; "whatwg-url-4.8.0" = { @@ -18790,15 +18934,6 @@ let sha1 = "d2981aa9148c1e00a41c5a6131166ab4683bbcc0"; }; }; - "iconv-lite-0.4.13" = { - name = "iconv-lite"; - packageName = "iconv-lite"; - version = "0.4.13"; - src = fetchurl { - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz"; - sha1 = "1f88aba4ab0b1508e8312acc39345f36e992e2f2"; - }; - }; "webidl-conversions-3.0.1" = { name = "webidl-conversions"; packageName = "webidl-conversions"; @@ -18817,1930 +18952,1399 @@ let sha1 = "53ab38d5fe3c8891ba465329ea23fac0540126f9"; }; }; - "babel-preset-edge-0.9.6" = { - name = "babel-preset-edge"; - packageName = "babel-preset-edge"; - version = "0.9.6"; + "asset-hash-0.1.1" = { + name = "asset-hash"; + packageName = "asset-hash"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-edge/-/babel-preset-edge-0.9.6.tgz"; - sha1 = "00231e02e9fe088f3414baf6bb313dfd96d38aec"; + url = "https://registry.npmjs.org/asset-hash/-/asset-hash-0.1.1.tgz"; + sha1 = "995c3a481b71edc42d1d598cda8d2f42121765fe"; }; }; - "prepublish-1.0.6" = { - name = "prepublish"; - packageName = "prepublish"; - version = "1.0.6"; + "cp-file-5.0.0" = { + name = "cp-file"; + packageName = "cp-file"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/prepublish/-/prepublish-1.0.6.tgz"; - sha1 = "c8411dd827a1744ab61173e665287a5971b99c7b"; + url = "https://registry.npmjs.org/cp-file/-/cp-file-5.0.0.tgz"; + sha1 = "bc700fd30ca32d24d46c7fb02b992e435fc5a978"; }; }; - "app-root-dir-1.0.2" = { - name = "app-root-dir"; - packageName = "app-root-dir"; - version = "1.0.2"; + "mime-2.1.0" = { + name = "mime"; + packageName = "mime"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz"; - sha1 = "38187ec2dea7577fff033ffcb12172692ff6e118"; + url = "https://registry.npmjs.org/mime/-/mime-2.1.0.tgz"; + sha1 = "1022a5ada445aa30686e4059abaea83d0b4e8f9c"; }; }; - "babel-plugin-dynamic-import-node-1.0.2" = { - name = "babel-plugin-dynamic-import-node"; - packageName = "babel-plugin-dynamic-import-node"; - version = "1.0.2"; + "nodent-runtime-3.2.0" = { + name = "nodent-runtime"; + packageName = "nodent-runtime"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.0.2.tgz"; - sha1 = "adb5bc8f48a89311540395ae9f0cc3ed4b10bb2e"; + url = "https://registry.npmjs.org/nodent-runtime/-/nodent-runtime-3.2.0.tgz"; + sha1 = "8b79500a1274176d732b60284c7a7d10d9e44180"; }; }; - "babel-plugin-dynamic-import-webpack-1.0.1" = { - name = "babel-plugin-dynamic-import-webpack"; - packageName = "babel-plugin-dynamic-import-webpack"; - version = "1.0.1"; + "big.js-5.0.3" = { + name = "big.js"; + packageName = "big.js"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-dynamic-import-webpack/-/babel-plugin-dynamic-import-webpack-1.0.1.tgz"; - sha1 = "26c24a1c1c9bf49184b30d5867562a4cbfa530d1"; + url = "https://registry.npmjs.org/big.js/-/big.js-5.0.3.tgz"; + sha1 = "9679fb0a3599a7d3df397f855e89c4dba016960e"; }; }; - "babel-plugin-fast-async-6.1.2" = { - name = "babel-plugin-fast-async"; - packageName = "babel-plugin-fast-async"; - version = "6.1.2"; + "xxhash-0.2.4" = { + name = "xxhash"; + packageName = "xxhash"; + version = "0.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-fast-async/-/babel-plugin-fast-async-6.1.2.tgz"; - sha1 = "ac4921fa2b7f4e1f51963be45f3b1018fd03cd9d"; + url = "https://registry.npmjs.org/xxhash/-/xxhash-0.2.4.tgz"; + sha1 = "8b8a48162cfccc21b920fa500261187d40216c39"; }; }; - "babel-plugin-lodash-3.2.11" = { - name = "babel-plugin-lodash"; - packageName = "babel-plugin-lodash"; - version = "3.2.11"; + "nested-error-stacks-2.0.0" = { + name = "nested-error-stacks"; + packageName = "nested-error-stacks"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-lodash/-/babel-plugin-lodash-3.2.11.tgz"; - sha1 = "21c8fdec9fe1835efaa737873e3902bdd66d5701"; + url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.0.tgz"; + sha1 = "98b2ffaefb4610fa3936f1e71435d30700de2840"; }; }; - "babel-plugin-module-resolver-3.0.0-beta.4" = { - name = "babel-plugin-module-resolver"; - packageName = "babel-plugin-module-resolver"; - version = "3.0.0-beta.4"; + "postcss-sass-0.2.0" = { + name = "postcss-sass"; + packageName = "postcss-sass"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-module-resolver/-/babel-plugin-module-resolver-3.0.0-beta.4.tgz"; - sha1 = "3b93b524afb74913807f703e0527dff8986f38e5"; + url = "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.2.0.tgz"; + sha1 = "e55516441e9526ba4b380a730d3a02e9eaa78c7a"; }; }; - "babel-plugin-react-intl-2.3.1" = { - name = "babel-plugin-react-intl"; - packageName = "babel-plugin-react-intl"; - version = "2.3.1"; + "postcss-scss-1.0.2" = { + name = "postcss-scss"; + packageName = "postcss-scss"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-react-intl/-/babel-plugin-react-intl-2.3.1.tgz"; - sha1 = "3d43912e824da005e08e8e8239d5ba784374bb00"; + url = "https://registry.npmjs.org/postcss-scss/-/postcss-scss-1.0.2.tgz"; + sha1 = "ff45cf3354b879ee89a4eb68680f46ac9bb14f94"; }; }; - "babel-plugin-syntax-jsx-6.18.0" = { - name = "babel-plugin-syntax-jsx"; - packageName = "babel-plugin-syntax-jsx"; - version = "6.18.0"; + "profane-1.3.0" = { + name = "profane"; + packageName = "profane"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; - sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; + url = "https://registry.npmjs.org/profane/-/profane-1.3.0.tgz"; + sha1 = "4bf3d817d4e879e4c335a12ca8ce744d202d51a5"; }; }; - "babel-plugin-transform-es3-member-expression-literals-6.22.0" = { - name = "babel-plugin-transform-es3-member-expression-literals"; - packageName = "babel-plugin-transform-es3-member-expression-literals"; - version = "6.22.0"; + "svg-sprite-1.3.7" = { + name = "svg-sprite"; + packageName = "svg-sprite"; + version = "1.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz"; - sha1 = "733d3444f3ecc41bef8ed1a6a4e09657b8969ebb"; + url = "https://registry.npmjs.org/svg-sprite/-/svg-sprite-1.3.7.tgz"; + sha1 = "7ade036000e8794a3f814402a808aae290ecd1f3"; }; }; - "babel-plugin-transform-es3-property-literals-6.22.0" = { - name = "babel-plugin-transform-es3-property-literals"; - packageName = "babel-plugin-transform-es3-property-literals"; - version = "6.22.0"; + "css-selector-parser-1.3.0" = { + name = "css-selector-parser"; + packageName = "css-selector-parser"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz"; - sha1 = "b2078d5842e22abf40f73e8cde9cd3711abd5758"; + url = "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-1.3.0.tgz"; + sha1 = "5f1ad43e2d8eefbfdc304fcd39a521664943e3eb"; }; }; - "babel-plugin-transform-react-constant-elements-6.23.0" = { - name = "babel-plugin-transform-react-constant-elements"; - packageName = "babel-plugin-transform-react-constant-elements"; - version = "6.23.0"; + "lodash.pluck-3.1.2" = { + name = "lodash.pluck"; + packageName = "lodash.pluck"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-react-constant-elements/-/babel-plugin-transform-react-constant-elements-6.23.0.tgz"; - sha1 = "2f119bf4d2cdd45eb9baaae574053c604f6147dd"; + url = "https://registry.npmjs.org/lodash.pluck/-/lodash.pluck-3.1.2.tgz"; + sha1 = "b347f0374c0169f0eeb04d672d89cec8632c2231"; }; }; - "babel-plugin-transform-react-inline-elements-6.22.0" = { - name = "babel-plugin-transform-react-inline-elements"; - packageName = "babel-plugin-transform-react-inline-elements"; - version = "6.22.0"; + "mustache-2.3.0" = { + name = "mustache"; + packageName = "mustache"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-react-inline-elements/-/babel-plugin-transform-react-inline-elements-6.22.0.tgz"; - sha1 = "6687211a32b49a52f22c573a2b5504a25ef17c53"; + url = "https://registry.npmjs.org/mustache/-/mustache-2.3.0.tgz"; + sha1 = "4028f7778b17708a489930a6e52ac3bca0da41d0"; }; }; - "babel-plugin-transform-react-remove-prop-types-0.4.6" = { - name = "babel-plugin-transform-react-remove-prop-types"; - packageName = "babel-plugin-transform-react-remove-prop-types"; - version = "0.4.6"; + "phantomjs-prebuilt-2.1.16" = { + name = "phantomjs-prebuilt"; + packageName = "phantomjs-prebuilt"; + version = "2.1.16"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.6.tgz"; - sha1 = "c3d20ff4e97fb08fa63e86a97b2daab6ad365a19"; + url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz"; + sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef"; }; }; - "babel-preset-babili-0.1.4" = { - name = "babel-preset-babili"; - packageName = "babel-preset-babili"; - version = "0.1.4"; + "prettysize-0.1.0" = { + name = "prettysize"; + packageName = "prettysize"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-babili/-/babel-preset-babili-0.1.4.tgz"; - sha1 = "ad9d6651002f5bc3f07cab300781167f54724bf2"; + url = "https://registry.npmjs.org/prettysize/-/prettysize-0.1.0.tgz"; + sha1 = "38ee534e2d298bc945fb7243203dd873cefc9679"; }; }; - "babel-preset-env-1.6.0" = { - name = "babel-preset-env"; - packageName = "babel-preset-env"; - version = "1.6.0"; + "vinyl-2.1.0" = { + name = "vinyl"; + packageName = "vinyl"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.0.tgz"; - sha1 = "2de1c782a780a0a5d605d199c957596da43c44e4"; + url = "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz"; + sha1 = "021f9c2cf951d6b939943c89eb5ee5add4fd924c"; }; }; - "babel-preset-flow-6.23.0" = { - name = "babel-preset-flow"; - packageName = "babel-preset-flow"; - version = "6.23.0"; + "winston-2.4.0" = { + name = "winston"; + packageName = "winston"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz"; - sha1 = "e71218887085ae9a24b5be4169affb599816c49d"; + url = "https://registry.npmjs.org/winston/-/winston-2.4.0.tgz"; + sha1 = "808050b93d52661ed9fb6c26b3f0c826708b0aee"; }; }; - "babel-preset-react-6.24.1" = { - name = "babel-preset-react"; - packageName = "babel-preset-react"; - version = "6.24.1"; + "xpath-0.0.24" = { + name = "xpath"; + packageName = "xpath"; + version = "0.0.24"; src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz"; - sha1 = "ba69dfaea45fc3ec639b6a4ecea6e17702c91380"; + url = "https://registry.npmjs.org/xpath/-/xpath-0.0.24.tgz"; + sha1 = "1ade162e1cc523c8d39fc7d06afc16ea216f29fb"; }; }; - "nodent-runtime-3.0.4" = { - name = "nodent-runtime"; - packageName = "nodent-runtime"; - version = "3.0.4"; + "yargs-8.0.2" = { + name = "yargs"; + packageName = "yargs"; + version = "8.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/nodent-runtime/-/nodent-runtime-3.0.4.tgz"; - sha1 = "a801ecb7bb0f6c39a69b24cc2fa370cfa8b492da"; + url = "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz"; + sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360"; }; }; - "nodent-3.1.0" = { - name = "nodent"; - packageName = "nodent"; - version = "3.1.0"; + "lodash._baseget-3.7.2" = { + name = "lodash._baseget"; + packageName = "lodash._baseget"; + version = "3.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/nodent/-/nodent-3.1.0.tgz"; - sha1 = "dd3613b9bed38ef503e82e27318491ce42505a0f"; + url = "https://registry.npmjs.org/lodash._baseget/-/lodash._baseget-3.7.2.tgz"; + sha1 = "1b6ae1d5facf3c25532350a13c1197cb8bb674f4"; }; }; - "nodent-compiler-3.1.0" = { - name = "nodent-compiler"; - packageName = "nodent-compiler"; - version = "3.1.0"; + "lodash._topath-3.8.1" = { + name = "lodash._topath"; + packageName = "lodash._topath"; + version = "3.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/nodent-compiler/-/nodent-compiler-3.1.0.tgz"; - sha1 = "01f8c43b6c4425dabec25c915a8cf308e7d37da9"; + url = "https://registry.npmjs.org/lodash._topath/-/lodash._topath-3.8.1.tgz"; + sha1 = "3ec5e2606014f4cb97f755fe6914edd8bfc00eac"; }; }; - "acorn-es7-plugin-1.1.7" = { - name = "acorn-es7-plugin"; - packageName = "acorn-es7-plugin"; - version = "1.1.7"; + "lodash.map-3.1.4" = { + name = "lodash.map"; + packageName = "lodash.map"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/acorn-es7-plugin/-/acorn-es7-plugin-1.1.7.tgz"; - sha1 = "f2ee1f3228a90eead1245f9ab1922eb2e71d336b"; + url = "https://registry.npmjs.org/lodash.map/-/lodash.map-3.1.4.tgz"; + sha1 = "b483acd1b786c5c7b492c495f7b5266229bc00c2"; }; }; - "find-babel-config-1.1.0" = { - name = "find-babel-config"; - packageName = "find-babel-config"; - version = "1.1.0"; + "lodash._arraymap-3.0.0" = { + name = "lodash._arraymap"; + packageName = "lodash._arraymap"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/find-babel-config/-/find-babel-config-1.1.0.tgz"; - sha1 = "acc01043a6749fec34429be6b64f542ebb5d6355"; + url = "https://registry.npmjs.org/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz"; + sha1 = "1a8fd0f4c0df4b61dea076d717cdc97f0a3c3e66"; }; }; - "pkg-up-2.0.0" = { - name = "pkg-up"; - packageName = "pkg-up"; - version = "2.0.0"; + "lodash._basecallback-3.3.1" = { + name = "lodash._basecallback"; + packageName = "lodash._basecallback"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz"; - sha1 = "c819ac728059a461cab1c3889a2be3c49a004d7f"; + url = "https://registry.npmjs.org/lodash._basecallback/-/lodash._basecallback-3.3.1.tgz"; + sha1 = "b7b2bb43dc2160424a21ccf26c57e443772a8e27"; }; }; - "reselect-3.0.1" = { - name = "reselect"; - packageName = "reselect"; - version = "3.0.1"; + "lodash._baseisequal-3.0.7" = { + name = "lodash._baseisequal"; + packageName = "lodash._baseisequal"; + version = "3.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/reselect/-/reselect-3.0.1.tgz"; - sha1 = "efdaa98ea7451324d092b2b2163a6a1d7a9a2147"; + url = "https://registry.npmjs.org/lodash._baseisequal/-/lodash._baseisequal-3.0.7.tgz"; + sha1 = "d8025f76339d29342767dcc887ce5cb95a5b51f1"; }; }; - "intl-messageformat-parser-1.3.0" = { - name = "intl-messageformat-parser"; - packageName = "intl-messageformat-parser"; - version = "1.3.0"; + "lodash.pairs-3.0.1" = { + name = "lodash.pairs"; + packageName = "lodash.pairs"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/intl-messageformat-parser/-/intl-messageformat-parser-1.3.0.tgz"; - sha1 = "c5d26ffb894c7d9c2b9fa444c67f417ab2594268"; + url = "https://registry.npmjs.org/lodash.pairs/-/lodash.pairs-3.0.1.tgz"; + sha1 = "bbe08d5786eeeaa09a15c91ebf0dcb7d2be326a9"; }; }; - "babel-plugin-minify-builtins-0.1.3" = { - name = "babel-plugin-minify-builtins"; - packageName = "babel-plugin-minify-builtins"; - version = "0.1.3"; + "lodash.istypedarray-3.0.6" = { + name = "lodash.istypedarray"; + packageName = "lodash.istypedarray"; + version = "3.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.1.3.tgz"; - sha1 = "4f21a7dcb51f91a04ea71d47ff0e8e3b05fec021"; + url = "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz"; + sha1 = "c9a477498607501d8e8494d283b87c39281cef62"; }; }; - "babel-plugin-minify-constant-folding-0.1.3" = { - name = "babel-plugin-minify-constant-folding"; - packageName = "babel-plugin-minify-constant-folding"; - version = "0.1.3"; + "extract-zip-1.6.6" = { + name = "extract-zip"; + packageName = "extract-zip"; + version = "1.6.6"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.1.3.tgz"; - sha1 = "57bd172adf8b8d74ad7c99612eb950414ebea3ca"; + url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz"; + sha1 = "1290ede8d20d0872b429fd3f351ca128ec5ef85c"; }; }; - "babel-plugin-minify-dead-code-elimination-0.1.7" = { - name = "babel-plugin-minify-dead-code-elimination"; - packageName = "babel-plugin-minify-dead-code-elimination"; - version = "0.1.7"; + "kew-0.7.0" = { + name = "kew"; + packageName = "kew"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.1.7.tgz"; - sha1 = "774f536f347b98393a27baa717872968813c342c"; + url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz"; + sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; }; }; - "babel-plugin-minify-flip-comparisons-0.1.2" = { - name = "babel-plugin-minify-flip-comparisons"; - packageName = "babel-plugin-minify-flip-comparisons"; - version = "0.1.2"; + "progress-1.1.8" = { + name = "progress"; + packageName = "progress"; + version = "1.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.1.2.tgz"; - sha1 = "e286b40b7599b18dfea195071e4279465cfc1884"; + url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; + sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; }; }; - "babel-plugin-minify-guarded-expressions-0.1.2" = { - name = "babel-plugin-minify-guarded-expressions"; - packageName = "babel-plugin-minify-guarded-expressions"; - version = "0.1.2"; + "request-progress-2.0.1" = { + name = "request-progress"; + packageName = "request-progress"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.1.2.tgz"; - sha1 = "dfc3d473b0362d9605d3ce0ac1e22328c60d1007"; + url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz"; + sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; }; }; - "babel-plugin-minify-infinity-0.1.2" = { - name = "babel-plugin-minify-infinity"; - packageName = "babel-plugin-minify-infinity"; - version = "0.1.2"; + "mkdirp-0.5.0" = { + name = "mkdirp"; + packageName = "mkdirp"; + version = "0.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.1.2.tgz"; - sha1 = "5f1cf67ddedcba13c8a00da832542df0091a1cd4"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz"; + sha1 = "1d73076a6df986cd9344e15e71fcc05a4c9abf12"; }; }; - "babel-plugin-minify-mangle-names-0.1.3" = { - name = "babel-plugin-minify-mangle-names"; - packageName = "babel-plugin-minify-mangle-names"; - version = "0.1.3"; + "yauzl-2.4.1" = { + name = "yauzl"; + packageName = "yauzl"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.1.3.tgz"; - sha1 = "bfa24661a6794fb03833587e55828b65449e06fe"; + url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz"; + sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; }; }; - "babel-plugin-minify-numeric-literals-0.1.1" = { - name = "babel-plugin-minify-numeric-literals"; - packageName = "babel-plugin-minify-numeric-literals"; - version = "0.1.1"; + "throttleit-1.0.0" = { + name = "throttleit"; + packageName = "throttleit"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.1.1.tgz"; - sha1 = "d4b8b0c925f874714ee33ee4b26678583d7ce7fb"; + url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz"; + sha1 = "9e785836daf46743145a5984b6268d828528ac6c"; }; }; - "babel-plugin-minify-replace-0.1.2" = { - name = "babel-plugin-minify-replace"; - packageName = "babel-plugin-minify-replace"; - version = "0.1.2"; + "clone-2.1.1" = { + name = "clone"; + packageName = "clone"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.1.2.tgz"; - sha1 = "b90b9e71ab4d3b36325629a91beabe13b0b16ac1"; + url = "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz"; + sha1 = "d217d1e961118e3ac9a4b8bba3285553bf647cdb"; }; }; - "babel-plugin-minify-simplify-0.1.2" = { - name = "babel-plugin-minify-simplify"; - packageName = "babel-plugin-minify-simplify"; - version = "0.1.2"; + "clone-buffer-1.0.0" = { + name = "clone-buffer"; + packageName = "clone-buffer"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.1.2.tgz"; - sha1 = "a968f1658fdeb2fc759e81fe331d89829df0f6b9"; + url = "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz"; + sha1 = "e3e25b207ac4e701af721e2cb5a16792cac3dc58"; }; }; - "babel-plugin-minify-type-constructors-0.1.2" = { - name = "babel-plugin-minify-type-constructors"; - packageName = "babel-plugin-minify-type-constructors"; - version = "0.1.2"; + "clone-stats-1.0.0" = { + name = "clone-stats"; + packageName = "clone-stats"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.1.2.tgz"; - sha1 = "db53c5b76cb8e2fcd45d862f17104c78761337ee"; + url = "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz"; + sha1 = "b3782dff8bb5474e18b9b6bf0fdfe782f8777680"; }; }; - "babel-plugin-transform-inline-consecutive-adds-0.1.2" = { - name = "babel-plugin-transform-inline-consecutive-adds"; - packageName = "babel-plugin-transform-inline-consecutive-adds"; - version = "0.1.2"; + "cloneable-readable-1.0.0" = { + name = "cloneable-readable"; + packageName = "cloneable-readable"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.1.2.tgz"; - sha1 = "5442e9f1c19c78a7899f8a4dee6fd481f61001f5"; + url = "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.0.0.tgz"; + sha1 = "a6290d413f217a61232f95e458ff38418cfb0117"; }; }; - "babel-plugin-transform-member-expression-literals-6.8.4" = { - name = "babel-plugin-transform-member-expression-literals"; - packageName = "babel-plugin-transform-member-expression-literals"; - version = "6.8.4"; + "async-1.0.0" = { + name = "async"; + packageName = "async"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.8.4.tgz"; - sha1 = "05679bc40596b91293401959aa1620ab1b2be437"; + url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; + sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; }; }; - "babel-plugin-transform-merge-sibling-variables-6.8.5" = { - name = "babel-plugin-transform-merge-sibling-variables"; - packageName = "babel-plugin-transform-merge-sibling-variables"; - version = "6.8.5"; + "cycle-1.0.3" = { + name = "cycle"; + packageName = "cycle"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.8.5.tgz"; - sha1 = "03abdf107c61241913eb268ddede6d5bc541862c"; + url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; + sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; }; }; - "babel-plugin-transform-minify-booleans-6.8.2" = { - name = "babel-plugin-transform-minify-booleans"; - packageName = "babel-plugin-transform-minify-booleans"; - version = "6.8.2"; + "eyes-0.1.8" = { + name = "eyes"; + packageName = "eyes"; + version = "0.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.8.2.tgz"; - sha1 = "8451579f706e702c1e1ab2756de5c8ea369cf07c"; + url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; + sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0"; }; }; - "babel-plugin-transform-property-literals-6.8.4" = { - name = "babel-plugin-transform-property-literals"; - packageName = "babel-plugin-transform-property-literals"; - version = "6.8.4"; + "stack-trace-0.0.10" = { + name = "stack-trace"; + packageName = "stack-trace"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.8.4.tgz"; - sha1 = "6ad311110b80a192a56efb5ddf4fe3ca6f7a61da"; + url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; + sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; }; }; - "babel-plugin-transform-regexp-constructors-0.1.1" = { - name = "babel-plugin-transform-regexp-constructors"; - packageName = "babel-plugin-transform-regexp-constructors"; - version = "0.1.1"; + "get-caller-file-1.0.2" = { + name = "get-caller-file"; + packageName = "get-caller-file"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.1.1.tgz"; - sha1 = "312ab7487cc88a1c62ee25ea1b6087e89b87799c"; + url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz"; + sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5"; }; }; - "babel-plugin-transform-remove-console-6.8.4" = { - name = "babel-plugin-transform-remove-console"; - packageName = "babel-plugin-transform-remove-console"; - version = "6.8.4"; + "os-locale-2.1.0" = { + name = "os-locale"; + packageName = "os-locale"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.8.4.tgz"; - sha1 = "41fddac19a729a4c3dd7ef2964eac07b096f9a8f"; + url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz"; + sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2"; }; }; - "babel-plugin-transform-remove-debugger-6.8.4" = { - name = "babel-plugin-transform-remove-debugger"; - packageName = "babel-plugin-transform-remove-debugger"; - version = "6.8.4"; + "which-module-2.0.0" = { + name = "which-module"; + packageName = "which-module"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.8.4.tgz"; - sha1 = "f85704a08adaa71b55d77005b5b94e9b9df21f6e"; + url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; + sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; }; }; - "babel-plugin-transform-remove-undefined-0.1.2" = { - name = "babel-plugin-transform-remove-undefined"; - packageName = "babel-plugin-transform-remove-undefined"; - version = "0.1.2"; + "yargs-parser-7.0.0" = { + name = "yargs-parser"; + packageName = "yargs-parser"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.1.2.tgz"; - sha1 = "e1ebf51110f6b1e0665f28382ef73f95e5023652"; + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz"; + sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"; }; }; - "babel-plugin-transform-simplify-comparison-operators-6.8.4" = { - name = "babel-plugin-transform-simplify-comparison-operators"; - packageName = "babel-plugin-transform-simplify-comparison-operators"; - version = "6.8.4"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.8.4.tgz"; - sha1 = "2aa24a262d664c8cb3e125a306c798d7a2de08d5"; - }; - }; - "babel-plugin-transform-undefined-to-void-6.8.2" = { - name = "babel-plugin-transform-undefined-to-void"; - packageName = "babel-plugin-transform-undefined-to-void"; - version = "6.8.2"; + "mem-1.1.0" = { + name = "mem"; + packageName = "mem"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.8.2.tgz"; - sha1 = "fe2b1d294eb05e87524eb93724dea6e2c3d66fa1"; + url = "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz"; + sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; }; }; - "babel-helper-evaluate-path-0.1.0" = { - name = "babel-helper-evaluate-path"; - packageName = "babel-helper-evaluate-path"; - version = "0.1.0"; + "sharp-0.17.3" = { + name = "sharp"; + packageName = "sharp"; + version = "0.17.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.1.0.tgz"; - sha1 = "95d98c4ea36150483db2e7d3ec9e1954a72629cb"; + url = "https://registry.npmjs.org/sharp/-/sharp-0.17.3.tgz"; + sha1 = "484cd2a70c900370948dcc43e165f78306bff48a"; }; }; - "babel-helper-mark-eval-scopes-0.1.1" = { - name = "babel-helper-mark-eval-scopes"; - packageName = "babel-helper-mark-eval-scopes"; - version = "0.1.1"; + "postcss-reporter-3.0.0" = { + name = "postcss-reporter"; + packageName = "postcss-reporter"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.1.1.tgz"; - sha1 = "4554345edf9f2549427bd2098e530253f8af2992"; + url = "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-3.0.0.tgz"; + sha1 = "09ea0f37a444c5693878606e09b018ebeff7cf8f"; }; }; - "babel-helper-remove-or-void-0.1.1" = { - name = "babel-helper-remove-or-void"; - packageName = "babel-helper-remove-or-void"; - version = "0.1.1"; + "mocha-3.5.3" = { + name = "mocha"; + packageName = "mocha"; + version = "3.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.1.1.tgz"; - sha1 = "9d7e1856dc6fafcb41b283a416730dc1844f66d7"; + url = "https://registry.npmjs.org/mocha/-/mocha-3.5.3.tgz"; + sha1 = "1e0480fe36d2da5858d1eb6acc38418b26eaa20d"; }; }; - "lodash.some-4.6.0" = { - name = "lodash.some"; - packageName = "lodash.some"; - version = "4.6.0"; + "browser-stdout-1.3.0" = { + name = "browser-stdout"; + packageName = "browser-stdout"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz"; - sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d"; + url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz"; + sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f"; }; }; - "babel-helper-is-void-0-0.1.1" = { - name = "babel-helper-is-void-0"; - packageName = "babel-helper-is-void-0"; - version = "0.1.1"; + "debug-2.6.8" = { + name = "debug"; + packageName = "debug"; + version = "2.6.8"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-is-void-0/-/babel-helper-is-void-0-0.1.1.tgz"; - sha1 = "72f21a3abba0bef3837f9174fca731aed9a02888"; + url = "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz"; + sha1 = "e731531ca2ede27d188222427da17821d68ff4fc"; }; }; - "babel-helper-flip-expressions-0.1.2" = { - name = "babel-helper-flip-expressions"; - packageName = "babel-helper-flip-expressions"; - version = "0.1.2"; + "diff-3.2.0" = { + name = "diff"; + packageName = "diff"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.1.2.tgz"; - sha1 = "77f6652f9de9c42401d827bd46ebd2109e3ef18a"; + url = "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz"; + sha1 = "c9ce393a4b7cbd0b058a725c93df299027868ff9"; }; }; - "babel-helper-is-nodes-equiv-0.0.1" = { - name = "babel-helper-is-nodes-equiv"; - packageName = "babel-helper-is-nodes-equiv"; - version = "0.0.1"; + "glob-7.1.1" = { + name = "glob"; + packageName = "glob"; + version = "7.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz"; - sha1 = "34e9b300b1479ddd98ec77ea0bbe9342dfe39684"; + url = "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz"; + sha1 = "805211df04faaf1c63a3600306cdf5ade50b2ec8"; }; }; - "babel-helper-to-multiple-sequence-expressions-0.1.1" = { - name = "babel-helper-to-multiple-sequence-expressions"; - packageName = "babel-helper-to-multiple-sequence-expressions"; - version = "0.1.1"; + "he-1.1.1" = { + name = "he"; + packageName = "he"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.1.1.tgz"; - sha1 = "5f1b832b39e4acf954e9137f0251395c71196b35"; + url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz"; + sha1 = "93410fd21b009735151f8868c2f271f3427e23fd"; }; }; - "babel-plugin-transform-react-display-name-6.25.0" = { - name = "babel-plugin-transform-react-display-name"; - packageName = "babel-plugin-transform-react-display-name"; - version = "6.25.0"; + "json3-3.3.2" = { + name = "json3"; + packageName = "json3"; + version = "3.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz"; - sha1 = "67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"; + url = "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz"; + sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1"; }; }; - "babel-plugin-transform-react-jsx-6.24.1" = { - name = "babel-plugin-transform-react-jsx"; - packageName = "babel-plugin-transform-react-jsx"; - version = "6.24.1"; + "lodash.create-3.1.1" = { + name = "lodash.create"; + packageName = "lodash.create"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz"; - sha1 = "840a028e7df460dfc3a2d29f0c0d91f6376e66a3"; + url = "https://registry.npmjs.org/lodash.create/-/lodash.create-3.1.1.tgz"; + sha1 = "d7f2849f0dbda7e04682bb8cd72ab022461debe7"; }; }; - "babel-plugin-transform-react-jsx-source-6.22.0" = { - name = "babel-plugin-transform-react-jsx-source"; - packageName = "babel-plugin-transform-react-jsx-source"; - version = "6.22.0"; + "supports-color-3.1.2" = { + name = "supports-color"; + packageName = "supports-color"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz"; - sha1 = "66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"; + url = "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz"; + sha1 = "72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"; }; }; - "babel-plugin-transform-react-jsx-self-6.22.0" = { - name = "babel-plugin-transform-react-jsx-self"; - packageName = "babel-plugin-transform-react-jsx-self"; - version = "6.22.0"; + "lodash._basecreate-3.0.3" = { + name = "lodash._basecreate"; + packageName = "lodash._basecreate"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz"; - sha1 = "df6d80a9da2612a121e6ddd7558bcbecf06e636e"; + url = "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz"; + sha1 = "1bc661614daa7fc311b7d03bf16806a0213cf821"; }; }; - "babel-helper-builder-react-jsx-6.24.1" = { - name = "babel-helper-builder-react-jsx"; - packageName = "babel-helper-builder-react-jsx"; - version = "6.24.1"; + "lodash.includes-3.1.3" = { + name = "lodash.includes"; + packageName = "lodash.includes"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz"; - sha1 = "0ad7917e33c8d751e646daca4e77cc19377d2cbc"; + url = "https://registry.npmjs.org/lodash.includes/-/lodash.includes-3.1.3.tgz"; + sha1 = "c322d049c27892b29a01b995936e595381ebbc17"; }; }; - "async-2.5.0" = { - name = "async"; - packageName = "async"; - version = "2.5.0"; + "lodash.isstring-3.0.1" = { + name = "lodash.isstring"; + packageName = "lodash.isstring"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.5.0.tgz"; - sha1 = "843190fd6b7357a0b9e1c956edddd5ec8462b54d"; + url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-3.0.1.tgz"; + sha1 = "41638944ea042ef67ad67c293aa541d3f3d6e53c"; }; }; - "file-exists-4.0.0" = { - name = "file-exists"; - packageName = "file-exists"; - version = "4.0.0"; + "postcss-grid-system-0.4.8" = { + name = "postcss-grid-system"; + packageName = "postcss-grid-system"; + version = "0.4.8"; src = fetchurl { - url = "https://registry.npmjs.org/file-exists/-/file-exists-4.0.0.tgz"; - sha1 = "104eacf25d3fd6b3e462951ae923533195ffb52b"; + url = "https://registry.npmjs.org/postcss-grid-system/-/postcss-grid-system-0.4.8.tgz"; + sha1 = "586c062024e3933c542ba88af7d0d3a93208da8f"; }; }; - "fs-extra-3.0.1" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "3.0.1"; + "postcss-grid-fluid-0.1.17" = { + name = "postcss-grid-fluid"; + packageName = "postcss-grid-fluid"; + version = "0.1.17"; src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz"; - sha1 = "3794f378c58b342ea7dbbb23095109c4b3b62291"; + url = "https://registry.npmjs.org/postcss-grid-fluid/-/postcss-grid-fluid-0.1.17.tgz"; + sha1 = "a60815505508f7188b83b3626987a18feccc1118"; }; }; - "rollup-0.45.2" = { - name = "rollup"; - packageName = "rollup"; - version = "0.45.2"; + "postcss-typescale-0.1.8" = { + name = "postcss-typescale"; + packageName = "postcss-typescale"; + version = "0.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-0.45.2.tgz"; - sha1 = "63a284c2b31234656f24e9e9717fabb6a7f0fa43"; + url = "https://registry.npmjs.org/postcss-typescale/-/postcss-typescale-0.1.8.tgz"; + sha1 = "e90d7f182bef67e25391f31e3c1b5c427cab0977"; }; }; - "rollup-plugin-babel-2.7.1" = { - name = "rollup-plugin-babel"; - packageName = "rollup-plugin-babel"; - version = "2.7.1"; + "postcss-button-0.1.19" = { + name = "postcss-button"; + packageName = "postcss-button"; + version = "0.1.19"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-2.7.1.tgz"; - sha1 = "16528197b0f938a1536f44683c7a93d573182f57"; + url = "https://registry.npmjs.org/postcss-button/-/postcss-button-0.1.19.tgz"; + sha1 = "68a4f74fd4fff13dd2279196b98f13bc9a3a0c71"; }; }; - "rollup-plugin-buble-0.15.0" = { - name = "rollup-plugin-buble"; - packageName = "rollup-plugin-buble"; - version = "0.15.0"; + "ava-0.19.1" = { + name = "ava"; + packageName = "ava"; + version = "0.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-buble/-/rollup-plugin-buble-0.15.0.tgz"; - sha1 = "83c3e89c7fd2266c7918f41ba3980313519c7fd0"; + url = "https://registry.npmjs.org/ava/-/ava-0.19.1.tgz"; + sha1 = "43dd82435ad19b3980ffca2488f05daab940b273"; }; }; - "rollup-plugin-commonjs-8.0.2" = { - name = "rollup-plugin-commonjs"; - packageName = "rollup-plugin-commonjs"; - version = "8.0.2"; + "@ava/pretty-format-1.1.0" = { + name = "@ava/pretty-format"; + packageName = "@ava/pretty-format"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.0.2.tgz"; - sha1 = "98b1589bfe32a6c0f67790b60c0b499972afed89"; + url = "https://registry.npmjs.org/@ava/pretty-format/-/pretty-format-1.1.0.tgz"; + sha1 = "d0a57d25eb9aeab9643bdd1a030642b91c123e28"; }; }; - "rollup-plugin-executable-1.0.0" = { - name = "rollup-plugin-executable"; - packageName = "rollup-plugin-executable"; - version = "1.0.0"; + "diff-3.4.0" = { + name = "diff"; + packageName = "diff"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-executable/-/rollup-plugin-executable-1.0.0.tgz"; - sha1 = "50f434a664de3c88d44d34ae7d3db57c6e7310c5"; + url = "https://registry.npmjs.org/diff/-/diff-3.4.0.tgz"; + sha1 = "b1d85507daf3964828de54b37d0d73ba67dda56c"; }; }; - "rollup-plugin-json-2.3.0" = { - name = "rollup-plugin-json"; - packageName = "rollup-plugin-json"; - version = "2.3.0"; + "diff-match-patch-1.0.0" = { + name = "diff-match-patch"; + packageName = "diff-match-patch"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-json/-/rollup-plugin-json-2.3.0.tgz"; - sha1 = "3c07a452c1b5391be28006fbfff3644056ce0add"; + url = "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.0.tgz"; + sha1 = "1cc3c83a490d67f95d91e39f6ad1f2e086b63048"; }; }; - "rollup-plugin-node-resolve-3.0.0" = { - name = "rollup-plugin-node-resolve"; - packageName = "rollup-plugin-node-resolve"; - version = "3.0.0"; + "find-cache-dir-0.1.1" = { + name = "find-cache-dir"; + packageName = "find-cache-dir"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.0.0.tgz"; - sha1 = "8b897c4c3030d5001277b0514b25d2ca09683ee0"; + url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz"; + sha1 = "c8defae57c8a52a8a784f9e31c57c742e993a0b9"; }; }; - "rollup-plugin-rebase-0.6.2" = { - name = "rollup-plugin-rebase"; - packageName = "rollup-plugin-rebase"; - version = "0.6.2"; + "jest-diff-19.0.0" = { + name = "jest-diff"; + packageName = "jest-diff"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-rebase/-/rollup-plugin-rebase-0.6.2.tgz"; - sha1 = "e30f01eb0490334736dce1856f998d603ab9c520"; + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-19.0.0.tgz"; + sha1 = "d1563cfc56c8b60232988fbc05d4d16ed90f063c"; }; }; - "rollup-plugin-replace-1.1.1" = { - name = "rollup-plugin-replace"; - packageName = "rollup-plugin-replace"; - version = "1.1.1"; + "jest-snapshot-19.0.2" = { + name = "jest-snapshot"; + packageName = "jest-snapshot"; + version = "19.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-replace/-/rollup-plugin-replace-1.1.1.tgz"; - sha1 = "396315ded050a6ce43b9518a886a3f60efb1ea33"; + url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-19.0.2.tgz"; + sha1 = "9c1b216214f7187c38bfd5c70b1efab16b0ff50b"; }; }; - "rollup-plugin-yaml-1.1.0" = { - name = "rollup-plugin-yaml"; - packageName = "rollup-plugin-yaml"; - version = "1.1.0"; + "matcher-0.1.2" = { + name = "matcher"; + packageName = "matcher"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-yaml/-/rollup-plugin-yaml-1.1.0.tgz"; - sha1 = "8b55fd8bc6a483018abedfc7192dde0fdc65666b"; + url = "https://registry.npmjs.org/matcher/-/matcher-0.1.2.tgz"; + sha1 = "ef20cbde64c24c50cc61af5b83ee0b1b8ff00101"; }; }; - "jsonfile-3.0.1" = { - name = "jsonfile"; - packageName = "jsonfile"; - version = "3.0.1"; + "ms-0.7.3" = { + name = "ms"; + packageName = "ms"; + version = "0.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz"; - sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.3.tgz"; + sha1 = "708155a5e44e33f5fd0fc53e81d0d40a91be1fff"; }; }; - "universalify-0.1.0" = { - name = "universalify"; - packageName = "universalify"; - version = "0.1.0"; + "option-chain-0.1.1" = { + name = "option-chain"; + packageName = "option-chain"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.0.tgz"; - sha1 = "9eb1c4651debcc670cc94f1a75762332bb967778"; + url = "https://registry.npmjs.org/option-chain/-/option-chain-0.1.1.tgz"; + sha1 = "e9b811e006f1c0f54802f28295bfc8970f8dcfbd"; }; }; - "rollup-pluginutils-1.5.2" = { - name = "rollup-pluginutils"; - packageName = "rollup-pluginutils"; - version = "1.5.2"; + "pretty-ms-2.1.0" = { + name = "pretty-ms"; + packageName = "pretty-ms"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz"; - sha1 = "1e156e778f94b7255bfa1b3d0178be8f5c552408"; + url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz"; + sha1 = "4257c256df3fb0b451d6affaab021884126981dc"; }; }; - "estree-walker-0.2.1" = { - name = "estree-walker"; - packageName = "estree-walker"; - version = "0.2.1"; + "resolve-cwd-1.0.0" = { + name = "resolve-cwd"; + packageName = "resolve-cwd"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.2.1.tgz"; - sha1 = "bdafe8095383d8414d5dc2ecf4c9173b6db9412e"; + url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-1.0.0.tgz"; + sha1 = "4eaeea41ed040d1702457df64a42b2b07d246f9f"; }; }; - "buble-0.15.2" = { - name = "buble"; - packageName = "buble"; - version = "0.15.2"; + "pkg-dir-1.0.0" = { + name = "pkg-dir"; + packageName = "pkg-dir"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/buble/-/buble-0.15.2.tgz"; - sha1 = "547fc47483f8e5e8176d82aa5ebccb183b02d613"; + url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz"; + sha1 = "7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"; }; }; - "acorn-jsx-3.0.1" = { - name = "acorn-jsx"; - packageName = "acorn-jsx"; - version = "3.0.1"; + "jest-matcher-utils-19.0.0" = { + name = "jest-matcher-utils"; + packageName = "jest-matcher-utils"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; - sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b"; + url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz"; + sha1 = "5ecd9b63565d2b001f61fbf7ec4c7f537964564d"; }; }; - "acorn-object-spread-1.0.0" = { - name = "acorn-object-spread"; - packageName = "acorn-object-spread"; - version = "1.0.0"; + "pretty-format-19.0.0" = { + name = "pretty-format"; + packageName = "pretty-format"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz"; - sha1 = "48ead0f4a8eb16995a17a0db9ffc6acaada4ba68"; + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-19.0.0.tgz"; + sha1 = "56530d32acb98a3fa4851c4e2b9d37b420684c84"; }; }; - "magic-string-0.14.0" = { - name = "magic-string"; - packageName = "magic-string"; - version = "0.14.0"; + "jest-file-exists-19.0.0" = { + name = "jest-file-exists"; + packageName = "jest-file-exists"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.14.0.tgz"; - sha1 = "57224aef1701caeed273b17a39a956e72b172462"; + url = "https://registry.npmjs.org/jest-file-exists/-/jest-file-exists-19.0.0.tgz"; + sha1 = "cca2e587a11ec92e24cfeab3f8a94d657f3fceb8"; }; }; - "vlq-0.2.2" = { - name = "vlq"; - packageName = "vlq"; - version = "0.2.2"; + "jest-util-19.0.2" = { + name = "jest-util"; + packageName = "jest-util"; + version = "19.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/vlq/-/vlq-0.2.2.tgz"; - sha1 = "e316d5257b40b86bb43cb8d5fea5d7f54d6b0ca1"; + url = "https://registry.npmjs.org/jest-util/-/jest-util-19.0.2.tgz"; + sha1 = "e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41"; }; }; - "magic-string-0.19.1" = { - name = "magic-string"; - packageName = "magic-string"; - version = "0.19.1"; + "natural-compare-1.4.0" = { + name = "natural-compare"; + packageName = "natural-compare"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.19.1.tgz"; - sha1 = "14d768013caf2ec8fdea16a49af82fc377e75201"; + url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; + sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; }; }; - "browser-resolve-1.11.2" = { - name = "browser-resolve"; - packageName = "browser-resolve"; - version = "1.11.2"; + "jest-mock-19.0.0" = { + name = "jest-mock"; + packageName = "jest-mock"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz"; - sha1 = "8ff09b0a2c421718a1051c260b32e48f442938ce"; + url = "https://registry.npmjs.org/jest-mock/-/jest-mock-19.0.0.tgz"; + sha1 = "67038641e9607ab2ce08ec4a8cb83aabbc899d01"; }; }; - "is-module-1.0.0" = { - name = "is-module"; - packageName = "is-module"; - version = "1.0.0"; + "jest-validate-19.0.2" = { + name = "jest-validate"; + packageName = "jest-validate"; + version = "19.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz"; - sha1 = "3258fb69f78c14d5b815d664336b4cffb6441591"; + url = "https://registry.npmjs.org/jest-validate/-/jest-validate-19.0.2.tgz"; + sha1 = "dc534df5f1278d5b63df32b14241d4dbf7244c0c"; }; }; - "resolve-1.1.7" = { - name = "resolve"; - packageName = "resolve"; - version = "1.1.7"; + "jest-message-util-19.0.0" = { + name = "jest-message-util"; + packageName = "jest-message-util"; + version = "19.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"; - sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b"; + url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-19.0.0.tgz"; + sha1 = "721796b89c0e4d761606f9ba8cb828a3b6246416"; }; }; - "denodeify-1.2.1" = { - name = "denodeify"; - packageName = "denodeify"; - version = "1.2.1"; + "leven-2.1.0" = { + name = "leven"; + packageName = "leven"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz"; - sha1 = "3a36287f5034e699e7577901052c2e6c94251631"; + url = "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz"; + sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; }; }; - "postcss-sass-0.1.0" = { - name = "postcss-sass"; - packageName = "postcss-sass"; - version = "0.1.0"; + "plur-1.0.0" = { + name = "plur"; + packageName = "plur"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.1.0.tgz"; - sha1 = "0d2a655b5d241ec8f419bb3da38de5ca11746ddb"; + url = "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz"; + sha1 = "db85c6814f5e5e5a3b49efc28d604fec62975156"; }; }; - "postcss-scss-1.0.2" = { - name = "postcss-scss"; - packageName = "postcss-scss"; - version = "1.0.2"; + "css-annotation-0.6.2" = { + name = "css-annotation"; + packageName = "css-annotation"; + version = "0.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-scss/-/postcss-scss-1.0.2.tgz"; - sha1 = "ff45cf3354b879ee89a4eb68680f46ac9bb14f94"; + url = "https://registry.npmjs.org/css-annotation/-/css-annotation-0.6.2.tgz"; + sha1 = "88b50a39352383abbc6ded94647a533c3e7e7ad0"; }; }; - "postcss-simple-url-0.1.6" = { - name = "postcss-simple-url"; - packageName = "postcss-simple-url"; - version = "0.1.6"; + "css-annotation-block-0.1.0" = { + name = "css-annotation-block"; + packageName = "css-annotation-block"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-simple-url/-/postcss-simple-url-0.1.6.tgz"; - sha1 = "61fe25ebf2d16d457edcde889d9cf5fe09680b1b"; + url = "https://registry.npmjs.org/css-annotation-block/-/css-annotation-block-0.1.0.tgz"; + sha1 = "468f40c14e3505f653ac838ac64021069962f11a"; }; }; - "postcss-smart-import-0.7.5" = { - name = "postcss-smart-import"; - packageName = "postcss-smart-import"; - version = "0.7.5"; + "psg-theme-default-1.1.0" = { + name = "psg-theme-default"; + packageName = "psg-theme-default"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-smart-import/-/postcss-smart-import-0.7.5.tgz"; - sha1 = "df9a9c6dd60d916e5e0670d1c57d03af5d3dcc31"; + url = "https://registry.npmjs.org/psg-theme-default/-/psg-theme-default-1.1.0.tgz"; + sha1 = "2d750e5fdf279ff67442d88f6194236331163836"; }; }; - "magic-string-0.15.2" = { - name = "magic-string"; - packageName = "magic-string"; - version = "0.15.2"; + "suitcss-base-1.0.2" = { + name = "suitcss-base"; + packageName = "suitcss-base"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.15.2.tgz"; - sha1 = "0681d7388741bbc3addaa65060992624c6c09e9c"; + url = "https://registry.npmjs.org/suitcss-base/-/suitcss-base-1.0.2.tgz"; + sha1 = "6030f73af51c0e41a09193032107a1956d7aac96"; }; }; - "tosource-1.0.0" = { - name = "tosource"; - packageName = "tosource"; - version = "1.0.0"; + "normalize.css-3.0.3" = { + name = "normalize.css"; + packageName = "normalize.css"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/tosource/-/tosource-1.0.0.tgz"; - sha1 = "42d88dd116618bcf00d6106dd5446f3427902ff1"; + url = "https://registry.npmjs.org/normalize.css/-/normalize.css-3.0.3.tgz"; + sha1 = "acc00262e235a2caa91363a2e5e3bfa4f8ad05c6"; }; }; - "profane-1.3.0" = { - name = "profane"; - packageName = "profane"; - version = "1.3.0"; + "stylestats-6.3.0" = { + name = "stylestats"; + packageName = "stylestats"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/profane/-/profane-1.3.0.tgz"; - sha1 = "4bf3d817d4e879e4c335a12ca8ce744d202d51a5"; + url = "https://registry.npmjs.org/stylestats/-/stylestats-6.3.0.tgz"; + sha1 = "a3a6f54eb5aafbc4403ae4b1b50acaa002085167"; }; }; - "svg-sprite-1.3.7" = { - name = "svg-sprite"; - packageName = "svg-sprite"; - version = "1.3.7"; + "css-parse-2.0.0" = { + name = "css-parse"; + packageName = "css-parse"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/svg-sprite/-/svg-sprite-1.3.7.tgz"; - sha1 = "7ade036000e8794a3f814402a808aae290ecd1f3"; + url = "https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz"; + sha1 = "a468ee667c16d81ccf05c58c38d2a97c780dbfd4"; }; }; - "css-selector-parser-1.3.0" = { - name = "css-selector-parser"; - packageName = "css-selector-parser"; - version = "1.3.0"; + "handlebars-4.0.11" = { + name = "handlebars"; + packageName = "handlebars"; + version = "4.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-1.3.0.tgz"; - sha1 = "5f1ad43e2d8eefbfdc304fcd39a521664943e3eb"; + url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz"; + sha1 = "630a35dfe0294bc281edae6ffc5d329fc7982dcc"; }; }; - "lodash.pluck-3.1.2" = { - name = "lodash.pluck"; - packageName = "lodash.pluck"; - version = "3.1.2"; + "json2csv-3.11.5" = { + name = "json2csv"; + packageName = "json2csv"; + version = "3.11.5"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.pluck/-/lodash.pluck-3.1.2.tgz"; - sha1 = "b347f0374c0169f0eeb04d672d89cec8632c2231"; + url = "https://registry.npmjs.org/json2csv/-/json2csv-3.11.5.tgz"; + sha1 = "088006c3b5c06425a48cb7326ca712a6f8661417"; }; }; - "mustache-2.3.0" = { - name = "mustache"; - packageName = "mustache"; - version = "2.3.0"; + "moment-2.20.1" = { + name = "moment"; + packageName = "moment"; + version = "2.20.1"; src = fetchurl { - url = "https://registry.npmjs.org/mustache/-/mustache-2.3.0.tgz"; - sha1 = "4028f7778b17708a489930a6e52ac3bca0da41d0"; + url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz"; + sha1 = "d6eb1a46cbcc14a2b2f9434112c1ff8907f313fd"; }; }; - "phantomjs-prebuilt-2.1.14" = { - name = "phantomjs-prebuilt"; - packageName = "phantomjs-prebuilt"; - version = "2.1.14"; + "numeral-1.5.6" = { + name = "numeral"; + packageName = "numeral"; + version = "1.5.6"; src = fetchurl { - url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.14.tgz"; - sha1 = "d53d311fcfb7d1d08ddb24014558f1188c516da0"; + url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz"; + sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f"; }; }; - "prettysize-0.1.0" = { - name = "prettysize"; - packageName = "prettysize"; - version = "0.1.0"; + "valid-url-1.0.9" = { + name = "valid-url"; + packageName = "valid-url"; + version = "1.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/prettysize/-/prettysize-0.1.0.tgz"; - sha1 = "38ee534e2d298bc945fb7243203dd873cefc9679"; + url = "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz"; + sha1 = "1c14479b40f1397a75782f115e4086447433a200"; }; }; - "vinyl-2.1.0" = { - name = "vinyl"; - packageName = "vinyl"; - version = "2.1.0"; + "minimist-0.0.10" = { + name = "minimist"; + packageName = "minimist"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz"; - sha1 = "021f9c2cf951d6b939943c89eb5ee5add4fd924c"; + url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; + sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; }; }; - "winston-2.3.1" = { - name = "winston"; - packageName = "winston"; - version = "2.3.1"; + "flat-4.0.0" = { + name = "flat"; + packageName = "flat"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-2.3.1.tgz"; - sha1 = "0b48420d978c01804cf0230b648861598225a119"; + url = "https://registry.npmjs.org/flat/-/flat-4.0.0.tgz"; + sha1 = "3abc7f3b588e64ce77dc42fd59aa35806622fea8"; }; }; - "xpath-0.0.24" = { - name = "xpath"; - packageName = "xpath"; - version = "0.0.24"; + "lodash.set-4.3.2" = { + name = "lodash.set"; + packageName = "lodash.set"; + version = "4.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/xpath/-/xpath-0.0.24.tgz"; - sha1 = "1ade162e1cc523c8d39fc7d06afc16ea216f29fb"; + url = "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"; + sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23"; }; }; - "yargs-8.0.2" = { - name = "yargs"; - packageName = "yargs"; - version = "8.0.2"; + "jszip-3.1.3" = { + name = "jszip"; + packageName = "jszip"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz"; - sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360"; + url = "https://registry.npmjs.org/jszip/-/jszip-3.1.3.tgz"; + sha1 = "8a920403b2b1651c0fc126be90192d9080957c37"; }; }; - "lodash._baseget-3.7.2" = { - name = "lodash._baseget"; - packageName = "lodash._baseget"; - version = "3.7.2"; + "kefir-3.7.0" = { + name = "kefir"; + packageName = "kefir"; + version = "3.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._baseget/-/lodash._baseget-3.7.2.tgz"; - sha1 = "1b6ae1d5facf3c25532350a13c1197cb8bb674f4"; + url = "https://registry.npmjs.org/kefir/-/kefir-3.7.0.tgz"; + sha1 = "68686fc3532764395db2ade63dec1ee16aadcb1c"; }; }; - "lodash._topath-3.8.1" = { - name = "lodash._topath"; - packageName = "lodash._topath"; - version = "3.8.1"; + "request-2.79.0" = { + name = "request"; + packageName = "request"; + version = "2.79.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._topath/-/lodash._topath-3.8.1.tgz"; - sha1 = "3ec5e2606014f4cb97f755fe6914edd8bfc00eac"; + url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz"; + sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de"; }; }; - "lodash.map-3.1.4" = { - name = "lodash.map"; - packageName = "lodash.map"; - version = "3.1.4"; + "url-join-1.1.0" = { + name = "url-join"; + packageName = "url-join"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.map/-/lodash.map-3.1.4.tgz"; - sha1 = "b483acd1b786c5c7b492c495f7b5266229bc00c2"; + url = "https://registry.npmjs.org/url-join/-/url-join-1.1.0.tgz"; + sha1 = "741c6c2f4596c4830d6718460920d0c92202dc78"; }; }; - "lodash._arraymap-3.0.0" = { - name = "lodash._arraymap"; - packageName = "lodash._arraymap"; - version = "3.0.0"; + "core-js-2.3.0" = { + name = "core-js"; + packageName = "core-js"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz"; - sha1 = "1a8fd0f4c0df4b61dea076d717cdc97f0a3c3e66"; + url = "https://registry.npmjs.org/core-js/-/core-js-2.3.0.tgz"; + sha1 = "fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65"; }; }; - "lodash._basecallback-3.3.1" = { - name = "lodash._basecallback"; - packageName = "lodash._basecallback"; - version = "3.3.1"; + "es6-promise-3.0.2" = { + name = "es6-promise"; + packageName = "es6-promise"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._basecallback/-/lodash._basecallback-3.3.1.tgz"; - sha1 = "b7b2bb43dc2160424a21ccf26c57e443772a8e27"; + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz"; + sha1 = "010d5858423a5f118979665f46486a95c6ee2bb6"; }; }; - "lodash._baseisequal-3.0.7" = { - name = "lodash._baseisequal"; - packageName = "lodash._baseisequal"; - version = "3.0.7"; + "lie-3.1.1" = { + name = "lie"; + packageName = "lie"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._baseisequal/-/lodash._baseisequal-3.0.7.tgz"; - sha1 = "d8025f76339d29342767dcc887ce5cb95a5b51f1"; + url = "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz"; + sha1 = "9a436b2cc7746ca59de7a41fa469b3efb76bd87e"; }; }; - "lodash.pairs-3.0.1" = { - name = "lodash.pairs"; - packageName = "lodash.pairs"; - version = "3.0.1"; + "immediate-3.0.6" = { + name = "immediate"; + packageName = "immediate"; + version = "3.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.pairs/-/lodash.pairs-3.0.1.tgz"; - sha1 = "bbe08d5786eeeaa09a15c91ebf0dcb7d2be326a9"; + url = "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz"; + sha1 = "9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"; }; }; - "lodash.istypedarray-3.0.6" = { - name = "lodash.istypedarray"; - packageName = "lodash.istypedarray"; - version = "3.0.6"; + "caseless-0.11.0" = { + name = "caseless"; + packageName = "caseless"; + version = "0.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz"; - sha1 = "c9a477498607501d8e8494d283b87c39281cef62"; + url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"; + sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7"; }; }; - "es6-promise-4.0.5" = { - name = "es6-promise"; - packageName = "es6-promise"; - version = "4.0.5"; + "har-validator-2.0.6" = { + name = "har-validator"; + packageName = "har-validator"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.0.5.tgz"; - sha1 = "7882f30adde5b240ccfa7f7d78c548330951ae42"; + url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"; + sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"; }; }; - "extract-zip-1.5.0" = { - name = "extract-zip"; - packageName = "extract-zip"; - version = "1.5.0"; + "qs-6.3.2" = { + name = "qs"; + packageName = "qs"; + version = "6.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz"; - sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4"; + url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz"; + sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c"; }; }; - "kew-0.7.0" = { - name = "kew"; - packageName = "kew"; - version = "0.7.0"; + "is-my-json-valid-2.17.1" = { + name = "is-my-json-valid"; + packageName = "is-my-json-valid"; + version = "2.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz"; - sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; + url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz"; + sha1 = "3da98914a70a22f0a8563ef1511a246c6fc55471"; }; }; - "progress-1.1.8" = { - name = "progress"; - packageName = "progress"; - version = "1.1.8"; + "generate-function-2.0.0" = { + name = "generate-function"; + packageName = "generate-function"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; - sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; + url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz"; + sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74"; }; }; - "request-progress-2.0.1" = { - name = "request-progress"; - packageName = "request-progress"; - version = "2.0.1"; + "generate-object-property-1.2.0" = { + name = "generate-object-property"; + packageName = "generate-object-property"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz"; - sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; + url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; + sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; }; }; - "concat-stream-1.5.0" = { - name = "concat-stream"; - packageName = "concat-stream"; - version = "1.5.0"; + "jsonpointer-4.0.1" = { + name = "jsonpointer"; + packageName = "jsonpointer"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz"; - sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611"; + url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz"; + sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; }; }; - "mkdirp-0.5.0" = { - name = "mkdirp"; - packageName = "mkdirp"; - version = "0.5.0"; + "is-property-1.0.2" = { + name = "is-property"; + packageName = "is-property"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz"; - sha1 = "1d73076a6df986cd9344e15e71fcc05a4c9abf12"; + url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; + sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; }; }; - "yauzl-2.4.1" = { - name = "yauzl"; - packageName = "yauzl"; - version = "2.4.1"; + "xmldoc-1.1.0" = { + name = "xmldoc"; + packageName = "xmldoc"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz"; - sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; + url = "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.0.tgz"; + sha1 = "25c92f08f263f344dac8d0b32370a701ee9d0e93"; }; }; - "throttleit-1.0.0" = { - name = "throttleit"; - packageName = "throttleit"; - version = "1.0.0"; + "phantomjs-1.9.20" = { + name = "phantomjs"; + packageName = "phantomjs"; + version = "1.9.20"; src = fetchurl { - url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz"; - sha1 = "9e785836daf46743145a5984b6268d828528ac6c"; + url = "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.20.tgz"; + sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d"; }; }; - "clone-2.1.1" = { - name = "clone"; - packageName = "clone"; - version = "2.1.1"; + "extract-zip-1.5.0" = { + name = "extract-zip"; + packageName = "extract-zip"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz"; - sha1 = "d217d1e961118e3ac9a4b8bba3285553bf647cdb"; + url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz"; + sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4"; }; }; - "clone-buffer-1.0.0" = { - name = "clone-buffer"; - packageName = "clone-buffer"; - version = "1.0.0"; + "request-2.67.0" = { + name = "request"; + packageName = "request"; + version = "2.67.0"; src = fetchurl { - url = "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz"; - sha1 = "e3e25b207ac4e701af721e2cb5a16792cac3dc58"; + url = "https://registry.npmjs.org/request/-/request-2.67.0.tgz"; + sha1 = "8af74780e2bf11ea0ae9aa965c11f11afd272742"; }; }; - "clone-stats-1.0.0" = { - name = "clone-stats"; - packageName = "clone-stats"; - version = "1.0.0"; + "which-1.2.14" = { + name = "which"; + packageName = "which"; + version = "1.2.14"; src = fetchurl { - url = "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz"; - sha1 = "b3782dff8bb5474e18b9b6bf0fdfe782f8777680"; + url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz"; + sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5"; }; }; - "cloneable-readable-1.0.0" = { - name = "cloneable-readable"; - packageName = "cloneable-readable"; - version = "1.0.0"; + "concat-stream-1.5.0" = { + name = "concat-stream"; + packageName = "concat-stream"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.0.0.tgz"; - sha1 = "a6290d413f217a61232f95e458ff38418cfb0117"; + url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz"; + sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611"; }; }; - "async-1.0.0" = { - name = "async"; - packageName = "async"; - version = "1.0.0"; + "debug-0.7.4" = { + name = "debug"; + packageName = "debug"; + version = "0.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; - sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; + url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz"; + sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39"; }; }; - "cycle-1.0.3" = { - name = "cycle"; - packageName = "cycle"; + "bl-1.0.3" = { + name = "bl"; + packageName = "bl"; version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; - sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; + url = "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz"; + sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e"; }; }; - "eyes-0.1.8" = { - name = "eyes"; - packageName = "eyes"; - version = "0.1.8"; + "form-data-1.0.1" = { + name = "form-data"; + packageName = "form-data"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; - sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0"; + url = "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz"; + sha1 = "ae315db9a4907fa065502304a66d7733475ee37c"; }; }; - "stack-trace-0.0.10" = { - name = "stack-trace"; - packageName = "stack-trace"; - version = "0.0.10"; + "node-uuid-1.4.8" = { + name = "node-uuid"; + packageName = "node-uuid"; + version = "1.4.8"; src = fetchurl { - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; - sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; + url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; + sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; }; }; - "get-caller-file-1.0.2" = { - name = "get-caller-file"; - packageName = "get-caller-file"; - version = "1.0.2"; + "qs-5.2.1" = { + name = "qs"; + packageName = "qs"; + version = "5.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz"; - sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5"; + url = "https://registry.npmjs.org/qs/-/qs-5.2.1.tgz"; + sha1 = "801fee030e0b9450d6385adc48a4cc55b44aedfc"; }; }; - "os-locale-2.0.0" = { - name = "os-locale"; - packageName = "os-locale"; - version = "2.0.0"; + "tough-cookie-2.2.2" = { + name = "tough-cookie"; + packageName = "tough-cookie"; + version = "2.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/os-locale/-/os-locale-2.0.0.tgz"; - sha1 = "15918ded510522b81ee7ae5a309d54f639fc39a4"; + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz"; + sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; }; }; - "which-module-2.0.0" = { - name = "which-module"; - packageName = "which-module"; - version = "2.0.0"; + "swedish-css-properties-1.0.2" = { + name = "swedish-css-properties"; + packageName = "swedish-css-properties"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; + url = "https://registry.npmjs.org/swedish-css-properties/-/swedish-css-properties-1.0.2.tgz"; + sha1 = "afbee8cbecb82e23992e14b7b1c11c92fe99606f"; }; }; - "yargs-parser-7.0.0" = { - name = "yargs-parser"; - packageName = "yargs-parser"; - version = "7.0.0"; + "swedish-css-values-1.0.3" = { + name = "swedish-css-values"; + packageName = "swedish-css-values"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz"; - sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"; + url = "https://registry.npmjs.org/swedish-css-values/-/swedish-css-values-1.0.3.tgz"; + sha1 = "b6f95b323f4832a8c8de1e1a90c539553cac29af"; }; }; - "execa-0.5.1" = { - name = "execa"; - packageName = "execa"; - version = "0.5.1"; + "postcss-font-helpers-3.0.0" = { + name = "postcss-font-helpers"; + packageName = "postcss-font-helpers"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/execa/-/execa-0.5.1.tgz"; - sha1 = "de3fb85cb8d6e91c85bcbceb164581785cb57b36"; + url = "https://registry.npmjs.org/postcss-font-helpers/-/postcss-font-helpers-3.0.0.tgz"; + sha1 = "a82e9c06b61e291b6f5a39ce620414de7c8e9fda"; }; }; - "mem-1.1.0" = { - name = "mem"; - packageName = "mem"; - version = "1.1.0"; + "postcss-5.2.17" = { + name = "postcss"; + packageName = "postcss"; + version = "5.2.17"; src = fetchurl { - url = "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz"; - sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; + url = "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz"; + sha1 = "cf4f597b864d65c8a492b2eabe9d706c879c388b"; }; }; - "get-stream-2.3.1" = { - name = "get-stream"; - packageName = "get-stream"; - version = "2.3.1"; + "typography-0.13.3" = { + name = "typography"; + packageName = "typography"; + version = "0.13.3"; src = fetchurl { - url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz"; - sha1 = "5f38f93f346009666ee0150a054167f91bdd95de"; + url = "https://registry.npmjs.org/typography/-/typography-0.13.3.tgz"; + sha1 = "38b9ea0bf4682c02421726d677ed21e5156bfd9e"; }; }; - "sharp-0.17.3" = { - name = "sharp"; - packageName = "sharp"; - version = "0.17.3"; + "compass-vertical-rhythm-1.3.1" = { + name = "compass-vertical-rhythm"; + packageName = "compass-vertical-rhythm"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/sharp/-/sharp-0.17.3.tgz"; - sha1 = "484cd2a70c900370948dcc43e165f78306bff48a"; + url = "https://registry.npmjs.org/compass-vertical-rhythm/-/compass-vertical-rhythm-1.3.1.tgz"; + sha1 = "6047ffd8b20b2dcba93698e90a34570662893488"; }; }; - "postcss-reporter-3.0.0" = { - name = "postcss-reporter"; - packageName = "postcss-reporter"; - version = "3.0.0"; + "gray-percentage-2.0.0" = { + name = "gray-percentage"; + packageName = "gray-percentage"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-3.0.0.tgz"; - sha1 = "09ea0f37a444c5693878606e09b018ebeff7cf8f"; + url = "https://registry.npmjs.org/gray-percentage/-/gray-percentage-2.0.0.tgz"; + sha1 = "b72a274d1b1379104a0050b63b207dc53fe56f99"; }; }; - "mocha-3.4.2" = { - name = "mocha"; - packageName = "mocha"; - version = "3.4.2"; + "modularscale-1.0.2" = { + name = "modularscale"; + packageName = "modularscale"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/mocha/-/mocha-3.4.2.tgz"; - sha1 = "d0ef4d332126dbf18d0d640c9b382dd48be97594"; + url = "https://registry.npmjs.org/modularscale/-/modularscale-1.0.2.tgz"; + sha1 = "4a8f13af32a5e5214fc6e2cfc529064abfd7d877"; }; }; - "browser-stdout-1.3.0" = { - name = "browser-stdout"; - packageName = "browser-stdout"; - version = "1.3.0"; + "typography-normalize-0.12.0" = { + name = "typography-normalize"; + packageName = "typography-normalize"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz"; - sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f"; + url = "https://registry.npmjs.org/typography-normalize/-/typography-normalize-0.12.0.tgz"; + sha1 = "36995e85d20d7d5ef31924aa6f3e9adda3ba519f"; }; }; - "debug-2.6.0" = { - name = "debug"; - packageName = "debug"; - version = "2.6.0"; + "convert-css-length-1.0.1" = { + name = "convert-css-length"; + packageName = "convert-css-length"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.0.tgz"; - sha1 = "bc596bcabe7617f11d9fa15361eded5608b8499b"; + url = "https://registry.npmjs.org/convert-css-length/-/convert-css-length-1.0.1.tgz"; + sha1 = "f3ecec664f2e873a0570e6afdd3e1ae4f92444b7"; }; }; - "diff-3.2.0" = { - name = "diff"; - packageName = "diff"; - version = "3.2.0"; + "parse-unit-1.0.1" = { + name = "parse-unit"; + packageName = "parse-unit"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz"; - sha1 = "c9ce393a4b7cbd0b058a725c93df299027868ff9"; + url = "https://registry.npmjs.org/parse-unit/-/parse-unit-1.0.1.tgz"; + sha1 = "7e1bb6d5bef3874c28e392526a2541170291eecf"; }; }; - "glob-7.1.1" = { - name = "glob"; - packageName = "glob"; - version = "7.1.1"; + "console-polyfill-0.1.2" = { + name = "console-polyfill"; + packageName = "console-polyfill"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz"; - sha1 = "805211df04faaf1c63a3600306cdf5ade50b2ec8"; + url = "https://registry.npmjs.org/console-polyfill/-/console-polyfill-0.1.2.tgz"; + sha1 = "96cfed51caf78189f699572e6f18271dc37c0e30"; }; }; - "json3-3.3.2" = { - name = "json3"; - packageName = "json3"; - version = "3.3.2"; + "lodash.isnumber-3.0.3" = { + name = "lodash.isnumber"; + packageName = "lodash.isnumber"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz"; - sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1"; + url = "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz"; + sha1 = "3ce76810c5928d03352301ac287317f11c0b1ffc"; }; }; - "lodash.create-3.1.1" = { - name = "lodash.create"; - packageName = "lodash.create"; - version = "3.1.1"; + "unicode-9.0.1" = { + name = "unicode"; + packageName = "unicode"; + version = "9.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.create/-/lodash.create-3.1.1.tgz"; - sha1 = "d7f2849f0dbda7e04682bb8cd72ab022461debe7"; + url = "https://registry.npmjs.org/unicode/-/unicode-9.0.1.tgz"; + sha1 = "104706272c6464c574801be1b086f7245cf25158"; }; }; - "supports-color-3.1.2" = { - name = "supports-color"; - packageName = "supports-color"; - version = "3.1.2"; + "unicode-range-json-1.0.1" = { + name = "unicode-range-json"; + packageName = "unicode-range-json"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz"; - sha1 = "72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"; + url = "https://registry.npmjs.org/unicode-range-json/-/unicode-range-json-1.0.1.tgz"; + sha1 = "cb6182045e82ffeeca6c64d62907ec9905745ee8"; }; }; - "lodash._basecreate-3.0.3" = { - name = "lodash._basecreate"; - packageName = "lodash._basecreate"; - version = "3.0.3"; + "json-last-commit-0.0.7" = { + name = "json-last-commit"; + packageName = "json-last-commit"; + version = "0.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz"; - sha1 = "1bc661614daa7fc311b7d03bf16806a0213cf821"; + url = "https://registry.npmjs.org/json-last-commit/-/json-last-commit-0.0.7.tgz"; + sha1 = "bbb5e7f46452f3e9b76c507ac39bd2e75f42cf37"; }; }; - "lodash.includes-3.1.3" = { - name = "lodash.includes"; - packageName = "lodash.includes"; - version = "3.1.3"; + "known-css-properties-0.0.7" = { + name = "known-css-properties"; + packageName = "known-css-properties"; + version = "0.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.includes/-/lodash.includes-3.1.3.tgz"; - sha1 = "c322d049c27892b29a01b995936e595381ebbc17"; + url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.0.7.tgz"; + sha1 = "9104343a2adfd8ef3b07bdee7a325e4d44ed9371"; }; }; - "lodash.isstring-3.0.1" = { - name = "lodash.isstring"; - packageName = "lodash.isstring"; - version = "3.0.1"; + "postcss-cssnext-3.0.2" = { + name = "postcss-cssnext"; + packageName = "postcss-cssnext"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-3.0.1.tgz"; - sha1 = "41638944ea042ef67ad67c293aa541d3f3d6e53c"; + url = "https://registry.npmjs.org/postcss-cssnext/-/postcss-cssnext-3.0.2.tgz"; + sha1 = "63b77adb0b8a4c1d5ec32cd345539535a3417d48"; }; }; - "postcss-grid-system-0.4.8" = { - name = "postcss-grid-system"; - packageName = "postcss-grid-system"; - version = "0.4.8"; + "install-0.4.4" = { + name = "install"; + packageName = "install"; + version = "0.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-grid-system/-/postcss-grid-system-0.4.8.tgz"; - sha1 = "586c062024e3933c542ba88af7d0d3a93208da8f"; + url = "https://registry.npmjs.org/install/-/install-0.4.4.tgz"; + sha1 = "c66b8cd0272ecd79252edc4b0b5dd56cab46435c"; }; }; - "postcss-grid-fluid-0.1.17" = { - name = "postcss-grid-fluid"; - packageName = "postcss-grid-fluid"; - version = "0.1.17"; + "npm-3.10.10" = { + name = "npm"; + packageName = "npm"; + version = "3.10.10"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-grid-fluid/-/postcss-grid-fluid-0.1.17.tgz"; - sha1 = "a60815505508f7188b83b3626987a18feccc1118"; + url = "https://registry.npmjs.org/npm/-/npm-3.10.10.tgz"; + sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e"; }; }; - "postcss-typescale-0.1.8" = { - name = "postcss-typescale"; - packageName = "postcss-typescale"; - version = "0.1.8"; + "abbrev-1.0.9" = { + name = "abbrev"; + packageName = "abbrev"; + version = "1.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-typescale/-/postcss-typescale-0.1.8.tgz"; - sha1 = "e90d7f182bef67e25391f31e3c1b5c427cab0977"; + url = "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz"; + sha1 = "91b4792588a7738c25f35dd6f63752a2f8776135"; }; }; - "postcss-button-0.1.19" = { - name = "postcss-button"; - packageName = "postcss-button"; - version = "0.1.19"; + "ansicolors-0.3.2" = { + name = "ansicolors"; + packageName = "ansicolors"; + version = "0.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-button/-/postcss-button-0.1.19.tgz"; - sha1 = "68a4f74fd4fff13dd2279196b98f13bc9a3a0c71"; + url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"; + sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"; }; }; - "css-annotation-0.6.2" = { - name = "css-annotation"; - packageName = "css-annotation"; - version = "0.6.2"; + "ansistyles-0.1.3" = { + name = "ansistyles"; + packageName = "ansistyles"; + version = "0.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/css-annotation/-/css-annotation-0.6.2.tgz"; - sha1 = "88b50a39352383abbc6ded94647a533c3e7e7ad0"; - }; - }; - "css-annotation-block-0.1.0" = { - name = "css-annotation-block"; - packageName = "css-annotation-block"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/css-annotation-block/-/css-annotation-block-0.1.0.tgz"; - sha1 = "468f40c14e3505f653ac838ac64021069962f11a"; - }; - }; - "psg-theme-default-1.1.0" = { - name = "psg-theme-default"; - packageName = "psg-theme-default"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/psg-theme-default/-/psg-theme-default-1.1.0.tgz"; - sha1 = "2d750e5fdf279ff67442d88f6194236331163836"; - }; - }; - "suitcss-base-1.0.2" = { - name = "suitcss-base"; - packageName = "suitcss-base"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/suitcss-base/-/suitcss-base-1.0.2.tgz"; - sha1 = "6030f73af51c0e41a09193032107a1956d7aac96"; - }; - }; - "normalize.css-3.0.3" = { - name = "normalize.css"; - packageName = "normalize.css"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize.css/-/normalize.css-3.0.3.tgz"; - sha1 = "acc00262e235a2caa91363a2e5e3bfa4f8ad05c6"; - }; - }; - "stylestats-6.3.0" = { - name = "stylestats"; - packageName = "stylestats"; - version = "6.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/stylestats/-/stylestats-6.3.0.tgz"; - sha1 = "a3a6f54eb5aafbc4403ae4b1b50acaa002085167"; - }; - }; - "css-parse-2.0.0" = { - name = "css-parse"; - packageName = "css-parse"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz"; - sha1 = "a468ee667c16d81ccf05c58c38d2a97c780dbfd4"; - }; - }; - "handlebars-4.0.10" = { - name = "handlebars"; - packageName = "handlebars"; - version = "4.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.10.tgz"; - sha1 = "3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f"; - }; - }; - "json2csv-3.9.1" = { - name = "json2csv"; - packageName = "json2csv"; - version = "3.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json2csv/-/json2csv-3.9.1.tgz"; - sha1 = "71be00ad97556e52f815c4ffb2c7ab81d7bd6d0c"; - }; - }; - "moment-2.18.1" = { - name = "moment"; - packageName = "moment"; - version = "2.18.1"; - src = fetchurl { - url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz"; - sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"; - }; - }; - "numeral-1.5.6" = { - name = "numeral"; - packageName = "numeral"; - version = "1.5.6"; - src = fetchurl { - url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz"; - sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f"; - }; - }; - "valid-url-1.0.9" = { - name = "valid-url"; - packageName = "valid-url"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz"; - sha1 = "1c14479b40f1397a75782f115e4086447433a200"; - }; - }; - "flat-2.0.1" = { - name = "flat"; - packageName = "flat"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/flat/-/flat-2.0.1.tgz"; - sha1 = "70e29188a74be0c3c89409eed1fa9577907ae32f"; - }; - }; - "lodash.set-4.3.2" = { - name = "lodash.set"; - packageName = "lodash.set"; - version = "4.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"; - sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23"; - }; - }; - "jszip-3.1.3" = { - name = "jszip"; - packageName = "jszip"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jszip/-/jszip-3.1.3.tgz"; - sha1 = "8a920403b2b1651c0fc126be90192d9080957c37"; - }; - }; - "kefir-3.7.0" = { - name = "kefir"; - packageName = "kefir"; - version = "3.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kefir/-/kefir-3.7.0.tgz"; - sha1 = "68686fc3532764395db2ade63dec1ee16aadcb1c"; - }; - }; - "url-join-1.1.0" = { - name = "url-join"; - packageName = "url-join"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/url-join/-/url-join-1.1.0.tgz"; - sha1 = "741c6c2f4596c4830d6718460920d0c92202dc78"; - }; - }; - "core-js-2.3.0" = { - name = "core-js"; - packageName = "core-js"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-2.3.0.tgz"; - sha1 = "fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65"; - }; - }; - "es6-promise-3.0.2" = { - name = "es6-promise"; - packageName = "es6-promise"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz"; - sha1 = "010d5858423a5f118979665f46486a95c6ee2bb6"; - }; - }; - "lie-3.1.1" = { - name = "lie"; - packageName = "lie"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz"; - sha1 = "9a436b2cc7746ca59de7a41fa469b3efb76bd87e"; - }; - }; - "immediate-3.0.6" = { - name = "immediate"; - packageName = "immediate"; - version = "3.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz"; - sha1 = "9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"; - }; - }; - "xmldoc-1.1.0" = { - name = "xmldoc"; - packageName = "xmldoc"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.0.tgz"; - sha1 = "25c92f08f263f344dac8d0b32370a701ee9d0e93"; - }; - }; - "phantomjs-1.9.20" = { - name = "phantomjs"; - packageName = "phantomjs"; - version = "1.9.20"; - src = fetchurl { - url = "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.20.tgz"; - sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d"; - }; - }; - "request-2.67.0" = { - name = "request"; - packageName = "request"; - version = "2.67.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.67.0.tgz"; - sha1 = "8af74780e2bf11ea0ae9aa965c11f11afd272742"; - }; - }; - "bl-1.0.3" = { - name = "bl"; - packageName = "bl"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz"; - sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e"; - }; - }; - "form-data-1.0.1" = { - name = "form-data"; - packageName = "form-data"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz"; - sha1 = "ae315db9a4907fa065502304a66d7733475ee37c"; - }; - }; - "node-uuid-1.4.8" = { - name = "node-uuid"; - packageName = "node-uuid"; - version = "1.4.8"; - src = fetchurl { - url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; - sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; - }; - }; - "qs-5.2.1" = { - name = "qs"; - packageName = "qs"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-5.2.1.tgz"; - sha1 = "801fee030e0b9450d6385adc48a4cc55b44aedfc"; - }; - }; - "tough-cookie-2.2.2" = { - name = "tough-cookie"; - packageName = "tough-cookie"; - version = "2.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz"; - sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; - }; - }; - "swedish-css-properties-1.0.2" = { - name = "swedish-css-properties"; - packageName = "swedish-css-properties"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/swedish-css-properties/-/swedish-css-properties-1.0.2.tgz"; - sha1 = "afbee8cbecb82e23992e14b7b1c11c92fe99606f"; - }; - }; - "swedish-css-values-1.0.3" = { - name = "swedish-css-values"; - packageName = "swedish-css-values"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/swedish-css-values/-/swedish-css-values-1.0.3.tgz"; - sha1 = "b6f95b323f4832a8c8de1e1a90c539553cac29af"; - }; - }; - "postcss-font-helpers-3.0.0" = { - name = "postcss-font-helpers"; - packageName = "postcss-font-helpers"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-helpers/-/postcss-font-helpers-3.0.0.tgz"; - sha1 = "a82e9c06b61e291b6f5a39ce620414de7c8e9fda"; - }; - }; - "typography-0.13.3" = { - name = "typography"; - packageName = "typography"; - version = "0.13.3"; - src = fetchurl { - url = "https://registry.npmjs.org/typography/-/typography-0.13.3.tgz"; - sha1 = "38b9ea0bf4682c02421726d677ed21e5156bfd9e"; - }; - }; - "compass-vertical-rhythm-1.3.1" = { - name = "compass-vertical-rhythm"; - packageName = "compass-vertical-rhythm"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/compass-vertical-rhythm/-/compass-vertical-rhythm-1.3.1.tgz"; - sha1 = "6047ffd8b20b2dcba93698e90a34570662893488"; - }; - }; - "gray-percentage-2.0.0" = { - name = "gray-percentage"; - packageName = "gray-percentage"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/gray-percentage/-/gray-percentage-2.0.0.tgz"; - sha1 = "b72a274d1b1379104a0050b63b207dc53fe56f99"; - }; - }; - "modularscale-1.0.2" = { - name = "modularscale"; - packageName = "modularscale"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/modularscale/-/modularscale-1.0.2.tgz"; - sha1 = "4a8f13af32a5e5214fc6e2cfc529064abfd7d877"; - }; - }; - "typography-normalize-0.12.0" = { - name = "typography-normalize"; - packageName = "typography-normalize"; - version = "0.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/typography-normalize/-/typography-normalize-0.12.0.tgz"; - sha1 = "36995e85d20d7d5ef31924aa6f3e9adda3ba519f"; - }; - }; - "convert-css-length-1.0.1" = { - name = "convert-css-length"; - packageName = "convert-css-length"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/convert-css-length/-/convert-css-length-1.0.1.tgz"; - sha1 = "f3ecec664f2e873a0570e6afdd3e1ae4f92444b7"; - }; - }; - "parse-unit-1.0.1" = { - name = "parse-unit"; - packageName = "parse-unit"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-unit/-/parse-unit-1.0.1.tgz"; - sha1 = "7e1bb6d5bef3874c28e392526a2541170291eecf"; - }; - }; - "console-polyfill-0.1.2" = { - name = "console-polyfill"; - packageName = "console-polyfill"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/console-polyfill/-/console-polyfill-0.1.2.tgz"; - sha1 = "96cfed51caf78189f699572e6f18271dc37c0e30"; - }; - }; - "lodash.isnumber-3.0.3" = { - name = "lodash.isnumber"; - packageName = "lodash.isnumber"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz"; - sha1 = "3ce76810c5928d03352301ac287317f11c0b1ffc"; - }; - }; - "unicode-9.0.1" = { - name = "unicode"; - packageName = "unicode"; - version = "9.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/unicode/-/unicode-9.0.1.tgz"; - sha1 = "104706272c6464c574801be1b086f7245cf25158"; - }; - }; - "unicode-range-json-1.0.1" = { - name = "unicode-range-json"; - packageName = "unicode-range-json"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/unicode-range-json/-/unicode-range-json-1.0.1.tgz"; - sha1 = "cb6182045e82ffeeca6c64d62907ec9905745ee8"; - }; - }; - "json-last-commit-0.0.7" = { - name = "json-last-commit"; - packageName = "json-last-commit"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/json-last-commit/-/json-last-commit-0.0.7.tgz"; - sha1 = "bbb5e7f46452f3e9b76c507ac39bd2e75f42cf37"; - }; - }; - "known-css-properties-0.0.7" = { - name = "known-css-properties"; - packageName = "known-css-properties"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.0.7.tgz"; - sha1 = "9104343a2adfd8ef3b07bdee7a325e4d44ed9371"; - }; - }; - "postcss-cssnext-2.11.0" = { - name = "postcss-cssnext"; - packageName = "postcss-cssnext"; - version = "2.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-cssnext/-/postcss-cssnext-2.11.0.tgz"; - sha1 = "31e68f001e409604da703b66de14b8b8c8c9f2b1"; - }; - }; - "pleeease-filters-3.0.1" = { - name = "pleeease-filters"; - packageName = "pleeease-filters"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pleeease-filters/-/pleeease-filters-3.0.1.tgz"; - sha1 = "4dfe0e8f1046613517c64b728bc80608a7ebf22f"; - }; - }; - "postcss-apply-0.3.0" = { - name = "postcss-apply"; - packageName = "postcss-apply"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-apply/-/postcss-apply-0.3.0.tgz"; - sha1 = "a2f37c5bdfa881e4c15f4f245ec0cd96dd2e70d5"; - }; - }; - "postcss-attribute-case-insensitive-1.0.1" = { - name = "postcss-attribute-case-insensitive"; - packageName = "postcss-attribute-case-insensitive"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-1.0.1.tgz"; - sha1 = "ceb73777e106167eb233f1938c9bd9f2e697308d"; - }; - }; - "postcss-color-hsl-1.0.5" = { - name = "postcss-color-hsl"; - packageName = "postcss-color-hsl"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-hsl/-/postcss-color-hsl-1.0.5.tgz"; - sha1 = "f53bb1c348310ce307ad89e3181a864738b5e687"; - }; - }; - "postcss-color-rgb-1.1.4" = { - name = "postcss-color-rgb"; - packageName = "postcss-color-rgb"; - version = "1.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-rgb/-/postcss-color-rgb-1.1.4.tgz"; - sha1 = "f29243e22e8e8c13434474092372d4ce605be8bc"; - }; - }; - "postcss-font-family-system-ui-1.0.2" = { - name = "postcss-font-family-system-ui"; - packageName = "postcss-font-family-system-ui"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-family-system-ui/-/postcss-font-family-system-ui-1.0.2.tgz"; - sha1 = "3e1a5e3fb7e31e5e9e71439ccb0e8014556927c7"; - }; - }; - "postcss-initial-1.5.3" = { - name = "postcss-initial"; - packageName = "postcss-initial"; - version = "1.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-initial/-/postcss-initial-1.5.3.tgz"; - sha1 = "20c3e91c96822ddb1bed49508db96d56bac377d0"; - }; - }; - "postcss-replace-overflow-wrap-1.0.0" = { - name = "postcss-replace-overflow-wrap"; - packageName = "postcss-replace-overflow-wrap"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-1.0.0.tgz"; - sha1 = "f0a03b31eab9636a6936bfd210e2aef1b434a643"; - }; - }; - "install-0.4.4" = { - name = "install"; - packageName = "install"; - version = "0.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/install/-/install-0.4.4.tgz"; - sha1 = "c66b8cd0272ecd79252edc4b0b5dd56cab46435c"; - }; - }; - "npm-3.10.10" = { - name = "npm"; - packageName = "npm"; - version = "3.10.10"; - src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-3.10.10.tgz"; - sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e"; - }; - }; - "abbrev-1.0.9" = { - name = "abbrev"; - packageName = "abbrev"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz"; - sha1 = "91b4792588a7738c25f35dd6f63752a2f8776135"; - }; - }; - "ansicolors-0.3.2" = { - name = "ansicolors"; - packageName = "ansicolors"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"; - sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"; - }; - }; - "ansistyles-0.1.3" = { - name = "ansistyles"; - packageName = "ansistyles"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; - sha1 = "5de60415bda071bb37127854c864f41b23254539"; + url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; + sha1 = "5de60415bda071bb37127854c864f41b23254539"; }; }; "aproba-1.0.4" = { @@ -20968,15 +20572,6 @@ let sha1 = "5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8"; }; }; - "path-is-inside-1.0.2" = { - name = "path-is-inside"; - packageName = "path-is-inside"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; - sha1 = "365417dede44430d1c11af61027facf074bdfc53"; - }; - }; "read-1.0.7" = { name = "read"; packageName = "read"; @@ -21004,13 +20599,13 @@ let sha1 = "ff9b8b67f187d1e4c29b9feb31f6b223acd19067"; }; }; - "read-package-json-2.0.10" = { + "read-package-json-2.0.12" = { name = "read-package-json"; packageName = "read-package-json"; - version = "2.0.10"; + version = "2.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.10.tgz"; - sha1 = "dc0229f6dde6b4b705b39e25b2d970ebe95685ae"; + url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.12.tgz"; + sha1 = "68ea45f98b3741cb6e10ae3bbd42a605026a6951"; }; }; "read-package-tree-5.1.6" = { @@ -21220,15 +20815,6 @@ let sha1 = "ec56a749ee103e4e08c790b9c353df16055b97f9"; }; }; - "mute-stream-0.0.7" = { - name = "mute-stream"; - packageName = "mute-stream"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz"; - sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; - }; - }; "util-extend-1.0.3" = { name = "util-extend"; packageName = "util-extend"; @@ -21238,22 +20824,13 @@ let sha1 = "a7c216d267545169637b3b6edc6ca9119e2ff93f"; }; }; - "json-parse-helpfulerror-1.0.3" = { - name = "json-parse-helpfulerror"; - packageName = "json-parse-helpfulerror"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz"; - sha1 = "13f14ce02eed4e981297b64eb9e3b932e2dd13dc"; - }; - }; - "jju-1.3.0" = { - name = "jju"; - packageName = "jju"; - version = "1.3.0"; + "json-parse-better-errors-1.0.1" = { + name = "json-parse-better-errors"; + packageName = "json-parse-better-errors"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz"; - sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa"; + url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz"; + sha1 = "50183cd1b2d25275de069e9e71b467ac9eab973a"; }; }; "buffer-shims-1.0.0" = { @@ -21301,13 +20878,13 @@ let sha1 = "355219cd6cf18dbe7c01cc7fd2dce765cfdc549a"; }; }; - "postcss-values-parser-1.2.2" = { + "postcss-values-parser-1.3.1" = { name = "postcss-values-parser"; packageName = "postcss-values-parser"; - version = "1.2.2"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-1.2.2.tgz"; - sha1 = "f5eebdd7f6fe310e2e448b9cc03bfed8726ca271"; + url = "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-1.3.1.tgz"; + sha1 = "2a6ceb39cecbbacd1d060f3b16f4c52dd6720c96"; }; }; "css-properties-values-1.0.0" = { @@ -21337,22 +20914,22 @@ let sha1 = "5ea98bf787ba3cacf4df4609743f80a833b1d0e7"; }; }; - "postcss-mixins-6.0.1" = { + "postcss-mixins-6.2.0" = { name = "postcss-mixins"; packageName = "postcss-mixins"; - version = "6.0.1"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-6.0.1.tgz"; - sha1 = "f5c9726259a6103733b43daa6a8b67dd0ed7aa47"; + url = "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-6.2.0.tgz"; + sha1 = "fa9d2c2166b2ae7745956c727ab9dd2de4b96a40"; }; }; - "postcss-nested-2.0.4" = { + "postcss-nested-2.1.2" = { name = "postcss-nested"; packageName = "postcss-nested"; - version = "2.0.4"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-2.0.4.tgz"; - sha1 = "f2becb7c67b9a94fc43b59e4ef194c13d4349027"; + url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-2.1.2.tgz"; + sha1 = "04057281f9631fef684857fb0119bae04ede03c6"; }; }; "postcss-partial-import-4.1.0" = { @@ -21400,13 +20977,13 @@ let sha1 = "7e5dd327747078d877286fbb624b1e8f4d2b396b"; }; }; - "chroma-js-1.3.4" = { + "chroma-js-1.3.5" = { name = "chroma-js"; packageName = "chroma-js"; - version = "1.3.4"; + version = "1.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/chroma-js/-/chroma-js-1.3.4.tgz"; - sha1 = "93a7c19f287960285cc3fdebb205b8ea1a0f04f9"; + url = "https://registry.npmjs.org/chroma-js/-/chroma-js-1.3.5.tgz"; + sha1 = "bdab4a55b688bd79ce71a2901a3e1f897d7a2b7c"; }; }; "fs-promise-0.5.0" = { @@ -21427,6 +21004,15 @@ let sha1 = "da03b62d15593d9a9e9af12ed1324ad1a19fa2b7"; }; }; + "postcss-image-set-polyfill-0.4.4" = { + name = "postcss-image-set-polyfill"; + packageName = "postcss-image-set-polyfill"; + version = "0.4.4"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-image-set-polyfill/-/postcss-image-set-polyfill-0.4.4.tgz"; + sha1 = "5acdebd25aeb237dde0791c524b68947400995f8"; + }; + }; "rucksack-css-0.9.1" = { name = "rucksack-css"; packageName = "rucksack-css"; @@ -21463,6 +21049,15 @@ let sha1 = "afec6a0e01d25dac36a54adb89ffd4bfe1d219af"; }; }; + "postcss-color-rgba-fallback-2.2.0" = { + name = "postcss-color-rgba-fallback"; + packageName = "postcss-color-rgba-fallback"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-color-rgba-fallback/-/postcss-color-rgba-fallback-2.2.0.tgz"; + sha1 = "6d29491be5990a93173d47e7c76f5810b09402ba"; + }; + }; "postcss-easings-0.3.0" = { name = "postcss-easings"; packageName = "postcss-easings"; @@ -21535,6 +21130,33 @@ let sha1 = "274133bc046359e542a58bbc621847d040fd10e6"; }; }; + "postcss-vmin-2.0.0" = { + name = "postcss-vmin"; + packageName = "postcss-vmin"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-vmin/-/postcss-vmin-2.0.0.tgz"; + sha1 = "5327c21191371256868fd7a739917f1474d57fee"; + }; + }; + "postcss-opacity-3.0.0" = { + name = "postcss-opacity"; + packageName = "postcss-opacity"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-opacity/-/postcss-opacity-3.0.0.tgz"; + sha1 = "7879bcc734405bf74aa6c81c391762052fc55b29"; + }; + }; + "rgb-hex-1.0.0" = { + name = "rgb-hex"; + packageName = "rgb-hex"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/rgb-hex/-/rgb-hex-1.0.0.tgz"; + sha1 = "bfaf8cd9cd9164b5a26d71eb4f15a0965324b3c1"; + }; + }; "postcss-sorting-2.1.0" = { name = "postcss-sorting"; packageName = "postcss-sorting"; @@ -21562,13 +21184,13 @@ let sha1 = "db7dfca0541b5062010c7e2e21e745791fc088ac"; }; }; - "colorguard-1.2.0" = { + "colorguard-1.2.1" = { name = "colorguard"; packageName = "colorguard"; - version = "1.2.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/colorguard/-/colorguard-1.2.0.tgz"; - sha1 = "f3facaf5caaeba4ef54653d9fb25bb73177c0d84"; + url = "https://registry.npmjs.org/colorguard/-/colorguard-1.2.1.tgz"; + sha1 = "249647c9702481d9143384fc9813662311afde98"; }; }; "doiuse-2.6.0" = { @@ -21616,15 +21238,6 @@ let sha1 = "10b30a386085f43cede353cc8fa7cb0deeea668b"; }; }; - "ignore-3.3.3" = { - name = "ignore"; - packageName = "ignore"; - version = "3.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ignore/-/ignore-3.3.3.tgz"; - sha1 = "432352e57accd87ab3110e82d3fea0e47812156d"; - }; - }; "known-css-properties-0.2.0" = { name = "known-css-properties"; packageName = "known-css-properties"; @@ -21679,13 +21292,13 @@ let sha1 = "58f71cee3bd519b59d4b2a843b6c7de64ac04764"; }; }; - "table-4.0.1" = { + "table-4.0.2" = { name = "table"; packageName = "table"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/table/-/table-4.0.1.tgz"; - sha1 = "a8116c133fac2c61f4a420ab6cdf5c4d61f0e435"; + url = "https://registry.npmjs.org/table/-/table-4.0.2.tgz"; + sha1 = "a33447375391e766ad34d3486e6e2aedc84d2e36"; }; }; "css-rule-stream-1.1.0" = { @@ -21760,22 +21373,22 @@ let sha1 = "02ddac9adc03ec0bb78c1282ec079ca6e85ae900"; }; }; - "flat-cache-1.2.2" = { + "flat-cache-1.3.0" = { name = "flat-cache"; packageName = "flat-cache"; - version = "1.2.2"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.2.tgz"; - sha1 = "fa86714e72c21db88601761ecf2f555d1abc6b96"; + url = "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz"; + sha1 = "d3030b32b38154f4e3b7e9c709f490f7ef97c481"; }; }; - "circular-json-0.3.1" = { + "circular-json-0.3.3" = { name = "circular-json"; packageName = "circular-json"; - version = "0.3.1"; + version = "0.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.1.tgz"; - sha1 = "be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"; + url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz"; + sha1 = "815c99ea84f6809529d2f45791bdf82711352d66"; }; }; "del-2.2.2" = { @@ -21796,6 +21409,15 @@ let sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757"; }; }; + "globby-5.0.0" = { + name = "globby"; + packageName = "globby"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz"; + sha1 = "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"; + }; + }; "is-path-cwd-1.0.0" = { name = "is-path-cwd"; packageName = "is-path-cwd"; @@ -21814,22 +21436,22 @@ let sha1 = "6477582b8214d602346094567003be8a9eac04dc"; }; }; - "is-path-inside-1.0.0" = { - name = "is-path-inside"; - packageName = "is-path-inside"; - version = "1.0.0"; + "ajv-keywords-2.1.1" = { + name = "ajv-keywords"; + packageName = "ajv-keywords"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz"; - sha1 = "fc06e5a1683fbda13de667aff717bbc10a48f37f"; + url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz"; + sha1 = "617997fc5f60576894c435f940d819e135b80762"; }; }; - "ajv-keywords-1.5.1" = { - name = "ajv-keywords"; - packageName = "ajv-keywords"; - version = "1.5.1"; + "postcss-normalize-4.0.0" = { + name = "postcss-normalize"; + packageName = "postcss-normalize"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz"; - sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c"; + url = "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-4.0.0.tgz"; + sha1 = "12d05a6005661a7282034347b5d12ccf083bd119"; }; }; "angular-expressions-0.3.0" = { @@ -21877,6 +21499,24 @@ let sha1 = "4c4fb5f6a5854fc12bbe2bebf3933b4ed9d4413e"; }; }; + "postcss-color-function-3.0.0" = { + name = "postcss-color-function"; + packageName = "postcss-color-function"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-color-function/-/postcss-color-function-3.0.0.tgz"; + sha1 = "3c6fb60c6ff2240e541d49f2926edcad8700f3a6"; + }; + }; + "postcss-import-9.1.0" = { + name = "postcss-import"; + packageName = "postcss-import"; + version = "9.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-import/-/postcss-import-9.1.0.tgz"; + sha1 = "95fe9876a1e79af49fbdc3589f01fe5aa7cc1e80"; + }; + }; }; in { @@ -21890,34 +21530,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -21936,376 +21563,196 @@ in sha1 = "0d7fc5284b0fa10b1b52ffb46f50c1c4d7c83841"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."async-0.9.2" + sources."lodash-3.10.1" + sources."mkdirp-0.5.1" + sources."q-1.5.1" + (sources."spritesmith-1.5.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" + sources."async-0.2.10" + ]; + }) + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."minimist-0.0.8" + sources."layout-2.2.0" + sources."pixelsmith-1.3.4" + sources."semver-5.0.3" + sources."bin-pack-1.0.2" + sources."concat-stream-1.4.10" + sources."get-pixels-3.2.3" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.2.1" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + sources."inherits-2.0.3" + sources."typedarray-0.0.6" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."pngjs2-1.2.0" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."mime-types-2.1.17" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."is-buffer-1.1.6" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { + dependencies = [ + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" ]; }) + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) - sources."async-0.9.2" - sources."lodash-3.10.1" - (sources."mkdirp-0.5.1" // { + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + sources."duplexer2-0.0.2" + (sources."escodegen-1.3.3" // { dependencies = [ - sources."minimist-0.0.8" + sources."esprima-1.1.1" + sources."source-map-0.1.43" ]; }) - sources."q-1.5.0" - (sources."spritesmith-1.5.0" // { + sources."falafel-2.1.0" + sources."has-1.0.1" + sources."object-inspect-0.4.0" + sources."quote-stream-0.0.0" + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { dependencies = [ - sources."async-0.2.10" - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-1.3.4" // { - dependencies = [ - sources."async-0.9.2" - (sources."concat-stream-1.4.10" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - ]; - }) - ]; - }) - (sources."get-pixels-3.2.3" // { - dependencies = [ - sources."pngjs2-1.2.0" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.2.1" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - sources."pngjs2-1.2.0" - sources."through-2.3.8" - ]; - }) - ]; - }) - sources."semver-5.0.3" + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + (sources."through2-0.4.2" // { + dependencies = [ + sources."readable-stream-1.0.34" + ]; + }) + sources."process-nextick-args-1.0.7" + sources."util-deprecate-1.0.2" + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + (sources."xtend-2.1.2" // { + dependencies = [ + sources."object-keys-0.4.0" + ]; + }) + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" ]; }) + sources."gif-encoder-0.4.3" ]; buildInputs = globalBuildInputs; meta = { @@ -22318,45 +21765,28 @@ in autoprefixer = nodeEnv.buildNodePackage { name = "autoprefixer"; packageName = "autoprefixer"; - version = "7.1.2"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.2.tgz"; - sha1 = "fbeaf07d48fd878e0682bf7cbeeade728adb2b18"; + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.2.3.tgz"; + sha1 = "c2841e38b7940c2d0a9bbffd72c75f33637854f8"; }; dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-lite-1.0.30000701" + sources."browserslist-2.10.0" + sources."caniuse-lite-1.0.30000784" sources."normalize-range-0.1.2" sources."num2fraction-1.2.2" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -22369,65 +21799,40 @@ in colorguard = nodeEnv.buildNodePackage { name = "colorguard"; packageName = "colorguard"; - version = "1.2.0"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/colorguard/-/colorguard-1.2.0.tgz"; - sha1 = "f3facaf5caaeba4ef54653d9fb25bb73177c0d84"; + url = "https://registry.npmjs.org/colorguard/-/colorguard-1.2.1.tgz"; + sha1 = "249647c9702481d9143384fc9813662311afde98"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."chalk-1.1.3" sources."color-diff-0.1.7" sources."log-symbols-1.0.2" sources."object-assign-4.1.1" - (sources."pipetteur-2.0.3" // { - dependencies = [ - sources."onecolor-3.0.4" - (sources."synesthesia-1.0.1" // { - dependencies = [ - sources."css-color-names-0.0.3" - ]; - }) - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-reporter-1.4.1" // { + sources."pipetteur-2.0.3" + sources."plur-2.1.2" + (sources."postcss-5.2.18" // { dependencies = [ - sources."lodash-4.17.4" + sources."supports-color-3.2.3" ]; }) + sources."postcss-reporter-1.4.1" sources."text-table-0.2.0" sources."yargs-1.3.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."onecolor-3.0.5" + sources."synesthesia-1.0.1" + sources."css-color-names-0.0.3" + sources."irregular-plurals-1.4.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."lodash-4.17.4" ]; buildInputs = globalBuildInputs; meta = { @@ -22446,34 +21851,21 @@ in sha1 = "68dd3c121dc2d6731408a4b38e68e058764ac6ca"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -22486,49 +21878,27 @@ in css-declaration-sorter = nodeEnv.buildNodePackage { name = "css-declaration-sorter"; packageName = "css-declaration-sorter"; - version = "2.0.1"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-2.0.1.tgz"; - sha1 = "5d5455d773ba9e6a31de81f58a2021f7a0e11093"; + url = "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-3.0.0.tgz"; + sha1 = "3977fdd92cc7235fc41b4ee375fba976e209e0cf"; }; dependencies = [ - sources."argh-0.1.4" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."read-file-stdin-0.2.1" // { - dependencies = [ - sources."gather-stream-1.0.0" - ]; - }) + sources."postcss-6.0.14" sources."timsort-0.3.0" - sources."write-file-stdout-0.0.2" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { description = "Sorts CSS declarations fast and automatically in a certain order."; - homepage = https://github.com/Siilwyn/css-declaration-sorter; + homepage = "https://github.com/Siilwyn/css-declaration-sorter#readme"; license = "MIT"; }; production = true; @@ -22543,30 +21913,15 @@ in }; dependencies = [ sources."minimist-1.2.0" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -22586,17 +21941,11 @@ in }; dependencies = [ sources."minimist-1.2.0" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -22614,34 +21963,21 @@ in sha1 = "12d4bc96200bc4a43d4f3d1a47b1a7908b46c912"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -22660,70 +21996,42 @@ in sha1 = "61d8a135439890fff34d499fdb625fdb719875c5"; }; dependencies = [ - (sources."css-color-list-0.0.1" // { - dependencies = [ - sources."css-color-names-0.0.1" - ]; - }) - (sources."editorconfig-0.13.2" // { - dependencies = [ - sources."bluebird-3.5.0" - sources."commander-2.11.0" - (sources."lru-cache-3.2.0" // { - dependencies = [ - sources."pseudomap-1.0.2" - ]; - }) - sources."sigmund-1.0.1" - ]; - }) + sources."css-color-list-0.0.1" + sources."editorconfig-0.13.3" sources."minimist-1.2.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-scss-0.1.9" - (sources."recursive-readdir-1.3.0" // { + sources."recursive-readdir-1.3.0" + sources."repeat-string-1.6.1" + sources."stdin-0.0.1" + sources."tmp-0.0.26" + sources."css-color-names-0.0.1" + sources."bluebird-3.5.1" + sources."commander-2.12.2" + sources."lru-cache-3.2.0" + sources."semver-5.4.1" + sources."sigmund-1.0.1" + sources."pseudomap-1.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."minimatch-0.3.0" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."repeat-string-1.6.1" - sources."stdin-0.0.1" - (sources."tmp-0.0.26" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + (sources."minimatch-0.3.0" // { dependencies = [ - sources."os-tmpdir-1.0.2" + sources."lru-cache-2.7.3" ]; }) + sources."os-tmpdir-1.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -22741,255 +22049,106 @@ in sha1 = "4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"; }; dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - ]; - }) + sources."autoprefixer-6.7.7" sources."decamelize-1.2.0" sources."defined-1.0.0" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) + sources."has-1.0.1" sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-calc-5.3.1" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-colormin-2.2.2" // { - dependencies = [ - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - ]; - }) - ]; - }) + sources."postcss-5.2.18" + sources."postcss-calc-5.3.1" + sources."postcss-colormin-2.2.2" sources."postcss-convert-values-2.6.1" sources."postcss-discard-comments-2.0.4" sources."postcss-discard-duplicates-2.1.0" sources."postcss-discard-empty-2.1.0" sources."postcss-discard-overridden-0.1.1" - (sources."postcss-discard-unused-2.2.3" // { - dependencies = [ - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-filter-plugins-2.0.2" // { - dependencies = [ - (sources."uniqid-4.1.1" // { - dependencies = [ - sources."macaddress-0.2.8" - ]; - }) - ]; - }) + sources."postcss-discard-unused-2.2.3" + sources."postcss-filter-plugins-2.0.2" sources."postcss-merge-idents-2.1.7" sources."postcss-merge-longhand-2.0.2" - (sources."postcss-merge-rules-2.1.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-1.6.1" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - sources."vendors-1.0.1" - ]; - }) + sources."postcss-merge-rules-2.1.2" sources."postcss-minify-font-values-1.0.5" sources."postcss-minify-gradients-1.0.5" - (sources."postcss-minify-params-1.2.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-minify-selectors-2.1.1" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) + sources."postcss-minify-params-1.2.2" + sources."postcss-minify-selectors-2.1.1" sources."postcss-normalize-charset-1.1.1" - (sources."postcss-normalize-url-3.0.8" // { - dependencies = [ - sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - ]; - }) + sources."postcss-normalize-url-3.0.8" sources."postcss-ordered-values-2.2.3" sources."postcss-reduce-idents-2.4.0" sources."postcss-reduce-initial-1.0.1" sources."postcss-reduce-transforms-1.0.4" - (sources."postcss-svgo-2.1.6" // { - dependencies = [ - (sources."is-svg-2.1.0" // { - dependencies = [ - sources."html-comment-regex-1.1.1" - ]; - }) - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-unique-selectors-2.0.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) + sources."postcss-svgo-2.1.6" + sources."postcss-unique-selectors-2.0.2" sources."postcss-value-parser-3.3.0" - (sources."postcss-zindex-2.2.0" // { + sources."postcss-zindex-2.2.0" + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."function-bind-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."uniqs-2.0.0" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."colormin-1.1.2" + sources."color-0.11.4" + sources."css-color-names-0.0.4" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."uniqs-2.0.0" + sources."uniqid-4.1.1" + sources."macaddress-0.2.8" + sources."caniuse-api-1.6.1" + sources."postcss-selector-parser-2.2.3" + sources."vendors-1.0.1" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."alphanum-sort-1.0.2" + sources."is-absolute-url-2.1.0" + sources."normalize-url-1.9.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + sources."is-svg-2.1.0" + sources."svgo-0.7.2" + sources."html-comment-regex-1.1.1" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."js-yaml-3.7.0" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."mkdirp-0.5.1" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."argparse-1.0.9" + sources."esprima-2.7.3" + sources."sprintf-js-1.0.3" + sources."minimist-0.0.8" + sources."clap-1.2.3" ]; buildInputs = globalBuildInputs; meta = { @@ -23008,261 +22167,103 @@ in sha1 = "92d2c0f79a76334cbd8b1777f53f880b87db7e04"; }; dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - ]; - }) + sources."autoprefixer-6.7.7" sources."decamelize-1.2.0" sources."defined-1.0.0" sources."indexes-of-1.0.1" sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-calc-5.3.1" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-colormin-2.2.2" // { - dependencies = [ - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - ]; - }) - ]; - }) + sources."postcss-5.2.18" + sources."postcss-calc-5.3.1" + sources."postcss-colormin-2.2.2" sources."postcss-convert-values-2.6.1" sources."postcss-discard-comments-2.0.4" sources."postcss-discard-duplicates-2.1.0" sources."postcss-discard-empty-2.1.0" sources."postcss-discard-overridden-0.1.1" - (sources."postcss-discard-unused-2.2.3" // { - dependencies = [ - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-filter-plugins-2.0.2" // { - dependencies = [ - (sources."uniqid-4.1.1" // { - dependencies = [ - sources."macaddress-0.2.8" - ]; - }) - ]; - }) - (sources."postcss-merge-idents-2.1.7" // { - dependencies = [ - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - ]; - }) + sources."postcss-discard-unused-2.2.3" + sources."postcss-filter-plugins-2.0.2" + sources."postcss-merge-idents-2.1.7" sources."postcss-merge-longhand-2.0.2" - (sources."postcss-merge-rules-2.0.11" // { - dependencies = [ - sources."vendors-1.0.1" - ]; - }) + sources."postcss-merge-rules-2.0.11" sources."postcss-minify-font-values-1.0.5" sources."postcss-minify-gradients-1.0.5" - (sources."postcss-minify-params-1.2.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-minify-selectors-2.1.1" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."uniq-1.0.1" - ]; - }) - ]; - }) + sources."postcss-minify-params-1.2.2" + sources."postcss-minify-selectors-2.1.1" sources."postcss-normalize-charset-1.1.1" - (sources."postcss-normalize-url-paras20xx-3.0.7-patch2" // { - dependencies = [ - sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - ]; - }) + sources."postcss-normalize-url-paras20xx-3.0.7-patch2" sources."postcss-ordered-values-2.2.3" sources."postcss-reduce-idents-2.4.0" sources."postcss-reduce-initial-1.0.1" - (sources."postcss-reduce-transforms-1.0.4" // { - dependencies = [ - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - ]; - }) - (sources."postcss-svgo-2.1.6" // { - dependencies = [ - (sources."is-svg-2.1.0" // { - dependencies = [ - sources."html-comment-regex-1.1.1" - ]; - }) - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-unique-selectors-2.0.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) + sources."postcss-reduce-transforms-1.0.4" + sources."postcss-svgo-2.1.6" + sources."postcss-unique-selectors-2.0.2" sources."postcss-value-parser-3.3.0" - (sources."postcss-zindex-2.2.0" // { + sources."postcss-zindex-2.2.0" + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."uniqs-2.0.0" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."colormin-1.1.2" + sources."color-0.11.4" + sources."css-color-names-0.0.4" + sources."has-1.0.1" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."function-bind-1.1.1" + sources."uniqs-2.0.0" + sources."uniqid-4.1.1" + sources."macaddress-0.2.8" + sources."vendors-1.0.1" + sources."alphanum-sort-1.0.2" + sources."postcss-selector-parser-2.2.3" + sources."flatten-1.0.2" + sources."uniq-1.0.1" + sources."is-absolute-url-2.1.0" + sources."normalize-url-1.9.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + sources."is-svg-2.1.0" + sources."svgo-0.7.2" + sources."html-comment-regex-1.1.1" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."js-yaml-3.7.0" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."mkdirp-0.5.1" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."argparse-1.0.9" + sources."esprima-2.7.3" + sources."sprintf-js-1.0.3" + sources."minimist-0.0.8" + sources."clap-1.2.3" ]; buildInputs = globalBuildInputs; meta = { @@ -23281,938 +22282,416 @@ in sha1 = "c1ec22a95c20ea0b7441f3af2f664adc6721e181"; }; dependencies = [ - (sources."autoprefixer-core-5.2.1" // { + sources."autoprefixer-core-5.2.1" + (sources."caniuse-api-1.6.1" // { dependencies = [ - sources."browserslist-0.4.0" - sources."num2fraction-1.2.2" - sources."caniuse-db-1.0.30000701" + sources."browserslist-1.7.7" ]; }) - (sources."caniuse-api-1.6.1" // { + sources."chalk-1.1.3" + sources."chokidar-1.7.0" + sources."commander-2.12.2" + (sources."cssnano-2.6.1" // { dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" + sources."balanced-match-0.2.1" ]; }) - (sources."chalk-1.1.3" // { + sources."exit-0.1.2" + (sources."mkdirp-0.5.1" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."minimist-0.0.8" ]; }) - (sources."chokidar-1.7.0" // { + (sources."pixrem-1.3.1" // { dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) + sources."browserslist-0.5.0" ]; }) - sources."commander-2.11.0" - (sources."cssnano-2.6.1" // { + sources."pleeease-filters-1.0.1" + sources."postcss-4.1.16" + sources."postcss-calc-4.1.0" + (sources."postcss-color-function-1.3.2" // { dependencies = [ - sources."balanced-match-0.2.1" - sources."css-list-0.1.3" - sources."decamelize-1.2.0" - sources."defined-1.0.0" - sources."indexes-of-1.0.1" - sources."minimist-1.2.0" - (sources."postcss-colormin-1.2.7" // { - dependencies = [ - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - ]; - }) - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-convert-values-1.3.1" // { - dependencies = [ - sources."postcss-value-parser-1.4.2" - ]; - }) - (sources."postcss-discard-comments-1.2.1" // { - dependencies = [ - sources."node-balanced-0.0.14" - ]; - }) - sources."postcss-discard-duplicates-1.2.1" - sources."postcss-discard-empty-1.1.2" - (sources."postcss-discard-unused-1.0.3" // { - dependencies = [ - sources."flatten-0.0.1" - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-filter-plugins-1.0.1" // { - dependencies = [ - sources."uniqid-1.0.0" - ]; - }) - (sources."postcss-font-family-1.2.1" // { - dependencies = [ - sources."object-assign-3.0.0" - sources."uniqs-2.0.0" - ]; - }) - sources."postcss-merge-idents-1.0.2" - sources."postcss-merge-longhand-1.0.2" - sources."postcss-merge-rules-1.3.6" - sources."postcss-minify-font-weight-1.0.1" - (sources."postcss-minify-selectors-1.5.0" // { - dependencies = [ - sources."javascript-natural-sort-0.7.1" - sources."normalize-selector-0.2.0" - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."uniq-1.0.1" - ]; - }) - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-normalize-url-2.1.3" // { - dependencies = [ - sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-value-parser-1.4.2" - ]; - }) - (sources."postcss-ordered-values-1.1.1" // { - dependencies = [ - sources."postcss-value-parser-1.4.2" - ]; - }) - (sources."postcss-reduce-idents-1.0.3" // { - dependencies = [ - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-single-charset-0.3.0" // { - dependencies = [ - (sources."fs-extra-0.14.0" // { - dependencies = [ - sources."ncp-1.0.1" - (sources."jsonfile-2.4.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-unique-selectors-1.0.1" // { - dependencies = [ - sources."javascript-natural-sort-0.7.1" - sources."uniqs-2.0.0" - ]; - }) - sources."postcss-zindex-1.1.3" + sources."balanced-match-0.1.0" + sources."postcss-message-helpers-1.1.1" ]; }) - sources."exit-0.1.2" - (sources."mkdirp-0.5.1" // { + (sources."postcss-color-gray-2.0.0" // { dependencies = [ - sources."minimist-0.0.8" + sources."color-0.7.3" + sources."color-string-0.2.4" + sources."color-name-1.0.1" ]; }) - (sources."pixrem-1.3.1" // { + sources."postcss-color-hex-alpha-1.3.0" + sources."postcss-color-hwb-1.2.0" + (sources."postcss-color-rebeccapurple-1.2.0" // { dependencies = [ - (sources."browserslist-0.5.0" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."color-0.9.0" ]; }) - (sources."pleeease-filters-1.0.1" // { + sources."postcss-color-rgba-fallback-1.3.1" + sources."postcss-custom-media-4.1.0" + (sources."postcss-custom-properties-4.2.0" // { dependencies = [ - sources."onecolor-2.4.2" + sources."balanced-match-0.1.0" ]; }) - (sources."postcss-4.1.16" // { + (sources."postcss-custom-selectors-2.3.0" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."balanced-match-0.2.1" ]; }) - (sources."postcss-calc-4.1.0" // { + sources."postcss-font-variant-1.2.0" + (sources."postcss-import-6.2.0" // { dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."clone-0.1.19" + sources."glob-5.0.15" + sources."object-assign-3.0.0" ]; }) - (sources."postcss-color-function-1.3.2" // { + sources."postcss-media-minmax-1.2.0" + sources."postcss-messages-0.2.2" + sources."postcss-pseudo-class-any-link-0.2.1" + sources."postcss-pseudoelements-2.2.0" + sources."postcss-reporter-0.1.0" + (sources."postcss-selector-matches-1.2.1" // { dependencies = [ - sources."balanced-match-0.1.0" - (sources."css-color-function-1.3.0" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - sources."postcss-message-helpers-1.1.1" + sources."balanced-match-0.2.1" ]; }) - (sources."postcss-color-gray-2.0.0" // { + (sources."postcss-selector-not-1.2.1" // { dependencies = [ - (sources."color-0.7.3" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.2.4" // { - dependencies = [ - sources."color-name-1.0.1" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."balanced-match-0.2.1" ]; }) - (sources."postcss-color-hex-alpha-1.3.0" // { + sources."postcss-url-4.0.1" + sources."read-file-stdin-0.2.1" + (sources."to-slug-case-0.1.2" // { dependencies = [ - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" + sources."to-space-case-0.1.2" ]; }) - (sources."postcss-color-hwb-1.2.0" // { + (sources."to-space-case-0.1.3" // { dependencies = [ - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."to-no-case-0.1.2" ]; }) - (sources."postcss-color-rebeccapurple-1.2.0" // { + sources."write-file-stdout-0.0.2" + sources."browserslist-0.4.0" + sources."num2fraction-1.2.2" + sources."caniuse-db-1.0.30000784" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."path-is-absolute-1.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."graceful-fs-4.1.11" + sources."minimatch-3.0.4" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + sources."rc-1.2.2" + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."semver-5.4.1" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + sources."tar-pack-3.4.1" + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + sources."signal-exit-3.0.2" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."minimist-1.2.0" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - (sources."color-0.9.0" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) + sources."assert-plus-1.0.0" ]; }) - (sources."postcss-color-rgba-fallback-1.3.1" // { + (sources."sshpk-1.13.1" // { dependencies = [ - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."postcss-custom-media-4.1.0" - (sources."postcss-custom-properties-4.2.0" // { + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { dependencies = [ - sources."balanced-match-0.1.0" + sources."assert-plus-1.0.0" ]; }) - (sources."postcss-custom-selectors-2.3.0" // { + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { dependencies = [ - sources."balanced-match-0.2.1" + sources."assert-plus-1.0.0" ]; }) - sources."postcss-font-variant-1.2.0" - (sources."postcss-import-6.2.0" // { + (sources."getpass-0.1.7" // { dependencies = [ - sources."clone-0.1.19" - sources."es6-promise-2.3.0" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-3.0.0" - sources."postcss-message-helpers-2.0.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."postcss-media-minmax-1.2.0" - sources."postcss-messages-0.2.2" - (sources."postcss-pseudo-class-any-link-0.2.1" // { + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."debug-2.6.9" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."ms-2.0.0" + sources."css-list-0.1.3" + sources."decamelize-1.2.0" + sources."defined-1.0.0" + sources."indexes-of-1.0.1" + sources."postcss-colormin-1.2.7" + sources."postcss-convert-values-1.3.1" + sources."postcss-discard-comments-1.2.1" + sources."postcss-discard-duplicates-1.2.1" + sources."postcss-discard-empty-1.1.2" + sources."postcss-discard-unused-1.0.3" + sources."postcss-filter-plugins-1.0.1" + (sources."postcss-font-family-1.2.1" // { dependencies = [ - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."object-assign-3.0.0" ]; }) - sources."postcss-pseudoelements-2.2.0" - (sources."postcss-reporter-0.1.0" // { + sources."postcss-merge-idents-1.0.2" + sources."postcss-merge-longhand-1.0.2" + sources."postcss-merge-rules-1.3.6" + sources."postcss-minify-font-weight-1.0.1" + sources."postcss-minify-selectors-1.5.0" + sources."postcss-normalize-url-2.1.3" + sources."postcss-ordered-values-1.1.1" + sources."postcss-reduce-idents-1.0.3" + sources."postcss-single-charset-0.3.0" + sources."postcss-unique-selectors-1.0.1" + sources."postcss-zindex-1.1.3" + sources."color-0.10.1" + (sources."colormin-1.1.2" // { dependencies = [ - (sources."lodash.difference-3.2.2" // { - dependencies = [ - (sources."lodash._basedifference-3.0.3" // { - dependencies = [ - sources."lodash._baseindexof-3.1.0" - sources."lodash._cacheindexof-3.0.2" - (sources."lodash._createcache-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - ]; - }) - ]; - }) - (sources."lodash._baseflatten-3.1.4" // { - dependencies = [ - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - ]; - }) + sources."color-0.11.4" + sources."color-convert-1.9.1" ]; }) - (sources."postcss-selector-matches-1.2.1" // { + (sources."reduce-function-call-1.0.2" // { dependencies = [ - sources."balanced-match-0.2.1" + sources."balanced-match-0.4.2" ]; }) - (sources."postcss-selector-not-1.2.1" // { + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."css-color-names-0.0.4" + sources."has-1.0.1" + sources."clone-1.0.3" + sources."function-bind-1.1.1" + sources."postcss-value-parser-1.4.2" + sources."node-balanced-0.0.14" + sources."flatten-0.0.1" + sources."uniqs-2.0.0" + sources."uniqid-1.0.0" + sources."javascript-natural-sort-0.7.1" + sources."normalize-selector-0.2.0" + (sources."postcss-selector-parser-1.3.3" // { dependencies = [ - sources."balanced-match-0.2.1" + sources."flatten-1.0.2" ]; }) - (sources."postcss-url-4.0.1" // { + sources."uniq-1.0.1" + sources."is-absolute-url-2.1.0" + sources."normalize-url-1.9.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + sources."fs-extra-0.14.0" + sources."ncp-1.0.1" + sources."jsonfile-2.4.0" + (sources."reduce-css-calc-1.3.0" // { dependencies = [ - (sources."directory-encoder-0.6.1" // { - dependencies = [ - (sources."fs-extra-0.8.1" // { - dependencies = [ - sources."ncp-0.4.2" - sources."mkdirp-0.3.5" - sources."jsonfile-1.1.1" - sources."rimraf-2.2.8" - ]; - }) - (sources."handlebars-1.1.2" // { - dependencies = [ - (sources."optimist-0.3.7" // { - dependencies = [ - sources."wordwrap-0.0.3" - ]; - }) - (sources."uglify-js-2.3.6" // { - dependencies = [ - sources."async-0.2.10" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-2.4.0" - (sources."img-stats-0.4.2" // { - dependencies = [ - sources."xmldom-0.1.16" - ]; - }) - ]; - }) - sources."js-base64-2.1.9" - sources."mime-1.3.6" - sources."path-is-absolute-1.0.1" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."balanced-match-0.4.2" ]; }) - (sources."read-file-stdin-0.2.1" // { + sources."math-expression-evaluator-1.2.17" + sources."onecolor-2.4.2" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."postcss-message-helpers-2.0.0" + (sources."css-color-function-1.3.3" // { dependencies = [ - sources."gather-stream-1.0.0" + sources."balanced-match-0.1.0" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."color-convert-1.9.1" ]; }) - (sources."to-slug-case-0.1.2" // { + sources."rgb-0.1.0" + sources."resolve-1.5.0" + sources."path-parse-1.0.5" + sources."lodash.difference-3.2.2" + sources."lodash._basedifference-3.0.3" + sources."lodash._baseflatten-3.1.4" + sources."lodash.restparam-3.6.1" + sources."lodash._baseindexof-3.1.0" + sources."lodash._cacheindexof-3.0.2" + sources."lodash._createcache-3.1.2" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + (sources."directory-encoder-0.6.1" // { dependencies = [ - (sources."to-space-case-0.1.2" // { - dependencies = [ - sources."to-no-case-0.1.1" - ]; - }) + sources."fs-extra-0.8.1" + sources."ncp-0.4.2" + sources."mkdirp-0.3.5" + sources."jsonfile-1.1.1" + sources."rimraf-2.2.8" ]; }) - (sources."to-space-case-0.1.3" // { + sources."mime-1.6.0" + sources."handlebars-1.1.2" + sources."lodash-2.4.0" + sources."img-stats-0.4.2" + sources."optimist-0.3.7" + (sources."uglify-js-2.3.6" // { dependencies = [ - sources."to-no-case-0.1.2" + sources."source-map-0.1.43" ]; }) - sources."write-file-stdout-0.0.2" + sources."wordwrap-0.0.3" + sources."async-0.2.10" + sources."xmldom-0.1.16" + sources."gather-stream-1.0.0" + sources."to-no-case-0.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -24225,42 +22704,27 @@ in csswring = nodeEnv.buildNodePackage { name = "csswring"; packageName = "csswring"; - version = "6.0.0"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/csswring/-/csswring-6.0.0.tgz"; - sha1 = "9166f6f56851646e6f55d21fb7716a605b5df893"; + url = "https://registry.npmjs.org/csswring/-/csswring-6.0.2.tgz"; + sha1 = "3c2ede6a0570613bec6d0921280de4adf971c868"; }; dependencies = [ sources."minimist-1.2.0" - sources."onecolor-3.0.4" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."onecolor-3.0.5" + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "Minify CSS using PostCSS"; + description = "A CSS minifier for PostCSS"; homepage = https://github.com/hail2u/node-csswring; license = "MIT"; }; @@ -24276,38 +22740,25 @@ in }; dependencies = [ sources."browserslist-1.5.2" - sources."caniuse-db-1.0.30000701" + sources."caniuse-db-1.0.30000784" sources."normalize-range-0.1.2" sources."num2fraction-1.2.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -24320,89 +22771,11 @@ in grid-kiss-playground = nodeEnv.buildNodePackage { name = "grid-kiss-playground"; packageName = "grid-kiss-playground"; - version = "1.1.0"; + version = "1.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/grid-kiss-playground/-/grid-kiss-playground-1.1.0.tgz"; - sha1 = "5afe3cb6e5ec28e3c54235180abe637f07060522"; + url = "https://registry.npmjs.org/grid-kiss-playground/-/grid-kiss-playground-1.4.2.tgz"; + sha1 = "692d407505d8c6b1aa3ec98b2e286d684834084a"; }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-grid-kiss-1.4.0" // { - dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-2.0.0" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."postcss-merge-grid-template-0.6.0" - (sources."reduce-css-calc-2.0.5" // { - dependencies = [ - sources."css-unit-converter-1.1.1" - sources."postcss-value-parser-3.3.0" - ]; - }) - ]; - }) - ]; buildInputs = globalBuildInputs; meta = { description = "Playground for postcss-grid-kiss"; @@ -24420,77 +22793,39 @@ in sha1 = "876e85a8b88523dbd8f1389b1d8467e82b98eb03"; }; dependencies = [ - (sources."css-mqpacker-4.0.1" // { + sources."css-mqpacker-4.0.1" + sources."fs-extra-0.26.7" + sources."minimist-1.2.0" + sources."postcss-5.2.18" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."fs-extra-0.26.7" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -24525,245 +22860,96 @@ in sha1 = "40d1c03cdf49b6b5aa767005e5251dc5bf782bdb"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."chalk-1.1.3" sources."file-exists-1.0.0" (sources."immutable-css-1.1.2" // { dependencies = [ - sources."extend-options-0.0.1" sources."file-exists-0.1.1" - (sources."get-css-classes-1.1.0" // { - dependencies = [ - (sources."css-selector-tokenizer-0.5.4" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."has-class-selector-1.0.0" - sources."specificity-0.1.6" - ]; - }) - (sources."is-blank-1.1.0" // { - dependencies = [ - sources."is-empty-0.0.1" - sources."is-whitespace-0.3.0" ]; }) + sources."is-blank-1.1.0" sources."is-css-1.0.0" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-import-7.1.3" // { + sources."meow-3.7.0" + (sources."postcss-5.2.18" // { dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-message-helpers-2.0.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."supports-color-3.2.3" ]; }) + sources."postcss-import-7.1.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."extend-options-0.0.1" + sources."get-css-classes-1.1.0" + sources."glob-5.0.15" + sources."has-class-selector-1.0.0" + sources."specificity-0.1.6" + sources."css-selector-tokenizer-0.5.4" + sources."lodash-4.17.4" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."is-empty-0.0.1" + sources."is-whitespace-0.3.0" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."minimist-1.2.0" + sources."normalize-package-data-2.4.0" + sources."object-assign-4.1.1" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."graceful-fs-4.1.11" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-2.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."is-utf8-0.2.1" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."get-stdin-4.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."postcss-message-helpers-2.0.0" + sources."resolve-1.5.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -24783,45 +22969,26 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."path-parse-1.0.5" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -24840,67 +23007,17 @@ in sha1 = "4a28ff53161b047df03621b7098ff85b7e625bf4"; }; dependencies = [ - (sources."autoprefixer-6.3.6" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - sources."browserslist-1.3.6" - sources."caniuse-db-1.0.30000701" - ]; - }) - (sources."lodash.merge-4.3.4" // { - dependencies = [ - sources."lodash._baseclone-4.5.7" - sources."lodash._stack-4.1.3" - sources."lodash.isplainobject-4.0.6" - sources."lodash.keysin-4.2.0" - sources."lodash.rest-4.0.5" - ]; - }) - (sources."lost-6.7.2" // { - dependencies = [ - sources."object-assign-2.0.0" - ]; - }) - (sources."postcss-5.0.19" // { - dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) + sources."autoprefixer-6.3.6" + sources."lodash.merge-4.3.4" + sources."lost-6.7.2" + sources."postcss-5.0.19" sources."postcss-alias-atrules-0.0.0" - (sources."postcss-brand-colors-0.4.0" // { - dependencies = [ - sources."brand-colors-1.2.1" - ]; - }) - (sources."postcss-calc-5.2.0" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) + sources."postcss-brand-colors-0.4.0" + sources."postcss-calc-5.2.0" sources."postcss-custom-media-5.0.1" (sources."postcss-custom-selectors-3.0.0" // { dependencies = [ sources."balanced-match-0.2.1" - (sources."postcss-selector-matches-2.0.5" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) ]; }) sources."postcss-define-units-0.0.3" @@ -24909,114 +23026,82 @@ in (sources."postcss-import-8.1.0" // { dependencies = [ sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) ]; }) sources."postcss-media-minmax-2.1.2" - (sources."postcss-mixins-4.0.1" // { + sources."postcss-mixins-4.0.1" + sources."postcss-nested-1.0.0" + sources."postcss-prettify-0.3.4" + sources."postcss-responsive-type-0.3.3" + sources."postcss-round-subpixels-1.2.0" + sources."postcss-simple-vars-1.2.0" + sources."postcss-size-1.0.0" + sources."postcss-value-parser-3.3.0" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."browserslist-1.3.6" + sources."caniuse-db-1.0.30000784" + sources."lodash._baseclone-4.5.7" + sources."lodash._stack-4.1.3" + sources."lodash.isplainobject-4.0.6" + sources."lodash.keysin-4.2.0" + sources."lodash.rest-4.0.5" + sources."object-assign-2.0.0" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" + sources."brand-colors-1.2.1" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."postcss-selector-matches-2.0.5" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" + (sources."postcss-js-0.1.3" // { dependencies = [ - (sources."postcss-js-0.1.3" // { - dependencies = [ - sources."camelcase-css-1.0.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."globby-4.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."arrify-1.0.1" - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) + sources."postcss-5.2.18" ]; }) - sources."postcss-nested-1.0.0" - (sources."postcss-prettify-0.3.4" // { + (sources."globby-4.1.0" // { dependencies = [ - sources."defined-1.0.0" + sources."object-assign-4.1.1" ]; }) - sources."postcss-responsive-type-0.3.3" - (sources."postcss-round-subpixels-1.2.0" // { + sources."camelcase-css-1.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."postcss-value-parser-3.3.0" + sources."supports-color-2.0.0" ]; }) - sources."postcss-simple-vars-1.2.0" - sources."postcss-size-1.0.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."array-union-1.0.2" + sources."arrify-1.0.1" + sources."glob-6.0.4" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."brace-expansion-1.1.8" // { + dependencies = [ + sources."balanced-match-1.0.0" + ]; + }) + sources."concat-map-0.0.1" + sources."pinkie-2.0.4" + sources."defined-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -25029,101 +23114,48 @@ in laggard = nodeEnv.buildNodePackage { name = "laggard"; packageName = "laggard"; - version = "0.1.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/laggard/-/laggard-0.1.0.tgz"; - sha1 = "2efd645f7f2d8f3d27ac808039ca86a8ee341075"; + url = "https://registry.npmjs.org/laggard/-/laggard-2.0.1.tgz"; + sha1 = "b34e87a5687788b9537e34c1b0560fed8f8c0cd9"; }; dependencies = [ sources."minimist-1.2.0" - (sources."pixrem-3.0.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-color-rgba-fallback-2.2.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - sources."rgb-hex-1.0.0" - ]; - }) - sources."postcss-opacity-3.0.0" - sources."postcss-pseudoelements-3.0.0" - (sources."postcss-reporter-1.4.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" - ]; - }) - sources."postcss-vmin-2.0.0" - sources."postcss-will-change-1.1.0" - (sources."read-file-stdin-0.2.1" // { - dependencies = [ - sources."gather-stream-1.0.0" - ]; - }) + sources."pixrem-4.0.1" + sources."postcss-6.0.14" + sources."postcss-color-rgba-fallback-3.0.0" + sources."postcss-opacity-5.0.0" + sources."postcss-pseudoelements-5.0.0" + sources."postcss-reporter-5.0.0" + sources."postcss-vmin-3.0.0" + sources."postcss-will-change-2.0.0" + sources."read-file-stdin-0.2.1" sources."write-file-stdout-0.0.2" + sources."browserslist-2.10.0" + sources."reduce-css-calc-1.3.0" + sources."caniuse-lite-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."postcss-value-parser-3.3.0" + sources."rgb-hex-2.1.0" + sources."lodash-4.17.4" + sources."log-symbols-2.1.0" + sources."gather-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "Automagical CSS fallbacks for legacy browsers, built on PostCSS"; + description = "Automatic CSS fallbacks for legacy browsers, built on PostCSS"; homepage = https://github.com/seaneking/laggard; license = "MIT"; }; @@ -25138,146 +23170,17 @@ in sha1 = "f25f7ed55b74d5a8308199dbc84d7a362a33ad1e"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-color-function-2.0.1" // { - dependencies = [ - (sources."css-color-function-1.3.0" // { - dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - sources."postcss-message-helpers-2.0.0" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-color-gray-3.0.1" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) + sources."postcss-5.2.18" + sources."postcss-color-function-2.0.1" + sources."postcss-color-gray-3.0.1" (sources."postcss-color-hex-alpha-2.0.0" // { dependencies = [ - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - ]; - }) - (sources."postcss-color-hwb-2.0.1" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-color-rebeccapurple-2.0.1" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) + sources."color-0.10.1" + sources."color-convert-0.5.3" ]; }) + sources."postcss-color-hwb-2.0.1" + sources."postcss-color-rebeccapurple-2.0.1" sources."postcss-custom-media-5.0.1" (sources."postcss-custom-properties-5.0.2" // { dependencies = [ @@ -25293,17 +23196,7 @@ in sources."postcss-media-minmax-2.1.2" sources."postcss-nested-1.0.1" sources."postcss-nesting-2.3.1" - (sources."postcss-pseudo-class-any-link-1.0.0" // { - dependencies = [ - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) + sources."postcss-pseudo-class-any-link-1.0.0" (sources."postcss-selector-matches-2.0.5" // { dependencies = [ sources."balanced-match-0.4.2" @@ -25314,6 +23207,41 @@ in sources."balanced-match-0.2.1" ]; }) + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."css-color-function-1.3.3" + sources."postcss-message-helpers-2.0.0" + sources."postcss-value-parser-3.3.0" + sources."balanced-match-0.1.0" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."ms-2.0.0" + (sources."reduce-function-call-1.0.2" // { + dependencies = [ + sources."balanced-match-0.4.2" + ]; + }) + sources."postcss-selector-parser-1.3.3" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -25332,173 +23260,103 @@ in sha1 = "cdeac98866b7deea2889fab1c46d01eac44c7486"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."globby-2.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."async-1.5.2" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-3.0.0" - ]; - }) + sources."chalk-1.1.3" + sources."globby-2.1.0" sources."lodash-3.10.1" sources."minimist-1.2.0" - (sources."postcss-5.2.17" // { + (sources."postcss-5.2.18" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) (sources."postcss-reporter-1.4.1" // { dependencies = [ sources."lodash-4.17.4" - sources."log-symbols-1.0.2" - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" ]; }) + sources."postcss-selector-parser-1.3.3" + sources."request-2.83.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."array-union-1.0.2" + sources."async-1.5.2" + sources."glob-5.0.15" + sources."object-assign-3.0.0" + sources."array-uniq-1.0.3" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."log-symbols-1.0.2" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" ]; buildInputs = globalBuildInputs; meta = { @@ -25517,185 +23375,83 @@ in sha1 = "67beeae7bdc07250338efa556e659bf28bd54652"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."remark-6.2.0" + sources."remark-comment-blocks-2.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."remark-6.2.0" // { - dependencies = [ - (sources."load-plugin-2.2.1" // { - dependencies = [ - (sources."npm-prefix-1.2.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - sources."shellsubstitute-1.2.0" - (sources."untildify-2.1.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - ]; - }) - sources."resolve-from-2.0.0" - ]; - }) - (sources."remark-parse-2.3.0" // { - dependencies = [ - sources."collapse-white-space-1.0.3" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."is-alphabetical-1.0.0" - sources."is-decimal-1.0.0" - sources."is-whitespace-character-1.0.0" - sources."is-word-character-1.0.0" - sources."markdown-escapes-1.0.1" - (sources."parse-entities-1.1.1" // { - dependencies = [ - sources."character-entities-1.2.1" - sources."character-entities-legacy-1.1.1" - sources."character-reference-invalid-1.1.1" - sources."is-alphanumerical-1.0.0" - sources."is-hexadecimal-1.0.0" - ]; - }) - sources."repeat-string-1.6.1" - sources."state-toggle-1.0.0" - sources."trim-0.0.1" - sources."trim-trailing-lines-1.1.0" - (sources."unherit-1.1.0" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - (sources."unist-util-remove-position-1.1.1" // { - dependencies = [ - sources."unist-util-visit-1.1.3" - ]; - }) - sources."vfile-location-2.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."remark-stringify-2.4.0" // { - dependencies = [ - sources."ccount-1.0.2" - sources."is-alphanumeric-1.0.0" - sources."is-decimal-1.0.0" - sources."is-whitespace-character-1.0.0" - sources."longest-streak-2.0.1" - sources."markdown-escapes-1.0.1" - sources."markdown-table-1.1.0" - (sources."mdast-util-compact-1.0.1" // { - dependencies = [ - (sources."unist-util-modify-children-1.1.1" // { - dependencies = [ - sources."array-iterate-1.1.1" - ]; - }) - sources."unist-util-visit-1.1.3" - ]; - }) - (sources."parse-entities-1.1.1" // { - dependencies = [ - sources."character-entities-1.2.1" - sources."character-entities-legacy-1.1.1" - sources."character-reference-invalid-1.1.1" - (sources."is-alphanumerical-1.0.0" // { - dependencies = [ - sources."is-alphabetical-1.0.0" - ]; - }) - sources."is-hexadecimal-1.0.0" - ]; - }) - sources."repeat-string-1.6.1" - sources."state-toggle-1.0.0" - (sources."stringify-entities-1.3.1" // { - dependencies = [ - sources."character-entities-html4-1.1.1" - sources."character-entities-legacy-1.1.1" - (sources."is-alphanumerical-1.0.0" // { - dependencies = [ - sources."is-alphabetical-1.0.0" - ]; - }) - sources."is-hexadecimal-1.0.0" - ]; - }) - (sources."unherit-1.1.0" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."unified-5.1.0" // { - dependencies = [ - sources."bail-1.0.2" - sources."extend-3.0.1" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."is-buffer-1.1.5" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."trough-1.0.1" - (sources."vfile-2.1.0" // { - dependencies = [ - sources."replace-ext-1.0.0" - sources."unist-util-stringify-position-1.1.1" - ]; - }) - sources."x-is-string-0.1.0" - ]; - }) - ]; - }) - (sources."remark-comment-blocks-2.0.1" // { - dependencies = [ - sources."trim-right-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."load-plugin-2.2.1" + sources."remark-parse-2.3.0" + sources."remark-stringify-2.4.0" + sources."unified-5.1.0" + sources."npm-prefix-1.2.0" + sources."resolve-from-2.0.0" + sources."rc-1.2.2" + sources."shellsubstitute-1.2.0" + sources."untildify-2.1.0" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."minimist-1.2.0" + sources."strip-json-comments-2.0.1" + sources."os-homedir-1.0.2" + sources."collapse-white-space-1.0.3" + sources."has-1.0.1" + sources."is-alphabetical-1.0.1" + sources."is-decimal-1.0.1" + sources."is-whitespace-character-1.0.1" + sources."is-word-character-1.0.1" + sources."markdown-escapes-1.0.1" + sources."parse-entities-1.1.1" + sources."repeat-string-1.6.1" + sources."state-toggle-1.0.0" + sources."trim-0.0.1" + sources."trim-trailing-lines-1.1.0" + sources."unherit-1.1.0" + sources."unist-util-remove-position-1.1.1" + sources."vfile-location-2.0.2" + sources."xtend-4.0.1" + sources."function-bind-1.1.1" + sources."character-entities-1.2.1" + sources."character-entities-legacy-1.1.1" + sources."character-reference-invalid-1.1.1" + sources."is-alphanumerical-1.0.1" + sources."is-hexadecimal-1.0.1" + sources."inherits-2.0.3" + sources."unist-util-visit-1.3.0" + sources."unist-util-is-2.1.1" + sources."ccount-1.0.2" + sources."is-alphanumeric-1.0.0" + sources."longest-streak-2.0.2" + sources."markdown-table-1.1.1" + sources."mdast-util-compact-1.0.1" + sources."stringify-entities-1.3.1" + sources."unist-util-modify-children-1.1.1" + sources."array-iterate-1.1.1" + sources."character-entities-html4-1.1.1" + sources."bail-1.0.2" + sources."extend-3.0.1" + sources."is-buffer-1.1.6" + sources."once-1.4.0" + sources."trough-1.0.1" + sources."vfile-2.3.0" + sources."x-is-string-0.1.0" + sources."wrappy-1.0.2" + sources."replace-ext-1.0.0" + sources."unist-util-stringify-position-1.1.1" + sources."vfile-message-1.0.0" + sources."trim-right-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -25708,37 +23464,22 @@ in lost = nodeEnv.buildNodePackage { name = "lost"; packageName = "lost"; - version = "8.1.0"; + version = "8.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/lost/-/lost-8.1.0.tgz"; - sha1 = "44ed823392773042d16ab238bd6f28b790bc1f7a"; + url = "https://registry.npmjs.org/lost/-/lost-8.2.0.tgz"; + sha1 = "107d0733b286029a3587bc1230f98d2a6eb21ef7"; }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -25758,34 +23499,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -25804,79 +23532,41 @@ in sha1 = "056a817d9dc908ec3cd4db22011031988ffa8274"; }; dependencies = [ - (sources."fs-extra-0.26.7" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."marked-0.3.6" - (sources."mdcss-theme-github-2.4.2" // { - dependencies = [ - sources."ejs-2.5.6" - sources."object-assign-4.1.1" - ]; - }) - (sources."postcss-5.2.17" // { + sources."fs-extra-0.26.7" + sources."marked-0.3.9" + sources."mdcss-theme-github-2.4.2" + sources."postcss-5.2.18" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."ejs-2.5.7" + sources."object-assign-4.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -25889,516 +23579,180 @@ in modular-css = nodeEnv.buildNodePackage { name = "modular-css"; packageName = "modular-css"; - version = "6.0.2"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/modular-css/-/modular-css-6.0.2.tgz"; - sha1 = "c943307c16ee5e2dce57047fc126f2f2b8398aa6"; + url = "https://registry.npmjs.org/modular-css/-/modular-css-7.2.0.tgz"; + sha1 = "0be29e41dc23f2fab802c1c6240fde09b67c8eaf"; }; dependencies = [ - (sources."modular-css-cli-6.0.2" // { - dependencies = [ - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - ]; - }) - (sources."modular-css-core-6.0.2" // { - dependencies = [ - sources."dependency-graph-0.5.0" - sources."escape-string-regexp-1.0.5" - sources."lodash.findlast-4.6.0" - sources."lodash.foreach-4.5.0" - sources."lodash.get-4.4.2" - sources."lodash.invert-4.3.0" - sources."lodash.mapvalues-4.6.0" - sources."lodash.uniq-4.5.0" - (sources."p-each-series-1.0.0" // { - dependencies = [ - sources."p-reduce-1.0.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."postcss-url-6.3.1" // { - dependencies = [ - sources."mime-1.3.6" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."xxhashjs-0.2.1" // { - dependencies = [ - sources."cuint-0.2.2" - ]; - }) - ]; - }) - sources."postcss-value-parser-3.3.0" - sources."resolve-from-3.0.0" - (sources."true-case-path-1.0.2" // { - dependencies = [ - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - (sources."unique-slug-2.0.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - ]; - }) - ]; - }) - (sources."modular-css-glob-6.0.2" // { - dependencies = [ - (sources."globule-1.2.0" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."modular-css-rollup-6.0.2" // { - dependencies = [ - sources."esutils-2.0.2" - (sources."rollup-pluginutils-2.0.1" // { - dependencies = [ - sources."estree-walker-0.3.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."modular-css-webpack-6.0.2" // { + sources."modular-css-cli-7.2.0" + sources."modular-css-core-7.2.0" + sources."modular-css-glob-7.2.0" + sources."modular-css-rollup-7.2.0" + sources."modular-css-webpack-7.2.0" + sources."modular-cssify-7.2.0" + sources."postcss-modular-css-7.2.0" + sources."meow-3.7.0" + (sources."mkdirp-0.5.1" // { dependencies = [ - sources."esutils-2.0.2" - (sources."loader-utils-1.1.0" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - ]; - }) - (sources."webpack-sources-1.0.1" // { - dependencies = [ - sources."source-list-map-2.0.0" - sources."source-map-0.5.6" - ]; - }) + sources."minimist-0.0.8" ]; }) - (sources."modular-cssify-6.0.2" // { + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."minimist-1.2.0" + sources."normalize-package-data-2.4.0" + sources."object-assign-4.1.1" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."graceful-fs-4.1.11" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-2.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."is-utf8-0.2.1" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."get-stdin-4.0.1" + sources."dependency-graph-0.6.0" + sources."escape-string-regexp-1.0.5" + sources."lodash.findlast-4.6.0" + sources."lodash.foreach-4.5.0" + sources."lodash.get-4.4.2" + sources."lodash.invert-4.3.0" + sources."lodash.mapvalues-4.6.0" + sources."lodash.uniq-4.5.0" + sources."p-each-series-1.0.0" + sources."postcss-6.0.14" + sources."postcss-selector-parser-3.1.1" + sources."postcss-url-7.3.0" + sources."postcss-value-parser-3.3.0" + sources."resolve-from-4.0.0" + sources."true-case-path-1.0.2" + sources."unique-slug-2.0.0" + sources."p-reduce-1.0.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."dot-prop-4.2.0" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."is-obj-1.0.1" + sources."mime-1.6.0" + sources."minimatch-3.0.4" + sources."xxhashjs-0.2.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."cuint-0.2.2" + sources."glob-6.0.4" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."imurmurhash-0.1.4" + (sources."globule-1.2.0" // { dependencies = [ - sources."lodash.foreach-4.5.0" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."sink-transform-2.0.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) + sources."glob-7.1.2" ]; }) - (sources."postcss-modular-css-6.0.2" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."lodash-4.17.4" + sources."fs.realpath-1.0.0" + sources."esutils-2.0.2" + sources."rollup-pluginutils-2.0.1" + sources."estree-walker-0.3.1" + sources."micromatch-2.3.11" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + sources."kind-of-3.2.2" + sources."normalize-path-2.1.1" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" ]; }) + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."remove-trailing-separator-1.1.0" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."glob-parent-2.0.0" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."loader-utils-1.1.0" + sources."webpack-sources-1.1.0" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."source-list-map-2.0.0" + sources."sink-transform-2.0.0" + sources."through2-2.0.3" + sources."concat-stream-1.6.0" + sources."readable-stream-2.3.3" + sources."typedarray-0.0.6" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."xtend-4.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -26417,1463 +23771,693 @@ in sha1 = "b89235607ffd1a83cda32cf1fc057f6ffe8fc432"; }; dependencies = [ - (sources."autoprefixer-6.7.7" // { + sources."autoprefixer-6.7.7" + sources."postcss-5.2.18" + sources."postcss-advanced-variables-1.2.2" + sources."postcss-calc-5.3.1" + sources."postcss-color-function-2.0.1" + sources."postcss-custom-media-5.0.1" + sources."postcss-fontpath-0.3.0" + sources."postcss-import-8.2.0" + sources."postcss-media-minmax-2.1.2" + sources."postcss-mixins-5.4.1" + sources."postcss-nested-1.0.1" + sources."postcss-nesting-2.3.1" + sources."postcss-property-lookup-1.2.1" + sources."postcss-reporter-1.4.1" + sources."postcss-responsive-type-0.4.0" + sources."postcss-selector-matches-2.0.5" + (sources."postcss-selector-not-2.0.0" // { dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - sources."postcss-value-parser-3.3.0" + sources."balanced-match-0.2.1" ]; }) - (sources."postcss-5.2.17" // { + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."postcss-value-parser-3.3.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-advanced-variables-1.2.2" - (sources."postcss-calc-5.3.1" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + (sources."css-color-function-1.3.3" // { dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."balanced-match-0.1.0" ]; }) - (sources."postcss-color-function-2.0.1" // { + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."ms-2.0.0" + sources."object-assign-4.1.1" + sources."promise-each-2.2.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."pkg-resolve-0.1.14" + sources."any-promise-0.1.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" + sources."jspm-0.17.0-beta.47" + sources."bluebird-3.5.1" + sources."core-js-1.2.7" + sources."glob-6.0.4" + sources."graceful-fs-4.1.11" + sources."jspm-github-0.14.13" + sources."jspm-npm-0.30.3" + (sources."jspm-registry-0.4.4" // { dependencies = [ - (sources."css-color-function-1.3.0" // { - dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - sources."postcss-message-helpers-2.0.0" - sources."postcss-value-parser-3.3.0" + sources."semver-4.3.6" ]; }) - sources."postcss-custom-media-5.0.1" - (sources."postcss-fontpath-0.3.0" // { + sources."liftoff-2.5.0" + sources."minimatch-3.0.4" + sources."mkdirp-0.5.1" + sources."ncp-2.0.0" + sources."proper-lockfile-1.2.0" + sources."request-2.83.0" + (sources."rimraf-2.6.2" // { dependencies = [ - sources."object-assign-4.1.1" + sources."glob-7.1.2" ]; }) - (sources."postcss-import-8.2.0" // { + (sources."sane-1.7.0" // { dependencies = [ - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" - (sources."promise-each-2.2.0" // { - dependencies = [ - sources."any-promise-0.1.0" - ]; - }) - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - (sources."pkg-resolve-0.1.14" // { - dependencies = [ - (sources."jspm-0.17.0-beta.42" // { - dependencies = [ - sources."bluebird-3.5.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."core-js-1.2.7" - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."graceful-fs-4.1.11" - (sources."jspm-github-0.14.13" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - sources."netrc-0.1.4" - (sources."tar-fs-1.15.3" // { - dependencies = [ - sources."chownr-1.0.1" - (sources."pump-1.0.2" // { - dependencies = [ - sources."end-of-stream-1.4.0" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."jspm-npm-0.30.2" // { - dependencies = [ - sources."buffer-peek-stream-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."tar-fs-1.15.3" // { - dependencies = [ - sources."chownr-1.0.1" - (sources."pump-1.0.2" // { - dependencies = [ - sources."end-of-stream-1.4.0" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."jspm-registry-0.4.4" // { - dependencies = [ - sources."rsvp-3.6.1" - sources."semver-4.3.6" - ]; - }) - (sources."liftoff-2.3.0" // { - dependencies = [ - sources."extend-3.0.1" - (sources."findup-sync-0.4.3" // { - dependencies = [ - (sources."detect-file-0.1.0" // { - dependencies = [ - sources."fs-exists-sync-0.1.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."resolve-dir-0.1.1" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."global-modules-0.2.3" // { - dependencies = [ - (sources."global-prefix-0.1.5" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - sources."ini-1.3.4" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fined-1.1.0" // { - dependencies = [ - (sources."expand-tilde-2.0.2" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - ]; - }) - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."array-each-1.0.1" - sources."array-slice-1.0.0" - (sources."for-own-1.0.0" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."isobject-3.0.1" - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - (sources."parse-filepath-1.0.1" // { - dependencies = [ - (sources."is-absolute-0.2.6" // { - dependencies = [ - (sources."is-relative-0.2.1" // { - dependencies = [ - (sources."is-unc-path-0.1.2" // { - dependencies = [ - sources."unc-path-regex-0.1.2" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - sources."map-cache-0.2.2" - (sources."path-root-0.1.1" // { - dependencies = [ - sources."path-root-regex-0.1.2" - ]; - }) - ]; - }) - ]; - }) - sources."flagged-respawn-0.3.2" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.mapvalues-4.6.0" - sources."rechoir-0.6.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ncp-2.0.0" - (sources."proper-lockfile-1.2.0" // { - dependencies = [ - sources."err-code-1.1.2" - sources."extend-3.0.1" - sources."retry-0.10.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - (sources."sane-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."exec-sh-0.2.0" // { - dependencies = [ - sources."merge-1.2.0" - ]; - }) - (sources."fb-watchman-2.0.0" // { - dependencies = [ - (sources."bser-2.0.0" // { - dependencies = [ - sources."node-int64-0.4.0" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."walker-1.0.7" // { - dependencies = [ - (sources."makeerror-1.0.11" // { - dependencies = [ - sources."tmpl-1.0.4" - ]; - }) - ]; - }) - sources."watch-0.10.0" - ]; - }) - sources."semver-5.3.0" - sources."systemjs-0.20.14" - (sources."systemjs-builder-0.16.9" // { - dependencies = [ - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."source-map-support-0.4.15" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."convert-source-map-1.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."json5-0.5.1" - sources."lodash-4.17.4" - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - ]; - }) - sources."babel-plugin-syntax-dynamic-import-6.18.0" - (sources."babel-plugin-transform-amd-system-wrapper-0.3.7" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-cjs-system-wrapper-0.6.2" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-hoist-variables-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-global-system-wrapper-0.3.4" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - sources."babel-plugin-transform-system-register-0.0.1" - sources."data-uri-to-buffer-0.0.4" - (sources."es6-template-strings-2.0.1" // { - dependencies = [ - (sources."es5-ext-0.10.24" // { - dependencies = [ - (sources."es6-iterator-2.0.1" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - (sources."es6-symbol-3.1.1" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - ]; - }) - (sources."esniff-1.1.0" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."rollup-0.36.4" // { - dependencies = [ - sources."source-map-support-0.4.15" - ]; - }) - sources."source-map-0.5.6" - (sources."systemjs-0.19.47" // { - dependencies = [ - sources."when-3.7.8" - ]; - }) - ]; - }) - (sources."traceur-0.0.105" // { - dependencies = [ - (sources."commander-2.9.0" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."rsvp-3.6.1" - sources."semver-4.3.6" - (sources."source-map-support-0.2.10" // { - dependencies = [ - (sources."source-map-0.1.32" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) + sources."minimist-1.2.0" ]; }) - sources."postcss-media-minmax-2.1.2" - (sources."postcss-mixins-5.4.1" // { + sources."semver-5.4.1" + sources."systemjs-0.20.19" + (sources."systemjs-builder-0.16.12" // { dependencies = [ - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."postcss-js-0.2.0" // { - dependencies = [ - sources."camelcase-css-1.0.1" - ]; - }) - sources."postcss-simple-vars-3.1.0" - sources."sugarss-0.2.0" + sources."glob-7.1.2" + sources."systemjs-0.19.47" ]; }) - sources."postcss-nested-1.0.1" - sources."postcss-nesting-2.3.1" - (sources."postcss-property-lookup-1.2.1" // { + (sources."traceur-0.0.105" // { dependencies = [ - sources."object-assign-4.1.1" - sources."tcomb-2.7.0" + sources."glob-5.0.15" + sources."semver-4.3.6" + sources."source-map-support-0.2.10" + sources."source-map-0.1.32" + ]; + }) + sources."uglify-js-2.8.29" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."expand-tilde-1.2.2" + sources."netrc-0.1.4" + sources."tar-fs-1.16.0" + sources."which-1.3.0" + sources."os-homedir-1.0.2" + sources."chownr-1.0.1" + sources."pump-1.0.3" + sources."tar-stream-1.5.5" + sources."end-of-stream-1.4.0" + sources."bl-1.2.1" + sources."readable-stream-2.3.3" + sources."xtend-4.0.1" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."isexe-2.0.0" + sources."buffer-peek-stream-1.0.1" + sources."readdirp-2.1.0" + sources."set-immediate-shim-1.0.1" + sources."rsvp-3.6.2" + sources."extend-3.0.1" + sources."findup-sync-2.0.0" + (sources."fined-1.1.0" // { + dependencies = [ + sources."expand-tilde-2.0.2" ]; }) - (sources."postcss-reporter-1.4.1" // { + sources."flagged-respawn-1.0.0" + sources."is-plain-object-2.0.4" + sources."object.map-1.0.1" + sources."rechoir-0.6.2" + sources."detect-file-1.0.0" + sources."is-glob-3.1.0" + sources."micromatch-3.1.4" + (sources."resolve-dir-1.0.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" + sources."expand-tilde-2.0.2" ]; }) - sources."postcss-responsive-type-0.4.0" - (sources."postcss-selector-matches-2.0.5" // { + sources."is-extglob-2.1.1" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."is-extendable-0.1.1" ]; }) - (sources."postcss-selector-not-2.0.0" // { + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { dependencies = [ - sources."balanced-match-0.2.1" + sources."kind-of-5.1.0" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Use Sass-like markup in CSS, based on PostCSS with only up to date and essential plugins. Inspired by Precss."; - homepage = "https://github.com/liydu/msops-css#readme"; - license = "MIT"; - }; - production = true; - }; - oldie = nodeEnv.buildNodePackage { - name = "oldie"; - packageName = "oldie"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/oldie/-/oldie-1.3.0.tgz"; - sha1 = "d84ae43b25307771c0c68823445abb7ad932c974"; - }; - dependencies = [ - sources."object-assign-4.1.1" - (sources."pixrem-3.0.2" // { + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."debug-2.6.9" + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" ]; }) - (sources."postcss-5.2.17" // { + (sources."to-regex-3.0.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" ]; }) - (sources."postcss-calc-5.3.1" // { + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."extend-shallow-3.0.2" ]; }) - sources."postcss-pseudoelements-3.0.0" - (sources."postcss-unmq-1.0.2" // { + (sources."is-number-3.0.0" // { dependencies = [ - sources."css-mediaquery-0.1.2" + sources."kind-of-3.2.2" ]; }) - (sources."postcss-unnot-1.0.2" // { + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { dependencies = [ - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."kind-of-3.2.2" ]; }) - (sources."postcss-unnth-1.0.2" // { + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + (sources."is-descriptor-1.0.1" // { dependencies = [ - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."kind-of-5.1.0" ]; }) - sources."postcss-unopacity-1.0.1" - (sources."postcss-unrgba-1.1.1" // { + (sources."is-accessor-descriptor-0.1.6" // { dependencies = [ - sources."postcss-value-parser-3.3.0" + sources."kind-of-3.2.2" ]; }) - (sources."postcss-unroot-1.0.2" // { + (sources."is-data-descriptor-0.1.4" // { dependencies = [ - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."kind-of-3.2.2" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Transform CSS into something compatible with older Internet Explorer"; - homepage = https://github.com/jonathantneal/oldie; - license = "CC0-1.0"; - }; - production = true; - }; - perfectionist = nodeEnv.buildNodePackage { - name = "perfectionist"; - packageName = "perfectionist"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/perfectionist/-/perfectionist-2.4.0.tgz"; - sha1 = "c147ad3714e126467f1764129ee72df861d47ea0"; - }; - dependencies = [ - sources."comment-regex-1.0.0" - sources."defined-1.0.0" - sources."minimist-1.2.0" - (sources."postcss-5.2.17" // { + (sources."expand-brackets-2.1.4" // { dependencies = [ - (sources."chalk-1.1.3" // { + sources."debug-2.6.9" + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."posix-character-classes-0.1.1" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."isobject-2.1.0" ]; }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { + sources."has-values-0.1.4" + ]; + }) + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - sources."has-flag-1.0.0" + sources."kind-of-5.1.0" ]; }) ]; }) - sources."postcss-scss-0.3.1" - sources."postcss-value-parser-3.3.0" - (sources."read-file-stdin-0.2.1" // { + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."global-modules-1.0.0" + sources."homedir-polyfill-1.0.1" + sources."parse-passwd-1.0.0" + (sources."global-prefix-1.0.2" // { dependencies = [ - sources."gather-stream-1.0.0" + sources."expand-tilde-2.0.2" ]; }) - sources."string.prototype.repeat-0.2.0" - sources."vendors-1.0.1" - sources."write-file-stdout-0.0.2" + sources."is-windows-1.0.1" + sources."ini-1.3.5" + sources."object.defaults-1.1.0" + sources."parse-filepath-1.0.2" + sources."array-each-1.0.1" + sources."array-slice-1.1.0" + sources."for-own-1.0.0" + sources."is-absolute-1.0.0" + sources."path-root-0.1.1" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."unc-path-regex-0.1.2" + sources."path-root-regex-0.1.2" + (sources."make-iterator-1.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."brace-expansion-1.1.8" // { + dependencies = [ + sources."balanced-match-1.0.0" + ]; + }) + sources."concat-map-0.0.1" + sources."minimist-0.0.8" + sources."err-code-1.1.2" + sources."retry-0.10.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."fs.realpath-1.0.0" + (sources."anymatch-1.3.2" // { + dependencies = [ + sources."micromatch-2.3.11" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + sources."kind-of-3.2.2" + ]; + }) + sources."exec-sh-0.2.1" + sources."fb-watchman-2.0.0" + sources."walker-1.0.7" + sources."watch-0.10.0" + sources."normalize-path-2.1.1" + sources."filename-regex-2.0.1" + (sources."object.omit-2.0.1" // { + dependencies = [ + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + ]; + }) + (sources."parse-glob-3.0.4" // { + dependencies = [ + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + ]; + }) + sources."regex-cache-0.4.4" + (sources."expand-range-1.8.2" // { + dependencies = [ + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + sources."kind-of-3.2.2" + ]; + }) + sources."preserve-0.2.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."is-posix-bracket-0.1.1" + (sources."glob-base-0.3.0" // { + dependencies = [ + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-dotfile-1.0.3" + (sources."glob-parent-2.0.0" // { + dependencies = [ + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."merge-1.2.0" + sources."bser-2.0.0" + sources."node-int64-0.4.0" + sources."makeerror-1.0.11" + sources."tmpl-1.0.4" + (sources."babel-core-6.26.0" // { + dependencies = [ + sources."debug-2.6.9" + ]; + }) + sources."babel-plugin-syntax-dynamic-import-6.18.0" + sources."babel-plugin-transform-amd-system-wrapper-0.3.7" + sources."babel-plugin-transform-cjs-system-wrapper-0.6.2" + sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" + sources."babel-plugin-transform-global-system-wrapper-0.3.4" + sources."babel-plugin-transform-system-register-0.0.1" + sources."data-uri-to-buffer-0.0.4" + sources."es6-template-strings-2.0.1" + sources."rollup-0.36.4" + sources."babel-code-frame-6.26.0" + sources."babel-generator-6.26.0" + sources."babel-helpers-6.24.1" + sources."babel-messages-6.23.0" + (sources."babel-register-6.26.0" // { + dependencies = [ + sources."core-js-2.5.3" + ]; + }) + (sources."babel-runtime-6.26.0" // { + dependencies = [ + sources."core-js-2.5.3" + ]; + }) + sources."babel-template-6.26.0" + (sources."babel-traverse-6.26.0" // { + dependencies = [ + sources."debug-2.6.9" + ]; + }) + sources."babel-types-6.26.0" + sources."babylon-6.18.0" + sources."convert-source-map-1.5.1" + sources."json5-0.5.1" + sources."lodash-4.17.4" + sources."private-0.1.8" + sources."slash-1.0.0" + sources."esutils-2.0.2" + sources."js-tokens-3.0.2" + sources."detect-indent-4.0.0" + sources."jsesc-1.3.0" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."home-or-tmp-2.0.0" + sources."source-map-support-0.4.18" + sources."os-tmpdir-1.0.2" + sources."regenerator-runtime-0.11.1" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."loose-envify-1.3.1" + sources."to-fast-properties-1.0.3" + sources."babel-helper-hoist-variables-6.24.1" + sources."es5-ext-0.10.37" + sources."esniff-1.1.0" + sources."es6-iterator-2.0.3" + sources."es6-symbol-3.1.1" + sources."d-1.0.0" + sources."when-3.7.8" + sources."commander-2.9.0" + sources."graceful-readlink-1.0.1" + sources."amdefine-1.0.1" + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + (sources."center-align-0.1.3" // { + dependencies = [ + sources."lazy-cache-1.0.4" + ]; + }) + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + (sources."align-text-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."longest-1.0.1" + (sources."globby-6.1.0" // { + dependencies = [ + sources."glob-7.1.2" + ]; + }) + sources."postcss-js-0.2.0" + sources."postcss-simple-vars-3.1.0" + sources."sugarss-0.2.0" + sources."array-union-1.0.2" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."pinkie-2.0.4" + sources."camelcase-css-1.0.1" + sources."tcomb-2.7.0" + sources."log-symbols-1.0.2" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "Use Sass-like markup in CSS, based on PostCSS with only up to date and essential plugins. Inspired by Precss."; + homepage = "https://github.com/liydu/msops-css#readme"; + license = "MIT"; + }; + production = true; + }; + oldie = nodeEnv.buildNodePackage { + name = "oldie"; + packageName = "oldie"; + version = "1.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/oldie/-/oldie-1.3.0.tgz"; + sha1 = "d84ae43b25307771c0c68823445abb7ad932c974"; + }; + dependencies = [ + sources."object-assign-4.1.1" + sources."pixrem-3.0.2" + sources."postcss-5.2.18" + sources."postcss-calc-5.3.1" + sources."postcss-pseudoelements-3.0.0" + sources."postcss-unmq-1.0.2" + sources."postcss-unnot-1.0.2" + sources."postcss-unnth-1.0.2" + sources."postcss-unopacity-1.0.1" + sources."postcss-unrgba-1.1.1" + sources."postcss-unroot-1.0.2" + sources."browserslist-1.7.7" + sources."reduce-css-calc-1.3.0" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."postcss-message-helpers-2.0.0" + sources."css-mediaquery-0.1.2" + sources."postcss-selector-parser-1.3.3" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."postcss-value-parser-3.3.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "Transform CSS into something compatible with older Internet Explorer"; + homepage = https://github.com/jonathantneal/oldie; + license = "CC0-1.0"; + }; + production = true; + }; + perfectionist = nodeEnv.buildNodePackage { + name = "perfectionist"; + packageName = "perfectionist"; + version = "2.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/perfectionist/-/perfectionist-2.4.0.tgz"; + sha1 = "c147ad3714e126467f1764129ee72df861d47ea0"; + }; + dependencies = [ + sources."comment-regex-1.0.0" + sources."defined-1.0.0" + sources."minimist-1.2.0" + sources."postcss-5.2.18" + sources."postcss-scss-0.3.1" + sources."postcss-value-parser-3.3.0" + sources."read-file-stdin-0.2.1" + sources."string.prototype.repeat-0.2.0" + sources."vendors-1.0.1" + sources."write-file-stdout-0.0.2" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."gather-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -27892,43 +24476,23 @@ in sha1 = "2da4a1de6ec4423c5fc3794e930b81d4490ec686"; }; dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."browserslist-2.10.0" + sources."postcss-6.0.14" + sources."reduce-css-calc-1.3.0" + sources."caniuse-lite-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -27946,43 +24510,23 @@ in sha1 = "1430791da4bb156bfafe7d8109ccb4ea1102ee25"; }; dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."browserslist-1.7.7" + sources."postcss-6.0.14" + sources."reduce-css-calc-1.3.0" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -28001,39 +24545,23 @@ in sha1 = "d4f07dc0eb307330b755b83e87c9ebd2f843dac2"; }; dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."debug-2.6.9" + sources."postcss-5.2.18" + sources."ms-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28052,34 +24580,21 @@ in sha1 = "90a6213262e66a050a368b4a9c5d4778d72dbd74"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28092,40 +24607,21 @@ in postcss-alias = nodeEnv.buildNodePackage { name = "postcss-alias"; packageName = "postcss-alias"; - version = "1.0.0"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-alias/-/postcss-alias-1.0.0.tgz"; - sha1 = "070c61ee1197af6ee5eb75d26adf48899b9d2f7b"; + url = "https://registry.npmjs.org/postcss-alias/-/postcss-alias-2.0.0.tgz"; + sha1 = "018f46c2fbff818e29fa6af67afa4be2becd376d"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28144,34 +24640,21 @@ in sha1 = "12bee477e7ec6e7f33b91cdc11c0e6c0e0c6e1ea"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28190,34 +24673,21 @@ in sha1 = "a37e860f8440f227d1f595ecf3333e081e71e790"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28230,40 +24700,21 @@ in postcss-all-link-colors = nodeEnv.buildNodePackage { name = "postcss-all-link-colors"; packageName = "postcss-all-link-colors"; - version = "1.0.1"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-all-link-colors/-/postcss-all-link-colors-1.0.1.tgz"; - sha1 = "e59d1a2131e6ad64c5d6a7d43e78f5ed996da643"; + url = "https://registry.npmjs.org/postcss-all-link-colors/-/postcss-all-link-colors-2.0.0.tgz"; + sha1 = "556026327d6ce2e065602af8356e9082a3a02cf6"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28282,34 +24733,21 @@ in sha1 = "31e1cdbee1e797098f2dcf622f338b5f9d402434"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28338,10 +24776,10 @@ in postcss-amp = nodeEnv.buildNodePackage { name = "postcss-amp"; packageName = "postcss-amp"; - version = "1.0.12"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-amp/-/postcss-amp-1.0.12.tgz"; - sha1 = "caf76edd5e14e73e1874048be4b6096fc5094dff"; + url = "https://registry.npmjs.org/postcss-amp/-/postcss-amp-1.1.0.tgz"; + sha1 = "d04c62252f340cd7d4abcc4260b3625e2a60b423"; }; buildInputs = globalBuildInputs; meta = { @@ -28360,34 +24798,21 @@ in sha1 = "a071884988624765bab2fc818bb3d4b7cf4d7f76"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28406,35 +24831,22 @@ in sha1 = "93743a7fa1090245190ddcf4e2394151834ce33e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-animation-data-0.0.4" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-animation-data-0.0.4" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28453,34 +24865,21 @@ in sha1 = "42ad0699bf9d627a014d98a3263e997ff5409fdf"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28493,44 +24892,30 @@ in postcss-animations = nodeEnv.buildNodePackage { name = "postcss-animations"; packageName = "postcss-animations"; - version = "0.2.3"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-animations/-/postcss-animations-0.2.3.tgz"; - sha1 = "9fd9c6b8ad7490b22d2f218a4834711bad5b7366"; + url = "https://registry.npmjs.org/postcss-animations/-/postcss-animations-0.3.1.tgz"; + sha1 = "dce4a817dafe21f0b6fec9e9419549a85aa72e27"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-animation.css-data-0.1.0" sources."postcss-magic.css-data-0.1.0" + sources."postcss-mimic.css-data-0.0.2" sources."postcss-tuesday.css-data-0.1.0" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin that adds `@keyframes` from animate.css, tuesday.css, magic.css"; + description = "PostCSS plugin that adds `@keyframes` from animate.css, tuesday.css, magic.css, mimic.css"; homepage = https://github.com/retyui/postcss-animations; license = "MIT"; }; @@ -28561,37 +24946,19 @@ in sha1 = "14e544bbb5cb6f1c1e048857965d79ae066b1343"; }; dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) + sources."babel-runtime-6.26.0" sources."balanced-match-0.4.2" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28611,42 +24978,24 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."mathjs-3.14.2" // { - dependencies = [ - sources."complex.js-2.0.4" - sources."decimal.js-7.2.3" - sources."fraction.js-4.0.2" - sources."javascript-natural-sort-0.7.1" - sources."seed-random-2.2.0" - sources."tiny-emitter-2.0.0" - sources."typed-function-0.10.5" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."named-js-regexp-1.3.2" + sources."mathjs-3.18.0" + sources."postcss-6.0.14" + sources."named-js-regexp-1.3.3" + sources."complex.js-2.0.4" + sources."decimal.js-9.0.1" + sources."fraction.js-4.0.4" + sources."javascript-natural-sort-0.7.1" + sources."seed-random-2.2.0" + sources."tiny-emitter-2.0.2" + sources."typed-function-0.10.6" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28664,34 +25013,21 @@ in sha1 = "afb6a4232854615ad39851bf57e3679f04312f19"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28710,18 +25046,12 @@ in sha1 = "e956e2e0cfa3699f2301b7b283aacff842a91782"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."sprintf-js-1.1.1" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -28740,83 +25070,39 @@ in sha1 = "e525bd331eea6651dbe8d35f56dc8123f73470f7"; }; dependencies = [ - (sources."ase-util-1.0.1" // { - dependencies = [ - sources."iconv-lite-0.4.18" - sources."lodash-3.10.1" - (sources."yargs-3.32.0" // { - dependencies = [ - sources."camelcase-2.1.1" - (sources."cliui-3.2.0" // { - dependencies = [ - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wrap-ansi-2.1.0" - ]; - }) - sources."decamelize-1.2.0" - (sources."os-locale-1.4.0" // { - dependencies = [ - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - ]; - }) - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - ]; - }) - sources."window-size-0.1.4" - sources."y18n-3.2.1" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."ase-util-1.0.1" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."iconv-lite-0.4.19" + sources."lodash-3.10.1" + sources."yargs-3.32.0" + sources."camelcase-2.1.1" + sources."cliui-3.2.0" + sources."decamelize-1.2.0" + sources."os-locale-1.4.0" + sources."string-width-1.0.2" + sources."window-size-0.1.4" + sources."y18n-3.2.1" + sources."strip-ansi-3.0.1" + sources."wrap-ansi-2.1.0" + sources."ansi-regex-2.1.1" + sources."lcid-1.0.0" + sources."invert-kv-1.0.0" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28835,30 +25121,15 @@ in sha1 = "1e5d46ba8e517e11b0b3482ce78c486622f496ad"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28877,44 +25148,28 @@ in sha1 = "d1f7c31c38fd45c4c9e51b0381f0947af28315f7"; }; dependencies = [ - sources."bluebird-3.5.0" + sources."bluebird-3.5.1" sources."calipers-2.0.0" sources."calipers-svg-2.0.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-value-parser-3.3.0" - (sources."url-parse-1.1.9" // { + sources."url-parse-1.2.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."querystringify-1.0.0" - sources."requires-port-1.0.0" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."querystringify-1.0.0" + sources."requires-port-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28933,30 +25188,15 @@ in sha1 = "aea35e9a0560d306caa5a607103812cc830285a3"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -28975,34 +25215,21 @@ in sha1 = "eaea8abfa654bee7c7daa58bd48b28e0f0c024f4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -29021,34 +25248,21 @@ in sha1 = "69f44ad5406924ebbda062b0933a63949c68d139"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -29067,40 +25281,24 @@ in sha1 = "a3d393d0f7ab7cf0c0b1366c9ede474ae9e0bfb0"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { + sources."reduce-function-call-1.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -29112,112 +25310,46 @@ in postcss-assets = nodeEnv.buildNodePackage { name = "postcss-assets"; packageName = "postcss-assets"; - version = "4.2.0"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-assets/-/postcss-assets-4.2.0.tgz"; - sha1 = "8aa1cbb3442647f8723e24e66a1bb624f155cd84"; + url = "https://registry.npmjs.org/postcss-assets/-/postcss-assets-5.0.0.tgz"; + sha1 = "f721d07d339605fb58414e9f69cf05401c54e709"; }; dependencies = [ - (sources."assets-2.1.0" // { - dependencies = [ - sources."async-1.5.2" - sources."calipers-2.0.0" - sources."calipers-gif-2.0.0" - sources."calipers-jpeg-2.0.0" - sources."calipers-png-2.0.0" - sources."calipers-svg-2.0.0" - sources."calipers-webp-2.0.0" - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."lodash-3.10.1" - sources."mime-1.3.6" - ]; - }) - sources."bluebird-3.5.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-functions-2.1.1" // { - dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" - ]; - }) + sources."assets-3.0.0" + sources."bluebird-3.5.1" + sources."postcss-6.0.14" + sources."postcss-functions-3.0.0" + sources."async-2.6.0" + sources."calipers-2.0.0" + sources."calipers-gif-2.0.0" + sources."calipers-jpeg-2.0.0" + sources."calipers-png-2.0.0" + sources."calipers-svg-2.0.0" + sources."calipers-webp-2.0.0" + sources."glob-7.1.2" + sources."lodash-4.17.4" + sources."mime-1.6.0" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."object-assign-4.1.1" + sources."postcss-value-parser-3.3.0" ]; buildInputs = globalBuildInputs; meta = { @@ -29236,2423 +25368,558 @@ in sha1 = "9a62ed8fcb1abcfbb25272e8d20ae6706df62121"; }; dependencies = [ - (sources."chalk-1.1.3" // { + sources."chalk-1.1.3" + sources."mkdirp-0.5.1" + sources."postcss-4.1.16" + sources."reduce-function-call-1.0.2" + sources."url-0.10.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."minimist-0.0.8" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."balanced-match-0.4.2" + sources."punycode-1.3.2" + sources."querystring-0.2.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to rebase assets to specified folder."; + homepage = "https://github.com/devex-web-frontend/postcss-assets-rebase#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-assetus = nodeEnv.buildNodePackage { + name = "postcss-assetus"; + packageName = "postcss-assetus"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-assetus/-/postcss-assetus-1.2.0.tgz"; + sha1 = "7e3d97c7885793496a6b4df41bae8e5668c4e160"; + }; + dependencies = [ + sources."file-type-4.4.0" + sources."glob-7.1.2" + sources."gulp-util-3.0.8" + sources."image-size-0.5.5" + (sources."imagemin-5.3.1" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."replace-ext-1.0.0" ]; }) + sources."imagemin-pngquant-5.0.1" (sources."mkdirp-0.5.1" // { dependencies = [ sources."minimist-0.0.8" ]; }) - (sources."postcss-4.1.16" // { + sources."pngquant-bin-3.1.1" + (sources."postcss-6.0.14" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" ]; }) - (sources."reduce-function-call-1.0.2" // { + sources."pretty-bytes-4.0.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."chalk-1.1.3" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."minimist-1.2.0" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) - (sources."url-0.10.3" // { + sources."vinyl-0.5.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + (sources."globby-6.1.0" // { dependencies = [ - sources."punycode-1.3.2" - sources."querystring-0.2.0" + sources."object-assign-4.1.1" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin to rebase assets to specified folder."; - homepage = "https://github.com/devex-web-frontend/postcss-assets-rebase#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-assetus = nodeEnv.buildNodePackage { - name = "postcss-assetus"; - packageName = "postcss-assetus"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-assetus/-/postcss-assetus-1.1.0.tgz"; - sha1 = "ac90ebead306913c3cceff6451b347108dfd3f63"; - }; - dependencies = [ - sources."file-type-4.4.0" - (sources."glob-7.1.2" // { + (sources."make-dir-1.1.0" // { dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" + sources."pify-3.0.0" ]; }) - (sources."gulp-util-3.0.8" // { + sources."p-pipe-1.2.0" + sources."pify-2.3.0" + sources."array-union-1.0.2" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + (sources."exec-buffer-3.2.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) + sources."is-png-1.1.0" + sources."execa-0.7.0" + sources."p-finally-1.0.0" + sources."rimraf-2.6.2" + sources."tempfile-2.0.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."isexe-2.0.0" + sources."path-key-2.0.1" + sources."temp-dir-1.0.0" + sources."uuid-3.1.0" + (sources."bin-build-2.2.0" // { + dependencies = [ + sources."tempfile-1.1.1" + sources."uuid-2.0.3" + ]; + }) + sources."bin-wrapper-3.0.2" + sources."logalot-2.1.0" + (sources."archive-type-3.2.0" // { dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - sources."minimist-1.2.0" - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) + sources."file-type-3.9.0" ]; }) - sources."image-size-0.5.5" - (sources."imagemin-5.3.1" // { + sources."decompress-3.0.0" + (sources."download-4.4.3" // { dependencies = [ - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."object-assign-4.1.1" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."make-dir-1.0.0" - sources."p-pipe-1.1.0" - sources."pify-2.3.0" - sources."replace-ext-1.0.0" + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."vinyl-1.2.0" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) - (sources."imagemin-pngquant-5.0.1" // { + (sources."exec-series-1.0.3" // { dependencies = [ - (sources."exec-buffer-3.2.0" // { - dependencies = [ - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - sources."p-finally-1.0.0" - sources."pify-3.0.0" - sources."rimraf-2.6.1" - (sources."tempfile-2.0.0" // { - dependencies = [ - sources."temp-dir-1.0.0" - sources."uuid-3.1.0" - ]; - }) - ]; - }) - sources."is-png-1.1.0" + sources."object-assign-4.1.1" ]; }) - (sources."mkdirp-0.5.1" // { + sources."url-regex-3.2.0" + (sources."buffer-to-vinyl-1.1.0" // { dependencies = [ - sources."minimist-0.0.8" + sources."file-type-3.9.0" + sources."readable-stream-2.3.3" + sources."uuid-2.0.3" + sources."vinyl-1.2.0" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) - (sources."pngquant-bin-3.1.1" // { + (sources."concat-stream-1.6.0" // { dependencies = [ - (sources."bin-build-2.2.0" // { - dependencies = [ - (sources."archive-type-3.2.0" // { - dependencies = [ - sources."file-type-3.9.0" - ]; - }) - (sources."decompress-3.0.0" // { - dependencies = [ - (sources."buffer-to-vinyl-1.1.0" // { - dependencies = [ - sources."file-type-3.9.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uuid-2.0.3" - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."decompress-tar-3.1.0" // { - dependencies = [ - sources."is-tar-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-tarbz2-3.1.0" // { - dependencies = [ - sources."is-bzip2-1.0.0" - sources."object-assign-2.1.1" - (sources."seek-bzip-1.0.5" // { - dependencies = [ - (sources."commander-2.8.1" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - ]; - }) - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-targz-3.1.0" // { - dependencies = [ - sources."is-gzip-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-unzip-3.4.0" // { - dependencies = [ - sources."is-zip-1.0.0" - (sources."read-all-stream-3.1.0" // { - dependencies = [ - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."stat-mode-0.2.2" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - (sources."yauzl-2.8.0" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - sources."buffer-crc32-0.2.13" - ]; - }) - ]; - }) - (sources."stream-combiner2-1.1.1" // { - dependencies = [ - sources."duplexer2-0.1.4" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."vinyl-assign-1.2.1" // { - dependencies = [ - sources."object-assign-4.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."vinyl-fs-2.4.4" // { - dependencies = [ - (sources."duplexify-3.5.0" // { - dependencies = [ - (sources."end-of-stream-1.0.0" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."inherits-2.0.3" - sources."stream-shift-1.0.0" - ]; - }) - (sources."glob-stream-5.3.5" // { - dependencies = [ - sources."extend-3.0.1" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."glob-parent-3.1.0" // { - dependencies = [ - (sources."is-glob-3.1.0" // { - dependencies = [ - sources."is-extglob-2.1.1" - ]; - }) - sources."path-dirname-1.0.2" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."ordered-read-streams-0.3.0" // { - dependencies = [ - sources."is-stream-1.1.0" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."to-absolute-glob-0.1.1" // { - dependencies = [ - (sources."extend-shallow-2.0.1" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - ]; - }) - (sources."unique-stream-2.2.1" // { - dependencies = [ - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - (sources."gulp-sourcemaps-1.6.0" // { - dependencies = [ - sources."convert-source-map-1.5.0" - ]; - }) - sources."is-valid-glob-0.3.0" - sources."lazystream-1.0.0" - sources."lodash.isequal-4.5.0" - sources."merge-stream-1.0.1" - sources."object-assign-4.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."through2-filter-2.0.0" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - sources."vali-date-1.0.0" - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."download-4.4.3" // { - dependencies = [ - (sources."caw-1.2.0" // { - dependencies = [ - (sources."get-proxy-1.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."is-obj-1.0.1" - sources."object-assign-3.0.0" - sources."tunnel-agent-0.4.3" - ]; - }) - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - ]; - }) - (sources."each-async-1.1.1" // { - dependencies = [ - sources."onetime-1.1.0" - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."filenamify-1.2.1" // { - dependencies = [ - sources."filename-reserved-regex-1.0.0" - (sources."strip-outer-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."trim-repeated-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - ]; - }) - (sources."got-5.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer2-0.1.4" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."node-status-codes-1.0.0" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - sources."timed-out-3.1.3" - sources."unzip-response-1.0.2" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - sources."gulp-decompress-1.2.0" - sources."gulp-rename-1.2.2" - sources."is-url-1.2.2" - sources."object-assign-4.1.1" - (sources."read-all-stream-3.1.0" // { - dependencies = [ - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."stream-combiner2-1.1.1" // { - dependencies = [ - sources."duplexer2-0.1.4" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - (sources."vinyl-fs-2.4.4" // { - dependencies = [ - (sources."duplexify-3.5.0" // { - dependencies = [ - (sources."end-of-stream-1.0.0" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."inherits-2.0.3" - sources."stream-shift-1.0.0" - ]; - }) - (sources."glob-stream-5.3.5" // { - dependencies = [ - sources."extend-3.0.1" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."glob-parent-3.1.0" // { - dependencies = [ - (sources."is-glob-3.1.0" // { - dependencies = [ - sources."is-extglob-2.1.1" - ]; - }) - sources."path-dirname-1.0.2" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."ordered-read-streams-0.3.0" // { - dependencies = [ - sources."is-stream-1.1.0" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."to-absolute-glob-0.1.1" // { - dependencies = [ - (sources."extend-shallow-2.0.1" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - ]; - }) - (sources."unique-stream-2.2.1" // { - dependencies = [ - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - (sources."gulp-sourcemaps-1.6.0" // { - dependencies = [ - sources."convert-source-map-1.5.0" - ]; - }) - sources."is-valid-glob-0.3.0" - sources."lazystream-1.0.0" - sources."lodash.isequal-4.5.0" - sources."merge-stream-1.0.1" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."through2-filter-2.0.0" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - sources."vali-date-1.0.0" - ]; - }) - (sources."ware-1.3.0" // { - dependencies = [ - (sources."wrap-fn-0.1.5" // { - dependencies = [ - sources."co-3.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."exec-series-1.0.3" // { - dependencies = [ - sources."async-each-series-1.1.0" - sources."object-assign-4.1.1" - ]; - }) - sources."rimraf-2.6.1" - (sources."tempfile-1.1.1" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."uuid-2.0.3" - ]; - }) - (sources."url-regex-3.2.0" // { - dependencies = [ - sources."ip-regex-1.0.3" - ]; - }) - ]; - }) - (sources."bin-wrapper-3.0.2" // { - dependencies = [ - (sources."bin-check-2.0.0" // { - dependencies = [ - (sources."executable-1.1.0" // { - dependencies = [ - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."bin-version-check-2.1.0" // { - dependencies = [ - (sources."bin-version-1.0.4" // { - dependencies = [ - (sources."find-versions-1.2.1" // { - dependencies = [ - sources."array-uniq-1.0.3" - sources."get-stdin-4.0.1" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."strip-indent-1.0.1" - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - sources."semver-regex-1.0.0" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - sources."semver-4.3.6" - (sources."semver-truncate-1.1.2" // { - dependencies = [ - sources."semver-5.3.0" - ]; - }) - ]; - }) - (sources."download-4.4.3" // { - dependencies = [ - (sources."caw-1.2.0" // { - dependencies = [ - (sources."get-proxy-1.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."is-obj-1.0.1" - sources."object-assign-3.0.0" - sources."tunnel-agent-0.4.3" - ]; - }) - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - ]; - }) - (sources."filenamify-1.2.1" // { - dependencies = [ - sources."filename-reserved-regex-1.0.0" - (sources."strip-outer-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."trim-repeated-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - ]; - }) - (sources."got-5.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer2-0.1.4" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."node-status-codes-1.0.0" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - sources."timed-out-3.1.3" - sources."unzip-response-1.0.2" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."gulp-decompress-1.2.0" // { - dependencies = [ - (sources."archive-type-3.2.0" // { - dependencies = [ - sources."file-type-3.9.0" - ]; - }) - (sources."decompress-3.0.0" // { - dependencies = [ - (sources."buffer-to-vinyl-1.1.0" // { - dependencies = [ - sources."file-type-3.9.0" - sources."uuid-2.0.3" - ]; - }) - (sources."decompress-tar-3.1.0" // { - dependencies = [ - sources."is-tar-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-tarbz2-3.1.0" // { - dependencies = [ - sources."is-bzip2-1.0.0" - sources."object-assign-2.1.1" - (sources."seek-bzip-1.0.5" // { - dependencies = [ - (sources."commander-2.8.1" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - ]; - }) - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-targz-3.1.0" // { - dependencies = [ - sources."is-gzip-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-unzip-3.4.0" // { - dependencies = [ - sources."is-zip-1.0.0" - sources."stat-mode-0.2.2" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."yauzl-2.8.0" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - sources."buffer-crc32-0.2.13" - ]; - }) - ]; - }) - sources."vinyl-assign-1.2.1" - ]; - }) - ]; - }) - sources."gulp-rename-1.2.2" - sources."is-url-1.2.2" - sources."object-assign-4.1.1" - (sources."read-all-stream-3.1.0" // { - dependencies = [ - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."stream-combiner2-1.1.1" // { - dependencies = [ - sources."duplexer2-0.1.4" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - (sources."vinyl-fs-2.4.4" // { - dependencies = [ - (sources."duplexify-3.5.0" // { - dependencies = [ - (sources."end-of-stream-1.0.0" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."inherits-2.0.3" - sources."stream-shift-1.0.0" - ]; - }) - (sources."glob-stream-5.3.5" // { - dependencies = [ - sources."extend-3.0.1" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."glob-parent-3.1.0" // { - dependencies = [ - (sources."is-glob-3.1.0" // { - dependencies = [ - sources."is-extglob-2.1.1" - ]; - }) - sources."path-dirname-1.0.2" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."ordered-read-streams-0.3.0" // { - dependencies = [ - sources."is-stream-1.1.0" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."to-absolute-glob-0.1.1" // { - dependencies = [ - (sources."extend-shallow-2.0.1" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - ]; - }) - (sources."unique-stream-2.2.1" // { - dependencies = [ - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - (sources."gulp-sourcemaps-1.6.0" // { - dependencies = [ - sources."convert-source-map-1.5.0" - ]; - }) - sources."is-valid-glob-0.3.0" - sources."lazystream-1.0.0" - sources."lodash.isequal-4.5.0" - sources."merge-stream-1.0.1" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."through2-filter-2.0.0" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - sources."vali-date-1.0.0" - ]; - }) - (sources."ware-1.3.0" // { - dependencies = [ - (sources."wrap-fn-0.1.5" // { - dependencies = [ - sources."co-3.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."each-async-1.1.1" // { - dependencies = [ - sources."onetime-1.1.0" - sources."set-immediate-shim-1.0.1" - ]; - }) - sources."lazy-req-1.1.0" - sources."os-filter-obj-1.0.3" - ]; - }) - (sources."logalot-2.1.0" // { - dependencies = [ - (sources."figures-1.7.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - sources."object-assign-4.1.1" - ]; - }) - (sources."squeak-1.3.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."console-stream-0.1.1" - (sources."lpad-align-1.1.2" // { - dependencies = [ - sources."get-stdin-4.0.1" - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."longest-1.0.1" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - sources."strip-indent-1.0.1" - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) - (sources."postcss-5.2.17" // { + (sources."decompress-tar-3.1.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { + sources."object-assign-2.1.1" + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + (sources."decompress-tarbz2-3.1.0" // { + dependencies = [ + sources."object-assign-2.1.1" + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + (sources."decompress-targz-3.1.0" // { + dependencies = [ + sources."object-assign-2.1.1" + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + (sources."decompress-unzip-3.4.0" // { + dependencies = [ + sources."vinyl-1.2.0" + ]; + }) + (sources."stream-combiner2-1.1.1" // { + dependencies = [ + sources."duplexer2-0.1.4" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."vinyl-assign-1.2.1" // { + dependencies = [ + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."vinyl-fs-2.4.4" // { + dependencies = [ + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."vinyl-1.2.0" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."typedarray-0.0.6" + sources."is-tar-1.0.0" + sources."strip-dirs-1.1.1" + (sources."tar-stream-1.5.5" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."get-stdin-4.0.1" + sources."is-absolute-0.1.7" + sources."is-natural-number-2.1.1" + sources."sum-up-1.0.3" + sources."is-relative-0.1.3" + (sources."bl-1.2.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."end-of-stream-1.4.0" + sources."is-bzip2-1.0.0" + sources."seek-bzip-1.0.5" + sources."commander-2.8.1" + sources."graceful-readlink-1.0.1" + sources."is-gzip-1.0.0" + sources."is-zip-1.0.0" + (sources."read-all-stream-3.1.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."stat-mode-0.2.2" + sources."yauzl-2.9.1" + sources."fd-slicer-1.0.1" + sources."buffer-crc32-0.2.13" + sources."pend-1.2.0" + (sources."duplexify-3.5.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."glob-stream-5.3.5" // { + dependencies = [ + sources."glob-5.0.15" + sources."through2-0.6.5" + sources."readable-stream-1.0.34" + ]; + }) + sources."graceful-fs-4.1.11" + (sources."gulp-sourcemaps-1.6.0" // { + dependencies = [ + sources."vinyl-1.2.0" + ]; + }) + sources."is-valid-glob-0.3.0" + (sources."lazystream-1.0.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."lodash.isequal-4.5.0" + (sources."merge-stream-1.0.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."strip-bom-2.0.0" + sources."strip-bom-stream-1.0.0" + sources."through2-filter-2.0.0" + sources."vali-date-1.0.0" + sources."stream-shift-1.0.0" + sources."extend-3.0.1" + sources."glob-parent-3.1.0" + (sources."micromatch-2.3.11" // { + dependencies = [ + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + ]; + }) + (sources."ordered-read-streams-0.3.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."to-absolute-glob-0.1.1" + sources."unique-stream-2.2.1" + sources."is-glob-3.1.0" + sources."path-dirname-1.0.2" + sources."is-extglob-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + (sources."extglob-0.3.2" // { + dependencies = [ + sources."is-extglob-1.0.0" + ]; + }) + sources."filename-regex-2.0.1" + sources."kind-of-3.2.2" + sources."normalize-path-2.1.1" + sources."object.omit-2.0.1" + (sources."parse-glob-3.0.4" // { + dependencies = [ + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + ]; + }) + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + (sources."isobject-2.1.0" // { + dependencies = [ + sources."isarray-1.0.0" + ]; + }) + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { dependencies = [ - sources."has-flag-1.0.0" + sources."kind-of-3.2.2" ]; }) + sources."kind-of-4.0.0" ]; }) - sources."pretty-bytes-4.0.2" + sources."repeat-string-1.6.1" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."remove-trailing-separator-1.1.0" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + (sources."glob-base-0.3.0" // { + dependencies = [ + sources."glob-parent-2.0.0" + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."extend-shallow-2.0.1" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."convert-source-map-1.5.1" + sources."is-utf8-0.2.1" + sources."first-chunk-stream-1.0.0" + sources."caw-1.2.0" + sources."each-async-1.1.1" + sources."filenamify-1.2.1" + (sources."got-5.7.1" // { + dependencies = [ + sources."duplexer2-0.1.4" + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."gulp-decompress-1.2.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."gulp-rename-1.2.2" + sources."is-url-1.2.2" + sources."ware-1.3.0" + sources."get-proxy-1.1.0" + sources."is-obj-1.0.1" + sources."tunnel-agent-0.4.3" + sources."rc-1.2.2" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."onetime-1.1.0" + sources."set-immediate-shim-1.0.1" + sources."filename-reserved-regex-1.0.0" + sources."strip-outer-1.0.0" + sources."trim-repeated-1.0.0" + sources."create-error-class-3.0.2" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."lowercase-keys-1.0.0" + sources."node-status-codes-1.0.0" + sources."parse-json-2.2.0" + sources."timed-out-3.1.3" + sources."unzip-response-1.0.2" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."prepend-http-1.0.4" + sources."wrap-fn-0.1.5" + sources."co-3.1.0" + sources."async-each-series-1.1.0" + sources."os-tmpdir-1.0.2" + sources."ip-regex-1.0.3" + sources."bin-check-2.0.0" + (sources."bin-version-check-2.1.0" // { + dependencies = [ + sources."semver-4.3.6" + ]; + }) + sources."lazy-req-1.1.0" + sources."os-filter-obj-1.0.3" + sources."executable-1.1.0" + (sources."meow-3.7.0" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."normalize-package-data-2.4.0" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."bin-version-1.0.4" + sources."semver-truncate-1.1.2" + sources."find-versions-1.2.1" + sources."semver-regex-1.0.0" + (sources."figures-1.7.0" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."squeak-1.3.0" + sources."console-stream-0.1.1" + sources."lpad-align-1.1.2" + sources."longest-1.0.1" + sources."source-map-0.6.1" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -31671,34 +25938,21 @@ in sha1 = "2c0494cb4f77d32fb560e1b9692307194c38ce50"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -31717,34 +25971,21 @@ in sha1 = "e818bb35d50b42e4310560d39f2e45c849005afc"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -31757,36 +25998,21 @@ in postcss-at-rules-variables = nodeEnv.buildNodePackage { name = "postcss-at-rules-variables"; packageName = "postcss-at-rules-variables"; - version = "0.1.1"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-at-rules-variables/-/postcss-at-rules-variables-0.1.1.tgz"; - sha1 = "c2e7d0897876245ac55c6020be75d958b5542a9f"; + url = "https://registry.npmjs.org/postcss-at-rules-variables/-/postcss-at-rules-variables-0.1.2.tgz"; + sha1 = "bf0db1f53ca61f571d5dafa83c9523406d64e195"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -31805,57 +26031,24 @@ in sha1 = "c5018b2c78c67f068fef99117b782bd6fde2c24f"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-reporter-1.4.1" // { + sources."postcss-5.2.18" + sources."postcss-reporter-1.4.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."lodash-4.17.4" + sources."log-symbols-1.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -31874,376 +26067,196 @@ in sha1 = "f3e0ee5e91052c09a35292972a476d4c35ec55f8"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."async-0.9.2" + sources."lodash-3.10.1" + sources."mkdirp-0.5.1" + sources."q-1.5.1" + (sources."spritesmith-1.5.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" + sources."async-0.2.10" + ]; + }) + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."minimist-0.0.8" + sources."layout-2.2.0" + sources."pixelsmith-1.3.4" + sources."semver-5.0.3" + sources."bin-pack-1.0.2" + sources."concat-stream-1.4.10" + sources."get-pixels-3.2.3" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.2.1" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + sources."inherits-2.0.3" + sources."typedarray-0.0.6" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."pngjs2-1.2.0" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."mime-types-2.1.17" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."is-buffer-1.1.6" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { + dependencies = [ + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" ]; }) + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) - sources."async-0.9.2" - sources."lodash-3.10.1" - (sources."mkdirp-0.5.1" // { + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + sources."duplexer2-0.0.2" + (sources."escodegen-1.3.3" // { dependencies = [ - sources."minimist-0.0.8" + sources."esprima-1.1.1" + sources."source-map-0.1.43" ]; }) - sources."q-1.5.0" - (sources."spritesmith-1.5.0" // { + sources."falafel-2.1.0" + sources."has-1.0.1" + sources."object-inspect-0.4.0" + sources."quote-stream-0.0.0" + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { dependencies = [ - sources."async-0.2.10" - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-1.3.4" // { - dependencies = [ - sources."async-0.9.2" - (sources."concat-stream-1.4.10" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - ]; - }) - ]; - }) - (sources."get-pixels-3.2.3" // { - dependencies = [ - sources."pngjs2-1.2.0" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.2.1" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - sources."pngjs2-1.2.0" - sources."through-2.3.8" - ]; - }) - ]; - }) - sources."semver-5.0.3" + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + (sources."through2-0.4.2" // { + dependencies = [ + sources."readable-stream-1.0.34" + ]; + }) + sources."process-nextick-args-1.0.7" + sources."util-deprecate-1.0.2" + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + (sources."xtend-2.1.2" // { + dependencies = [ + sources."object-keys-0.4.0" + ]; + }) + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" ]; }) + sources."gif-encoder-0.4.3" ]; buildInputs = globalBuildInputs; meta = { @@ -32262,120 +26275,9 @@ in sha1 = "28e2190d9c4cad3d62babf9c30b497a74ca0a24e"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."css-mqpacker-5.0.1" // { - dependencies = [ - sources."minimist-1.2.0" - ]; - }) - (sources."cssstats-3.1.0" // { - dependencies = [ - sources."bytes-2.5.0" - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."css-shorthand-expand-1.1.0" // { - dependencies = [ - sources."css-color-names-0.0.1" - sources."css-url-regex-0.0.1" - sources."hex-color-regex-1.1.0" - sources."hsl-regex-1.0.0" - sources."hsla-regex-1.0.0" - sources."map-obj-1.0.1" - sources."repeat-element-1.1.2" - sources."rgb-regex-1.0.1" - sources."rgba-regex-1.0.0" - sources."xtend-4.0.1" - ]; - }) - (sources."gzip-size-3.0.0" // { - dependencies = [ - sources."duplexer-0.1.1" - ]; - }) - sources."has-class-selector-1.0.0" - (sources."has-element-selector-1.0.0" // { - dependencies = [ - (sources."css-selector-tokenizer-0.5.4" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - ]; - }) - ]; - }) - sources."has-id-selector-1.0.0" - (sources."has-pseudo-class-1.0.1" // { - dependencies = [ - sources."pseudo-classes-0.0.1" - ]; - }) - (sources."has-pseudo-element-1.0.0" // { - dependencies = [ - sources."pseudo-elements-1.0.0" - ]; - }) - (sources."is-blank-1.1.0" // { - dependencies = [ - sources."is-empty-0.0.1" - sources."is-whitespace-0.3.0" - ]; - }) - (sources."is-css-shorthand-1.0.1" // { - dependencies = [ - sources."css-shorthand-properties-1.0.0" - ]; - }) - (sources."is-present-1.0.0" // { - dependencies = [ - (sources."is-blank-1.0.0" // { - dependencies = [ - sources."is-empty-0.0.1" - sources."is-whitespace-0.3.0" - ]; - }) - ]; - }) - (sources."is-vendor-prefixed-0.0.1" // { - dependencies = [ - sources."vendor-prefixes-0.0.1" - ]; - }) - sources."lodash-4.17.4" - sources."postcss-safe-parser-2.0.1" - sources."specificity-0.3.1" - ]; - }) + sources."chalk-1.1.3" + sources."css-mqpacker-5.0.1" + sources."cssstats-3.1.0" sources."lodash.isequal-4.5.0" sources."lodash.uniqby-4.7.0" (sources."mkdirp-0.5.1" // { @@ -32383,61 +26285,92 @@ in sources."minimist-0.0.8" ]; }) - (sources."parse-css-font-2.0.2" // { - dependencies = [ - sources."css-font-size-keywords-1.0.0" - sources."css-font-stretch-keywords-1.0.1" - sources."css-font-style-keywords-1.0.1" - sources."css-font-weight-keywords-1.0.0" - sources."css-global-keywords-1.0.1" - sources."css-list-helpers-1.0.1" - sources."css-system-font-keywords-1.0.0" - sources."tcomb-2.7.0" - sources."unquote-1.1.0" - ]; - }) - (sources."parse-css-sides-2.0.0" // { - dependencies = [ - sources."css-list-helpers-1.0.1" - sources."tcomb-2.7.0" - ]; - }) + sources."parse-css-font-2.0.2" + sources."parse-css-sides-2.0.0" sources."pify-2.3.0" - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-resolve-prop-3.1.0" // { + (sources."postcss-5.2.18" // { dependencies = [ - sources."object-assign-4.1.1" - sources."postcss-each-decl-1.0.2" - (sources."tcomb-postcss-1.0.2" // { - dependencies = [ - sources."tcomb-2.7.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-resolve-prop-3.1.0" + sources."postcss-selector-parser-2.2.3" + sources."pretty-bytes-3.0.1" + sources."shorthash-0.0.2" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."minimist-1.2.0" + sources."bytes-2.5.0" + sources."css-selector-tokenizer-0.7.0" + sources."css-shorthand-expand-1.1.0" + sources."gzip-size-3.0.0" + sources."has-class-selector-1.0.0" + (sources."has-element-selector-1.0.0" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."css-selector-tokenizer-0.5.4" ]; }) - (sources."pretty-bytes-3.0.1" // { + sources."has-id-selector-1.0.0" + sources."has-pseudo-class-1.0.1" + sources."has-pseudo-element-1.0.0" + sources."is-blank-1.1.0" + sources."is-css-shorthand-1.0.1" + (sources."is-present-1.0.0" // { dependencies = [ - sources."number-is-nan-1.0.1" + sources."is-blank-1.0.0" ]; }) - sources."shorthash-0.0.2" + sources."is-vendor-prefixed-0.0.1" + sources."lodash-4.17.4" + sources."postcss-safe-parser-2.0.1" + sources."specificity-0.3.2" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."regexpu-core-1.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."css-color-names-0.0.1" + sources."css-url-regex-0.0.1" + sources."hex-color-regex-1.1.0" + sources."hsl-regex-1.0.0" + sources."hsla-regex-1.0.0" + sources."map-obj-1.0.1" + sources."repeat-element-1.1.2" + sources."rgb-regex-1.0.1" + sources."rgba-regex-1.0.0" + sources."xtend-4.0.1" + sources."duplexer-0.1.1" + sources."pseudo-classes-0.0.1" + sources."pseudo-elements-1.0.0" + sources."is-empty-0.0.1" + sources."is-whitespace-0.3.0" + sources."css-shorthand-properties-1.1.0" + sources."vendor-prefixes-0.0.1" + sources."css-font-size-keywords-1.0.0" + sources."css-font-stretch-keywords-1.0.1" + sources."css-font-style-keywords-1.0.1" + sources."css-font-weight-keywords-1.0.0" + sources."css-global-keywords-1.0.1" + sources."css-list-helpers-1.0.1" + sources."css-system-font-keywords-1.0.0" + sources."tcomb-2.7.0" + sources."unquote-1.1.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."object-assign-4.1.1" + sources."postcss-each-decl-1.0.2" + sources."tcomb-postcss-1.0.2" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."number-is-nan-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -32456,34 +26389,21 @@ in sha1 = "6752c0230c745140549345b2b0e30ebeda01a405"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -32502,37 +26422,19 @@ in sha1 = "94dc422c8f90997f16bd33a3654bbbec084963b4"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-2.2.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -32551,34 +26453,21 @@ in sha1 = "f30b36c102ee5faa17b34fc59b4447a54a43643b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -32597,17 +26486,11 @@ in sha1 = "139f8a47d5e2a7474bfbd7782dc923d4b68598fa"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -32626,34 +26509,21 @@ in sha1 = "bd4f427ab4ee7cb0c4dbc7047ba3ab6edffa9cb2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -32682,41 +26552,23 @@ in postcss-autoreset = nodeEnv.buildNodePackage { name = "postcss-autoreset"; packageName = "postcss-autoreset"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-autoreset/-/postcss-autoreset-2.0.0.tgz"; - sha1 = "24a0c84c50d5dd4078598d706a3ee5650b7f3f42"; + url = "https://registry.npmjs.org/postcss-autoreset/-/postcss-autoreset-2.0.1.tgz"; + sha1 = "dab65ddcf87a93b5325ee8d0857219133c03268b"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-js-1.0.0" // { - dependencies = [ - sources."camelcase-css-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-js-1.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."camelcase-css-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -32735,34 +26587,21 @@ in sha1 = "c58d00d662ff81d4a9f1afd1209943d90ef68674"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -32781,17 +26620,11 @@ in sha1 = "dafecfce6db54b515a39690db4e7a3c4cb8a5796"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -32810,17 +26643,11 @@ in sha1 = "b7c9b9416f0f65653d5592db41c347fc8909b0ac"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -32839,18 +26666,12 @@ in sha1 = "3e1a745bd0e15c28b4847f56582947d11588ab96"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."lodash-3.10.1" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -32863,2079 +26684,61 @@ in postcss-banks-db = nodeEnv.buildNodePackage { name = "postcss-banks-db"; packageName = "postcss-banks-db"; - version = "0.9.0"; + version = "0.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-banks-db/-/postcss-banks-db-0.9.0.tgz"; - sha1 = "c26ffa8ea8c50147832c8a5feb6ee98b3800abac"; + url = "https://registry.npmjs.org/postcss-banks-db/-/postcss-banks-db-0.10.0.tgz"; + sha1 = "1be50c507e49526395c42d1497990c13b16936de"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."banks-db-0.12.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."banks-db-0.10.9" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to insert CSS based on Banks DB data"; + homepage = https://github.com/ramoona/postcss-banks-db; + license = "MIT"; + }; + production = true; + }; + postcss-base64 = nodeEnv.buildNodePackage { + name = "postcss-base64"; + packageName = "postcss-base64"; + version = "0.7.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-base64/-/postcss-base64-0.7.1.tgz"; + sha1 = "94a7f65b5d80641b6068933ddf31dad8471caf6c"; + }; + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."JSV-4.0.2" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."ava-0.16.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - sources."array-union-1.0.2" - sources."array-uniq-1.0.3" - sources."arrify-1.0.1" - (sources."ava-files-0.1.1" // { - dependencies = [ - (sources."globby-5.0.0" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."multimatch-2.1.0" // { - dependencies = [ - sources."array-differ-1.0.0" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."slash-1.0.0" - ]; - }) - (sources."ava-init-0.1.6" // { - dependencies = [ - sources."arr-exclude-1.0.0" - (sources."cross-spawn-4.0.2" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - sources."the-argv-1.0.0" - (sources."write-pkg-1.0.0" // { - dependencies = [ - (sources."write-json-file-1.2.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."pify-2.3.0" - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."detect-indent-4.0.0" - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."json5-0.5.1" - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - sources."source-map-0.5.6" - ]; - }) - (sources."babel-plugin-ava-throws-helper-0.1.0" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - sources."babel-plugin-detective-2.0.0" - (sources."babel-plugin-espower-2.3.2" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."detect-indent-4.0.0" - sources."jsesc-1.3.0" - sources."lodash-4.17.4" - sources."source-map-0.5.6" - sources."trim-right-1.0.1" - ]; - }) - sources."babylon-6.17.4" - (sources."call-matcher-1.0.1" // { - dependencies = [ - sources."deep-equal-1.0.1" - ]; - }) - sources."core-js-2.4.1" - (sources."espower-location-detector-1.0.0" // { - dependencies = [ - sources."is-url-1.2.2" - sources."path-is-absolute-1.0.1" - sources."source-map-0.5.6" - sources."xtend-4.0.1" - ]; - }) - sources."espurify-1.7.0" - sources."estraverse-4.2.0" - ]; - }) - sources."babel-plugin-transform-runtime-6.23.0" - (sources."babel-preset-es2015-6.24.1" // { - dependencies = [ - sources."babel-plugin-check-es2015-constants-6.22.0" - sources."babel-plugin-transform-es2015-arrow-functions-6.22.0" - sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0" - (sources."babel-plugin-transform-es2015-block-scoping-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-plugin-transform-es2015-classes-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-helper-replace-supers-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-define-map-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-computed-properties-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - sources."babel-plugin-transform-es2015-destructuring-6.23.0" - (sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - sources."babel-plugin-transform-es2015-for-of-6.23.0" - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - sources."babel-plugin-transform-es2015-literals-6.22.0" - (sources."babel-plugin-transform-es2015-modules-amd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-hoist-variables-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-umd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-object-super-6.24.1" // { - dependencies = [ - (sources."babel-helper-replace-supers-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - sources."babel-plugin-transform-es2015-spread-6.22.0" - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - sources."babel-plugin-transform-es2015-template-literals-6.22.0" - sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0" - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-regenerator-6.24.1" // { - dependencies = [ - (sources."regenerator-transform-0.9.11" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."private-0.1.7" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-preset-stage-2-6.24.1" // { - dependencies = [ - (sources."babel-plugin-transform-class-properties-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-plugin-syntax-class-properties-6.13.0" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-decorators-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babel-plugin-syntax-decorators-6.13.0" - (sources."babel-helper-explode-class-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-bindify-decorators-6.24.1" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-dynamic-import-6.18.0" - (sources."babel-preset-stage-3-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-generator-functions-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-generators-6.13.0" - ]; - }) - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-object-rest-spread-6.23.0" // { - dependencies = [ - sources."babel-plugin-syntax-object-rest-spread-6.13.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."bluebird-3.5.0" - (sources."caching-transform-1.0.1" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."clean-yaml-object-0.1.0" - (sources."cli-cursor-1.0.2" // { - dependencies = [ - (sources."restore-cursor-1.0.1" // { - dependencies = [ - sources."exit-hook-1.1.1" - sources."onetime-1.1.0" - ]; - }) - ]; - }) - sources."cli-spinners-0.1.2" - (sources."cli-truncate-0.2.1" // { - dependencies = [ - sources."slice-ansi-0.0.4" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."co-with-promise-4.6.0" // { - dependencies = [ - (sources."pinkie-promise-1.0.0" // { - dependencies = [ - sources."pinkie-1.0.0" - ]; - }) - ]; - }) - sources."common-path-prefix-1.0.0" - sources."convert-source-map-1.5.0" - (sources."core-assert-0.2.1" // { - dependencies = [ - sources."buf-compare-1.0.1" - sources."is-error-2.2.1" - ]; - }) - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."empower-core-0.6.2" // { - dependencies = [ - sources."call-signature-0.0.2" - sources."core-js-2.4.1" - ]; - }) - (sources."figures-1.7.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."find-cache-dir-0.1.1" // { - dependencies = [ - sources."commondir-1.0.1" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."pkg-dir-1.0.0" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."fn-name-2.0.1" - sources."has-flag-2.0.0" - sources."ignore-by-default-1.0.1" - (sources."is-ci-1.0.10" // { - dependencies = [ - sources."ci-info-1.0.0" - ]; - }) - sources."is-generator-fn-1.0.0" - sources."is-obj-1.0.1" - (sources."is-observable-0.2.0" // { - dependencies = [ - sources."symbol-observable-0.2.4" - ]; - }) - sources."is-promise-2.1.0" - (sources."last-line-stream-1.0.0" // { - dependencies = [ - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."lodash.debounce-4.0.8" - sources."lodash.difference-4.5.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - sources."signal-exit-3.0.2" - ]; - }) - (sources."matcher-0.1.2" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."max-timeout-1.0.0" - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - sources."indent-string-2.1.0" - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - sources."ms-0.7.3" - (sources."not-so-shallow-0.1.4" // { - dependencies = [ - sources."buffer-equals-1.0.4" - ]; - }) - sources."object-assign-4.1.1" - (sources."observable-to-promise-0.4.0" // { - dependencies = [ - sources."symbol-observable-0.2.4" - ]; - }) - sources."option-chain-0.1.1" - sources."package-hash-1.2.0" - (sources."pkg-conf-1.1.3" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."symbol-0.2.3" - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."power-assert-context-formatter-1.1.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."power-assert-context-traversal-1.1.1" // { - dependencies = [ - sources."estraverse-4.2.0" - ]; - }) - ]; - }) - (sources."power-assert-renderer-assertion-1.1.1" // { - dependencies = [ - sources."power-assert-renderer-base-1.1.1" - (sources."power-assert-util-string-width-1.1.1" // { - dependencies = [ - sources."eastasianwidth-0.1.1" - ]; - }) - ]; - }) - (sources."power-assert-renderer-succinct-1.1.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."power-assert-renderer-diagram-1.1.2" // { - dependencies = [ - sources."power-assert-renderer-base-1.1.1" - (sources."power-assert-util-string-width-1.1.1" // { - dependencies = [ - sources."eastasianwidth-0.1.1" - ]; - }) - (sources."stringifier-1.3.0" // { - dependencies = [ - sources."traverse-0.6.6" - sources."type-name-2.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."pretty-ms-2.1.0" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - sources."parse-ms-1.0.1" - sources."plur-1.0.0" - ]; - }) - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."require-precompiled-0.1.0" - (sources."resolve-cwd-1.0.0" // { - dependencies = [ - sources."resolve-from-2.0.0" - ]; - }) - sources."set-immediate-shim-1.0.1" - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - sources."stack-utils-0.4.0" - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."time-require-0.1.2" // { - dependencies = [ - (sources."chalk-0.4.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."ansi-styles-1.0.0" - sources."strip-ansi-0.1.1" - ]; - }) - sources."text-table-0.2.0" - sources."date-time-0.1.1" - (sources."pretty-ms-0.2.2" // { - dependencies = [ - sources."parse-ms-0.1.2" - ]; - }) - ]; - }) - (sources."unique-temp-dir-1.0.0" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."os-tmpdir-1.0.2" - sources."uid2-0.0.3" - ]; - }) - (sources."update-notifier-1.0.3" // { - dependencies = [ - (sources."boxen-0.6.0" // { - dependencies = [ - sources."ansi-align-1.1.0" - sources."camelcase-2.1.1" - sources."cli-boxes-1.0.0" - sources."filled-array-1.1.0" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."widest-line-1.0.0" - ]; - }) - (sources."configstore-2.1.0" // { - dependencies = [ - sources."dot-prop-3.0.0" - sources."graceful-fs-4.1.11" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."os-tmpdir-1.0.2" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - sources."uuid-2.0.3" - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - sources."is-npm-1.0.0" - (sources."latest-version-2.0.0" // { - dependencies = [ - (sources."package-json-2.4.0" // { - dependencies = [ - (sources."got-5.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer2-0.1.4" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."node-status-codes-1.0.0" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - sources."read-all-stream-3.1.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."timed-out-3.1.3" - sources."unzip-response-1.0.2" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."registry-auth-token-3.3.1" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - sources."safe-buffer-5.1.1" - ]; - }) - (sources."registry-url-3.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."semver-5.3.0" - ]; - }) - ]; - }) - sources."lazy-req-1.1.0" - (sources."semver-diff-2.1.0" // { - dependencies = [ - sources."semver-5.3.0" - ]; - }) - (sources."xdg-basedir-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."jsonfile-2.4.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin to insert CSS based on Banks DB data"; - homepage = https://github.com/ramoona/postcss-banks-db; - license = "MIT"; - }; - production = true; - }; - postcss-base64 = nodeEnv.buildNodePackage { - name = "postcss-base64"; - packageName = "postcss-base64"; - version = "0.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-base64/-/postcss-base64-0.7.1.tgz"; - sha1 = "94a7f65b5d80641b6068933ddf31dad8471caf6c"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -34954,163 +26757,103 @@ in sha1 = "788a0a29cf1682b43aaa81c13fdef8fcfcd572ed"; }; dependencies = [ - (sources."css-2.2.1" // { + sources."css-2.2.1" + sources."cssmin-0.4.3" + sources."jsdom-nogyp-0.8.3" + sources."lodash-3.10.1" + (sources."postcss-4.1.16" // { dependencies = [ - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."source-map-resolve-0.3.1" // { - dependencies = [ - sources."source-map-url-0.3.0" - sources."atob-1.1.3" - sources."resolve-url-0.2.1" - ]; - }) - sources."urix-0.1.0" - sources."inherits-2.0.3" + sources."source-map-0.4.4" ]; }) - sources."cssmin-0.4.3" - (sources."jsdom-nogyp-0.8.3" // { + sources."source-map-0.1.43" + sources."source-map-resolve-0.3.1" + sources."urix-0.1.0" + sources."inherits-2.0.3" + sources."amdefine-1.0.1" + sources."source-map-url-0.3.0" + sources."atob-1.1.3" + sources."resolve-url-0.2.1" + sources."htmlparser2-3.9.2" + sources."nwmatcher-1.3.9" + sources."request-2.83.0" + sources."xmlhttprequest-1.8.0" + sources."cssom-0.2.5" + (sources."cssstyle-0.2.37" // { dependencies = [ - (sources."htmlparser2-3.9.2" // { - dependencies = [ - sources."domelementtype-1.3.0" - sources."domhandler-2.4.1" - (sources."domutils-1.6.2" // { - dependencies = [ - (sources."dom-serializer-0.1.0" // { - dependencies = [ - sources."domelementtype-1.1.3" - ]; - }) - ]; - }) - sources."entities-1.1.1" - sources."inherits-2.0.3" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."nwmatcher-1.3.9" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."xmlhttprequest-1.8.0" - sources."cssom-0.2.5" - (sources."cssstyle-0.2.37" // { - dependencies = [ - sources."cssom-0.3.2" - ]; - }) + sources."cssom-0.3.2" ]; }) - sources."lodash-3.10.1" - (sources."postcss-4.1.16" // { + sources."domelementtype-1.3.0" + sources."domhandler-2.4.1" + sources."domutils-1.6.2" + sources."entities-1.1.1" + sources."readable-stream-2.3.3" + (sources."dom-serializer-0.1.0" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."domelementtype-1.1.3" ]; }) + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."es6-promise-2.3.0" + sources."js-base64-2.1.9" ]; buildInputs = globalBuildInputs; meta = { @@ -35129,34 +26872,21 @@ in sha1 = "eecb02742e211c391c7031539c19729a534ef5ec"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35175,34 +26905,21 @@ in sha1 = "23a0fd15a346338796cf2239384e68eb3c362366"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35222,34 +26939,21 @@ in }; dependencies = [ sources."bemed-1.0.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35268,34 +26972,21 @@ in sha1 = "ba043a30d88c7df45fd202b0ee8d8a5c4f5b948a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35308,39 +26999,28 @@ in postcss-bgimage = nodeEnv.buildNodePackage { name = "postcss-bgimage"; packageName = "postcss-bgimage"; - version = "2.0.0-beta.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-bgimage/-/postcss-bgimage-2.0.0-beta.0.tgz"; - sha1 = "047dcdbbc94953e6853ef2b12d6ea17df9fc8b8d"; + url = "https://registry.npmjs.org/postcss-bgimage/-/postcss-bgimage-2.0.1.tgz"; + sha1 = "8055da5607173165f5c7f7b0fa35d49f1370cb87"; }; dependencies = [ - (sources."postcss-6.0.1" // { + sources."css-color-list-0.0.2" + sources."postcss-6.0.1" + sources."css-color-names-0.0.4" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35353,40 +27033,27 @@ in postcss-bidirection = nodeEnv.buildNodePackage { name = "postcss-bidirection"; packageName = "postcss-bidirection"; - version = "2.4.0"; + version = "2.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-bidirection/-/postcss-bidirection-2.4.0.tgz"; - sha1 = "7cfa21448630e8f8f705b8342a198de4c104687b"; + url = "https://registry.npmjs.org/postcss-bidirection/-/postcss-bidirection-2.6.0.tgz"; + sha1 = "2458a0521d86332f899e85727f7cb761dbfa2ade"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35405,35 +27072,22 @@ in sha1 = "adf0964aeafe5544bddb5b4f8e818f3b64e3400b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35452,34 +27106,21 @@ in sha1 = "4da75da04052fdce99ca6b84510fa138b95aeab5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35498,34 +27139,21 @@ in sha1 = "29dcc359b53dada33adcb661c60774b46fffc605"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35544,34 +27172,21 @@ in sha1 = "d012eb6c45726805b99bf1ed99f02a7722f24189"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35590,34 +27205,21 @@ in sha1 = "e293e12594b98be6143921dd3744f94cac963131"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35646,37 +27248,22 @@ in postcss-brand-colors = nodeEnv.buildNodePackage { name = "postcss-brand-colors"; packageName = "postcss-brand-colors"; - version = "1.0.0"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-brand-colors/-/postcss-brand-colors-1.0.0.tgz"; - sha1 = "e055cf6ccffd9f185524b41f713d1c74e3ebd991"; + url = "https://registry.npmjs.org/postcss-brand-colors/-/postcss-brand-colors-2.0.0.tgz"; + sha1 = "36bd7568c11baa2165f7a029f6c9fc336e23dd6d"; }; dependencies = [ - sources."brand-colors-1.2.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."brand-colors-2.0.1" + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35695,34 +27282,21 @@ in sha1 = "dabf27d04367fd303cd47fbdf90bf8d7f72a6326"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35741,34 +27315,21 @@ in sha1 = "6190972adef59a5f10387637b338354eec74326b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35787,34 +27348,21 @@ in sha1 = "ae069dd086d57388d196e1dac39cb8d7626feb48"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35833,152 +27381,71 @@ in sha1 = "3440189dfd470ba9615b17883e2b80a05ccd806d"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."glob-7.0.6" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) + sources."chalk-1.1.3" + sources."glob-7.0.6" sources."minimist-1.2.0" - (sources."node-notifier-4.6.1" // { - dependencies = [ - (sources."cli-usage-0.1.4" // { - dependencies = [ - sources."marked-0.3.6" - (sources."marked-terminal-1.7.0" // { - dependencies = [ - (sources."cardinal-1.0.0" // { - dependencies = [ - sources."ansicolors-0.2.1" - (sources."redeyed-1.0.1" // { - dependencies = [ - sources."esprima-3.0.0" - ]; - }) - ]; - }) - (sources."cli-table-0.3.1" // { - dependencies = [ - sources."colors-1.0.3" - ]; - }) - sources."lodash.assign-4.2.0" - (sources."node-emoji-1.7.0" // { - dependencies = [ - sources."lodash.toarray-4.4.0" - sources."string.prototype.codepointat-0.2.0" - ]; - }) - ]; - }) - ]; - }) - sources."growly-1.3.0" - (sources."lodash.clonedeep-3.0.2" // { - dependencies = [ - (sources."lodash._baseclone-3.3.0" // { - dependencies = [ - sources."lodash._arraycopy-3.0.0" - sources."lodash._arrayeach-3.0.0" - (sources."lodash._baseassign-3.2.0" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - ]; - }) - sources."lodash._basefor-3.0.3" - sources."lodash.isarray-3.0.4" - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - ]; - }) - ]; - }) - sources."lodash._bindcallback-3.0.1" - ]; - }) - sources."semver-5.3.0" - sources."shellwords-0.1.0" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) + sources."node-notifier-4.6.1" (sources."postcss-5.0.21" // { dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) - (sources."shelljs-0.7.8" // { - dependencies = [ - sources."interpret-1.0.3" - (sources."rechoir-0.6.2" // { - dependencies = [ - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - ]; - }) - (sources."watch-0.19.3" // { - dependencies = [ - (sources."exec-sh-0.2.0" // { - dependencies = [ - sources."merge-1.2.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) + sources."shelljs-0.7.8" + sources."watch-0.19.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."cli-usage-0.1.4" + sources."growly-1.3.0" + sources."lodash.clonedeep-3.0.2" + sources."semver-5.4.1" + sources."shellwords-0.1.1" + sources."which-1.3.0" + sources."marked-0.3.9" + sources."marked-terminal-1.7.0" + sources."cardinal-1.0.0" + sources."cli-table-0.3.1" + sources."lodash.assign-4.2.0" + sources."node-emoji-1.8.1" + sources."ansicolors-0.2.1" + sources."redeyed-1.0.1" + sources."esprima-3.0.0" + sources."colors-1.0.3" + sources."lodash.toarray-4.4.0" + sources."lodash._baseclone-3.3.0" + sources."lodash._bindcallback-3.0.1" + sources."lodash._arraycopy-3.0.0" + sources."lodash._arrayeach-3.0.0" + sources."lodash._baseassign-3.2.0" + sources."lodash._basefor-3.0.3" + sources."lodash.isarray-3.0.4" + sources."lodash.keys-3.1.2" + sources."lodash._basecopy-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."isexe-2.0.0" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" + sources."interpret-1.1.0" + sources."rechoir-0.6.2" + sources."resolve-1.5.0" + sources."path-parse-1.0.5" + sources."exec-sh-0.2.1" + sources."merge-1.2.0" ]; buildInputs = globalBuildInputs; meta = { @@ -35991,36 +27458,594 @@ in postcss-button = nodeEnv.buildNodePackage { name = "postcss-button"; packageName = "postcss-button"; - version = "0.1.19"; + version = "0.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-button/-/postcss-button-0.1.19.tgz"; - sha1 = "68a4f74fd4fff13dd2279196b98f13bc9a3a0c71"; + url = "https://registry.npmjs.org/postcss-button/-/postcss-button-0.3.7.tgz"; + sha1 = "65ab78277b4c29fc17bdb5fbfd58511cac41db53"; }; dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-6.0.14" + sources."ava-0.23.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + (sources."@ava/babel-preset-stage-4-1.1.0" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."package-hash-1.2.0" + sources."md5-hex-1.3.0" + ]; + }) + sources."@ava/babel-preset-transform-test-files-3.0.0" + sources."@ava/write-file-atomic-2.2.0" + sources."@concordance/react-1.0.0" + sources."ansi-escapes-2.0.0" + sources."arr-flatten-1.1.0" + sources."array-union-1.0.2" + sources."array-uniq-1.0.3" + sources."arrify-1.0.1" + sources."auto-bind-1.1.0" + sources."ava-init-0.2.1" + (sources."babel-core-6.26.0" // { + dependencies = [ + sources."debug-2.6.9" + sources."source-map-0.5.7" + sources."ms-2.0.0" + ]; + }) + sources."bluebird-3.5.1" + (sources."caching-transform-1.0.1" // { + dependencies = [ + sources."md5-hex-1.3.0" + sources."write-file-atomic-1.3.4" + ]; + }) + sources."chokidar-1.7.0" + sources."clean-stack-1.3.0" + sources."clean-yaml-object-0.1.0" + sources."cli-cursor-2.1.0" + sources."cli-spinners-1.1.0" + (sources."cli-truncate-1.1.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."co-with-promise-4.6.0" + sources."code-excerpt-2.1.0" + sources."common-path-prefix-1.0.0" + sources."concordance-3.0.0" + sources."convert-source-map-1.5.1" + sources."core-assert-0.2.1" + sources."currently-unhandled-0.4.1" + (sources."debug-3.1.0" // { + dependencies = [ + sources."ms-2.0.0" + ]; + }) + sources."dot-prop-4.2.0" + sources."empower-core-0.6.2" + sources."equal-length-1.0.1" + sources."figures-2.0.0" + sources."find-cache-dir-1.0.0" + sources."fn-name-2.0.1" + sources."get-port-3.2.0" + (sources."globby-6.1.0" // { + dependencies = [ + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + ]; + }) + sources."hullabaloo-config-manager-1.1.1" + sources."ignore-by-default-1.0.1" + sources."import-local-0.1.1" + sources."indent-string-3.2.0" + sources."is-ci-1.0.10" + sources."is-generator-fn-1.0.0" + sources."is-obj-1.0.1" + sources."is-observable-0.2.0" + sources."is-promise-2.1.0" + sources."js-yaml-3.10.0" + sources."last-line-stream-1.0.0" + sources."lodash.clonedeepwith-4.5.0" + sources."lodash.debounce-4.0.8" + sources."lodash.difference-4.5.0" + sources."lodash.flatten-4.4.0" + sources."loud-rejection-1.6.0" + (sources."make-dir-1.1.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) + sources."matcher-1.0.0" + sources."md5-hex-2.0.0" + (sources."meow-3.7.0" // { + dependencies = [ + sources."minimist-1.2.0" + sources."read-pkg-up-1.0.1" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."strip-bom-2.0.0" + ]; + }) + sources."ms-2.1.1" + sources."multimatch-2.1.0" + (sources."observable-to-promise-0.5.0" // { + dependencies = [ + sources."symbol-observable-1.1.0" + ]; + }) + sources."option-chain-1.0.0" + sources."package-hash-2.0.0" + sources."pkg-conf-2.0.0" + sources."plur-2.1.2" + sources."pretty-ms-3.1.0" + sources."require-precompiled-0.1.0" + sources."resolve-cwd-2.0.0" + sources."safe-buffer-5.1.1" + sources."slash-1.0.0" + (sources."source-map-support-0.4.18" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."stack-utils-1.0.1" + (sources."strip-ansi-4.0.0" // { + dependencies = [ + sources."ansi-regex-3.0.0" + ]; + }) + sources."strip-bom-buf-1.0.0" + (sources."time-require-0.1.2" // { + dependencies = [ + sources."chalk-0.4.0" + sources."date-time-0.1.1" + sources."pretty-ms-0.2.2" + sources."ansi-styles-1.0.0" + sources."strip-ansi-0.1.1" + sources."parse-ms-0.1.2" + ]; + }) + sources."trim-off-newlines-1.0.1" + sources."unique-temp-dir-1.0.0" + sources."update-notifier-2.3.0" + sources."babel-plugin-check-es2015-constants-6.22.0" + sources."babel-plugin-syntax-trailing-function-commas-6.22.0" + sources."babel-plugin-transform-async-to-generator-6.24.1" + sources."babel-plugin-transform-es2015-destructuring-6.23.0" + sources."babel-plugin-transform-es2015-function-name-6.24.1" + sources."babel-plugin-transform-es2015-modules-commonjs-6.26.0" + sources."babel-plugin-transform-es2015-parameters-6.24.1" + sources."babel-plugin-transform-es2015-spread-6.22.0" + sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" + sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" + sources."babel-plugin-transform-exponentiation-operator-6.24.1" + sources."babel-runtime-6.26.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."babel-helper-remap-async-to-generator-6.24.1" + sources."babel-plugin-syntax-async-functions-6.13.0" + sources."babel-template-6.26.0" + sources."babel-types-6.26.0" + (sources."babel-traverse-6.26.0" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) + sources."babel-helper-function-name-6.24.1" + sources."babylon-6.18.0" + sources."lodash-4.17.4" + sources."esutils-2.0.2" + sources."to-fast-properties-1.0.3" + (sources."babel-code-frame-6.26.0" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + ]; + }) + sources."babel-messages-6.23.0" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."js-tokens-3.0.2" + sources."has-ansi-2.0.0" + sources."ansi-regex-2.1.1" + sources."loose-envify-1.3.1" + sources."babel-helper-get-function-arity-6.24.1" + sources."babel-plugin-transform-strict-mode-6.24.1" + sources."babel-helper-call-delegate-6.24.1" + sources."babel-helper-hoist-variables-6.24.1" + sources."babel-helper-regex-6.26.0" + sources."regexpu-core-2.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."babel-plugin-syntax-exponentiation-operator-6.13.0" + sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" + sources."babel-helper-explode-assignable-expression-6.24.1" + sources."md5-o-matic-0.1.1" + sources."@ava/babel-plugin-throws-helper-2.0.0" + sources."babel-plugin-espower-2.3.2" + (sources."babel-generator-6.26.0" // { + dependencies = [ + sources."jsesc-1.3.0" + sources."source-map-0.5.7" + ]; + }) + sources."call-matcher-1.0.1" + (sources."espower-location-detector-1.0.0" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."espurify-1.7.0" + sources."estraverse-4.2.0" + sources."detect-indent-4.0.0" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."deep-equal-1.0.1" + sources."is-url-1.2.2" + sources."path-is-absolute-1.0.1" + sources."xtend-4.0.1" + sources."graceful-fs-4.1.11" + sources."imurmurhash-0.1.4" + sources."slide-1.1.6" + sources."arr-exclude-1.0.0" + sources."execa-0.7.0" + sources."has-yarn-1.0.0" + sources."read-pkg-up-2.0.0" + sources."write-pkg-3.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."isexe-2.0.0" + sources."path-key-2.0.1" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + sources."load-json-file-2.0.0" + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-3.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."sort-keys-2.0.0" + (sources."write-json-file-2.3.0" // { + dependencies = [ + sources."detect-indent-5.0.0" + sources."pify-3.0.0" + ]; + }) + sources."is-plain-obj-1.1.0" + sources."write-file-atomic-2.3.0" + sources."babel-helpers-6.24.1" + sources."babel-register-6.26.0" + sources."json5-0.5.1" + sources."minimatch-3.0.4" + sources."private-0.1.8" + sources."home-or-tmp-2.0.0" + sources."mkdirp-0.5.1" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."minimist-0.0.8" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + (sources."rc-1.2.2" // { + dependencies = [ + sources."minimist-1.2.0" + ]; + }) + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + (sources."tar-pack-3.4.1" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + (sources."gauge-2.7.4" // { + dependencies = [ + sources."strip-ansi-3.0.1" + ]; + }) + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + (sources."string-width-1.0.2" // { + dependencies = [ + sources."strip-ansi-3.0.1" + ]; + }) + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."restore-cursor-2.0.0" + sources."onetime-2.0.1" + sources."mimic-fn-1.1.0" + (sources."slice-ansi-1.0.0" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."pinkie-promise-1.0.0" + sources."pinkie-1.0.0" + sources."convert-to-spaces-1.0.2" + sources."date-time-2.1.0" + sources."fast-diff-1.1.2" + sources."function-name-support-0.2.0" + sources."js-string-escape-1.0.1" + sources."lodash.clonedeep-4.5.0" + sources."lodash.flattendeep-4.4.0" + sources."lodash.merge-4.6.0" + sources."well-known-symbols-1.0.0" + sources."time-zone-1.0.0" + sources."buf-compare-1.0.1" + sources."is-error-2.2.1" + sources."array-find-index-1.0.2" + sources."call-signature-0.0.2" + sources."commondir-1.0.1" + sources."pkg-dir-2.0.0" + sources."es6-error-4.0.2" + sources."lodash.isequal-4.5.0" + sources."resolve-from-3.0.0" + sources."ci-info-1.1.2" + sources."symbol-observable-0.2.4" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."through2-2.0.3" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."map-obj-1.0.1" + (sources."redent-1.0.0" // { + dependencies = [ + sources."indent-string-2.1.0" ]; }) + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."is-utf8-0.2.1" + sources."strip-indent-1.0.1" + sources."get-stdin-4.0.1" + sources."array-differ-1.0.0" + sources."release-zalgo-1.0.0" + sources."irregular-plurals-1.4.0" + sources."parse-ms-1.0.1" + sources."text-table-0.2.0" + sources."has-color-0.1.7" + sources."uid2-0.0.3" + (sources."boxen-1.3.0" // { + dependencies = [ + sources."camelcase-4.1.0" + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."configstore-3.1.1" + sources."import-lazy-2.1.0" + sources."is-installed-globally-0.1.0" + sources."is-npm-1.0.0" + sources."latest-version-3.1.0" + sources."semver-diff-2.1.0" + sources."xdg-basedir-3.0.0" + (sources."ansi-align-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."cli-boxes-1.0.0" + sources."term-size-1.2.0" + (sources."widest-line-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."unique-string-1.0.0" + sources."crypto-random-string-1.0.0" + sources."global-dirs-0.1.1" + sources."is-path-inside-1.0.1" + sources."path-is-inside-1.0.2" + sources."package-json-4.0.1" + sources."got-6.7.1" + sources."registry-auth-token-3.3.1" + sources."registry-url-3.1.0" + sources."create-error-class-3.0.2" + sources."duplexer3-0.1.4" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."lowercase-keys-1.0.0" + sources."timed-out-4.0.1" + sources."unzip-response-2.0.1" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."prepend-http-1.0.4" ]; buildInputs = globalBuildInputs; meta = { @@ -36040,44 +28065,25 @@ in }; dependencies = [ sources."canonical-path-0.0.2" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."path-0.12.7" // { - dependencies = [ - sources."process-0.11.10" - (sources."util-0.10.3" // { - dependencies = [ - sources."inherits-2.0.1" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."chalk-1.1.3" + sources."path-0.12.7" + (sources."postcss-5.2.18" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."process-0.11.10" + sources."util-0.10.3" + sources."inherits-2.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36090,49 +28096,28 @@ in postcss-calc = nodeEnv.buildNodePackage { name = "postcss-calc"; packageName = "postcss-calc"; - version = "6.0.0"; + version = "6.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-6.0.0.tgz"; - sha1 = "b681b279c6d24fbe0e33ed9045803705445d613b"; + url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-6.0.1.tgz"; + sha1 = "3d24171bbf6e7629d422a436ebfe6dd9511f4330"; }; dependencies = [ sources."css-unit-converter-1.1.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."reduce-css-calc-2.0.5" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-2.2.3" + sources."reduce-css-calc-2.1.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."postcss-value-parser-3.3.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36151,14 +28136,11 @@ in sha1 = "37a656a2a24c6d1fcb836a4886cbbafcdb2a4320"; }; dependencies = [ - (sources."mathjs-2.7.0" // { - dependencies = [ - sources."decimal.js-4.0.4" - sources."fraction.js-3.3.1" - sources."tiny-emitter-1.2.0" - sources."typed-function-0.10.5" - ]; - }) + sources."mathjs-2.7.0" + sources."decimal.js-4.0.4" + sources."fraction.js-3.3.1" + sources."tiny-emitter-1.2.0" + sources."typed-function-0.10.6" ]; buildInputs = globalBuildInputs; meta = { @@ -36177,17 +28159,11 @@ in sha1 = "252ce4822f6d0de2c7e504aa82abcdfbe6293f4b"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -36225,17 +28201,11 @@ in sha1 = "535999a23230effd69759aad8a78c28f999e06eb"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -36248,44 +28218,26 @@ in postcss-caralho = nodeEnv.buildNodePackage { name = "postcss-caralho"; packageName = "postcss-caralho"; - version = "1.1.0"; + version = "2.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-caralho/-/postcss-caralho-1.1.0.tgz"; - sha1 = "31de24d10ce5a137148a4786ca91f60c7ddb80f4"; + url = "https://registry.npmjs.org/postcss-caralho/-/postcss-caralho-2.6.0.tgz"; + sha1 = "a1fdb58eff7ddbe00455aded12710b6717dd0686"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."curse-words-common-1.1.0" + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin for writing curse words intstead of important because reasons"; + description = "PostCSS plugin for writing curse words instead of important because reasons"; homepage = https://github.com/SaraVieira/postcss-caralho; license = "MIT"; }; @@ -36294,40 +28246,21 @@ in postcss-center = nodeEnv.buildNodePackage { name = "postcss-center"; packageName = "postcss-center"; - version = "1.0.0"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-center/-/postcss-center-1.0.0.tgz"; - sha1 = "65a9d2efffaac19b6686447880afd6915149a991"; + url = "https://registry.npmjs.org/postcss-center/-/postcss-center-1.1.0.tgz"; + sha1 = "56e05071eb7e2509ce45988740ce3b4289fc8710"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36346,30 +28279,15 @@ in sha1 = "274bb915698b42f84219653fdd0bacff0d84942e"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36389,36 +28307,23 @@ in }; dependencies = [ sources."lodash-3.10.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."chinese-css-properties-1.0.2" + sources."chinese-css-values-1.0.6" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."chinese-css-properties-1.0.2" - sources."chinese-css-values-1.0.6" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36437,49 +28342,26 @@ in sha1 = "8269964f3a21d5f1e9b1e5ac7d061be9f25236a1"; }; dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."color-0.11.4" + sources."postcss-5.2.18" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36498,65 +28380,41 @@ in sha1 = "24bdd52b71641256fc03ebf558a157edd77b78a0"; }; dependencies = [ - (sources."chai-3.5.0" // { - dependencies = [ - sources."assertion-error-1.0.2" - (sources."deep-eql-0.1.3" // { - dependencies = [ - sources."type-detect-0.1.1" - ]; - }) - sources."type-detect-1.0.0" - ]; - }) - (sources."mocha-2.5.3" // { + sources."chai-3.5.0" + sources."mocha-2.5.3" + sources."postcss-4.1.16" + sources."assertion-error-1.0.2" + (sources."deep-eql-0.1.3" // { dependencies = [ - sources."commander-2.3.0" - (sources."debug-2.2.0" // { - dependencies = [ - sources."ms-0.7.1" - ]; - }) - sources."diff-1.4.0" - sources."escape-string-regexp-1.0.2" - (sources."glob-3.2.11" // { - dependencies = [ - sources."inherits-2.0.3" - (sources."minimatch-0.3.0" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) - ]; - }) - sources."growl-1.9.2" - (sources."jade-0.26.3" // { - dependencies = [ - sources."commander-0.6.1" - sources."mkdirp-0.3.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."supports-color-1.2.0" - sources."to-iso-string-0.0.2" + sources."type-detect-0.1.1" ]; }) - (sources."postcss-4.1.16" // { + sources."type-detect-1.0.0" + sources."commander-2.3.0" + sources."debug-2.2.0" + sources."diff-1.4.0" + sources."escape-string-regexp-1.0.2" + sources."glob-3.2.11" + sources."growl-1.9.2" + (sources."jade-0.26.3" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."commander-0.6.1" + sources."mkdirp-0.3.0" ]; }) + sources."mkdirp-0.5.1" + sources."supports-color-1.2.0" + sources."to-iso-string-0.0.2" + sources."ms-0.7.1" + sources."inherits-2.0.3" + sources."minimatch-0.3.0" + sources."lru-cache-2.7.3" + sources."sigmund-1.0.1" + sources."minimist-0.0.8" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -36569,40 +28427,21 @@ in postcss-circle = nodeEnv.buildNodePackage { name = "postcss-circle"; packageName = "postcss-circle"; - version = "1.0.0"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-circle/-/postcss-circle-1.0.0.tgz"; - sha1 = "2f439163328790056c75628544ed4a91bcd2a1cb"; + url = "https://registry.npmjs.org/postcss-circle/-/postcss-circle-1.1.0.tgz"; + sha1 = "b83530b5f8e359fdb70a23761a65c37d13a33334"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36621,30 +28460,15 @@ in sha1 = "d10df955db5636894587125afb7deac5ed6d508f"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36663,34 +28487,21 @@ in sha1 = "d69e86d062a3403853b3f34c9476441c3ddfe7d3"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36703,66 +28514,38 @@ in postcss-class-repeat = nodeEnv.buildNodePackage { name = "postcss-class-repeat"; packageName = "postcss-class-repeat"; - version = "0.1.0"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-class-repeat/-/postcss-class-repeat-0.1.0.tgz"; - sha1 = "fb6cced12a9d98f859f474d8188b666e6da87b4e"; + url = "https://registry.npmjs.org/postcss-class-repeat/-/postcss-class-repeat-0.1.1.tgz"; + sha1 = "09fb9730399cc8612a38346cbb02b99b5b50b596"; }; dependencies = [ - (sources."class-repeat-1.0.1" // { - dependencies = [ - (sources."css-selector-tokenizer-0.5.4" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - ]; - }) - (sources."get-css-classes-1.1.0" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - ]; - }) + sources."class-repeat-1.0.2" sources."has-class-selector-1.0.0" - (sources."is-present-1.0.0" // { - dependencies = [ - (sources."is-blank-1.0.0" // { - dependencies = [ - sources."is-empty-0.0.1" - sources."is-whitespace-0.3.0" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."is-present-1.0.0" + sources."postcss-5.2.18" + sources."css-selector-tokenizer-0.5.4" + sources."get-css-classes-1.1.0" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."lodash-4.17.4" + sources."is-blank-1.0.0" + sources."is-empty-0.0.1" + sources."is-whitespace-0.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36775,37 +28558,26 @@ in postcss-clean = nodeEnv.buildNodePackage { name = "postcss-clean"; packageName = "postcss-clean"; - version = "1.0.3"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-clean/-/postcss-clean-1.0.3.tgz"; - sha1 = "b53fbf8fc65339ff3992712ee86b3bb14c6df112"; + url = "https://registry.npmjs.org/postcss-clean/-/postcss-clean-1.1.0.tgz"; + sha1 = "c2d61d5d8caf19a585adba16897726c2674c4207"; }; dependencies = [ - (sources."clean-css-3.4.28" // { - dependencies = [ - (sources."commander-2.8.1" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."postcss-5.0.21" // { + sources."clean-css-4.1.9" + (sources."postcss-6.0.14" // { dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" + sources."source-map-0.6.1" ]; }) + sources."source-map-0.5.7" + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36818,40 +28590,21 @@ in postcss-clearfix = nodeEnv.buildNodePackage { name = "postcss-clearfix"; packageName = "postcss-clearfix"; - version = "1.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-clearfix/-/postcss-clearfix-1.0.0.tgz"; - sha1 = "afec6a0e01d25dac36a54adb89ffd4bfe1d219af"; + url = "https://registry.npmjs.org/postcss-clearfix/-/postcss-clearfix-2.0.1.tgz"; + sha1 = "5170a1998f167d3190a0173445b6380c8c5c07f2"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36871,67 +28624,37 @@ in }; dependencies = [ sources."fs-0.0.2" - (sources."js-beautify-1.6.14" // { - dependencies = [ - (sources."config-chain-1.1.11" // { - dependencies = [ - sources."proto-list-1.2.4" - sources."ini-1.3.4" - ]; - }) - (sources."editorconfig-0.13.2" // { - dependencies = [ - sources."bluebird-3.5.0" - sources."commander-2.11.0" - (sources."lru-cache-3.2.0" // { - dependencies = [ - sources."pseudomap-1.0.2" - ]; - }) - sources."sigmund-1.0.1" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."nopt-3.0.6" // { - dependencies = [ - sources."abbrev-1.1.0" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."js-beautify-1.7.5" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."config-chain-1.1.11" + sources."editorconfig-0.13.3" + sources."mkdirp-0.5.1" + sources."nopt-3.0.6" + sources."proto-list-1.2.4" + sources."ini-1.3.5" + sources."bluebird-3.5.1" + sources."commander-2.12.2" + sources."lru-cache-3.2.0" + sources."semver-5.4.1" + sources."sigmund-1.0.1" + sources."pseudomap-1.0.2" + sources."minimist-0.0.8" + sources."abbrev-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36950,34 +28673,21 @@ in sha1 = "1fafe7d590c05bc4191eec0da5a40571e8a1836f"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -36996,34 +28706,21 @@ in sha1 = "214cb8cd0476b46da5e49886270bc3563e508205"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37042,41 +28739,25 @@ in sha1 = "2ba9fa44f99371df9e47c343cb18f773a3d80b4f"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -37095,34 +28776,21 @@ in sha1 = "8a076417b630c26701211f6acc7035de18aca0ba"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37141,34 +28809,21 @@ in sha1 = "06eb8e7924bf0723f624482be9e11af8497e56d8"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37187,34 +28842,21 @@ in sha1 = "d5ff48463c5e18f469da8f8f62c771dbe046f681"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37233,50 +28875,20 @@ in sha1 = "47afe9dc3528ff57772529c0ea3fa10758bd9aca"; }; dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."color-1.0.3" + sources."postcss-6.0.14" sources."postcss-message-helpers-2.0.0" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37295,30 +28907,15 @@ in sha1 = "248c176a6e91352fda8f308efc9d0bd5bdacb715"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37337,34 +28934,21 @@ in sha1 = "f8553c87778f7110df9af97358eb086ec0b8fb74"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37383,34 +28967,21 @@ in sha1 = "de704e79e61448dc8c7911c2785ba6210f273e2b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37423,60 +28994,31 @@ in postcss-color-function = nodeEnv.buildNodePackage { name = "postcss-color-function"; packageName = "postcss-color-function"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-function/-/postcss-color-function-4.0.0.tgz"; - sha1 = "7e0106f4f6a1ecb1ad5b3a8553ace5e828aae187"; + url = "https://registry.npmjs.org/postcss-color-function/-/postcss-color-function-4.0.1.tgz"; + sha1 = "402b3f2cebc3f6947e618fb6be3654fbecef6444"; }; dependencies = [ - (sources."css-color-function-1.3.0" // { - dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."css-color-function-1.3.3" + sources."postcss-6.0.14" sources."postcss-message-helpers-2.0.0" sources."postcss-value-parser-3.3.0" + sources."balanced-match-0.1.0" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."ms-2.0.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37489,66 +29031,34 @@ in postcss-color-gray = nodeEnv.buildNodePackage { name = "postcss-color-gray"; packageName = "postcss-color-gray"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-4.0.0.tgz"; - sha1 = "681bf305097dd66bfef0e1e6282d5d99b5acc95d"; + url = "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-4.1.0.tgz"; + sha1 = "e5581ed57eaa826fb652ca11b1e2b7b136a9f9df"; }; dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."color-2.0.1" + sources."postcss-6.0.14" sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."reduce-function-call-1.0.2" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { description = "PostCSS plugin to transform gray() function to today's CSS"; homepage = "https://github.com/postcss/postcss-color-gray#readme"; + license = "ISC"; }; production = true; }; @@ -37562,39 +29072,23 @@ in }; dependencies = [ sources."d3-color-0.4.2" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."reduce-function-call-1.0.2" // { + sources."postcss-5.2.18" + sources."reduce-function-call-1.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -37613,50 +29107,20 @@ in sha1 = "1e53e6c8acb237955e8fd08b7ecdb1b8b8309f95"; }; dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."color-1.0.3" + sources."postcss-6.0.14" sources."postcss-message-helpers-2.0.0" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37675,50 +29139,20 @@ in sha1 = "77e7fd0ace754d9018cc40950dce7097a05f5dbe"; }; dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."color-1.0.3" + sources."postcss-6.0.14" sources."postcss-message-helpers-2.0.0" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37737,35 +29171,22 @@ in sha1 = "08bc419379f9b75dbc8e5bafb8782219d096d177"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-message-helpers-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37784,37 +29205,19 @@ in sha1 = "12703666fa310430e3f30a454dac1386317d5844"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" - (sources."units-css-0.4.0" // { - dependencies = [ - sources."isnumeric-0.2.0" - sources."viewport-dimensions-0.2.0" - ]; - }) + sources."units-css-0.4.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."isnumeric-0.2.0" + sources."viewport-dimensions-0.2.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37833,55 +29236,22 @@ in sha1 = "3402b19ef4d8497540c1fb5072be9863ca95571e"; }; dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."color-1.0.3" + sources."postcss-6.0.14" sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."reduce-function-call-1.0.2" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -37901,45 +29271,26 @@ in }; dependencies = [ sources."balanced-match-0.2.1" - (sources."color-0.9.0" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."color-0.9.0" + sources."postcss-5.2.18" + sources."postcss-message-helpers-2.0.0" + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -37958,17 +29309,11 @@ in sha1 = "7c8f18098e20bd89224b1ed8f52500beae4e5f07"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -37987,31 +29332,16 @@ in sha1 = "eebaf03d363b4300b96792bd3081c19ed66513d3"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38030,31 +29360,16 @@ in sha1 = "14539c8a7131494b482e0dd1cc265ff6514b5263"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38073,32 +29388,17 @@ in sha1 = "37d5c9353a07a09270912a82606bb42a0d702c04"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" sources."rgb-hex-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38117,54 +29417,29 @@ in sha1 = "310c3e9f84f40191a76b9da320bbbacddc749b4a"; }; dependencies = [ - (sources."color-scale-1.1.0" // { + sources."color-scale-1.1.0" + sources."postcss-5.2.18" + sources."postcss-message-helpers-2.0.0" + sources."reduce-function-call-1.0.2" + sources."color-0.8.0" + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."color-0.8.0" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -38183,34 +29458,21 @@ in sha1 = "6bb6069b676da5d927877ebcb17abfd9d6bdfb87"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38229,51 +29491,28 @@ in sha1 = "4954755d7202de4308934f3befb7792b9451590d"; }; dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) + sources."color-0.11.4" sources."css-color-names-0.0.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38302,200 +29541,118 @@ in sources."hexa-color-regex-1.0.0" sources."hsl-regex-1.0.0" sources."hsla-regex-1.0.0" - (sources."jimp-0.2.28" // { - dependencies = [ - sources."bignumber.js-2.4.0" - sources."bmp-js-0.0.3" - sources."es6-promise-3.3.1" - sources."exif-parser-0.1.11" - sources."file-type-3.9.0" - sources."jpeg-js-0.2.0" - (sources."load-bmfont-1.3.0" // { - dependencies = [ - sources."buffer-equal-0.0.1" - sources."parse-bmfont-ascii-1.0.6" - sources."parse-bmfont-binary-1.0.6" - (sources."parse-bmfont-xml-1.1.3" // { - dependencies = [ - sources."xml-parse-from-string-1.0.1" - (sources."xml2js-0.4.17" // { - dependencies = [ - sources."sax-1.2.4" - (sources."xmlbuilder-4.2.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - ]; - }) - ]; - }) - (sources."xhr-2.4.0" // { - dependencies = [ - (sources."global-4.3.2" // { - dependencies = [ - (sources."min-document-2.19.0" // { - dependencies = [ - sources."dom-walk-0.1.1" - ]; - }) - sources."process-0.5.2" - ]; - }) - sources."is-function-1.0.1" - (sources."parse-headers-2.0.1" // { - dependencies = [ - sources."for-each-0.3.2" - sources."trim-0.0.1" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - sources."mime-1.3.6" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."pixelmatch-4.0.2" - sources."pngjs-3.2.0" - sources."read-chunk-1.0.1" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."stream-to-buffer-0.1.0" // { - dependencies = [ - sources."stream-to-0.2.2" - ]; - }) - sources."tinycolor2-1.4.1" - (sources."url-regex-3.2.0" // { - dependencies = [ - sources."ip-regex-1.0.3" - ]; - }) - ]; - }) - sources."onecolor-3.0.4" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."jimp-0.2.28" + sources."onecolor-3.0.5" + sources."postcss-5.2.18" sources."postcss-message-helpers-2.0.0" sources."postcss-value-parser-3.3.0" sources."rgb-regex-1.0.1" sources."rgba-regex-1.0.0" + sources."bignumber.js-2.4.0" + sources."bmp-js-0.0.3" + sources."es6-promise-3.3.1" + sources."exif-parser-0.1.12" + sources."file-type-3.9.0" + sources."jpeg-js-0.2.0" + sources."load-bmfont-1.3.0" + sources."mime-1.6.0" + sources."mkdirp-0.5.1" + sources."pixelmatch-4.0.2" + sources."pngjs-3.3.1" + sources."read-chunk-1.0.1" + sources."request-2.83.0" + sources."stream-to-buffer-0.1.0" + sources."tinycolor2-1.4.1" + sources."url-regex-3.2.0" + sources."buffer-equal-0.0.1" + sources."parse-bmfont-ascii-1.0.6" + sources."parse-bmfont-binary-1.0.6" + sources."parse-bmfont-xml-1.1.3" + sources."xhr-2.4.1" + sources."xtend-4.0.1" + sources."xml-parse-from-string-1.0.1" + sources."xml2js-0.4.19" + sources."sax-1.2.4" + sources."xmlbuilder-9.0.4" + sources."global-4.3.2" + sources."is-function-1.0.1" + sources."parse-headers-2.0.1" + sources."min-document-2.19.0" + sources."process-0.5.2" + sources."dom-walk-0.1.1" + sources."for-each-0.3.2" + sources."trim-0.0.1" + sources."minimist-0.0.8" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."stream-to-0.2.2" + sources."ip-regex-1.0.3" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38514,60 +29671,31 @@ in sha1 = "6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"; }; dependencies = [ - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."colormin-1.1.2" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."color-0.11.4" + sources."css-color-names-0.0.4" + sources."has-1.0.1" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."function-bind-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38586,34 +29714,21 @@ in sha1 = "809f9ed881ebdd78fec061df7a31d7d30b74717e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38632,49 +29747,27 @@ in sha1 = "24c713c21bfd16c0b2a3e883dd8a1033f4defe49"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."css-color-extractor-0.0.5" // { + sources."postcss-5.2.18" + sources."css-color-extractor-0.0.5" + (sources."chalk-1.1.3" // { dependencies = [ - sources."array-unique-0.2.1" - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."array-unique-0.2.1" + sources."color-0.10.1" + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" ]; buildInputs = globalBuildInputs; meta = { @@ -38695,18 +29788,12 @@ in dependencies = [ sources."colors.css-2.3.0" sources."lodash-3.10.1" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."postcss-message-helpers-2.0.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -38725,34 +29812,21 @@ in sha1 = "c3223eb73b206293e12676e3dd97b49a6daa9438"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38765,43 +29839,26 @@ in postcss-combine-duplicated-selectors = nodeEnv.buildNodePackage { name = "postcss-combine-duplicated-selectors"; packageName = "postcss-combine-duplicated-selectors"; - version = "2.4.0"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-combine-duplicated-selectors/-/postcss-combine-duplicated-selectors-2.4.0.tgz"; - sha1 = "a150ba8d44c587b32d035f9635144cfaecf28b2e"; + url = "https://registry.npmjs.org/postcss-combine-duplicated-selectors/-/postcss-combine-duplicated-selectors-3.1.4.tgz"; + sha1 = "15bc268272a82156417eb71ccb09404a59189106"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-3.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."dot-prop-4.2.0" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."is-obj-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -38820,34 +29877,21 @@ in sha1 = "0c00431af3f9ea7a9bc9311c0bf9f2431bc2de05"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38866,30 +29910,15 @@ in sha1 = "3c295be28dfd58b6fbc80b92d034959ad97d1c39"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38908,34 +29937,21 @@ in sha1 = "aace1d222ed7ed8e4ec34a80edb1ea43822e7eb0"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -38955,34 +29971,21 @@ in }; dependencies = [ sources."image-size-0.5.5" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -39000,85 +30003,42 @@ in sha1 = "f57cf059209f0a82f01ba86af51b0652442651c3"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."css-selector-tokenizer-0.5.4" // { + sources."postcss-5.2.18" + sources."css-selector-tokenizer-0.5.4" + (sources."postcss-modules-local-by-default-1.2.0" // { dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" + sources."css-selector-tokenizer-0.7.0" + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."has-flag-2.0.0" ]; }) - (sources."postcss-modules-local-by-default-1.2.0" // { + (sources."chalk-1.1.3" // { dependencies = [ - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."regexpu-core-1.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" ]; buildInputs = globalBuildInputs; meta = { @@ -39097,17 +30057,11 @@ in sha1 = "f763f137a05ed1f8e33dfb068b9367f60fc5adb4"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -39126,34 +30080,21 @@ in sha1 = "5552ba459b4ef502fbf9a9c633d2ea04db65de5d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -39172,34 +30113,21 @@ in sha1 = "83a0306a936feb40f396265cbe14709fd707f1d5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -39218,41 +30146,25 @@ in sha1 = "4d1f62aa540458ce7ab779f71656901c8f8e929a"; }; dependencies = [ - (sources."css-color-converter-1.1.0" // { - dependencies = [ - sources."color-convert-0.5.3" - sources."color-name-1.1.3" - ]; - }) + sources."css-color-converter-1.1.0" sources."css-unit-converter-1.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."color-convert-0.5.3" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -39271,51 +30183,17 @@ in sha1 = "cf7edcfcd950624b9ecd2a486b348f3f96f593d8"; }; dependencies = [ - (sources."canvas-1.6.5" // { - dependencies = [ - sources."nan-2.6.2" - (sources."parse-css-font-2.0.2" // { - dependencies = [ - sources."css-font-size-keywords-1.0.0" - sources."css-font-stretch-keywords-1.0.1" - sources."css-font-style-keywords-1.0.1" - sources."css-font-weight-keywords-1.0.0" - sources."css-global-keywords-1.0.1" - sources."css-list-helpers-1.0.1" - sources."css-system-font-keywords-1.0.0" - sources."tcomb-2.7.0" - sources."unquote-1.1.0" - ]; - }) - (sources."units-css-0.4.0" // { - dependencies = [ - sources."isnumeric-0.2.0" - sources."viewport-dimensions-0.2.0" - ]; - }) - ]; - }) - (sources."color-0.9.0" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."canvas-1.6.9" + sources."color-0.9.0" + sources."postcss-4.1.16" + sources."nan-2.8.0" + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -39335,33 +30213,20 @@ in }; dependencies = [ sources."colors-1.1.2" - (sources."postcss-6.0.1" // { + sources."postcss-6.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -39382,39 +30247,23 @@ in dependencies = [ sources."dotty-0.0.2" sources."lodash-3.10.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."resolve-1.3.3" // { + sources."postcss-5.2.18" + sources."resolve-1.5.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."path-parse-1.0.5" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -39434,23 +30283,14 @@ in }; dependencies = [ sources."lodash-3.10.1" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."require-reload-0.2.2" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."resolve-1.5.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -39470,34 +30310,21 @@ in }; dependencies = [ sources."html-entities-1.2.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -39516,35 +30343,22 @@ in sha1 = "c3ce5122341c2221fda4ba09f1102e4d8d79164d"; }; dependencies = [ - (sources."postcss-5.2.5" // { + sources."postcss-5.2.5" + sources."postcss-value-parser-3.3.0" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."has-flag-1.0.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -39563,39 +30377,23 @@ in sha1 = "7a9021ef6f23bb1526ec99fe6fc99d40f0125906"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."contrast-1.0.1" // { + sources."postcss-5.2.18" + sources."contrast-1.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."hex-to-rgb-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."hex-to-rgb-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -39614,35 +30412,22 @@ in sha1 = "bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -39661,388 +30446,195 @@ in sha1 = "1fee64421c5394451c0a094ecdc96a337779ff57"; }; dependencies = [ - (sources."micromatch-3.0.4" // { + sources."micromatch-3.1.4" + sources."mkdirp-0.5.1" + sources."pify-3.0.0" + (sources."postcss-6.0.14" // { dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - (sources."braces-2.2.2" // { - dependencies = [ - sources."arr-flatten-1.1.0" - (sources."fill-range-4.0.0" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - sources."to-regex-range-2.1.1" - ]; - }) - sources."isobject-3.0.1" - sources."repeat-element-1.1.2" - (sources."snapdragon-node-2.1.1" // { - dependencies = [ - (sources."snapdragon-util-3.0.1" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - ]; - }) - sources."split-string-2.1.1" - ]; - }) - (sources."define-property-1.0.0" // { - dependencies = [ - (sources."is-descriptor-1.0.0" // { - dependencies = [ - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."lazy-cache-2.0.2" // { - dependencies = [ - (sources."set-getter-0.1.0" // { - dependencies = [ - sources."to-object-path-0.3.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."extend-shallow-2.0.1" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - (sources."extglob-1.1.0" // { - dependencies = [ - (sources."define-property-0.2.5" // { - dependencies = [ - (sources."is-descriptor-0.1.5" // { - dependencies = [ - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."lazy-cache-2.0.2" // { - dependencies = [ - (sources."set-getter-0.1.0" // { - dependencies = [ - sources."to-object-path-0.3.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."expand-brackets-2.1.4" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."posix-character-classes-0.1.1" - sources."to-regex-3.0.1" - ]; - }) - (sources."to-regex-2.1.0" // { - dependencies = [ - sources."regex-not-0.1.2" - ]; - }) - ]; - }) - (sources."fragment-cache-0.2.1" // { - dependencies = [ - sources."map-cache-0.2.2" - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."nanomatch-1.2.0" // { - dependencies = [ - sources."is-extglob-2.1.1" - (sources."is-odd-1.0.0" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - sources."regex-not-1.0.0" - (sources."snapdragon-0.8.1" // { - dependencies = [ - (sources."base-0.11.1" // { - dependencies = [ - sources."arr-union-3.1.0" - (sources."cache-base-0.8.5" // { - dependencies = [ - (sources."collection-visit-0.2.3" // { - dependencies = [ - sources."map-visit-0.1.5" - (sources."object-visit-0.3.4" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."get-value-2.0.6" - (sources."has-value-0.3.1" // { - dependencies = [ - sources."has-values-0.1.4" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - sources."isobject-3.0.1" - (sources."set-value-0.4.3" // { - dependencies = [ - sources."is-extendable-0.1.1" - sources."is-plain-object-2.0.4" - ]; - }) - (sources."to-object-path-0.3.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."union-value-0.2.4" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - sources."unset-value-0.1.2" - ]; - }) - (sources."class-utils-0.3.5" // { - dependencies = [ - sources."isobject-3.0.1" - (sources."static-extend-0.1.2" // { - dependencies = [ - (sources."object-copy-0.1.0" // { - dependencies = [ - sources."copy-descriptor-0.1.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."component-emitter-1.2.1" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."lazy-cache-2.0.2" // { - dependencies = [ - (sources."set-getter-0.1.0" // { - dependencies = [ - (sources."to-object-path-0.3.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."mixin-deep-1.2.0" // { - dependencies = [ - sources."for-in-1.0.2" - sources."is-extendable-0.1.1" - ]; - }) - sources."pascalcase-0.1.1" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."define-property-0.2.5" // { - dependencies = [ - (sources."is-descriptor-0.1.5" // { - dependencies = [ - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."lazy-cache-2.0.2" // { - dependencies = [ - (sources."set-getter-0.1.0" // { - dependencies = [ - sources."to-object-path-0.3.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."map-cache-0.2.2" - sources."source-map-0.5.6" - (sources."source-map-resolve-0.5.0" // { - dependencies = [ - sources."source-map-url-0.4.0" - sources."atob-2.0.3" - sources."urix-0.1.0" - sources."resolve-url-0.2.1" - ]; - }) - (sources."use-2.0.2" // { - dependencies = [ - sources."isobject-3.0.1" - (sources."lazy-cache-2.0.2" // { - dependencies = [ - (sources."set-getter-0.1.0" // { - dependencies = [ - (sources."to-object-path-0.3.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."to-regex-3.0.1" // { - dependencies = [ - (sources."define-property-0.2.5" // { - dependencies = [ - (sources."is-descriptor-0.1.5" // { - dependencies = [ - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."lazy-cache-2.0.2" // { - dependencies = [ - (sources."set-getter-0.1.0" // { - dependencies = [ - sources."to-object-path-0.3.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - ]; - }) + sources."source-map-0.6.1" ]; }) - (sources."mkdirp-0.5.1" // { + sources."postcss-value-parser-3.3.0" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { dependencies = [ - sources."minimist-0.0.8" + sources."is-extendable-0.1.1" ]; }) - sources."pify-3.0.0" - (sources."postcss-6.0.6" // { + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."to-regex-3.0.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { + dependencies = [ + sources."extend-shallow-3.0.2" + ]; + }) + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + sources."is-plain-object-2.0.4" + (sources."is-descriptor-1.0.1" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + (sources."is-accessor-descriptor-0.1.6" // { dependencies = [ - (sources."chalk-2.0.1" // { + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."debug-2.6.9" + sources."posix-character-classes-0.1.1" + sources."ms-2.0.0" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-0.5.7" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" + sources."isobject-2.1.0" ]; }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { + sources."has-values-0.1.4" + ]; + }) + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."isarray-1.0.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - sources."has-flag-2.0.0" + sources."kind-of-5.1.0" ]; }) ]; }) - sources."postcss-value-parser-3.3.0" + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."minimist-0.0.8" + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40055,45 +30647,29 @@ in postcss-copy-assets = nodeEnv.buildNodePackage { name = "postcss-copy-assets"; packageName = "postcss-copy-assets"; - version = "0.3.0"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-copy-assets/-/postcss-copy-assets-0.3.0.tgz"; - sha1 = "62252c42f79624fb164c6f0288761ef0ebfb78a9"; + url = "https://registry.npmjs.org/postcss-copy-assets/-/postcss-copy-assets-0.3.1.tgz"; + sha1 = "f64275406966e48d02e7617d31b2aae7f921d944"; }; dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."postcss-5.2.17" // { + sources."mkdirp-0.5.1" + sources."postcss-5.2.18" + sources."minimist-0.0.8" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40112,23 +30688,14 @@ in sha1 = "6b8ec9b45cf0df5f23f01d12a90bfd2bc09aab2f"; }; dependencies = [ - (sources."crass-0.7.12" // { - dependencies = [ - sources."color-convert-0.5.3" - ]; - }) - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."crass-0.7.12" + sources."postcss-4.1.16" sources."underscore-1.8.3" + sources."color-convert-0.5.3" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -40148,34 +30715,21 @@ in }; dependencies = [ sources."crayon-git+https://git@github.com/riccardoscalco/crayon.git" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40195,40 +30749,24 @@ in }; dependencies = [ sources."crip-css-properties-1.0.1" - (sources."object-merge-2.5.1" // { - dependencies = [ - sources."clone-function-1.0.6" - sources."object-foreach-0.1.2" - ]; - }) - (sources."postcss-5.2.17" // { + sources."object-merge-2.5.1" + sources."postcss-5.2.18" + sources."clone-function-1.0.6" + sources."object-foreach-0.1.2" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40247,380 +30785,323 @@ in sha1 = "00dd2788c84b3f22efeb7c30fb68a98dc3253a5f"; }; dependencies = [ - (sources."chalk-1.1.3" // { + sources."chalk-1.1.3" + (sources."cssnano-3.10.0" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."postcss-5.2.18" + sources."supports-color-3.2.3" ]; }) - (sources."cssnano-3.10.0" // { + (sources."postcss-6.0.14" // { dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - ]; - }) - sources."decamelize-1.2.0" - sources."defined-1.0.0" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-calc-5.3.1" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-colormin-2.2.2" // { - dependencies = [ - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - ]; - }) - ]; - }) - sources."postcss-convert-values-2.6.1" - sources."postcss-discard-comments-2.0.4" - sources."postcss-discard-duplicates-2.1.0" - sources."postcss-discard-empty-2.1.0" - sources."postcss-discard-overridden-0.1.1" - (sources."postcss-discard-unused-2.2.3" // { - dependencies = [ - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-filter-plugins-2.0.2" // { - dependencies = [ - (sources."uniqid-4.1.1" // { - dependencies = [ - sources."macaddress-0.2.8" - ]; - }) - ]; - }) - sources."postcss-merge-idents-2.1.7" - sources."postcss-merge-longhand-2.0.2" - (sources."postcss-merge-rules-2.1.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-1.6.1" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - sources."vendors-1.0.1" - ]; - }) - sources."postcss-minify-font-values-1.0.5" - sources."postcss-minify-gradients-1.0.5" - (sources."postcss-minify-params-1.2.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-minify-selectors-2.1.1" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."postcss-normalize-charset-1.1.1" - (sources."postcss-normalize-url-3.0.8" // { - dependencies = [ - sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-ordered-values-2.2.3" - sources."postcss-reduce-idents-2.4.0" - sources."postcss-reduce-initial-1.0.1" - sources."postcss-reduce-transforms-1.0.4" - (sources."postcss-svgo-2.1.6" // { - dependencies = [ - (sources."is-svg-2.1.0" // { - dependencies = [ - sources."html-comment-regex-1.1.1" - ]; - }) - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."csso-2.3.2" // { - dependencies = [ - sources."clap-1.2.0" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-unique-selectors-2.0.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) - sources."postcss-value-parser-3.3.0" - (sources."postcss-zindex-2.2.0" // { - dependencies = [ - sources."uniqs-2.0.0" - ]; - }) + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."has-flag-2.0.0" ]; }) - (sources."postcss-6.0.6" // { + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + (sources."autoprefixer-6.7.7" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."postcss-5.2.18" + sources."supports-color-3.2.3" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Generate critical CSS using PostCSS"; - homepage = "https://github.com/zgreen/postcss-critical-css#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-critical-styles = nodeEnv.buildNodePackage { - name = "postcss-critical-styles"; - packageName = "postcss-critical-styles"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-critical-styles/-/postcss-critical-styles-0.0.0.tgz"; - sha1 = "823908ca4efad815bc072943442384260d64ffbb"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { + sources."decamelize-1.2.0" + sources."defined-1.0.0" + sources."has-1.0.1" + sources."object-assign-4.1.1" + (sources."postcss-calc-5.3.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."postcss-5.2.18" + sources."supports-color-3.2.3" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin to extract critical CSS-Rules into a seperate Stylesheet"; - homepage = https://github.com/mscharl/postcss-critical-styles; - license = "MIT"; - }; - production = true; - }; - postcss-cson-cssvars = nodeEnv.buildNodePackage { - name = "postcss-cson-cssvars"; - packageName = "postcss-cson-cssvars"; - version = "0.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-cson-cssvars/-/postcss-cson-cssvars-0.0.11.tgz"; - sha1 = "ed1d5969ed22a3c27949546fcd9378bd474a2e76"; - }; - dependencies = [ - sources."colors-1.1.2" - (sources."cson-3.0.2" // { + (sources."postcss-colormin-2.2.2" // { dependencies = [ - sources."coffee-script-1.12.6" - sources."cson-parser-1.3.5" - (sources."extract-opts-3.3.1" // { - dependencies = [ - sources."eachr-3.2.0" - sources."editions-1.3.3" - sources."typechecker-4.4.1" - ]; - }) - (sources."requirefresh-2.1.0" // { - dependencies = [ - sources."editions-1.3.3" - ]; - }) - (sources."safefs-4.1.0" // { - dependencies = [ - sources."editions-1.3.3" - sources."graceful-fs-4.1.11" - ]; - }) + sources."postcss-5.2.18" + sources."supports-color-3.2.3" ]; }) - (sources."postcss-5.2.17" // { + (sources."postcss-convert-values-2.6.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-discard-comments-2.0.4" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-discard-duplicates-2.1.0" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-discard-empty-2.1.0" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-discard-overridden-0.1.1" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-discard-unused-2.2.3" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-filter-plugins-2.0.2" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-merge-idents-2.1.7" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-merge-longhand-2.0.2" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-merge-rules-2.1.2" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-minify-font-values-1.0.5" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-minify-gradients-1.0.5" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-minify-params-1.2.2" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-minify-selectors-2.1.1" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-normalize-charset-1.1.1" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-normalize-url-3.0.8" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-ordered-values-2.2.3" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-reduce-idents-2.4.0" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-reduce-initial-1.0.1" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-reduce-transforms-1.0.4" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-svgo-2.1.6" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + (sources."postcss-unique-selectors-2.0.2" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + sources."postcss-value-parser-3.3.0" + (sources."postcss-zindex-2.2.0" // { + dependencies = [ + sources."postcss-5.2.18" + sources."supports-color-3.2.3" + ]; + }) + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."function-bind-1.1.1" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."colormin-1.1.2" + sources."color-0.11.4" + sources."css-color-names-0.0.4" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."uniqs-2.0.0" + sources."uniqid-4.1.1" + sources."macaddress-0.2.8" + sources."caniuse-api-1.6.1" + sources."postcss-selector-parser-2.2.3" + sources."vendors-1.0.1" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."alphanum-sort-1.0.2" + sources."is-absolute-url-2.1.0" + sources."normalize-url-1.9.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + sources."is-svg-2.1.0" + sources."svgo-0.7.2" + sources."html-comment-regex-1.1.1" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."js-yaml-3.7.0" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."mkdirp-0.5.1" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."argparse-1.0.9" + sources."esprima-2.7.3" + sources."sprintf-js-1.0.3" + sources."minimist-0.0.8" + sources."clap-1.2.3" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "Generate critical CSS using PostCSS"; + homepage = "https://github.com/zgreen/postcss-critical-css#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-critical-styles = nodeEnv.buildNodePackage { + name = "postcss-critical-styles"; + packageName = "postcss-critical-styles"; + version = "0.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-critical-styles/-/postcss-critical-styles-0.0.0.tgz"; + sha1 = "823908ca4efad815bc072943442384260d64ffbb"; + }; + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to extract critical CSS-Rules into a seperate Stylesheet"; + homepage = https://github.com/mscharl/postcss-critical-styles; + license = "MIT"; + }; + production = true; + }; + postcss-cson-cssvars = nodeEnv.buildNodePackage { + name = "postcss-cson-cssvars"; + packageName = "postcss-cson-cssvars"; + version = "0.0.11"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-cson-cssvars/-/postcss-cson-cssvars-0.0.11.tgz"; + sha1 = "ed1d5969ed22a3c27949546fcd9378bd474a2e76"; + }; + dependencies = [ + sources."colors-1.1.2" + sources."cson-3.0.2" + sources."postcss-5.2.18" + sources."coffee-script-1.12.7" + sources."cson-parser-1.3.5" + sources."extract-opts-3.3.1" + sources."requirefresh-2.1.0" + sources."safefs-4.1.0" + sources."eachr-3.2.0" + sources."editions-1.3.3" + sources."typechecker-4.4.1" + sources."graceful-fs-4.1.11" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40633,41 +31114,22 @@ in postcss-css-variables = nodeEnv.buildNodePackage { name = "postcss-css-variables"; packageName = "postcss-css-variables"; - version = "0.7.0"; + version = "0.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-css-variables/-/postcss-css-variables-0.7.0.tgz"; - sha1 = "4aa58eeb3c859a6f0909013ab17beca5665287fd"; + url = "https://registry.npmjs.org/postcss-css-variables/-/postcss-css-variables-0.8.0.tgz"; + sha1 = "d4fcea5c4eafe9bbb2b11adeb20577cce11c0134"; }; dependencies = [ sources."escape-string-regexp-1.0.5" - sources."extend-2.0.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."extend-3.0.1" + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40686,62 +31148,34 @@ in sha1 = "578a07129261c29f2e8d007f5a16a0061f90a779"; }; dependencies = [ - (sources."csscomb-3.1.8" // { - dependencies = [ - sources."commander-2.0.0" - (sources."csscomb-core-3.0.0-3.1" // { - dependencies = [ - (sources."minimatch-0.2.12" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) - (sources."vow-fs-0.3.2" // { - dependencies = [ - sources."node-uuid-1.4.0" - sources."vow-queue-0.3.1" - (sources."glob-3.2.8" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."gonzales-pe-3.0.0-28" - sources."vow-0.4.4" - ]; - }) - (sources."postcss-5.2.17" // { + sources."csscomb-3.1.8" + sources."postcss-5.2.18" + sources."commander-2.0.0" + sources."csscomb-core-3.0.0-3.1" + sources."gonzales-pe-3.0.0-28" + sources."vow-0.4.4" + sources."minimatch-0.2.12" + sources."vow-fs-0.3.2" + sources."lru-cache-2.7.3" + sources."sigmund-1.0.1" + sources."node-uuid-1.4.0" + sources."vow-queue-0.3.1" + sources."glob-3.2.8" + sources."inherits-2.0.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40760,66 +31194,34 @@ in sha1 = "be683986d437654dd5fa556743b8faa891471251"; }; dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."gzip-size-3.0.0" // { - dependencies = [ - sources."duplexer-0.1.1" - ]; - }) - (sources."postcss-5.2.17" // { + sources."glob-5.0.15" + sources."gzip-size-3.0.0" + sources."postcss-5.2.18" + sources."uglifycss-0.0.18" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."duplexer-0.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."uglifycss-0.0.18" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -40838,312 +31240,113 @@ in sha1 = "63b77adb0b8a4c1d5ec32cd345539535a3417d48"; }; dependencies = [ - (sources."autoprefixer-7.1.2" // { - dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-lite-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."caniuse-api-2.0.0" // { - dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-lite-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."pixrem-4.0.1" // { - dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."pleeease-filters-4.0.0" // { - dependencies = [ - sources."onecolor-3.0.4" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-apply-0.8.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."balanced-match-0.4.2" - ]; - }) - (sources."postcss-attribute-case-insensitive-2.0.0" // { - dependencies = [ - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) - (sources."postcss-calc-6.0.0" // { - dependencies = [ - sources."css-unit-converter-1.1.1" - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."reduce-css-calc-2.0.5" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) - ]; - }) - (sources."postcss-color-function-4.0.0" // { + sources."autoprefixer-7.2.3" + sources."caniuse-api-2.0.0" + sources."chalk-2.3.0" + sources."pixrem-4.0.1" + sources."pleeease-filters-4.0.0" + sources."postcss-6.0.14" + sources."postcss-apply-0.8.0" + sources."postcss-attribute-case-insensitive-2.0.0" + (sources."postcss-calc-6.0.1" // { dependencies = [ - (sources."css-color-function-1.3.0" // { - dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - sources."postcss-message-helpers-2.0.0" - sources."postcss-value-parser-3.3.0" + sources."reduce-css-calc-2.1.3" ]; }) - (sources."postcss-color-gray-4.0.0" // { + sources."postcss-color-function-4.0.1" + (sources."postcss-color-gray-4.1.0" // { dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."color-2.0.1" + sources."color-string-1.5.2" ]; }) (sources."postcss-color-hex-alpha-3.0.0" // { dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - ]; - }) - (sources."postcss-color-hsl-2.0.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - (sources."units-css-0.4.0" // { - dependencies = [ - sources."isnumeric-0.2.0" - sources."viewport-dimensions-0.2.0" - ]; - }) + sources."color-1.0.3" + sources."color-string-1.5.2" ]; }) + sources."postcss-color-hsl-2.0.0" (sources."postcss-color-hwb-3.0.0" // { dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-color-rebeccapurple-3.0.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-color-rgb-2.0.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-color-rgba-fallback-3.0.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - sources."rgb-hex-2.1.0" + sources."color-1.0.3" + sources."color-string-1.5.2" ]; }) + sources."postcss-color-rebeccapurple-3.0.0" + sources."postcss-color-rgb-2.0.0" + sources."postcss-color-rgba-fallback-3.0.0" sources."postcss-custom-media-6.0.0" - (sources."postcss-custom-properties-6.1.0" // { + (sources."postcss-custom-properties-6.2.0" // { dependencies = [ sources."balanced-match-1.0.0" ]; }) sources."postcss-custom-selectors-4.0.1" - (sources."postcss-font-family-system-ui-2.0.1" // { - dependencies = [ - sources."lodash-4.17.4" - sources."postcss-value-parser-3.3.0" - ]; - }) + sources."postcss-font-family-system-ui-2.1.1" sources."postcss-font-variant-3.0.0" - (sources."postcss-image-set-polyfill-0.3.5" // { - dependencies = [ - sources."postcss-media-query-parser-0.2.3" - ]; - }) - (sources."postcss-initial-2.0.0" // { - dependencies = [ - (sources."lodash.template-4.4.0" // { - dependencies = [ - sources."lodash._reinterpolate-3.0.0" - sources."lodash.templatesettings-4.1.0" - ]; - }) - ]; - }) + sources."postcss-image-set-polyfill-0.3.5" + sources."postcss-initial-2.0.0" sources."postcss-media-minmax-3.0.0" - sources."postcss-nesting-4.0.1" - (sources."postcss-pseudo-class-any-link-4.0.0" // { - dependencies = [ - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) + sources."postcss-nesting-4.2.1" + sources."postcss-pseudo-class-any-link-4.0.0" sources."postcss-pseudoelements-5.0.0" sources."postcss-replace-overflow-wrap-2.0.0" - (sources."postcss-selector-matches-3.0.1" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - (sources."postcss-selector-not-3.0.1" // { + sources."postcss-selector-matches-3.0.1" + sources."postcss-selector-not-3.0.1" + sources."browserslist-2.10.0" + sources."caniuse-lite-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."postcss-value-parser-3.3.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."supports-color-4.5.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."onecolor-3.0.5" + sources."source-map-0.6.1" + sources."babel-runtime-6.26.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."postcss-selector-parser-2.2.3" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."css-unit-converter-1.1.1" + (sources."css-color-function-1.3.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."balanced-match-0.1.0" ]; }) + sources."postcss-message-helpers-2.0.0" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-string-0.3.0" + sources."ms-2.0.0" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."units-css-0.4.0" + sources."isnumeric-0.2.0" + sources."viewport-dimensions-0.2.0" + sources."rgb-hex-2.1.0" + sources."@std/esm-0.16.0" + sources."lodash-4.17.4" + sources."postcss-media-query-parser-0.2.3" + sources."lodash.template-4.4.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.templatesettings-4.1.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41162,34 +31365,21 @@ in sha1 = "fb3909322c0e3ea2b4c95d97aa0e76f5500da8f5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41208,68 +31398,38 @@ in sha1 = "818ff9e3344490ddc6cb63ddc860cdeb7d6f7b63"; }; dependencies = [ - (sources."cssstats-1.6.0" // { - dependencies = [ - sources."camelcase-1.2.1" - sources."commander-2.11.0" - sources."cssfontparser-1.2.1" - (sources."gzip-size-1.0.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."browserify-zlib-0.1.4" // { - dependencies = [ - sources."pako-0.2.9" - ]; - }) - ]; - }) - sources."has-class-selector-0.0.1" - sources."has-id-selector-0.0.1" - (sources."has-pseudo-class-0.0.1" // { - dependencies = [ - sources."pseudo-classes-0.0.1" - ]; - }) - (sources."has-pseudo-element-0.0.1" // { - dependencies = [ - sources."pseudo-elements-0.0.1" - ]; - }) - (sources."is-vendor-prefixed-0.0.1" // { - dependencies = [ - sources."vendor-prefixes-0.0.1" - ]; - }) - sources."specificity-0.1.6" - ]; - }) + sources."cssstats-1.6.0" sources."lodash-3.10.1" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."camelcase-1.2.1" + sources."commander-2.12.2" + sources."cssfontparser-1.2.1" + sources."gzip-size-1.0.0" + sources."has-class-selector-0.0.1" + sources."has-id-selector-0.0.1" + sources."has-pseudo-class-0.0.1" + sources."has-pseudo-element-0.0.1" + sources."is-vendor-prefixed-0.0.1" + sources."specificity-0.1.6" + sources."concat-stream-1.6.0" + sources."browserify-zlib-0.1.4" + sources."inherits-2.0.3" + sources."typedarray-0.0.6" + sources."readable-stream-2.3.3" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."pako-0.2.9" + sources."pseudo-classes-0.0.1" + sources."pseudo-elements-0.0.1" + sources."vendor-prefixes-0.0.1" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -41288,31 +31448,16 @@ in sha1 = "7cf17458fc9f06cd046f4929a4110e87e69e5ce7"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."typographic-currency-db-1.0.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41331,34 +31476,21 @@ in sha1 = "6b83849c4a43aeaa7ebf9ba0e935813a9f1a89ce"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41377,34 +31509,21 @@ in sha1 = "b30c81fec0d0ec2bce332f9af5290288fd9394d0"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41422,34 +31541,21 @@ in sha1 = "a83eadbaad0da9a81188ba8ffa149877bb818c46"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41470,17 +31576,11 @@ in dependencies = [ sources."async-1.5.2" sources."gonzales-1.0.7" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -41499,30 +31599,15 @@ in sha1 = "be532784110ecb295044fb5395a18006eb21a737"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41535,37 +31620,22 @@ in postcss-custom-properties = nodeEnv.buildNodePackage { name = "postcss-custom-properties"; packageName = "postcss-custom-properties"; - version = "6.1.0"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-6.1.0.tgz"; - sha1 = "9caf1151ac41b1e9e64d3a2ff9ece996ca18977d"; + url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-6.2.0.tgz"; + sha1 = "5d929a7f06e9b84e0f11334194c0ba9a30acfbe9"; }; dependencies = [ sources."balanced-match-1.0.0" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41584,30 +31654,15 @@ in sha1 = "a1be928afadd7a07d5f53e441bfddc3227ae1da4"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41626,13 +31681,14 @@ in sha1 = "cbf966bad1fc61840f738ee0757a6bcb4ba3d105"; }; dependencies = [ - (sources."babel-polyfill-6.23.0" // { + sources."babel-polyfill-6.26.0" + (sources."babel-runtime-6.26.0" // { dependencies = [ - sources."core-js-2.4.1" - sources."babel-runtime-6.23.0" - sources."regenerator-runtime-0.10.5" + sources."regenerator-runtime-0.11.1" ]; }) + sources."core-js-2.5.3" + sources."regenerator-runtime-0.10.5" ]; buildInputs = globalBuildInputs; meta = { @@ -41651,35 +31707,17 @@ in sha1 = "781382f94c52e727ef5ca4776ea2adf49a611382"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-matches-3.0.1" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-matches-3.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -41698,17 +31736,11 @@ in sha1 = "981dcd24cf03706aebbe6dacc10aa7d851884cd8"; }; dependencies = [ - (sources."postcss-5.0.14" // { - dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-5.0.14" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -41727,83 +31759,41 @@ in sha1 = "1abfba72609ea126952f9e2d608ead81107904fb"; }; dependencies = [ - (sources."async-array-methods-2.1.0" // { - dependencies = [ - (sources."callback-sequence-3.2.0" // { - dependencies = [ - (sources."run-callback-3.1.0" // { - dependencies = [ - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."stream-consume-0.1.0" - ]; - }) - ]; - }) - ]; - }) + sources."async-array-methods-2.1.0" sources."getp-1.2.0" - sources."mime-1.3.6" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."node-promisify-1.2.0" // { - dependencies = [ - sources."mixy-1.0.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."shasum-1.0.2" // { + sources."mime-1.6.0" + sources."mkdirp-0.5.1" + sources."node-promisify-1.2.0" + sources."postcss-5.2.18" + sources."shasum-1.0.2" + sources."util-mix-3.0.2" + sources."callback-sequence-3.2.0" + sources."run-callback-3.1.0" + sources."end-of-stream-1.4.0" + sources."stream-consume-0.1.0" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."minimist-0.0.8" + sources."mixy-1.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."json-stable-stringify-0.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - (sources."sha.js-2.4.8" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."util-mix-3.0.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."json-stable-stringify-0.0.1" + sources."sha.js-2.4.9" + sources."jsonify-0.0.0" + sources."inherits-2.0.3" + sources."safe-buffer-5.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -41822,866 +31812,539 @@ in sha1 = "bf58ab8154c60ad43ed04a4950a8a9e31342010a"; }; dependencies = [ - sources."bluebird-3.5.0" + sources."bluebird-3.5.1" sources."colors-1.1.2" sources."lodash-3.10.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."q-1.5.1" + sources."gulp-3.9.1" + (sources."spritesmith-2.0.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."semver-5.0.3" ]; }) - sources."q-1.5.0" - (sources."gulp-3.9.1" // { + (sources."chalk-1.1.3" // { dependencies = [ - sources."archy-1.0.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."deprecated-0.0.1" - (sources."gulp-util-3.0.8" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - sources."interpret-1.0.3" - (sources."liftoff-2.3.0" // { - dependencies = [ - sources."extend-3.0.1" - (sources."findup-sync-0.4.3" // { - dependencies = [ - (sources."detect-file-0.1.0" // { - dependencies = [ - sources."fs-exists-sync-0.1.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."resolve-dir-0.1.1" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."global-modules-0.2.3" // { - dependencies = [ - (sources."global-prefix-0.1.5" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - sources."ini-1.3.4" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fined-1.1.0" // { - dependencies = [ - (sources."expand-tilde-2.0.2" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - ]; - }) - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."array-each-1.0.1" - sources."array-slice-1.0.0" - (sources."for-own-1.0.0" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."isobject-3.0.1" - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - (sources."parse-filepath-1.0.1" // { - dependencies = [ - (sources."is-absolute-0.2.6" // { - dependencies = [ - (sources."is-relative-0.2.1" // { - dependencies = [ - (sources."is-unc-path-0.1.2" // { - dependencies = [ - sources."unc-path-regex-0.1.2" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - sources."map-cache-0.2.2" - (sources."path-root-0.1.1" // { - dependencies = [ - sources."path-root-regex-0.1.2" - ]; - }) - ]; - }) - ]; - }) - sources."flagged-respawn-0.3.2" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.mapvalues-4.6.0" - sources."rechoir-0.6.2" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."orchestrator-0.3.8" // { - dependencies = [ - (sources."end-of-stream-0.1.5" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."sequencify-0.0.7" - sources."stream-consume-0.1.0" - ]; - }) - sources."pretty-hrtime-1.0.3" - sources."semver-4.3.6" - (sources."tildify-1.2.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."v8flags-2.1.1" // { - dependencies = [ - sources."user-home-1.1.1" - ]; - }) - (sources."vinyl-fs-0.3.14" // { - dependencies = [ - (sources."defaults-1.0.3" // { - dependencies = [ - sources."clone-1.0.2" - ]; - }) - (sources."glob-stream-3.1.18" // { - dependencies = [ - (sources."glob-4.5.3" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."minimatch-2.0.10" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."ordered-read-streams-0.1.0" - (sources."glob2base-0.0.12" // { - dependencies = [ - sources."find-index-0.1.1" - ]; - }) - sources."unique-stream-1.0.0" - ]; - }) - (sources."glob-watcher-0.0.6" // { - dependencies = [ - (sources."gaze-0.5.2" // { - dependencies = [ - (sources."globule-0.1.0" // { - dependencies = [ - sources."lodash-1.0.2" - (sources."glob-3.1.21" // { - dependencies = [ - sources."graceful-fs-1.2.3" - sources."inherits-1.0.2" - ]; - }) - (sources."minimatch-0.2.14" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."strip-bom-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - sources."is-utf8-0.2.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."spritesmith-2.0.1" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."archy-1.0.0" + sources."deprecated-0.0.1" + sources."gulp-util-3.0.8" + sources."interpret-1.1.0" + sources."liftoff-2.5.0" + sources."minimist-1.2.0" + sources."orchestrator-0.3.8" + sources."pretty-hrtime-1.0.3" + sources."semver-4.3.6" + sources."tildify-1.2.0" + sources."v8flags-2.1.1" + (sources."vinyl-fs-0.3.14" // { + dependencies = [ + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."vinyl-0.5.3" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."extend-3.0.1" + sources."findup-sync-2.0.0" + sources."fined-1.1.0" + sources."flagged-respawn-1.0.0" + sources."is-plain-object-2.0.4" + sources."object.map-1.0.1" + sources."rechoir-0.6.2" + sources."resolve-1.5.0" + sources."detect-file-1.0.0" + sources."is-glob-3.1.0" + sources."micromatch-3.1.4" + sources."resolve-dir-1.0.1" + sources."is-extglob-2.1.1" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { dependencies = [ - sources."async-0.2.10" - (sources."concat-stream-1.5.2" // { + sources."is-extendable-0.1.1" + ]; + }) + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."to-regex-3.0.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { + dependencies = [ + sources."extend-shallow-3.0.2" + ]; + }) + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + (sources."is-descriptor-1.0.1" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."debug-2.6.9" + sources."posix-character-classes-0.1.1" + sources."ms-2.0.0" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) + sources."isobject-2.1.0" ]; }) - (sources."layout-2.2.0" // { + sources."has-values-0.1.4" + sources."isarray-1.0.0" + ]; + }) + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - sources."bin-pack-1.0.2" + sources."kind-of-5.1.0" ]; }) - (sources."pixelsmith-2.0.1" // { - dependencies = [ - sources."async-0.9.2" - (sources."get-pixels-3.2.3" // { - dependencies = [ - sources."pngjs2-1.2.0" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.3.4" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - (sources."ndarray-ops-1.2.2" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."pngjs-nozlib-1.0.0" - sources."through-2.3.8" - ]; - }) - (sources."vinyl-file-1.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) + ]; + }) + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."expand-tilde-2.0.2" + sources."global-modules-1.0.0" + sources."homedir-polyfill-1.0.1" + sources."parse-passwd-1.0.0" + sources."global-prefix-1.0.2" + sources."is-windows-1.0.1" + sources."ini-1.3.5" + sources."which-1.3.0" + sources."isexe-2.0.0" + sources."object.defaults-1.1.0" + sources."parse-filepath-1.0.2" + sources."array-each-1.0.1" + sources."array-slice-1.1.0" + sources."for-own-1.0.0" + sources."is-absolute-1.0.0" + sources."path-root-0.1.1" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."unc-path-regex-0.1.2" + sources."path-root-regex-0.1.2" + (sources."make-iterator-1.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."path-parse-1.0.5" + sources."end-of-stream-0.1.5" + sources."sequencify-0.0.7" + sources."stream-consume-0.1.0" + sources."once-1.3.3" + sources."wrappy-1.0.2" + sources."os-homedir-1.0.2" + sources."user-home-1.1.1" + sources."defaults-1.0.3" + (sources."glob-stream-3.1.18" // { + dependencies = [ + sources."through2-0.6.5" + sources."readable-stream-1.0.34" + ]; + }) + sources."glob-watcher-0.0.6" + sources."graceful-fs-3.0.11" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."strip-bom-1.0.0" + sources."glob-4.5.3" + sources."minimatch-2.0.10" + sources."ordered-read-streams-0.1.0" + sources."glob2base-0.0.12" + sources."unique-stream-1.0.0" + sources."inflight-1.0.6" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."find-index-0.1.1" + sources."gaze-0.5.2" + (sources."globule-0.1.0" // { + dependencies = [ + sources."lodash-1.0.2" + sources."glob-3.1.21" + sources."minimatch-0.2.14" + sources."graceful-fs-1.2.3" + sources."inherits-1.0.2" + ]; + }) + sources."lru-cache-2.7.3" + sources."sigmund-1.0.1" + sources."natives-1.1.1" + sources."first-chunk-stream-1.0.0" + sources."is-utf8-0.2.1" + sources."async-0.2.10" + (sources."concat-stream-1.5.2" // { + dependencies = [ + sources."readable-stream-2.0.6" + sources."isarray-1.0.0" + ]; + }) + sources."layout-2.2.0" + (sources."pixelsmith-2.0.1" // { + dependencies = [ + sources."async-0.9.2" + ]; + }) + sources."typedarray-0.0.6" + sources."bin-pack-1.0.2" + sources."get-pixels-3.2.3" + sources."mime-types-2.1.17" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.3.4" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + (sources."vinyl-file-1.3.0" // { + dependencies = [ + sources."graceful-fs-4.1.11" + sources."strip-bom-2.0.0" + sources."vinyl-1.2.0" + ]; + }) + sources."pngjs2-1.2.0" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { + dependencies = [ + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" ]; }) - sources."semver-5.0.3" + sources."through2-0.4.2" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" + ]; + }) + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + (sources."escodegen-1.3.3" // { + dependencies = [ + sources."esprima-1.1.1" + sources."source-map-0.1.43" + ]; + }) + sources."falafel-2.1.0" + sources."has-1.0.1" + sources."object-inspect-0.4.0" + (sources."quote-stream-0.0.0" // { + dependencies = [ + sources."through2-0.4.2" + sources."minimist-0.0.8" + sources."readable-stream-1.0.34" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" + ]; + }) + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { + dependencies = [ + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + (sources."center-align-0.1.3" // { + dependencies = [ + sources."lazy-cache-1.0.4" + ]; + }) + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + (sources."align-text-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."longest-1.0.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" + ]; + }) + sources."gif-encoder-0.4.3" + sources."ndarray-ops-1.2.2" + sources."pngjs-nozlib-1.0.0" + (sources."strip-bom-stream-1.0.0" // { + dependencies = [ + sources."strip-bom-2.0.0" ]; }) ]; @@ -42702,34 +32365,21 @@ in sha1 = "fe6da3e2e01b16530c3a2463115c27424e86e358"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -42748,34 +32398,21 @@ in sha1 = "9b325ec0d98298911d079ba46ee3882271e43d45"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -42794,54 +32431,26 @@ in sha1 = "6e427d3e16e8dafd3d8f93991fc0d4aa97df8933"; }; dependencies = [ - (sources."fs-extra-0.24.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-5.0.21" // { - dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) + sources."fs-extra-0.24.0" + sources."postcss-5.0.21" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -42860,35 +32469,22 @@ in sha1 = "3321a74a578b87e8dee65b6ef27170b119556108"; }; dependencies = [ - sources."mime-1.3.6" - (sources."postcss-5.2.17" // { + sources."mime-1.6.0" + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -42907,145 +32503,76 @@ in sha1 = "280e18f8ee5dfa85634253b02c33a4c94b32ab83"; }; dependencies = [ - (sources."gulp-util-3.0.8" // { + sources."gulp-util-3.0.8" + sources."lodash-4.17.4" + (sources."postcss-5.2.18" // { + dependencies = [ + sources."supports-color-3.2.3" + ]; + }) + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."chalk-1.1.3" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."minimist-1.2.0" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - sources."minimist-1.2.0" - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) + sources."vinyl-0.5.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43064,54 +32591,32 @@ in sha1 = "8ca366e5f57c4b2dd30da45ff9154c2b718bcb84"; }; dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) + sources."debug-2.6.9" sources."deep-equal-1.0.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."clean-css-3.4.28" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."source-map-0.4.4" ]; }) - (sources."clean-css-3.4.28" // { + sources."ms-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."commander-2.8.1" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."commander-2.8.1" + sources."graceful-readlink-1.0.1" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -43130,35 +32635,22 @@ in sha1 = "10d0814d4de6e52a5c951fb517105e2b73a04b4c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."extend-3.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."extend-3.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43177,34 +32669,21 @@ in sha1 = "f39a3937267c06750c75f5ecaf886de934139bcd"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43224,34 +32703,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43271,34 +32737,21 @@ in }; dependencies = [ sources."extend-3.0.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43317,34 +32770,21 @@ in sha1 = "94a5d19e16d88d604ec264642b00415e4ad401c4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43365,52 +32805,33 @@ in dependencies = [ (sources."custom-resolve-0.2.1" // { dependencies = [ - sources."caller-1.0.1" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - (sources."util-mix-1.2.2" // { - dependencies = [ - sources."arrayify-slice-1.0.0" - sources."require-directory-2.1.1" - ]; - }) + sources."util-mix-1.2.2" ]; }) sources."getp-1.2.0" sources."nub-1.0.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."slide-1.1.6" + sources."util-mix-3.0.2" + sources."caller-1.0.1" + sources."resolve-1.5.0" + sources."path-parse-1.0.5" + sources."arrayify-slice-1.0.0" + sources."require-directory-2.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."slide-1.1.6" - sources."util-mix-3.0.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43429,34 +32850,21 @@ in sha1 = "b50896cf83ad4db068d0800b1ff07f2f8f371eb6"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43475,52 +32883,34 @@ in sha1 = "e4ff391d43095a65ae88d700e6d47796ea539195"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."chalk-1.1.3" sources."convert-hrtime-1.0.0" sources."is-promise-2.1.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-reporter-1.4.1" // { + sources."jsprim-1.4.1" + (sources."postcss-5.2.18" // { dependencies = [ - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" + sources."supports-color-3.2.3" ]; }) + sources."postcss-reporter-1.4.1" sources."pretty-hrtime-1.0.3" sources."text-table-0.2.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."assert-plus-1.0.0" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."lodash-4.17.4" + sources."log-symbols-1.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -43539,52 +32929,34 @@ in sha1 = "3df7469dc56ab4621c1125e6ffb4d113be8ee32e"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."chalk-1.1.3" sources."convert-hrtime-1.0.0" sources."is-promise-2.1.0" - (sources."jsprim-1.4.0" // { + sources."jsprim-1.4.1" + (sources."postcss-5.2.18" // { dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-reporter-1.4.1" // { - dependencies = [ - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" + sources."supports-color-3.2.3" ]; }) + sources."postcss-reporter-1.4.1" sources."pretty-hrtime-1.0.3" sources."text-table-0.2.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."assert-plus-1.0.0" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."lodash-4.17.4" + sources."log-symbols-1.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -43603,41 +32975,25 @@ in sha1 = "08c7b72d99e675a82d710b6f7d902d07bd687393"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -43656,63 +33012,22 @@ in sha1 = "9ca590546df25f7a144eee8a900c99c097b3b8fc"; }; dependencies = [ - (sources."rtlcss-2.2.0" // { - dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."findup-0.1.5" // { - dependencies = [ - sources."colors-0.6.2" - sources."commander-2.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."strip-json-comments-2.0.1" - ]; - }) + sources."rtlcss-2.2.1" + sources."chalk-2.3.0" + sources."findup-0.1.5" + sources."mkdirp-0.5.1" + sources."postcss-6.0.14" + sources."strip-json-comments-2.0.1" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."supports-color-4.5.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."colors-0.6.2" + sources."commander-2.1.0" + sources."minimist-0.0.8" + sources."source-map-0.6.1" ]; buildInputs = globalBuildInputs; meta = { @@ -43725,49 +33040,29 @@ in postcss-dir-pseudo-class = nodeEnv.buildNodePackage { name = "postcss-dir-pseudo-class"; packageName = "postcss-dir-pseudo-class"; - version = "1.1.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-1.1.0.tgz"; - sha1 = "e0cbd815a73219422e778a6e4913d417664a9bb4"; + url = "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-2.1.0.tgz"; + sha1 = "d441b000688d0ecdd88cc040da922e72b62cf830"; }; dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."browserslist-2.10.0" + sources."postcss-6.0.14" + sources."postcss-selector-parser-2.2.3" + sources."caniuse-lite-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -43786,34 +33081,21 @@ in sha1 = "5ef7306bc73575ce7a9c6cc9bdf3f995f4808903"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43832,34 +33114,21 @@ in sha1 = "e33ae05c2a4050733d7916d7f76062b82825e73e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43878,34 +33147,21 @@ in sha1 = "befe89fafd5b3dace5ccce51b76b81514be00e3d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43924,34 +33180,21 @@ in sha1 = "b9abf27b88ac188158a5eb12abcae20263b91932"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -43970,34 +33213,21 @@ in sha1 = "d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44017,34 +33247,21 @@ in }; dependencies = [ sources."balanced-match-0.4.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44063,34 +33280,21 @@ in sha1 = "8b1eaf554f686fb288cd874c55667b0aa3668d58"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44109,35 +33313,22 @@ in sha1 = "bce30b2cc591ffc634322b5fb3464b6d934f4433"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."uniqs-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."uniqs-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44156,34 +33347,21 @@ in sha1 = "9d3ff7883528a2af9e4457f1eb1a31a037e5bdf6"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44202,233 +33380,126 @@ in sha1 = "9d240287f157a983d4bc7739b4c9568e2ee49e08"; }; dependencies = [ - (sources."cssnano-2.6.1" // { + sources."cssnano-2.6.1" + sources."highlight.js-8.9.1" + sources."lodash-3.10.1" + sources."marked-0.3.9" + sources."postcss-4.1.16" + sources."autoprefixer-core-5.2.1" + sources."balanced-match-0.2.1" + sources."css-list-0.1.3" + sources."decamelize-1.2.0" + sources."defined-1.0.0" + sources."indexes-of-1.0.1" + sources."minimist-1.2.0" + sources."postcss-calc-4.1.0" + sources."postcss-colormin-1.2.7" + sources."postcss-convert-values-1.3.1" + sources."postcss-discard-comments-1.2.1" + sources."postcss-discard-duplicates-1.2.1" + sources."postcss-discard-empty-1.1.2" + sources."postcss-discard-unused-1.0.3" + sources."postcss-filter-plugins-1.0.1" + sources."postcss-font-family-1.2.1" + sources."postcss-merge-idents-1.0.2" + sources."postcss-merge-longhand-1.0.2" + sources."postcss-merge-rules-1.3.6" + sources."postcss-minify-font-weight-1.0.1" + sources."postcss-minify-selectors-1.5.0" + (sources."postcss-normalize-url-2.1.3" // { dependencies = [ - (sources."autoprefixer-core-5.2.1" // { - dependencies = [ - sources."browserslist-0.4.0" - sources."num2fraction-1.2.2" - sources."caniuse-db-1.0.30000701" - ]; - }) - sources."balanced-match-0.2.1" - sources."css-list-0.1.3" - sources."decamelize-1.2.0" - sources."defined-1.0.0" - sources."indexes-of-1.0.1" - sources."minimist-1.2.0" - (sources."postcss-calc-4.1.0" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-colormin-1.2.7" // { - dependencies = [ - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - ]; - }) - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-convert-values-1.3.1" // { - dependencies = [ - sources."postcss-value-parser-1.4.2" - ]; - }) - (sources."postcss-discard-comments-1.2.1" // { - dependencies = [ - sources."node-balanced-0.0.14" - ]; - }) - sources."postcss-discard-duplicates-1.2.1" - sources."postcss-discard-empty-1.1.2" - (sources."postcss-discard-unused-1.0.3" // { - dependencies = [ - sources."flatten-0.0.1" - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-filter-plugins-1.0.1" // { - dependencies = [ - sources."uniqid-1.0.0" - ]; - }) - (sources."postcss-font-family-1.2.1" // { - dependencies = [ - sources."object-assign-3.0.0" - sources."uniqs-2.0.0" - ]; - }) - sources."postcss-merge-idents-1.0.2" - sources."postcss-merge-longhand-1.0.2" - sources."postcss-merge-rules-1.3.6" - sources."postcss-minify-font-weight-1.0.1" - (sources."postcss-minify-selectors-1.5.0" // { - dependencies = [ - sources."javascript-natural-sort-0.7.1" - sources."normalize-selector-0.2.0" - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."uniq-1.0.1" - ]; - }) - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-normalize-url-2.1.3" // { - dependencies = [ - sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-value-parser-1.4.2" - ]; - }) - (sources."postcss-ordered-values-1.1.1" // { - dependencies = [ - sources."postcss-value-parser-1.4.2" - ]; - }) - (sources."postcss-reduce-idents-1.0.3" // { - dependencies = [ - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-single-charset-0.3.0" // { - dependencies = [ - (sources."fs-extra-0.14.0" // { - dependencies = [ - sources."ncp-1.0.1" - (sources."jsonfile-2.4.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-unique-selectors-1.0.1" // { - dependencies = [ - sources."javascript-natural-sort-0.7.1" - sources."uniqs-2.0.0" - ]; - }) - sources."postcss-zindex-1.1.3" - (sources."read-file-stdin-0.2.1" // { - dependencies = [ - sources."gather-stream-1.0.0" - ]; - }) - sources."write-file-stdout-0.0.2" + sources."object-assign-4.1.1" ]; }) - sources."highlight.js-8.9.1" - sources."lodash-3.10.1" - sources."marked-0.3.6" - (sources."postcss-4.1.16" // { + sources."postcss-ordered-values-1.1.1" + sources."postcss-reduce-idents-1.0.3" + sources."postcss-single-charset-0.3.0" + sources."postcss-unique-selectors-1.0.1" + sources."postcss-zindex-1.1.3" + sources."read-file-stdin-0.2.1" + sources."write-file-stdout-0.0.2" + sources."browserslist-0.4.0" + sources."num2fraction-1.2.2" + sources."caniuse-db-1.0.30000784" + sources."postcss-message-helpers-2.0.0" + (sources."reduce-css-calc-1.3.0" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."balanced-match-0.4.2" + ]; + }) + sources."math-expression-evaluator-1.2.17" + (sources."reduce-function-call-1.0.2" // { + dependencies = [ + sources."balanced-match-0.4.2" + ]; + }) + sources."color-0.10.1" + (sources."colormin-1.1.2" // { + dependencies = [ + sources."color-0.11.4" + sources."color-convert-1.9.1" + ]; + }) + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."css-color-names-0.0.4" + sources."has-1.0.1" + sources."clone-1.0.3" + sources."function-bind-1.1.1" + sources."postcss-value-parser-1.4.2" + sources."node-balanced-0.0.14" + sources."flatten-0.0.1" + sources."uniqs-2.0.0" + sources."uniqid-1.0.0" + sources."object-assign-3.0.0" + sources."javascript-natural-sort-0.7.1" + sources."normalize-selector-0.2.0" + (sources."postcss-selector-parser-1.3.3" // { + dependencies = [ + sources."flatten-1.0.2" + ]; + }) + sources."uniq-1.0.1" + sources."is-absolute-url-2.1.0" + (sources."normalize-url-1.9.1" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."prepend-http-1.0.4" + (sources."query-string-4.3.4" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + sources."fs-extra-0.14.0" + sources."ncp-1.0.1" + sources."jsonfile-2.4.0" + sources."rimraf-2.6.2" + sources."graceful-fs-4.1.11" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."brace-expansion-1.1.8" // { + dependencies = [ + sources."balanced-match-1.0.0" ]; }) + sources."concat-map-0.0.1" + sources."gather-stream-1.0.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -44447,34 +33518,21 @@ in sha1 = "b5995c78c63dcdc4b3978232185cc790182261a4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44493,17 +33551,11 @@ in sha1 = "a611643b32a8c5b0bb1d7aef107eb8b003bd2710"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -44522,34 +33574,21 @@ in sha1 = "63568b05198316a7a452491b05e58113f5735de2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44586,31 +33625,16 @@ in sha1 = "0877c6aea504bffd8a5d1f789d47d06a3e5feea1"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."postcss-simple-vars-4.0.0" + sources."postcss-6.0.14" + sources."postcss-simple-vars-4.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44630,64 +33654,35 @@ in }; dependencies = [ sources."camelcase-4.1.0" - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) + sources."color-1.0.3" sources."eases-1.0.8" - (sources."math-hypot-1.0.0" // { - dependencies = [ - sources."math-abs-1.0.2" - sources."math-sqrt-1.0.1" - sources."validate.io-infinite-1.0.0" - sources."validate.io-nan-1.0.3" - ]; - }) - (sources."postcss-5.2.17" // { + sources."math-hypot-1.0.0" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."round10-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."math-abs-1.0.2" + sources."math-sqrt-1.0.1" + sources."validate.io-infinite-1.0.0" + sources."validate.io-nan-1.0.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - sources."round10-1.0.3" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44700,36 +33695,22 @@ in postcss-easings = nodeEnv.buildNodePackage { name = "postcss-easings"; packageName = "postcss-easings"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-easings/-/postcss-easings-1.0.0.tgz"; - sha1 = "618b1f7ee289808ec30cf014115a57ae198f7ec6"; + url = "https://registry.npmjs.org/postcss-easings/-/postcss-easings-1.0.1.tgz"; + sha1 = "a7b9ebddabe5f8589e245256bd565408ea3366c3"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44742,105 +33723,55 @@ in postcss-easy-import = nodeEnv.buildNodePackage { name = "postcss-easy-import"; packageName = "postcss-easy-import"; - version = "2.1.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-easy-import/-/postcss-easy-import-2.1.0.tgz"; - sha1 = "1d49f8a7c404415cfee4e5cb7a15fdf866c13022"; + url = "https://registry.npmjs.org/postcss-easy-import/-/postcss-easy-import-3.0.0.tgz"; + sha1 = "8eaaf5ae59566083d0cae98735dfd803e3ab194d"; }; dependencies = [ (sources."globby-6.1.0" // { dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."is-glob-3.1.0" // { - dependencies = [ - sources."is-extglob-2.1.1" + sources."pify-2.3.0" ]; }) + sources."is-glob-4.0.0" sources."lodash-4.17.4" sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-import-9.1.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - (sources."promise-each-2.2.0" // { - dependencies = [ - sources."any-promise-0.1.0" - ]; - }) - sources."read-cache-1.0.0" - ]; - }) - (sources."resolve-1.3.3" // { + sources."pify-3.0.0" + sources."postcss-6.0.14" + sources."postcss-import-10.0.0" + sources."resolve-1.5.0" + sources."array-union-1.0.2" + sources."glob-7.1.2" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."pinkie-2.0.4" + sources."is-extglob-2.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."postcss-value-parser-3.3.0" + (sources."read-cache-1.0.0" // { dependencies = [ - sources."path-parse-1.0.5" + sources."pify-2.3.0" ]; }) + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -44859,34 +33790,21 @@ in sha1 = "9c837658177398e91f0141714ba327e6bb83b00e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -44906,244 +33824,9 @@ in }; dependencies = [ sources."async-1.5.0" - (sources."gulp-util-3.0.7" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."dateformat-1.0.12" // { - dependencies = [ - sources."get-stdin-4.0.1" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."strip-indent-1.0.1" - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - ]; - }) - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - sources."minimist-1.2.0" - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) + sources."gulp-util-3.0.7" sources."lodash-4.13.1" - (sources."md5-2.0.0" // { - dependencies = [ - sources."charenc-0.0.2" - sources."crypt-0.0.2" - sources."is-buffer-1.0.2" - ]; - }) + sources."md5-2.0.0" (sources."mkdirp-0.5.1" // { dependencies = [ sources."minimist-0.0.8" @@ -45151,398 +33834,305 @@ in }) (sources."postcss-5.0.10" // { dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" + sources."supports-color-3.2.3" ]; }) sources."q-1.4.1" (sources."spritesmith-3.1.0" // { dependencies = [ - (sources."concat-stream-1.5.2" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-2.1.1" // { - dependencies = [ - sources."async-0.9.2" - (sources."get-pixels-3.3.0" // { - dependencies = [ - sources."pngjs-2.3.1" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.3.4" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - (sources."ndarray-ops-1.2.2" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."pngjs-nozlib-1.0.0" - sources."through-2.3.8" - ]; - }) - (sources."vinyl-file-1.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) sources."semver-5.0.3" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" + ]; + }) + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."chalk-1.1.3" + sources."dateformat-1.0.12" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."minimist-1.2.0" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."vinyl-0.5.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."get-stdin-4.0.1" + (sources."meow-3.7.0" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."normalize-package-data-2.4.0" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."graceful-fs-4.1.11" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-2.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."is-utf8-0.2.1" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."charenc-0.0.2" + sources."crypt-0.0.2" + sources."is-buffer-1.0.2" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" + (sources."concat-stream-1.5.2" // { + dependencies = [ + sources."readable-stream-2.0.6" + sources."isarray-1.0.0" + ]; + }) + sources."layout-2.2.0" + (sources."pixelsmith-2.1.3" // { + dependencies = [ + sources."async-0.9.2" + ]; + }) + sources."typedarray-0.0.6" + sources."bin-pack-1.0.2" + sources."get-pixels-3.3.0" + sources."mime-types-2.1.17" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.3.4" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + (sources."vinyl-file-1.3.0" // { + dependencies = [ + sources."vinyl-1.2.0" + ]; + }) + sources."pngjs-2.3.1" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { + dependencies = [ + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" ]; }) + sources."through2-0.4.2" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" ]; }) + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + (sources."escodegen-1.3.3" // { + dependencies = [ + sources."esprima-1.1.1" + sources."source-map-0.1.43" + ]; + }) + sources."falafel-2.1.0" + sources."has-1.0.1" + sources."object-inspect-0.4.0" + (sources."quote-stream-0.0.0" // { + dependencies = [ + sources."through2-0.4.2" + sources."minimist-0.0.8" + sources."readable-stream-1.0.34" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" + ]; + }) + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { + dependencies = [ + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + (sources."yargs-3.10.0" // { + dependencies = [ + sources."camelcase-1.2.1" + ]; + }) + sources."uglify-to-browserify-1.0.2" + sources."cliui-2.1.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + (sources."kind-of-3.2.2" // { + dependencies = [ + sources."is-buffer-1.1.6" + ]; + }) + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" + ]; + }) + sources."gif-encoder-0.4.3" + sources."ndarray-ops-1.2.2" + sources."pngjs-nozlib-1.0.0" + sources."strip-bom-stream-1.0.0" + sources."first-chunk-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -45561,70 +34151,32 @@ in sha1 = "ec8572641e1c009429bd7133bc4de8523ef26e48"; }; dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."generic-names-1.0.2" // { - dependencies = [ - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."object-assign-4.1.1" - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-icss-selectors-2.0.3" // { - dependencies = [ - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - sources."icss-utils-3.0.1" - sources."lodash-4.17.4" - ]; - }) + sources."chalk-2.3.0" + sources."generic-names-1.0.3" + sources."postcss-6.0.14" + sources."postcss-icss-selectors-2.0.3" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."supports-color-4.5.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."loader-utils-0.2.17" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."object-assign-4.1.1" + sources."source-map-0.6.1" + sources."css-selector-tokenizer-0.7.0" + sources."icss-utils-3.0.1" + sources."lodash-4.17.4" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."regexpu-core-1.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" ]; buildInputs = globalBuildInputs; meta = { @@ -45643,40 +34195,24 @@ in sha1 = "85c82b36c2aa63a0b19bc643f68bbc246a0c7ea0"; }; dependencies = [ - (sources."em-media-query-1.0.0" // { - dependencies = [ - sources."lodash.round-4.0.4" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."em-media-query-1.0.0" + sources."postcss-5.2.18" + sources."lodash.round-4.0.4" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -45695,41 +34231,25 @@ in sha1 = "4cc3ecb7505a8cf1a3273818301a71d150326af4"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -45748,34 +34268,21 @@ in sha1 = "f3cb7b3d827bfc34a560f23ff36850c61927c63a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -45795,34 +34302,21 @@ in }; dependencies = [ sources."btoa-1.1.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -45841,34 +34335,21 @@ in sha1 = "77ba058ff28d5ef394aac504ee532f5b97c52e7e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -45903,40 +34384,24 @@ in sha1 = "32c2e8a0aa0492dab11de8c09aac07ea8aedc3fb"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) + sources."chalk-1.1.3" + sources."mkdirp-0.5.1" sources."path-parse-1.0.5" - (sources."postcss-5.2.17" // { + (sources."postcss-5.2.18" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."minimist-0.0.8" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -45955,34 +34420,21 @@ in sha1 = "5dc5450040ce5f22ee87180be955a4af0de2bcae"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46001,30 +34453,15 @@ in sha1 = "8cee371f2b21769ed7f1a01cf89cfebd23d7a131"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46044,34 +34481,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46090,34 +34514,21 @@ in sha1 = "5ea98bf787ba3cacf4df4609743f80a833b1d0e7"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46137,43 +34548,24 @@ in }; dependencies = [ sources."escape-string-regexp-1.0.5" - (sources."execall-1.0.0" // { - dependencies = [ - (sources."clone-regexp-1.0.0" // { - dependencies = [ - sources."is-regexp-1.0.0" - sources."is-supported-regexp-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."execall-1.0.0" + sources."postcss-5.2.18" + sources."clone-regexp-1.0.0" + sources."is-regexp-1.0.0" + sources."is-supported-regexp-flag-1.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46192,40 +34584,24 @@ in sha1 = "12c00f736d7abf7023de9f8dfb7f1fb28293eab0"; }; dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."postcss-5.2.17" // { + sources."mkdirp-0.5.1" + sources."postcss-5.2.18" + sources."postcss-nesting-2.3.1" + sources."minimist-0.0.8" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-nesting-2.3.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46238,49 +34614,28 @@ in postcss-extract-animations = nodeEnv.buildNodePackage { name = "postcss-extract-animations"; packageName = "postcss-extract-animations"; - version = "1.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-extract-animations/-/postcss-extract-animations-1.0.0.tgz"; - sha1 = "e1482c03724344fda5c7bf398ee05edc7041a176"; + url = "https://registry.npmjs.org/postcss-extract-animations/-/postcss-extract-animations-2.0.1.tgz"; + sha1 = "2093240d323c650e934b80b7464635f583066d32"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."unique-slug-2.0.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - ]; - }) + sources."postcss-6.0.14" + sources."unique-slug-2.0.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."imurmurhash-0.1.4" ]; buildInputs = globalBuildInputs; meta = { description = "Extract inline @keyframe entries"; + homepage = "https://github.com/tivac/postcss-extract-animations#readme"; license = "MIT"; }; production = true; @@ -46288,36 +34643,25 @@ in postcss-extract-css-block = nodeEnv.buildNodePackage { name = "postcss-extract-css-block"; packageName = "postcss-extract-css-block"; - version = "0.0.3"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-extract-css-block/-/postcss-extract-css-block-0.0.3.tgz"; - sha1 = "5310061c15a695462a4c2a4f055e640b85d79751"; + url = "https://registry.npmjs.org/postcss-extract-css-block/-/postcss-extract-css-block-0.1.0.tgz"; + sha1 = "254af21745df8e5cdb62e020452ac2c200afe6f3"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."fs-extra-3.0.1" + sources."postcss-6.0.14" + sources."graceful-fs-4.1.11" + sources."jsonfile-3.0.1" + sources."universalify-0.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46336,34 +34680,21 @@ in sha1 = "ea33ade5096f5c1d0d70c39811247c80cd02d64d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46382,44 +34713,25 @@ in sha1 = "de4f0f9dba15506005338c160f04873a2e88f6ab"; }; dependencies = [ - (sources."file-save-0.2.0" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - ]; - }) + sources."file-save-0.2.0" sources."path-0.11.14" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."mkdirp-0.5.1" + sources."minimist-0.0.8" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46438,30 +34750,15 @@ in sha1 = "4717da2606cb6f9a68691e8e14f6480f0c682b28"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46480,34 +34777,21 @@ in sha1 = "1e8d53abec9fa3789ac6f1ce4068fd8919575ceb"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46527,32 +34811,20 @@ in }; dependencies = [ sources."color-name-1.1.3" - sources."nearest-color-0.4.0" - (sources."parse-color-1.0.0" // { - dependencies = [ - sources."color-convert-0.5.3" - ]; - }) - (sources."postcss-6.0.6" // { + sources."nearest-color-0.4.2" + sources."parse-color-1.0.0" + sources."postcss-6.0.14" + sources."color-convert-0.5.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + (sources."ansi-styles-3.2.0" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - sources."color-convert-1.9.0" - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."color-convert-1.9.1" ]; }) + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46571,34 +34843,21 @@ in sha1 = "80d792749cc654d745fc04ba7a7911cb8836c4ec"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46618,35 +34877,22 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46665,34 +34911,21 @@ in sha1 = "c97fe19f98409a78a743ab5e524895c75303c7ee"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46711,34 +34944,21 @@ in sha1 = "ed84bca9df436a7595eb19ebda348b29fe2047c6"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46757,34 +34977,21 @@ in sha1 = "d771b0bfac8013f866b863656158b17c274347b9"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46803,44 +35010,22 @@ in sha1 = "ebc28e517f32ce36551f15302ea4d78a164cc886"; }; dependencies = [ - (sources."filter-gradient-1.0.1" // { - dependencies = [ - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { + sources."filter-gradient-1.0.1" + sources."postcss-6.0.14" + sources."color-0.10.1" + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + (sources."ansi-styles-3.2.0" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."color-convert-1.9.1" ]; }) + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46859,35 +35044,22 @@ in sha1 = "4c1cd7f988cadb4ccb3fafd173d4cc857e769f35"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."underscore-1.8.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."underscore-1.8.3" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -46905,39 +35077,23 @@ in sha1 = "6d85862534d735ac420e4a85806e1f5d4286d84c"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."uniqid-4.1.1" // { + sources."postcss-5.2.18" + sources."uniqid-4.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."macaddress-0.2.8" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."macaddress-0.2.8" ]; buildInputs = globalBuildInputs; meta = { @@ -46950,40 +35106,31 @@ in postcss-filter-rules = nodeEnv.buildNodePackage { name = "postcss-filter-rules"; packageName = "postcss-filter-rules"; - version = "0.2.0"; + version = "0.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-filter-rules/-/postcss-filter-rules-0.2.0.tgz"; - sha1 = "832799afddf31e661f51b6f92974685c040b75d0"; + url = "https://registry.npmjs.org/postcss-filter-rules/-/postcss-filter-rules-0.2.2.tgz"; + sha1 = "3436a4820fc948f153a35d1ac4f29d9bff805ad2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -47002,55 +35149,30 @@ in sha1 = "3d7422ec785e747010fc40350fb4c4a205324640"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."multimatch-2.1.0" // { + sources."postcss-5.2.18" + sources."multimatch-2.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."array-differ-1.0.0" - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."arrify-1.0.1" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."array-differ-1.0.0" + sources."array-union-1.0.2" + sources."arrify-1.0.1" + sources."minimatch-3.0.4" + sources."array-uniq-1.0.3" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -47069,34 +35191,21 @@ in sha1 = "ad6da3e02631d7444bdf223cdf6b52b7f0260c04"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47115,34 +35224,21 @@ in sha1 = "5421b756d9629e066e2984393eb51a325ada9ea3"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47164,196 +35260,72 @@ in sources."lodash-4.17.4" (sources."pixrem-3.0.2" // { dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) + sources."postcss-5.2.18" ]; }) - (sources."postcss-6.0.6" // { + (sources."postcss-6.0.14" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."has-flag-2.0.0" ]; }) - (sources."postcss-calc-6.0.0" // { + (sources."postcss-calc-6.0.1" // { dependencies = [ - sources."css-unit-converter-1.1.1" - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."reduce-css-calc-2.0.5" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) + sources."reduce-css-calc-2.1.3" ]; }) - sources."postcss-flexbugs-fixes-3.0.0" + sources."postcss-flexbugs-fixes-3.2.0" sources."postcss-nth-child-fix-2.0.0" (sources."postcss-pseudoelements-3.0.0" // { dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" ]; }) (sources."postcss-unopacity-1.0.1" // { dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" ]; }) (sources."postcss-unroot-1.0.2" // { dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" ]; }) sources."postcss-vmin-3.0.0" + sources."browserslist-1.7.7" + sources."reduce-css-calc-1.3.0" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."css-unit-converter-1.1.1" + sources."postcss-selector-parser-2.2.3" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."postcss-value-parser-3.3.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47372,18 +35344,12 @@ in sha1 = "b266fda9f073e79c80a27b51faca9783ab785e54"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."postcss-message-helpers-2.0.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -47402,34 +35368,21 @@ in sha1 = "2e2027262081492ed10b755e4d2f95955ed1da08"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47448,34 +35401,21 @@ in sha1 = "68a2c5c31841327bf4b0b49ec3a7aebcd2e72a0c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47494,34 +35434,21 @@ in sha1 = "5faf44a35fe1d058154292413752a2017c2e4c69"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47540,34 +35467,21 @@ in sha1 = "5261490c2fff05137d9ee20799a6b2fcb4e3357c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47580,36 +35494,21 @@ in postcss-flexbugs-fixes = nodeEnv.buildNodePackage { name = "postcss-flexbugs-fixes"; packageName = "postcss-flexbugs-fixes"; - version = "3.0.0"; + version = "3.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.0.0.tgz"; - sha1 = "7b31cb6c27d0417a35a67914c295f83c403c7ed4"; + url = "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz"; + sha1 = "9b8b932c53f9cf13ba0f61875303e447c33dcc51"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47628,30 +35527,15 @@ in sha1 = "5612c1b85d6595ed480966839928a41617a6a768"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47670,34 +35554,21 @@ in sha1 = "201c78cee18cadfa8a76d4322181e43fbd7c3010"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47710,36 +35581,21 @@ in postcss-focus = nodeEnv.buildNodePackage { name = "postcss-focus"; packageName = "postcss-focus"; - version = "2.0.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-focus/-/postcss-focus-2.0.0.tgz"; - sha1 = "e4ad175566125b2837f9fc44f782ce1b0160678c"; + url = "https://registry.npmjs.org/postcss-focus/-/postcss-focus-3.0.0.tgz"; + sha1 = "9b8eb8f057b1c32844d192b75bde04e44ef53a3e"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47758,37 +35614,19 @@ in sha1 = "df533b1fa2c6d2d1bdd72e8f0462e3f9f7a08390"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-2.2.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -47807,34 +35645,21 @@ in sha1 = "17bed8b582d01f15726aaa8cdcb49a59a288f1b5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47854,35 +35679,22 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."uniqs-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."uniqs-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47895,38 +35707,24 @@ in postcss-font-family-system-ui = nodeEnv.buildNodePackage { name = "postcss-font-family-system-ui"; packageName = "postcss-font-family-system-ui"; - version = "2.0.1"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-family-system-ui/-/postcss-font-family-system-ui-2.0.1.tgz"; - sha1 = "318a075fdcb84b864aa823a51935ef0a5872e911"; + url = "https://registry.npmjs.org/postcss-font-family-system-ui/-/postcss-font-family-system-ui-2.1.1.tgz"; + sha1 = "1ee54246cd02b199755ebe5781b91188ed908006"; }; dependencies = [ + sources."@std/esm-0.16.0" sources."lodash-4.17.4" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47946,34 +35744,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -47992,35 +35777,22 @@ in sha1 = "e959c82c62aba8d205ea87960ea7488a608aa6e9"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."lodash-3.10.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."lodash-3.10.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48033,82 +35805,47 @@ in postcss-font-magician = nodeEnv.buildNodePackage { name = "postcss-font-magician"; packageName = "postcss-font-magician"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-magician/-/postcss-font-magician-2.0.0.tgz"; - sha1 = "dff347e6b40b6519c4645d2ed19cb0d99016396d"; + url = "https://registry.npmjs.org/postcss-font-magician/-/postcss-font-magician-2.1.0.tgz"; + sha1 = "27167598a63320f186bc2b1376e62bb20625700e"; }; dependencies = [ (sources."bootstrap-fonts-complete-1.0.0" // { dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - ]; - }) - (sources."directory-fonts-complete-1.1.0" // { - dependencies = [ - sources."is-eot-1.0.0" - (sources."is-otf-0.1.2" // { - dependencies = [ - sources."b3b-0.0.1" - ]; - }) - (sources."is-ttf-0.2.2" // { - dependencies = [ - sources."b3b-0.0.1" - ]; - }) - sources."is-woff-1.0.3" + sources."postcss-4.1.16" ]; }) - (sources."google-fonts-complete-1.1.1" // { + sources."directory-fonts-complete-1.2.0" + (sources."google-fonts-complete-1.2.0" // { dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" ]; }) - (sources."postcss-6.0.6" // { + (sources."postcss-6.0.14" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."source-map-0.6.1" ]; }) + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."brotli-1.3.2" + sources."is-eot-1.0.0" + sources."is-otf-0.1.2" + sources."is-ttf-0.2.2" + sources."is-woff-1.0.3" + sources."is-woff2-1.0.0" + sources."base64-js-1.2.1" + sources."b3b-0.0.1" + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48129,74 +35866,39 @@ in dependencies = [ (sources."bootstrap-fonts-complete-1.0.0" // { dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - ]; - }) - (sources."directory-fonts-complete-1.1.0" // { - dependencies = [ - sources."is-eot-1.0.0" - (sources."is-otf-0.1.2" // { - dependencies = [ - sources."b3b-0.0.1" - ]; - }) - (sources."is-ttf-0.2.2" // { - dependencies = [ - sources."b3b-0.0.1" - ]; - }) - sources."is-woff-1.0.3" + sources."postcss-4.1.16" ]; }) - (sources."google-fonts-complete-1.1.1" // { + sources."directory-fonts-complete-1.2.0" + (sources."google-fonts-complete-1.2.0" // { dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" ]; }) - (sources."postcss-6.0.6" // { + (sources."postcss-6.0.14" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."source-map-0.6.1" ]; }) + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."brotli-1.3.2" + sources."is-eot-1.0.0" + sources."is-otf-0.1.2" + sources."is-ttf-0.2.2" + sources."is-woff-1.0.3" + sources."is-woff2-1.0.0" + sources."base64-js-1.2.1" + sources."b3b-0.0.1" + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48215,34 +35917,21 @@ in sha1 = "976ef7bb9552e3dda2d53513ecefea1f9e4afccd"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48255,41 +35944,22 @@ in postcss-font-pack = nodeEnv.buildNodePackage { name = "postcss-font-pack"; packageName = "postcss-font-pack"; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-pack/-/postcss-font-pack-1.1.0.tgz"; - sha1 = "091173a0cc3ff4336b5e3fbc0e0dcd7d4c220657"; + url = "https://registry.npmjs.org/postcss-font-pack/-/postcss-font-pack-1.2.0.tgz"; + sha1 = "94146562a1260338a2864c01145f2046dbd2de3d"; }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48340,34 +36010,21 @@ in }; dependencies = [ sources."eslint-config-postcss-2.0.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48386,30 +36043,15 @@ in sha1 = "08ccc88f6050ba82ed8ef2cc76c0c6a6b41f183e"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48422,40 +36064,27 @@ in postcss-font-weight-names = nodeEnv.buildNodePackage { name = "postcss-font-weight-names"; packageName = "postcss-font-weight-names"; - version = "1.0.0"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-weight-names/-/postcss-font-weight-names-1.0.0.tgz"; - sha1 = "f039508068e4282b0e11e7cad6a93d2de26c5edb"; + url = "https://registry.npmjs.org/postcss-font-weight-names/-/postcss-font-weight-names-1.1.0.tgz"; + sha1 = "31905bc799ab54e7d8aced87ab2481b88e746b2e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48475,31 +36104,16 @@ in }; dependencies = [ sources."css-font-weight-names-0.2.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48512,41 +36126,21 @@ in postcss-fontpath = nodeEnv.buildNodePackage { name = "postcss-fontpath"; packageName = "postcss-fontpath"; - version = "0.3.0"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-fontpath/-/postcss-fontpath-0.3.0.tgz"; - sha1 = "28142a79dd18f2c9f0bf5c87f7a3eb794c53929e"; + url = "https://registry.npmjs.org/postcss-fontpath/-/postcss-fontpath-1.0.0.tgz"; + sha1 = "ad0eefc2193e29cf7a34b8c751ff7fe8e74699e5"; }; dependencies = [ - sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48565,35 +36159,22 @@ in sha1 = "841378c0ef909d50e1980d5aa71e6a340e728fcd"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-simple-vars-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-simple-vars-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48612,17 +36193,11 @@ in sha1 = "0533c185edbc2179d2133d71d6765c030feaa17b"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -48642,34 +36217,21 @@ in }; dependencies = [ sources."balanced-match-0.2.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48688,34 +36250,21 @@ in sha1 = "301092bb27c66c86876afaacfbbbda8fdb7e20cf"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48734,18 +36283,12 @@ in sha1 = "eab4eb958d21982c4a57e8b996c2effbf73836fd"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."postcss-simple-vars-0.3.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -48764,34 +36307,21 @@ in sha1 = "8864db56a63ad20822b43f3d6fa249b9f2cbe82d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48810,61 +36340,32 @@ in sha1 = "4dd1cf730939edd8283488f5c904a1c92a2fe9b9"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."glob-7.1.2" // { + sources."postcss-5.2.18" + sources."glob-7.1.2" + (sources."chalk-1.1.3" // { dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -48877,68 +36378,34 @@ in postcss-functions = nodeEnv.buildNodePackage { name = "postcss-functions"; packageName = "postcss-functions"; - version = "2.1.1"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-functions/-/postcss-functions-2.1.1.tgz"; - sha1 = "f9b64d3b5690f6795fe42a180496805375b7a840"; + url = "https://registry.npmjs.org/postcss-functions/-/postcss-functions-3.0.0.tgz"; + sha1 = "0e94d01444700a481de20de4d55fb2640564250e"; }; dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) + sources."glob-7.1.2" sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -48951,40 +36418,27 @@ in postcss-fuss = nodeEnv.buildNodePackage { name = "postcss-fuss"; packageName = "postcss-fuss"; - version = "0.1.0"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-fuss/-/postcss-fuss-0.1.0.tgz"; - sha1 = "b45e5ce1093883b9909da15edf8c811b2a6da74f"; + url = "https://registry.npmjs.org/postcss-fuss/-/postcss-fuss-0.2.0.tgz"; + sha1 = "db26e6b781def445eeefaeac9c038fbfb567a6dc"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49003,34 +36457,21 @@ in sha1 = "a216b49b69f76c65288e6a398e89d7c3e773f7e0"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49050,41 +36491,25 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -49103,17 +36528,11 @@ in sha1 = "9ebb268a3d3632bcf7f8c954edb178335e8c00f2"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -49132,34 +36551,21 @@ in sha1 = "1220997361dd0cf4fbb2f8c6240ba9196b05b3a5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49172,217 +36578,133 @@ in postcss-get-color = nodeEnv.buildNodePackage { name = "postcss-get-color"; packageName = "postcss-get-color"; - version = "0.1.0"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-get-color/-/postcss-get-color-0.1.0.tgz"; - sha1 = "2eacc731ed4356a38dfc7b54c344c12d08f84e48"; + url = "https://registry.npmjs.org/postcss-get-color/-/postcss-get-color-0.2.0.tgz"; + sha1 = "f1270d465ab4904a98a31f36a1c74deacc21d6c5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."node-vibrant-2.1.2" + (sources."path-0.12.7" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."process-0.11.10" ]; }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" - (sources."node-vibrant-2.1.2" // { + sources."jimp-0.2.28" + sources."quantize-1.0.2" + (sources."url-0.11.0" // { dependencies = [ - (sources."jimp-0.2.28" // { - dependencies = [ - sources."bignumber.js-2.4.0" - sources."bmp-js-0.0.3" - sources."es6-promise-3.3.1" - sources."exif-parser-0.1.11" - sources."file-type-3.9.0" - sources."jpeg-js-0.2.0" - (sources."load-bmfont-1.3.0" // { - dependencies = [ - sources."buffer-equal-0.0.1" - sources."parse-bmfont-ascii-1.0.6" - sources."parse-bmfont-binary-1.0.6" - (sources."parse-bmfont-xml-1.1.3" // { - dependencies = [ - sources."xml-parse-from-string-1.0.1" - (sources."xml2js-0.4.17" // { - dependencies = [ - sources."sax-1.2.4" - (sources."xmlbuilder-4.2.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - ]; - }) - ]; - }) - (sources."xhr-2.4.0" // { - dependencies = [ - (sources."global-4.3.2" // { - dependencies = [ - (sources."min-document-2.19.0" // { - dependencies = [ - sources."dom-walk-0.1.1" - ]; - }) - sources."process-0.5.2" - ]; - }) - sources."is-function-1.0.1" - (sources."parse-headers-2.0.1" // { - dependencies = [ - sources."for-each-0.3.2" - sources."trim-0.0.1" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - sources."mime-1.3.6" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."pixelmatch-4.0.2" - sources."pngjs-3.2.0" - sources."read-chunk-1.0.1" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."stream-to-buffer-0.1.0" // { - dependencies = [ - sources."stream-to-0.2.2" - ]; - }) - sources."tinycolor2-1.4.1" - (sources."url-regex-3.2.0" // { - dependencies = [ - sources."ip-regex-1.0.3" - ]; - }) - ]; - }) - sources."quantize-1.0.2" - (sources."url-0.11.0" // { - dependencies = [ - sources."punycode-1.3.2" - sources."querystring-0.2.0" - ]; - }) + sources."punycode-1.3.2" ]; }) + sources."bignumber.js-2.4.0" + sources."bmp-js-0.0.3" + sources."es6-promise-3.3.1" + sources."exif-parser-0.1.12" + sources."file-type-3.9.0" + sources."jpeg-js-0.2.0" + sources."load-bmfont-1.3.0" + sources."mime-1.6.0" + sources."mkdirp-0.5.1" + sources."pixelmatch-4.0.2" + sources."pngjs-3.3.1" + sources."read-chunk-1.0.1" + sources."request-2.83.0" + sources."stream-to-buffer-0.1.0" + sources."tinycolor2-1.4.1" + sources."url-regex-3.2.0" + sources."buffer-equal-0.0.1" + sources."parse-bmfont-ascii-1.0.6" + sources."parse-bmfont-binary-1.0.6" + sources."parse-bmfont-xml-1.1.3" + sources."xhr-2.4.1" + sources."xtend-4.0.1" + sources."xml-parse-from-string-1.0.1" + sources."xml2js-0.4.19" + sources."sax-1.2.4" + sources."xmlbuilder-9.0.4" + sources."global-4.3.2" + sources."is-function-1.0.1" + sources."parse-headers-2.0.1" + sources."min-document-2.19.0" + sources."process-0.5.2" + sources."dom-walk-0.1.1" + sources."for-each-0.3.2" + sources."trim-0.0.1" + sources."minimist-0.0.8" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."stream-to-0.2.2" + sources."ip-regex-1.0.3" + sources."querystring-0.2.0" + sources."util-0.10.3" + sources."inherits-2.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin to get the prominent colors from an image."; + description = "PostCSS plugin to get the prominent colors from an image"; homepage = https://github.com/ismamz/postcss-get-color; license = "MIT"; }; @@ -49397,30 +36719,15 @@ in sha1 = "67381f4c771fbb12b63d6faffc2b0aa0d83a491a"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49439,41 +36746,20 @@ in sha1 = "5e07d8089e5ad8c8d743e23877fc7d95d93f2994"; }; dependencies = [ - (sources."css-variable-1.0.1" // { - dependencies = [ - (sources."is-blank-1.1.0" // { - dependencies = [ - sources."is-empty-0.0.1" - sources."is-whitespace-0.3.0" - ]; - }) - ]; - }) + sources."css-variable-1.0.1" sources."is-css-root-1.0.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."is-blank-1.1.0" + sources."is-empty-0.0.1" + sources."is-whitespace-0.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49492,45 +36778,26 @@ in sha1 = "385dab8c148909a56130e1d771ef7597a13b53fd"; }; dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."minimatch-3.0.4" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49549,34 +36816,21 @@ in sha1 = "fbd45a93c187cdaf2fa57cefc979113e2f17249b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49595,34 +36849,21 @@ in sha1 = "b57c7fbfff276d9d7d2397bac2e0cf61ebc797cf"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49635,56 +36876,26 @@ in postcss-gradient-transparency-fix = nodeEnv.buildNodePackage { name = "postcss-gradient-transparency-fix"; packageName = "postcss-gradient-transparency-fix"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-gradient-transparency-fix/-/postcss-gradient-transparency-fix-2.0.0.tgz"; - sha1 = "6b6ad88cb7aed132c3f417d24b59b2f83d41ffe0"; + url = "https://registry.npmjs.org/postcss-gradient-transparency-fix/-/postcss-gradient-transparency-fix-2.1.0.tgz"; + sha1 = "b8161b87dc821334bcfc1933333e4ee89d366b25"; }; dependencies = [ - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."color-2.0.1" + sources."color-string-1.5.2" + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49703,34 +36914,21 @@ in sha1 = "a9063868900a2b52287e285803e80a2d4447e0c5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -49749,17 +36947,11 @@ in sha1 = "c26cd91f357817a9258cdebf86fa30b0c9b6e6e1"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -49778,39 +36970,23 @@ in sha1 = "d644488ab95f8d560f7634df56208072afc473bb"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."reduce-function-call-1.0.2" // { + sources."postcss-5.2.18" + sources."reduce-function-call-1.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -49823,1846 +36999,588 @@ in postcss-grid-fluid = nodeEnv.buildNodePackage { name = "postcss-grid-fluid"; packageName = "postcss-grid-fluid"; - version = "0.1.17"; + version = "0.1.19"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-grid-fluid/-/postcss-grid-fluid-0.1.17.tgz"; - sha1 = "a60815505508f7188b83b3626987a18feccc1118"; + url = "https://registry.npmjs.org/postcss-grid-fluid/-/postcss-grid-fluid-0.1.19.tgz"; + sha1 = "3c02fe4d3473bb89cf85d4cf7c3bb867595eeb47"; }; dependencies = [ - (sources."ava-0.19.1" // { + sources."ava-0.23.0" + (sources."postcss-6.0.14" // { dependencies = [ - (sources."@ava/babel-preset-stage-4-1.1.0" // { - dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."package-hash-1.2.0" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - ]; - }) - ]; - }) - (sources."@ava/babel-preset-transform-test-files-3.0.0" // { - dependencies = [ - sources."@ava/babel-plugin-throws-helper-2.0.0" - (sources."babel-plugin-espower-2.3.2" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."lodash-4.17.4" - sources."source-map-0.5.6" - sources."trim-right-1.0.1" - ]; - }) - sources."babylon-6.17.4" - (sources."call-matcher-1.0.1" // { - dependencies = [ - sources."deep-equal-1.0.1" - ]; - }) - sources."core-js-2.4.1" - (sources."espower-location-detector-1.0.0" // { - dependencies = [ - sources."is-url-1.2.2" - sources."path-is-absolute-1.0.1" - sources."source-map-0.5.6" - sources."xtend-4.0.1" - ]; - }) - sources."espurify-1.7.0" - sources."estraverse-4.2.0" - ]; - }) - ]; - }) - (sources."@ava/pretty-format-1.1.0" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."esutils-2.0.2" - ]; - }) - sources."arr-flatten-1.1.0" - sources."array-union-1.0.2" - sources."array-uniq-1.0.3" - sources."arrify-1.0.1" - sources."auto-bind-1.1.0" - (sources."ava-init-0.2.1" // { - dependencies = [ - sources."arr-exclude-1.0.0" - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - sources."has-yarn-1.0.0" - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - (sources."write-pkg-3.1.0" // { - dependencies = [ - (sources."sort-keys-2.0.0" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-json-file-2.2.0" // { - dependencies = [ - sources."detect-indent-5.0.0" - sources."graceful-fs-4.1.11" - sources."make-dir-1.0.0" - sources."pify-2.3.0" - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."json5-0.5.1" - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."source-map-0.5.6" - ]; - }) - sources."bluebird-3.5.0" - (sources."caching-transform-1.0.1" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."clean-stack-1.3.0" - sources."clean-yaml-object-0.1.0" - (sources."cli-cursor-2.1.0" // { - dependencies = [ - (sources."restore-cursor-2.0.0" // { - dependencies = [ - (sources."onetime-2.0.1" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - ]; - }) - sources."cli-spinners-1.0.0" - (sources."cli-truncate-1.0.0" // { - dependencies = [ - sources."slice-ansi-0.0.4" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."co-with-promise-4.6.0" // { - dependencies = [ - (sources."pinkie-promise-1.0.0" // { - dependencies = [ - sources."pinkie-1.0.0" - ]; - }) - ]; - }) - (sources."code-excerpt-2.1.0" // { - dependencies = [ - sources."convert-to-spaces-1.0.2" - ]; - }) - sources."common-path-prefix-1.0.0" - sources."convert-source-map-1.5.0" - (sources."core-assert-0.2.1" // { - dependencies = [ - sources."buf-compare-1.0.1" - sources."is-error-2.2.1" - ]; - }) - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."diff-3.3.0" - sources."diff-match-patch-1.0.0" - sources."dot-prop-4.1.1" - (sources."empower-core-0.6.2" // { - dependencies = [ - sources."call-signature-0.0.2" - sources."core-js-2.4.1" - ]; - }) - sources."equal-length-1.0.1" - (sources."figures-2.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."find-cache-dir-0.1.1" // { - dependencies = [ - sources."commondir-1.0.1" - (sources."pkg-dir-1.0.0" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."fn-name-2.0.1" - sources."get-port-3.1.0" - (sources."globby-6.1.0" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."has-flag-2.0.0" - (sources."hullabaloo-config-manager-1.1.1" // { - dependencies = [ - sources."es6-error-4.0.2" - sources."graceful-fs-4.1.11" - sources."json5-0.5.1" - sources."lodash.clonedeep-4.5.0" - sources."lodash.clonedeepwith-4.5.0" - sources."lodash.merge-4.6.0" - (sources."pkg-dir-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."resolve-from-3.0.0" - sources."safe-buffer-5.1.1" - ]; - }) - sources."ignore-by-default-1.0.1" - sources."indent-string-3.1.0" - (sources."is-ci-1.0.10" // { - dependencies = [ - sources."ci-info-1.0.0" - ]; - }) - sources."is-generator-fn-1.0.0" - sources."is-obj-1.0.1" - (sources."is-observable-0.2.0" // { - dependencies = [ - sources."symbol-observable-0.2.4" - ]; - }) - sources."is-promise-2.1.0" - (sources."jest-diff-19.0.0" // { - dependencies = [ - sources."jest-matcher-utils-19.0.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."jest-snapshot-19.0.2" // { - dependencies = [ - sources."jest-file-exists-19.0.0" - sources."jest-matcher-utils-19.0.0" - (sources."jest-util-19.0.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jest-mock-19.0.0" - sources."jest-validate-19.0.2" - (sources."jest-message-util-19.0.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."leven-2.1.0" - ]; - }) - sources."natural-compare-1.4.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."last-line-stream-1.0.0" // { - dependencies = [ - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."lodash.debounce-4.0.8" - sources."lodash.difference-4.5.0" - sources."lodash.flatten-4.4.0" - sources."lodash.isequal-4.5.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - sources."signal-exit-3.0.2" - ]; - }) - (sources."matcher-0.1.2" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."md5-hex-2.0.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ms-0.7.3" - (sources."multimatch-2.1.0" // { - dependencies = [ - sources."array-differ-1.0.0" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."observable-to-promise-0.5.0" // { - dependencies = [ - sources."symbol-observable-1.0.4" - ]; - }) - (sources."option-chain-0.1.1" // { - dependencies = [ - sources."object-assign-4.1.1" - ]; - }) - (sources."package-hash-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."lodash.flattendeep-4.4.0" - (sources."release-zalgo-1.0.0" // { - dependencies = [ - sources."es6-error-4.0.2" - ]; - }) - ]; - }) - (sources."pkg-conf-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."pretty-ms-2.1.0" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - sources."parse-ms-1.0.1" - sources."plur-1.0.0" - ]; - }) - sources."require-precompiled-0.1.0" - (sources."resolve-cwd-1.0.0" // { - dependencies = [ - sources."resolve-from-2.0.0" - ]; - }) - sources."slash-1.0.0" - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - sources."stack-utils-1.0.1" - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-bom-buf-1.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - (sources."time-require-0.1.2" // { - dependencies = [ - (sources."chalk-0.4.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."ansi-styles-1.0.0" - sources."strip-ansi-0.1.1" - ]; - }) - sources."text-table-0.2.0" - sources."date-time-0.1.1" - (sources."pretty-ms-0.2.2" // { - dependencies = [ - sources."parse-ms-0.1.2" - ]; - }) - ]; - }) - (sources."unique-temp-dir-1.0.0" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."uid2-0.0.3" - ]; - }) - (sources."update-notifier-2.2.0" // { - dependencies = [ - (sources."boxen-1.2.0" // { - dependencies = [ - sources."ansi-align-2.0.0" - sources."camelcase-4.1.0" - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - sources."supports-color-4.2.0" - ]; - }) - sources."cli-boxes-1.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - (sources."term-size-1.2.0" // { - dependencies = [ - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - ]; - }) - (sources."widest-line-1.0.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."configstore-3.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."make-dir-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."unique-string-1.0.0" // { - dependencies = [ - sources."crypto-random-string-1.0.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - sources."import-lazy-2.1.0" - sources."is-npm-1.0.0" - (sources."latest-version-3.1.0" // { - dependencies = [ - (sources."package-json-4.0.1" // { - dependencies = [ - (sources."got-6.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-3.0.0" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."safe-buffer-5.1.1" - sources."timed-out-4.0.1" - sources."unzip-response-2.0.1" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."registry-auth-token-3.3.1" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - sources."safe-buffer-5.1.1" - ]; - }) - (sources."registry-url-3.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."semver-5.3.0" - ]; - }) - ]; - }) - (sources."semver-diff-2.1.0" // { - dependencies = [ - sources."semver-5.3.0" - ]; - }) - sources."xdg-basedir-3.0.0" - ]; - }) + sources."source-map-0.6.1" ]; }) - (sources."postcss-6.0.6" // { + (sources."@ava/babel-preset-stage-4-1.1.0" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."package-hash-1.2.0" + sources."md5-hex-1.3.0" + ]; + }) + sources."@ava/babel-preset-transform-test-files-3.0.0" + sources."@ava/write-file-atomic-2.2.0" + sources."@concordance/react-1.0.0" + sources."ansi-escapes-2.0.0" + sources."ansi-styles-3.2.0" + sources."arr-flatten-1.1.0" + sources."array-union-1.0.2" + sources."array-uniq-1.0.3" + sources."arrify-1.0.1" + sources."auto-bind-1.1.0" + sources."ava-init-0.2.1" + (sources."babel-core-6.26.0" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) + sources."bluebird-3.5.1" + (sources."caching-transform-1.0.1" // { + dependencies = [ + sources."md5-hex-1.3.0" + sources."write-file-atomic-1.3.4" + ]; + }) + sources."chalk-2.3.0" + sources."chokidar-1.7.0" + sources."clean-stack-1.3.0" + sources."clean-yaml-object-0.1.0" + sources."cli-cursor-2.1.0" + sources."cli-spinners-1.1.0" + (sources."cli-truncate-1.1.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."co-with-promise-4.6.0" + sources."code-excerpt-2.1.0" + sources."common-path-prefix-1.0.0" + sources."concordance-3.0.0" + sources."convert-source-map-1.5.1" + sources."core-assert-0.2.1" + sources."currently-unhandled-0.4.1" + (sources."debug-3.1.0" // { + dependencies = [ + sources."ms-2.0.0" + ]; + }) + sources."dot-prop-4.2.0" + sources."empower-core-0.6.2" + sources."equal-length-1.0.1" + sources."figures-2.0.0" + sources."find-cache-dir-1.0.0" + sources."fn-name-2.0.1" + sources."get-port-3.2.0" + (sources."globby-6.1.0" // { + dependencies = [ + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + ]; + }) + sources."has-flag-2.0.0" + sources."hullabaloo-config-manager-1.1.1" + sources."ignore-by-default-1.0.1" + sources."import-local-0.1.1" + sources."indent-string-3.2.0" + sources."is-ci-1.0.10" + sources."is-generator-fn-1.0.0" + sources."is-obj-1.0.1" + sources."is-observable-0.2.0" + sources."is-promise-2.1.0" + sources."js-yaml-3.10.0" + sources."last-line-stream-1.0.0" + sources."lodash.clonedeepwith-4.5.0" + sources."lodash.debounce-4.0.8" + sources."lodash.difference-4.5.0" + sources."lodash.flatten-4.4.0" + sources."loud-rejection-1.6.0" + (sources."make-dir-1.1.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) + sources."matcher-1.0.0" + sources."md5-hex-2.0.0" + (sources."meow-3.7.0" // { + dependencies = [ + sources."minimist-1.2.0" + sources."read-pkg-up-1.0.1" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."strip-bom-2.0.0" + ]; + }) + sources."ms-2.1.1" + sources."multimatch-2.1.0" + (sources."observable-to-promise-0.5.0" // { + dependencies = [ + sources."symbol-observable-1.1.0" + ]; + }) + sources."option-chain-1.0.0" + sources."package-hash-2.0.0" + sources."pkg-conf-2.0.0" + sources."plur-2.1.2" + sources."pretty-ms-3.1.0" + sources."require-precompiled-0.1.0" + sources."resolve-cwd-2.0.0" + sources."safe-buffer-5.1.1" + sources."slash-1.0.0" + sources."source-map-support-0.4.18" + sources."stack-utils-1.0.1" + (sources."strip-ansi-4.0.0" // { + dependencies = [ + sources."ansi-regex-3.0.0" + ]; + }) + sources."strip-bom-buf-1.0.0" + sources."supports-color-4.5.0" + (sources."time-require-0.1.2" // { + dependencies = [ + sources."chalk-0.4.0" + sources."date-time-0.1.1" + sources."pretty-ms-0.2.2" + sources."ansi-styles-1.0.0" + sources."strip-ansi-0.1.1" + sources."parse-ms-0.1.2" + ]; + }) + sources."trim-off-newlines-1.0.1" + sources."unique-temp-dir-1.0.0" + sources."update-notifier-2.3.0" + sources."babel-plugin-check-es2015-constants-6.22.0" + sources."babel-plugin-syntax-trailing-function-commas-6.22.0" + sources."babel-plugin-transform-async-to-generator-6.24.1" + sources."babel-plugin-transform-es2015-destructuring-6.23.0" + sources."babel-plugin-transform-es2015-function-name-6.24.1" + sources."babel-plugin-transform-es2015-modules-commonjs-6.26.0" + sources."babel-plugin-transform-es2015-parameters-6.24.1" + sources."babel-plugin-transform-es2015-spread-6.22.0" + sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" + sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" + sources."babel-plugin-transform-exponentiation-operator-6.24.1" + sources."babel-runtime-6.26.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."babel-helper-remap-async-to-generator-6.24.1" + sources."babel-plugin-syntax-async-functions-6.13.0" + sources."babel-template-6.26.0" + sources."babel-types-6.26.0" + (sources."babel-traverse-6.26.0" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) + sources."babel-helper-function-name-6.24.1" + sources."babylon-6.18.0" + sources."lodash-4.17.4" + sources."esutils-2.0.2" + sources."to-fast-properties-1.0.3" + (sources."babel-code-frame-6.26.0" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + ]; + }) + sources."babel-messages-6.23.0" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."js-tokens-3.0.2" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."ansi-regex-2.1.1" + sources."loose-envify-1.3.1" + sources."babel-helper-get-function-arity-6.24.1" + sources."babel-plugin-transform-strict-mode-6.24.1" + sources."babel-helper-call-delegate-6.24.1" + sources."babel-helper-hoist-variables-6.24.1" + sources."babel-helper-regex-6.26.0" + sources."regexpu-core-2.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."babel-plugin-syntax-exponentiation-operator-6.13.0" + sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" + sources."babel-helper-explode-assignable-expression-6.24.1" + sources."md5-o-matic-0.1.1" + sources."@ava/babel-plugin-throws-helper-2.0.0" + sources."babel-plugin-espower-2.3.2" + (sources."babel-generator-6.26.0" // { + dependencies = [ + sources."jsesc-1.3.0" + ]; + }) + sources."call-matcher-1.0.1" + sources."espower-location-detector-1.0.0" + sources."espurify-1.7.0" + sources."estraverse-4.2.0" + sources."detect-indent-4.0.0" + sources."source-map-0.5.7" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."deep-equal-1.0.1" + sources."is-url-1.2.2" + sources."path-is-absolute-1.0.1" + sources."xtend-4.0.1" + sources."graceful-fs-4.1.11" + sources."imurmurhash-0.1.4" + sources."slide-1.1.6" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."arr-exclude-1.0.0" + sources."execa-0.7.0" + sources."has-yarn-1.0.0" + sources."read-pkg-up-2.0.0" + sources."write-pkg-3.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."isexe-2.0.0" + sources."path-key-2.0.1" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + sources."load-json-file-2.0.0" + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-3.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."sort-keys-2.0.0" + (sources."write-json-file-2.3.0" // { + dependencies = [ + sources."detect-indent-5.0.0" + sources."pify-3.0.0" + ]; + }) + sources."is-plain-obj-1.1.0" + sources."write-file-atomic-2.3.0" + sources."babel-helpers-6.24.1" + sources."babel-register-6.26.0" + sources."json5-0.5.1" + sources."minimatch-3.0.4" + sources."private-0.1.8" + sources."home-or-tmp-2.0.0" + sources."mkdirp-0.5.1" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."minimist-0.0.8" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + (sources."rc-1.2.2" // { + dependencies = [ + sources."minimist-1.2.0" + ]; + }) + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + (sources."tar-pack-3.4.1" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + (sources."gauge-2.7.4" // { + dependencies = [ + sources."strip-ansi-3.0.1" + ]; + }) + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + (sources."string-width-1.0.2" // { + dependencies = [ + sources."strip-ansi-3.0.1" + ]; + }) + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."restore-cursor-2.0.0" + sources."onetime-2.0.1" + sources."mimic-fn-1.1.0" + (sources."slice-ansi-1.0.0" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."pinkie-promise-1.0.0" + sources."pinkie-1.0.0" + sources."convert-to-spaces-1.0.2" + sources."date-time-2.1.0" + sources."fast-diff-1.1.2" + sources."function-name-support-0.2.0" + sources."js-string-escape-1.0.1" + sources."lodash.clonedeep-4.5.0" + sources."lodash.flattendeep-4.4.0" + sources."lodash.merge-4.6.0" + sources."well-known-symbols-1.0.0" + sources."time-zone-1.0.0" + sources."buf-compare-1.0.1" + sources."is-error-2.2.1" + sources."array-find-index-1.0.2" + sources."call-signature-0.0.2" + sources."commondir-1.0.1" + sources."pkg-dir-2.0.0" + sources."es6-error-4.0.2" + sources."lodash.isequal-4.5.0" + sources."resolve-from-3.0.0" + sources."ci-info-1.1.2" + sources."symbol-observable-0.2.4" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."through2-2.0.3" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."map-obj-1.0.1" + (sources."redent-1.0.0" // { + dependencies = [ + sources."indent-string-2.1.0" ]; }) + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."is-utf8-0.2.1" + sources."strip-indent-1.0.1" + sources."get-stdin-4.0.1" + sources."array-differ-1.0.0" + sources."release-zalgo-1.0.0" + sources."irregular-plurals-1.4.0" + sources."parse-ms-1.0.1" + sources."text-table-0.2.0" + sources."has-color-0.1.7" + sources."uid2-0.0.3" + (sources."boxen-1.3.0" // { + dependencies = [ + sources."camelcase-4.1.0" + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."configstore-3.1.1" + sources."import-lazy-2.1.0" + sources."is-installed-globally-0.1.0" + sources."is-npm-1.0.0" + sources."latest-version-3.1.0" + sources."semver-diff-2.1.0" + sources."xdg-basedir-3.0.0" + (sources."ansi-align-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."cli-boxes-1.0.0" + sources."term-size-1.2.0" + (sources."widest-line-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."unique-string-1.0.0" + sources."crypto-random-string-1.0.0" + sources."global-dirs-0.1.1" + sources."is-path-inside-1.0.1" + sources."path-is-inside-1.0.2" + sources."package-json-4.0.1" + sources."got-6.7.1" + sources."registry-auth-token-3.3.1" + sources."registry-url-3.1.0" + sources."create-error-class-3.0.2" + sources."duplexer3-0.1.4" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."lowercase-keys-1.0.0" + sources."timed-out-4.0.1" + sources."unzip-response-2.0.1" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."prepend-http-1.0.4" ]; buildInputs = globalBuildInputs; meta = { @@ -51675,56 +37593,32 @@ in postcss-grid-kiss = nodeEnv.buildNodePackage { name = "postcss-grid-kiss"; packageName = "postcss-grid-kiss"; - version = "1.4.0"; + version = "1.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-grid-kiss/-/postcss-grid-kiss-1.4.0.tgz"; - sha1 = "216a35ab74c03dd6cf8d9ef638a806c7e8689553"; + url = "https://registry.npmjs.org/postcss-grid-kiss/-/postcss-grid-kiss-1.4.2.tgz"; + sha1 = "1545aaaf85a886640ac56c22b5dc95d3548166f2"; }; dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-2.0.0" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."browserslist-2.10.0" + sources."caniuse-api-2.0.0" + sources."postcss-6.0.14" sources."postcss-merge-grid-template-0.6.0" - (sources."reduce-css-calc-2.0.5" // { - dependencies = [ - sources."css-unit-converter-1.1.1" - sources."postcss-value-parser-3.3.0" - ]; - }) + sources."reduce-css-calc-2.1.3" + sources."caniuse-lite-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."css-unit-converter-1.1.1" + sources."postcss-value-parser-3.3.0" ]; buildInputs = globalBuildInputs; meta = { @@ -51737,1897 +37631,626 @@ in postcss-grid-system = nodeEnv.buildNodePackage { name = "postcss-grid-system"; packageName = "postcss-grid-system"; - version = "0.4.8"; + version = "0.4.11"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-grid-system/-/postcss-grid-system-0.4.8.tgz"; - sha1 = "586c062024e3933c542ba88af7d0d3a93208da8f"; + url = "https://registry.npmjs.org/postcss-grid-system/-/postcss-grid-system-0.4.11.tgz"; + sha1 = "83073405cd2715ef324bd229eaa9ad29b5c9fefa"; }; dependencies = [ - (sources."ava-0.19.1" // { + sources."ava-0.23.0" + (sources."postcss-6.0.14" // { dependencies = [ - (sources."@ava/babel-preset-stage-4-1.1.0" // { - dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."package-hash-1.2.0" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - ]; - }) - ]; - }) - (sources."@ava/babel-preset-transform-test-files-3.0.0" // { - dependencies = [ - sources."@ava/babel-plugin-throws-helper-2.0.0" - (sources."babel-plugin-espower-2.3.2" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."lodash-4.17.4" - sources."source-map-0.5.6" - sources."trim-right-1.0.1" - ]; - }) - sources."babylon-6.17.4" - (sources."call-matcher-1.0.1" // { - dependencies = [ - sources."deep-equal-1.0.1" - ]; - }) - sources."core-js-2.4.1" - (sources."espower-location-detector-1.0.0" // { - dependencies = [ - sources."is-url-1.2.2" - sources."path-is-absolute-1.0.1" - sources."source-map-0.5.6" - sources."xtend-4.0.1" - ]; - }) - sources."espurify-1.7.0" - sources."estraverse-4.2.0" - ]; - }) - ]; - }) - (sources."@ava/pretty-format-1.1.0" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."esutils-2.0.2" - ]; - }) - sources."arr-flatten-1.1.0" - sources."array-union-1.0.2" - sources."array-uniq-1.0.3" - sources."arrify-1.0.1" - sources."auto-bind-1.1.0" - (sources."ava-init-0.2.1" // { - dependencies = [ - sources."arr-exclude-1.0.0" - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - sources."has-yarn-1.0.0" - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - (sources."write-pkg-3.1.0" // { - dependencies = [ - (sources."sort-keys-2.0.0" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-json-file-2.2.0" // { - dependencies = [ - sources."detect-indent-5.0.0" - sources."graceful-fs-4.1.11" - sources."make-dir-1.0.0" - sources."pify-2.3.0" - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."json5-0.5.1" - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."source-map-0.5.6" - ]; - }) - sources."bluebird-3.5.0" - (sources."caching-transform-1.0.1" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."clean-stack-1.3.0" - sources."clean-yaml-object-0.1.0" - (sources."cli-cursor-2.1.0" // { - dependencies = [ - (sources."restore-cursor-2.0.0" // { - dependencies = [ - (sources."onetime-2.0.1" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - ]; - }) - sources."cli-spinners-1.0.0" - (sources."cli-truncate-1.0.0" // { - dependencies = [ - sources."slice-ansi-0.0.4" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."co-with-promise-4.6.0" // { - dependencies = [ - (sources."pinkie-promise-1.0.0" // { - dependencies = [ - sources."pinkie-1.0.0" - ]; - }) - ]; - }) - (sources."code-excerpt-2.1.0" // { - dependencies = [ - sources."convert-to-spaces-1.0.2" - ]; - }) - sources."common-path-prefix-1.0.0" - sources."convert-source-map-1.5.0" - (sources."core-assert-0.2.1" // { - dependencies = [ - sources."buf-compare-1.0.1" - sources."is-error-2.2.1" - ]; - }) - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."diff-3.3.0" - sources."diff-match-patch-1.0.0" - sources."dot-prop-4.1.1" - (sources."empower-core-0.6.2" // { - dependencies = [ - sources."call-signature-0.0.2" - sources."core-js-2.4.1" - ]; - }) - sources."equal-length-1.0.1" - (sources."figures-2.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."find-cache-dir-0.1.1" // { - dependencies = [ - sources."commondir-1.0.1" - (sources."pkg-dir-1.0.0" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."fn-name-2.0.1" - sources."get-port-3.1.0" - (sources."globby-6.1.0" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."has-flag-2.0.0" - (sources."hullabaloo-config-manager-1.1.1" // { - dependencies = [ - sources."es6-error-4.0.2" - sources."graceful-fs-4.1.11" - sources."json5-0.5.1" - sources."lodash.clonedeep-4.5.0" - sources."lodash.clonedeepwith-4.5.0" - sources."lodash.merge-4.6.0" - (sources."pkg-dir-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."resolve-from-3.0.0" - sources."safe-buffer-5.1.1" - ]; - }) - sources."ignore-by-default-1.0.1" - sources."indent-string-3.1.0" - (sources."is-ci-1.0.10" // { - dependencies = [ - sources."ci-info-1.0.0" - ]; - }) - sources."is-generator-fn-1.0.0" - sources."is-obj-1.0.1" - (sources."is-observable-0.2.0" // { - dependencies = [ - sources."symbol-observable-0.2.4" - ]; - }) - sources."is-promise-2.1.0" - (sources."jest-diff-19.0.0" // { - dependencies = [ - sources."jest-matcher-utils-19.0.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."jest-snapshot-19.0.2" // { - dependencies = [ - sources."jest-file-exists-19.0.0" - sources."jest-matcher-utils-19.0.0" - (sources."jest-util-19.0.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jest-mock-19.0.0" - sources."jest-validate-19.0.2" - (sources."jest-message-util-19.0.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."leven-2.1.0" - ]; - }) - sources."natural-compare-1.4.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."last-line-stream-1.0.0" // { - dependencies = [ - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."lodash.debounce-4.0.8" - sources."lodash.difference-4.5.0" - sources."lodash.flatten-4.4.0" - sources."lodash.isequal-4.5.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - sources."signal-exit-3.0.2" - ]; - }) - (sources."matcher-0.1.2" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."md5-hex-2.0.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ms-0.7.3" - (sources."multimatch-2.1.0" // { - dependencies = [ - sources."array-differ-1.0.0" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."observable-to-promise-0.5.0" // { - dependencies = [ - sources."symbol-observable-1.0.4" - ]; - }) - (sources."option-chain-0.1.1" // { - dependencies = [ - sources."object-assign-4.1.1" - ]; - }) - (sources."package-hash-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."lodash.flattendeep-4.4.0" - (sources."release-zalgo-1.0.0" // { - dependencies = [ - sources."es6-error-4.0.2" - ]; - }) - ]; - }) - (sources."pkg-conf-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."pretty-ms-2.1.0" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - sources."parse-ms-1.0.1" - sources."plur-1.0.0" - ]; - }) - sources."require-precompiled-0.1.0" - (sources."resolve-cwd-1.0.0" // { - dependencies = [ - sources."resolve-from-2.0.0" - ]; - }) - sources."slash-1.0.0" - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - sources."stack-utils-1.0.1" - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-bom-buf-1.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - (sources."time-require-0.1.2" // { - dependencies = [ - (sources."chalk-0.4.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."ansi-styles-1.0.0" - sources."strip-ansi-0.1.1" - ]; - }) - sources."text-table-0.2.0" - sources."date-time-0.1.1" - (sources."pretty-ms-0.2.2" // { - dependencies = [ - sources."parse-ms-0.1.2" - ]; - }) - ]; - }) - (sources."unique-temp-dir-1.0.0" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."uid2-0.0.3" - ]; - }) - (sources."update-notifier-2.2.0" // { - dependencies = [ - (sources."boxen-1.2.0" // { - dependencies = [ - sources."ansi-align-2.0.0" - sources."camelcase-4.1.0" - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - sources."supports-color-4.2.0" - ]; - }) - sources."cli-boxes-1.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - (sources."term-size-1.2.0" // { - dependencies = [ - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - ]; - }) - (sources."widest-line-1.0.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."configstore-3.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."make-dir-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."unique-string-1.0.0" // { - dependencies = [ - sources."crypto-random-string-1.0.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - sources."import-lazy-2.1.0" - sources."is-npm-1.0.0" - (sources."latest-version-3.1.0" // { - dependencies = [ - (sources."package-json-4.0.1" // { - dependencies = [ - (sources."got-6.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-3.0.0" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."safe-buffer-5.1.1" - sources."timed-out-4.0.1" - sources."unzip-response-2.0.1" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."registry-auth-token-3.3.1" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - sources."safe-buffer-5.1.1" - ]; - }) - (sources."registry-url-3.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."semver-5.3.0" - ]; - }) - ]; - }) - (sources."semver-diff-2.1.0" // { - dependencies = [ - sources."semver-5.3.0" - ]; - }) - sources."xdg-basedir-3.0.0" - ]; - }) + sources."source-map-0.6.1" ]; }) - (sources."postcss-6.0.6" // { + (sources."@ava/babel-preset-stage-4-1.1.0" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."package-hash-1.2.0" + sources."md5-hex-1.3.0" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A PostCSS plugin to create grids based on a fixed column width."; - homepage = http://francoisromain.github.io/postcss-grid-system/; - license = "MIT"; - }; - production = true; - }; - postcss-grid-unit = nodeEnv.buildNodePackage { - name = "postcss-grid-unit"; - packageName = "postcss-grid-unit"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-grid-unit/-/postcss-grid-unit-0.0.1.tgz"; - sha1 = "343587376a1d399631aeed01a50cdf36aac87c1f"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { + sources."@ava/babel-preset-transform-test-files-3.0.0" + sources."@ava/write-file-atomic-2.2.0" + sources."@concordance/react-1.0.0" + sources."ansi-escapes-2.0.0" + sources."ansi-styles-3.2.0" + sources."arr-flatten-1.1.0" + sources."array-union-1.0.2" + sources."array-uniq-1.0.3" + sources."arrify-1.0.1" + sources."auto-bind-1.1.0" + sources."ava-init-0.2.1" + (sources."babel-core-6.26.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."debug-2.6.9" + sources."ms-2.0.0" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A PostCSS plugin to create custom measurement units to ease grid enforcement."; - homepage = "https://github.com/kompot/postcss-grid-unit#readme"; + sources."bluebird-3.5.1" + (sources."caching-transform-1.0.1" // { + dependencies = [ + sources."md5-hex-1.3.0" + sources."write-file-atomic-1.3.4" + ]; + }) + sources."chalk-2.3.0" + sources."chokidar-1.7.0" + sources."clean-stack-1.3.0" + sources."clean-yaml-object-0.1.0" + sources."cli-cursor-2.1.0" + sources."cli-spinners-1.1.0" + (sources."cli-truncate-1.1.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."co-with-promise-4.6.0" + sources."code-excerpt-2.1.0" + sources."common-path-prefix-1.0.0" + sources."concordance-3.0.0" + sources."convert-source-map-1.5.1" + sources."core-assert-0.2.1" + sources."currently-unhandled-0.4.1" + (sources."debug-3.1.0" // { + dependencies = [ + sources."ms-2.0.0" + ]; + }) + sources."dot-prop-4.2.0" + sources."empower-core-0.6.2" + sources."equal-length-1.0.1" + sources."figures-2.0.0" + sources."find-cache-dir-1.0.0" + sources."fn-name-2.0.1" + sources."get-port-3.2.0" + (sources."globby-6.1.0" // { + dependencies = [ + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + ]; + }) + sources."has-flag-2.0.0" + sources."hullabaloo-config-manager-1.1.1" + sources."ignore-by-default-1.0.1" + sources."import-local-0.1.1" + sources."indent-string-3.2.0" + sources."is-ci-1.0.10" + sources."is-generator-fn-1.0.0" + sources."is-obj-1.0.1" + sources."is-observable-0.2.0" + sources."is-promise-2.1.0" + sources."js-yaml-3.10.0" + sources."last-line-stream-1.0.0" + sources."lodash.clonedeepwith-4.5.0" + sources."lodash.debounce-4.0.8" + sources."lodash.difference-4.5.0" + sources."lodash.flatten-4.4.0" + sources."loud-rejection-1.6.0" + (sources."make-dir-1.1.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) + sources."matcher-1.0.0" + sources."md5-hex-2.0.0" + (sources."meow-3.7.0" // { + dependencies = [ + sources."minimist-1.2.0" + sources."read-pkg-up-1.0.1" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."strip-bom-2.0.0" + ]; + }) + sources."ms-2.1.1" + sources."multimatch-2.1.0" + (sources."observable-to-promise-0.5.0" // { + dependencies = [ + sources."symbol-observable-1.1.0" + ]; + }) + sources."option-chain-1.0.0" + sources."package-hash-2.0.0" + sources."pkg-conf-2.0.0" + sources."plur-2.1.2" + sources."pretty-ms-3.1.0" + sources."require-precompiled-0.1.0" + sources."resolve-cwd-2.0.0" + sources."safe-buffer-5.1.1" + sources."slash-1.0.0" + sources."source-map-support-0.4.18" + sources."stack-utils-1.0.1" + (sources."strip-ansi-4.0.0" // { + dependencies = [ + sources."ansi-regex-3.0.0" + ]; + }) + sources."strip-bom-buf-1.0.0" + sources."supports-color-4.5.0" + (sources."time-require-0.1.2" // { + dependencies = [ + sources."chalk-0.4.0" + sources."date-time-0.1.1" + sources."pretty-ms-0.2.2" + sources."ansi-styles-1.0.0" + sources."strip-ansi-0.1.1" + sources."parse-ms-0.1.2" + ]; + }) + sources."trim-off-newlines-1.0.1" + sources."unique-temp-dir-1.0.0" + sources."update-notifier-2.3.0" + sources."babel-plugin-check-es2015-constants-6.22.0" + sources."babel-plugin-syntax-trailing-function-commas-6.22.0" + sources."babel-plugin-transform-async-to-generator-6.24.1" + sources."babel-plugin-transform-es2015-destructuring-6.23.0" + sources."babel-plugin-transform-es2015-function-name-6.24.1" + sources."babel-plugin-transform-es2015-modules-commonjs-6.26.0" + sources."babel-plugin-transform-es2015-parameters-6.24.1" + sources."babel-plugin-transform-es2015-spread-6.22.0" + sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" + sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" + sources."babel-plugin-transform-exponentiation-operator-6.24.1" + sources."babel-runtime-6.26.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."babel-helper-remap-async-to-generator-6.24.1" + sources."babel-plugin-syntax-async-functions-6.13.0" + sources."babel-template-6.26.0" + sources."babel-types-6.26.0" + (sources."babel-traverse-6.26.0" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) + sources."babel-helper-function-name-6.24.1" + sources."babylon-6.18.0" + sources."lodash-4.17.4" + sources."esutils-2.0.2" + sources."to-fast-properties-1.0.3" + (sources."babel-code-frame-6.26.0" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + ]; + }) + sources."babel-messages-6.23.0" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."js-tokens-3.0.2" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."ansi-regex-2.1.1" + sources."loose-envify-1.3.1" + sources."babel-helper-get-function-arity-6.24.1" + sources."babel-plugin-transform-strict-mode-6.24.1" + sources."babel-helper-call-delegate-6.24.1" + sources."babel-helper-hoist-variables-6.24.1" + sources."babel-helper-regex-6.26.0" + sources."regexpu-core-2.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."babel-plugin-syntax-exponentiation-operator-6.13.0" + sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" + sources."babel-helper-explode-assignable-expression-6.24.1" + sources."md5-o-matic-0.1.1" + sources."@ava/babel-plugin-throws-helper-2.0.0" + sources."babel-plugin-espower-2.3.2" + (sources."babel-generator-6.26.0" // { + dependencies = [ + sources."jsesc-1.3.0" + ]; + }) + sources."call-matcher-1.0.1" + sources."espower-location-detector-1.0.0" + sources."espurify-1.7.0" + sources."estraverse-4.2.0" + sources."detect-indent-4.0.0" + sources."source-map-0.5.7" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."deep-equal-1.0.1" + sources."is-url-1.2.2" + sources."path-is-absolute-1.0.1" + sources."xtend-4.0.1" + sources."graceful-fs-4.1.11" + sources."imurmurhash-0.1.4" + sources."slide-1.1.6" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."arr-exclude-1.0.0" + sources."execa-0.7.0" + sources."has-yarn-1.0.0" + sources."read-pkg-up-2.0.0" + sources."write-pkg-3.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."isexe-2.0.0" + sources."path-key-2.0.1" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + sources."load-json-file-2.0.0" + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-3.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."sort-keys-2.0.0" + (sources."write-json-file-2.3.0" // { + dependencies = [ + sources."detect-indent-5.0.0" + sources."pify-3.0.0" + ]; + }) + sources."is-plain-obj-1.1.0" + sources."write-file-atomic-2.3.0" + sources."babel-helpers-6.24.1" + sources."babel-register-6.26.0" + sources."json5-0.5.1" + sources."minimatch-3.0.4" + sources."private-0.1.8" + sources."home-or-tmp-2.0.0" + sources."mkdirp-0.5.1" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."minimist-0.0.8" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + (sources."rc-1.2.2" // { + dependencies = [ + sources."minimist-1.2.0" + ]; + }) + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + (sources."tar-pack-3.4.1" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + (sources."gauge-2.7.4" // { + dependencies = [ + sources."strip-ansi-3.0.1" + ]; + }) + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + (sources."string-width-1.0.2" // { + dependencies = [ + sources."strip-ansi-3.0.1" + ]; + }) + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."restore-cursor-2.0.0" + sources."onetime-2.0.1" + sources."mimic-fn-1.1.0" + (sources."slice-ansi-1.0.0" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."pinkie-promise-1.0.0" + sources."pinkie-1.0.0" + sources."convert-to-spaces-1.0.2" + sources."date-time-2.1.0" + sources."fast-diff-1.1.2" + sources."function-name-support-0.2.0" + sources."js-string-escape-1.0.1" + sources."lodash.clonedeep-4.5.0" + sources."lodash.flattendeep-4.4.0" + sources."lodash.merge-4.6.0" + sources."well-known-symbols-1.0.0" + sources."time-zone-1.0.0" + sources."buf-compare-1.0.1" + sources."is-error-2.2.1" + sources."array-find-index-1.0.2" + sources."call-signature-0.0.2" + sources."commondir-1.0.1" + sources."pkg-dir-2.0.0" + sources."es6-error-4.0.2" + sources."lodash.isequal-4.5.0" + sources."resolve-from-3.0.0" + sources."ci-info-1.1.2" + sources."symbol-observable-0.2.4" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."through2-2.0.3" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."map-obj-1.0.1" + (sources."redent-1.0.0" // { + dependencies = [ + sources."indent-string-2.1.0" + ]; + }) + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."is-utf8-0.2.1" + sources."strip-indent-1.0.1" + sources."get-stdin-4.0.1" + sources."array-differ-1.0.0" + sources."release-zalgo-1.0.0" + sources."irregular-plurals-1.4.0" + sources."parse-ms-1.0.1" + sources."text-table-0.2.0" + sources."has-color-0.1.7" + sources."uid2-0.0.3" + (sources."boxen-1.3.0" // { + dependencies = [ + sources."camelcase-4.1.0" + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."configstore-3.1.1" + sources."import-lazy-2.1.0" + sources."is-installed-globally-0.1.0" + sources."is-npm-1.0.0" + sources."latest-version-3.1.0" + sources."semver-diff-2.1.0" + sources."xdg-basedir-3.0.0" + (sources."ansi-align-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."cli-boxes-1.0.0" + sources."term-size-1.2.0" + (sources."widest-line-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."unique-string-1.0.0" + sources."crypto-random-string-1.0.0" + sources."global-dirs-0.1.1" + sources."is-path-inside-1.0.1" + sources."path-is-inside-1.0.2" + sources."package-json-4.0.1" + sources."got-6.7.1" + sources."registry-auth-token-3.3.1" + sources."registry-url-3.1.0" + sources."create-error-class-3.0.2" + sources."duplexer3-0.1.4" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."lowercase-keys-1.0.0" + sources."timed-out-4.0.1" + sources."unzip-response-2.0.1" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."prepend-http-1.0.4" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "A PostCSS plugin to create grids based on a fixed column width."; + homepage = http://francoisromain.github.io/postcss-grid-system/; + license = "MIT"; + }; + production = true; + }; + postcss-grid-unit = nodeEnv.buildNodePackage { + name = "postcss-grid-unit"; + packageName = "postcss-grid-unit"; + version = "0.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-grid-unit/-/postcss-grid-unit-0.0.1.tgz"; + sha1 = "343587376a1d399631aeed01a50cdf36aac87c1f"; + }; + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "A PostCSS plugin to create custom measurement units to ease grid enforcement."; + homepage = "https://github.com/kompot/postcss-grid-unit#readme"; license = "MIT"; }; production = true; @@ -53641,34 +38264,21 @@ in sha1 = "c9ed4174e34582725d7a0cfdb3d29d5431eb9252"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -53690,55 +38300,30 @@ in sources."balanced-match-0.2.1" sources."color-convert-0.5.3" sources."color-parser-0.1.0" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - (sources."postcss-import-5.2.2" // { + sources."postcss-4.1.16" + sources."postcss-import-5.2.2" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."clone-0.1.19" + sources."glob-5.0.15" + sources."postcss-message-helpers-2.0.0" + sources."resolve-1.5.0" + sources."string-hash-1.1.3" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."brace-expansion-1.1.8" // { dependencies = [ - sources."clone-0.1.19" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - sources."string-hash-1.1.3" + sources."balanced-match-1.0.0" ]; }) + sources."concat-map-0.0.1" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -53757,34 +38342,21 @@ in sha1 = "8f4e2e09649aa828af7121b47b9e5db8febbc1dc"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -53803,49 +38375,30 @@ in sha1 = "c84073cecb0fdef6e2626822e8d0c9b7790998e9"; }; dependencies = [ - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."object-assign-4.1.1" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + sources."loader-utils-0.2.17" + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."object-assign-4.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -53864,85 +38417,44 @@ in sha1 = "dcd430f05cea4d1ead60eb2e5390e5745415bca2"; }; dependencies = [ - (sources."fs-extra-1.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-functions-2.1.1" // { - dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."promise-7.3.1" // { - dependencies = [ - sources."asap-2.0.6" - ]; - }) + sources."fs-extra-1.0.0" + sources."postcss-5.2.18" + sources."postcss-functions-2.1.1" + sources."promise-7.3.1" sources."quote-0.4.0" - (sources."sha.js-2.4.8" // { + sources."sha.js-2.4.9" + sources."unquote-1.1.1" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."inherits-2.0.3" + sources."supports-color-2.0.0" ]; }) - sources."unquote-1.1.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."glob-5.0.15" + sources."object-assign-4.1.1" + sources."postcss-value-parser-3.3.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."asap-2.0.6" + sources."safe-buffer-5.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -53954,40 +38466,21 @@ in postcss-hexrgba = nodeEnv.buildNodePackage { name = "postcss-hexrgba"; packageName = "postcss-hexrgba"; - version = "0.2.1"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-hexrgba/-/postcss-hexrgba-0.2.1.tgz"; - sha1 = "5c61abba439c0a38e49e7fbc0b3cd936119ec225"; + url = "https://registry.npmjs.org/postcss-hexrgba/-/postcss-hexrgba-1.0.0.tgz"; + sha1 = "b2ab6289221ddc7af400aae11d8c4ce8adffdd85"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54006,34 +38499,21 @@ in sha1 = "804d8bceb7393b01f32427270c7b6673d3eca86a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54052,34 +38532,21 @@ in sha1 = "558f74d62052a1ba3b8122cd1f925a2c44db087d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54100,17 +38567,11 @@ in dependencies = [ sources."array.prototype.find-1.0.0" sources."object-assign-3.0.0" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -54130,34 +38591,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54176,34 +38624,21 @@ in sha1 = "32453eac0dd6e0949014cd57f60f8e25496b452e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54222,34 +38657,21 @@ in sha1 = "cbbbf5329272755f857a4046e076092d4696bd40"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54268,40 +38690,24 @@ in sha1 = "273cfbdd7a01c645f1e7f1ef6e2c067672b3ca6f"; }; dependencies = [ - (sources."parse-color-1.0.0" // { - dependencies = [ - sources."color-convert-0.5.3" - ]; - }) - (sources."postcss-5.2.17" // { + sources."parse-color-1.0.0" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."color-convert-0.5.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54320,34 +38726,21 @@ in sha1 = "ab3cf36e7daf25e365622d63932d0226ac8eb3f4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54366,54 +38759,28 @@ in }; dependencies = [ sources."balanced-match-0.4.2" - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."color-1.0.3" + sources."postcss-5.2.18" + sources."postcss-message-helpers-2.0.0" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -54426,1241 +38793,661 @@ in postcss-iconfont = nodeEnv.buildNodePackage { name = "postcss-iconfont"; packageName = "postcss-iconfont"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-iconfont/-/postcss-iconfont-1.0.0.tgz"; - sha1 = "957df4bcda2e01f0253776cc669313773d3c2dc2"; + url = "https://registry.npmjs.org/postcss-iconfont/-/postcss-iconfont-1.0.1.tgz"; + sha1 = "82ae8960eefe4a501bf8b8539812405922fb626b"; }; dependencies = [ - sources."bluebird-3.5.0" - (sources."gulp-3.9.1" // { + sources."bluebird-3.5.1" + sources."gulp-3.9.1" + sources."gulp-iconfont-9.0.2" + sources."merge-1.2.0" + (sources."postcss-6.0.14" // { dependencies = [ - sources."archy-1.0.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."deprecated-0.0.1" - (sources."gulp-util-3.0.8" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - sources."interpret-1.0.3" - (sources."liftoff-2.3.0" // { - dependencies = [ - sources."extend-3.0.1" - (sources."findup-sync-0.4.3" // { - dependencies = [ - (sources."detect-file-0.1.0" // { - dependencies = [ - sources."fs-exists-sync-0.1.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."resolve-dir-0.1.1" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."global-modules-0.2.3" // { - dependencies = [ - (sources."global-prefix-0.1.5" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - sources."ini-1.3.4" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fined-1.1.0" // { - dependencies = [ - (sources."expand-tilde-2.0.2" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - ]; - }) - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."array-each-1.0.1" - sources."array-slice-1.0.0" - (sources."for-own-1.0.0" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."isobject-3.0.1" - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - (sources."parse-filepath-1.0.1" // { - dependencies = [ - (sources."is-absolute-0.2.6" // { - dependencies = [ - (sources."is-relative-0.2.1" // { - dependencies = [ - (sources."is-unc-path-0.1.2" // { - dependencies = [ - sources."unc-path-regex-0.1.2" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - sources."map-cache-0.2.2" - (sources."path-root-0.1.1" // { - dependencies = [ - sources."path-root-regex-0.1.2" - ]; - }) - ]; - }) - ]; - }) - sources."flagged-respawn-0.3.2" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.mapvalues-4.6.0" - sources."rechoir-0.6.2" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."orchestrator-0.3.8" // { - dependencies = [ - (sources."end-of-stream-0.1.5" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."sequencify-0.0.7" - sources."stream-consume-0.1.0" - ]; - }) - sources."pretty-hrtime-1.0.3" - sources."semver-4.3.6" - (sources."tildify-1.2.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."v8flags-2.1.1" // { - dependencies = [ - sources."user-home-1.1.1" - ]; - }) - (sources."vinyl-fs-0.3.14" // { - dependencies = [ - (sources."defaults-1.0.3" // { - dependencies = [ - sources."clone-1.0.2" - ]; - }) - (sources."glob-stream-3.1.18" // { - dependencies = [ - (sources."glob-4.5.3" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."minimatch-2.0.10" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."ordered-read-streams-0.1.0" - (sources."glob2base-0.0.12" // { - dependencies = [ - sources."find-index-0.1.1" - ]; - }) - sources."unique-stream-1.0.0" - ]; - }) - (sources."glob-watcher-0.0.6" // { - dependencies = [ - (sources."gaze-0.5.2" // { - dependencies = [ - (sources."globule-0.1.0" // { - dependencies = [ - sources."lodash-1.0.2" - (sources."glob-3.1.21" // { - dependencies = [ - sources."graceful-fs-1.2.3" - sources."inherits-1.0.2" - ]; - }) - (sources."minimatch-0.2.14" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."strip-bom-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - sources."is-utf8-0.2.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" ]; }) - (sources."gulp-iconfont-8.0.1" // { + sources."archy-1.0.0" + sources."chalk-1.1.3" + sources."deprecated-0.0.1" + sources."gulp-util-3.0.8" + sources."interpret-1.1.0" + sources."liftoff-2.5.0" + sources."minimist-1.2.0" + sources."orchestrator-0.3.8" + sources."pretty-hrtime-1.0.3" + sources."semver-4.3.6" + sources."tildify-1.2.0" + sources."v8flags-2.1.1" + (sources."vinyl-fs-0.3.14" // { dependencies = [ - (sources."gulp-cond-1.0.0" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."gulp-spawn-0.3.0" // { - dependencies = [ - (sources."gulp-util-2.2.20" // { - dependencies = [ - (sources."chalk-0.5.1" // { - dependencies = [ - sources."ansi-styles-1.1.0" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-0.1.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - (sources."strip-ansi-0.3.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - sources."supports-color-0.2.0" - ]; - }) - (sources."dateformat-1.0.12" // { - dependencies = [ - sources."get-stdin-4.0.1" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."strip-indent-1.0.1" - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - ]; - }) - sources."lodash._reinterpolate-2.4.1" - (sources."lodash.template-2.4.1" // { - dependencies = [ - (sources."lodash.defaults-2.4.1" // { - dependencies = [ - sources."lodash._objecttypes-2.4.1" - ]; - }) - (sources."lodash.escape-2.4.1" // { - dependencies = [ - (sources."lodash._escapehtmlchar-2.4.1" // { - dependencies = [ - sources."lodash._htmlescapes-2.4.1" - ]; - }) - (sources."lodash._reunescapedhtml-2.4.1" // { - dependencies = [ - sources."lodash._htmlescapes-2.4.1" - ]; - }) - ]; - }) - sources."lodash._escapestringchar-2.4.1" - (sources."lodash.keys-2.4.1" // { - dependencies = [ - sources."lodash._isnative-2.4.1" - (sources."lodash.isobject-2.4.1" // { - dependencies = [ - sources."lodash._objecttypes-2.4.1" - ]; - }) - (sources."lodash._shimkeys-2.4.1" // { - dependencies = [ - sources."lodash._objecttypes-2.4.1" - ]; - }) - ]; - }) - sources."lodash.templatesettings-2.4.1" - sources."lodash.values-2.4.1" - ]; - }) - sources."minimist-0.2.0" - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - (sources."through2-0.5.1" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-3.0.0" - ]; - }) - (sources."vinyl-0.2.3" // { - dependencies = [ - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - sources."plexer-0.0.1" - ]; - }) - (sources."gulp-svg2ttf-2.0.1" // { - dependencies = [ - sources."bufferstreams-1.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."svg2ttf-4.1.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."cubic2quad-1.1.1" - sources."lodash-4.17.4" - sources."microbuffer-1.0.0" - sources."svgpath-2.2.1" - sources."xmldom-0.1.27" - ]; - }) - ]; - }) - (sources."gulp-svgicons2svgfont-3.0.2" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."svgicons2svgfont-6.0.0" // { - dependencies = [ - sources."commander-2.11.0" - (sources."debug-2.6.1" // { - dependencies = [ - sources."ms-0.7.2" - ]; - }) - (sources."neatequal-1.0.0" // { - dependencies = [ - (sources."varstream-0.3.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."sax-1.2.4" - sources."string.fromcodepoint-0.2.1" - sources."string.prototype.codepointat-0.2.0" - (sources."svg-pathdata-3.1.0" // { - dependencies = [ - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."gulp-ttf2eot-1.1.2" // { - dependencies = [ - sources."bufferstreams-1.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."ttf2eot-2.0.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."microbuffer-1.0.0" - ]; - }) - ]; - }) - (sources."gulp-ttf2woff-1.1.1" // { - dependencies = [ - sources."bufferstreams-1.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."ttf2woff-2.0.1" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."microbuffer-1.0.0" - sources."pako-1.0.5" - ]; - }) - ]; - }) - (sources."gulp-ttf2woff2-2.0.2" // { - dependencies = [ - (sources."ttf2woff2-2.0.3" // { - dependencies = [ - sources."bindings-1.2.1" - sources."nan-2.6.2" - (sources."node-gyp-3.6.2" // { - dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."nopt-3.0.6" // { - dependencies = [ - sources."abbrev-1.1.0" - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."rimraf-2.6.1" - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - sources."inherits-2.0.3" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."bufferstreams-1.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."gulp-util-3.0.8" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - sources."minimist-1.2.0" - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."plexer-1.0.1" // { - dependencies = [ - sources."isstream-0.1.2" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."streamfilter-1.0.5" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" ]; }) - sources."merge-1.2.0" - (sources."postcss-5.2.17" // { + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."vinyl-0.5.3" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."extend-3.0.1" + sources."findup-sync-2.0.0" + sources."fined-1.1.0" + sources."flagged-respawn-1.0.0" + sources."is-plain-object-2.0.4" + sources."object.map-1.0.1" + sources."rechoir-0.6.2" + sources."resolve-1.5.0" + sources."detect-file-1.0.0" + sources."is-glob-3.1.0" + sources."micromatch-3.1.4" + sources."resolve-dir-1.0.1" + sources."is-extglob-2.1.1" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { dependencies = [ - (sources."chalk-1.1.3" // { + sources."is-extendable-0.1.1" + ]; + }) + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."to-regex-3.0.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { + dependencies = [ + sources."extend-shallow-3.0.2" + ]; + }) + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + (sources."is-descriptor-1.0.1" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."debug-2.6.9" + sources."posix-character-classes-0.1.1" + sources."ms-2.0.0" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-0.5.7" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."isobject-2.1.0" ]; }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { + sources."has-values-0.1.4" + sources."isarray-1.0.0" + ]; + }) + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - sources."has-flag-1.0.0" + sources."kind-of-5.1.0" ]; }) ]; }) + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."expand-tilde-2.0.2" + sources."global-modules-1.0.0" + sources."homedir-polyfill-1.0.1" + sources."parse-passwd-1.0.0" + sources."global-prefix-1.0.2" + sources."is-windows-1.0.1" + sources."ini-1.3.5" + sources."which-1.3.0" + sources."isexe-2.0.0" + sources."object.defaults-1.1.0" + sources."parse-filepath-1.0.2" + sources."array-each-1.0.1" + sources."array-slice-1.1.0" + sources."for-own-1.0.0" + sources."is-absolute-1.0.0" + sources."path-root-0.1.1" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."unc-path-regex-0.1.2" + sources."path-root-regex-0.1.2" + (sources."make-iterator-1.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."path-parse-1.0.5" + sources."end-of-stream-0.1.5" + sources."sequencify-0.0.7" + sources."stream-consume-0.1.0" + sources."once-1.3.3" + sources."wrappy-1.0.2" + sources."os-homedir-1.0.2" + sources."user-home-1.1.1" + sources."defaults-1.0.3" + (sources."glob-stream-3.1.18" // { + dependencies = [ + sources."through2-0.6.5" + sources."readable-stream-1.0.34" + ]; + }) + sources."glob-watcher-0.0.6" + sources."graceful-fs-3.0.11" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."strip-bom-1.0.0" + sources."glob-4.5.3" + sources."minimatch-2.0.10" + sources."ordered-read-streams-0.1.0" + sources."glob2base-0.0.12" + sources."unique-stream-1.0.0" + sources."inflight-1.0.6" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."find-index-0.1.1" + sources."gaze-0.5.2" + (sources."globule-0.1.0" // { + dependencies = [ + sources."glob-3.1.21" + sources."minimatch-0.2.14" + sources."graceful-fs-1.2.3" + sources."inherits-1.0.2" + ]; + }) + sources."lodash-1.0.2" + sources."lru-cache-2.7.3" + sources."sigmund-1.0.1" + sources."natives-1.1.1" + sources."first-chunk-stream-1.0.0" + sources."is-utf8-0.2.1" + (sources."gulp-cond-1.0.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."gulp-spawn-0.4.0" // { + dependencies = [ + sources."gulp-util-2.2.20" + sources."plexer-0.0.1" + sources."chalk-0.5.1" + sources."dateformat-1.0.12" + sources."lodash._reinterpolate-2.4.1" + sources."lodash.template-2.4.1" + sources."minimist-0.2.0" + sources."through2-0.5.1" + sources."vinyl-0.2.3" + sources."ansi-styles-1.1.0" + sources."has-ansi-0.1.0" + sources."strip-ansi-0.3.0" + sources."supports-color-0.2.0" + sources."ansi-regex-0.2.1" + sources."lodash.escape-2.4.1" + sources."lodash.keys-2.4.1" + sources."lodash.templatesettings-2.4.1" + sources."readable-stream-1.0.34" + sources."xtend-3.0.0" + ]; + }) + (sources."gulp-svg2ttf-2.0.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."gulp-svgicons2svgfont-4.0.2" // { + dependencies = [ + sources."plexer-1.0.1" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."gulp-ttf2eot-1.1.2" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."gulp-ttf2woff-1.1.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."gulp-ttf2woff2-2.0.2" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."plexer-1.0.2" // { + dependencies = [ + sources."debug-2.6.1" + sources."readable-stream-2.3.3" + sources."ms-0.7.2" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."streamfilter-1.0.7" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."get-stdin-4.0.1" + (sources."meow-3.7.0" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."normalize-package-data-2.4.0" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + (sources."load-json-file-1.1.0" // { + dependencies = [ + sources."graceful-fs-4.1.11" + sources."strip-bom-2.0.0" + ]; + }) + (sources."path-type-1.1.0" // { + dependencies = [ + sources."graceful-fs-4.1.11" + ]; + }) + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + (sources."lodash.defaults-2.4.1" // { + dependencies = [ + sources."lodash.keys-2.4.1" + ]; + }) + sources."lodash._escapestringchar-2.4.1" + (sources."lodash.values-2.4.1" // { + dependencies = [ + sources."lodash.keys-2.4.1" + ]; + }) + sources."lodash._objecttypes-2.4.1" + sources."lodash._isnative-2.4.1" + sources."lodash.isobject-2.4.1" + sources."lodash._shimkeys-2.4.1" + sources."lodash._escapehtmlchar-2.4.1" + (sources."lodash._reunescapedhtml-2.4.1" // { + dependencies = [ + sources."lodash.keys-2.4.1" + ]; + }) + sources."lodash._htmlescapes-2.4.1" + (sources."bufferstreams-1.1.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."svg2ttf-4.1.0" // { + dependencies = [ + sources."lodash-4.17.4" + ]; + }) + sources."argparse-1.0.9" + sources."cubic2quad-1.1.1" + sources."microbuffer-1.0.0" + sources."svgpath-2.2.1" + sources."xmldom-0.1.27" + sources."sprintf-js-1.0.3" + (sources."svgicons2svgfont-7.0.2" // { + dependencies = [ + sources."debug-2.6.1" + sources."glob-7.1.2" + sources."readable-stream-2.3.3" + sources."ms-0.7.2" + sources."minimatch-3.0.4" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."isstream-0.1.2" + sources."commander-2.12.2" + sources."geometry-interfaces-1.1.4" + sources."neatequal-1.0.0" + sources."sax-1.2.4" + sources."string.fromcodepoint-0.2.1" + sources."string.prototype.codepointat-0.2.0" + sources."svg-pathdata-4.0.1" + sources."transformation-matrix-js-2.7.1" + sources."fs.realpath-1.0.0" + sources."path-is-absolute-1.0.1" + sources."varstream-0.3.2" + sources."ttf2eot-2.0.0" + sources."ttf2woff-2.0.1" + sources."pako-1.0.6" + sources."ttf2woff2-2.0.3" + sources."bindings-1.3.0" + sources."nan-2.8.0" + (sources."node-gyp-3.6.2" // { + dependencies = [ + sources."glob-7.1.2" + sources."graceful-fs-4.1.11" + sources."minimatch-3.0.4" + sources."semver-5.3.0" + ]; + }) + (sources."fstream-1.0.11" // { + dependencies = [ + sources."graceful-fs-4.1.11" + ]; + }) + sources."nopt-3.0.6" + sources."npmlog-4.1.2" + sources."osenv-0.1.4" + sources."request-2.83.0" + (sources."rimraf-2.6.2" // { + dependencies = [ + sources."glob-7.1.2" + sources."minimatch-3.0.4" + ]; + }) + sources."tar-2.2.1" + sources."abbrev-1.1.1" + (sources."are-we-there-yet-1.1.4" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."console-control-strings-1.1.0" + (sources."gauge-2.7.4" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."os-tmpdir-1.0.2" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."block-stream-0.0.9" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -55682,77 +39469,42 @@ in sources."icss-replace-symbols-1.1.0" (sources."icss-utils-2.1.0" // { dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."lodash.foreach-3.0.3" // { - dependencies = [ - sources."lodash._arrayeach-3.0.0" - (sources."lodash._baseeach-3.0.4" // { - dependencies = [ - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - ]; - }) - ]; - }) - sources."lodash._bindcallback-3.0.1" - sources."lodash.isarray-3.0.4" + sources."postcss-6.0.14" ]; }) - (sources."postcss-5.2.17" // { + sources."lodash.foreach-3.0.3" + (sources."postcss-5.2.18" // { dependencies = [ (sources."chalk-1.1.3" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) sources."supports-color-2.0.0" ]; }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."lodash._arrayeach-3.0.0" + sources."lodash._baseeach-3.0.4" + sources."lodash._bindcallback-3.0.1" + sources."lodash.isarray-3.0.4" + sources."lodash.keys-3.1.2" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."js-base64-2.4.0" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -55771,61 +39523,31 @@ in sha1 = "27fa1afcaab6c602c866cbb298f3218e9bc1c9b3"; }; dependencies = [ - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."generic-names-1.0.2" // { - dependencies = [ - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."object-assign-4.1.1" - ]; - }) - ]; - }) + sources."css-selector-tokenizer-0.7.0" + sources."generic-names-1.0.3" sources."icss-utils-3.0.1" sources."lodash-4.17.4" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."regexpu-core-1.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."loader-utils-0.2.17" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."object-assign-4.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -55844,41 +39566,25 @@ in sha1 = "ed3e43326078d401de86d81f6bac36be9df69fdd"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -55897,49 +39603,31 @@ in sha1 = "d68f90c2a42f9f9e196a86b0aea370ede058cd7e"; }; dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."autoprefixer-6.7.7" + sources."postcss-5.2.18" + sources."lodash-3.10.1" + sources."css-mediaquery-0.1.2" + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."postcss-value-parser-3.3.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."lodash-3.10.1" - sources."css-mediaquery-0.1.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -55958,30 +39646,15 @@ in sha1 = "6585c12b9462a0fa4263527025df04b14934c457"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -56000,34 +39673,21 @@ in sha1 = "bfa6ee004f688115e7586e932c82428e710492c5"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -56040,400 +39700,222 @@ in postcss-image-inliner = nodeEnv.buildNodePackage { name = "postcss-image-inliner"; packageName = "postcss-image-inliner"; - version = "1.0.6"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-image-inliner/-/postcss-image-inliner-1.0.6.tgz"; - sha1 = "e3c7605fd934d04a430b75a842d491be752846d5"; + url = "https://registry.npmjs.org/postcss-image-inliner/-/postcss-image-inliner-2.0.0.tgz"; + sha1 = "29bdc7bbbeb08a5cd2a20d09141dce48a5ca3ba9"; }; dependencies = [ - (sources."asset-resolver-0.3.3" // { + sources."asset-resolver-1.0.0" + sources."bluebird-3.5.1" + sources."debug-3.1.0" + sources."filesize-3.5.11" + sources."lodash.defaults-4.2.0" + sources."lodash.escaperegexp-4.1.2" + sources."lodash.isstring-4.0.1" + sources."lodash.last-3.0.0" + sources."lodash.map-4.6.0" + sources."lodash.partialright-4.2.1" + sources."lodash.reduce-4.6.0" + sources."lodash.reject-4.6.0" + sources."lodash.result-4.5.2" + sources."mime-2.0.3" + sources."object-hash-1.2.0" + sources."postcss-6.0.14" + sources."request-2.83.0" + sources."svgo-1.0.3" + sources."then-fs-2.0.0" + sources."fs-extra-5.0.0" + sources."globby-7.1.1" + sources."hash-0.2.0" + sources."lodash-4.17.4" + sources."meow-3.7.0" + sources."object-0.1.1" + sources."graceful-fs-4.1.11" + sources."jsonfile-4.0.0" + sources."universalify-0.1.1" + sources."array-union-1.0.2" + sources."dir-glob-2.0.0" + sources."glob-7.1.2" + sources."ignore-3.3.7" + sources."pify-3.0.0" + sources."slash-1.0.0" + sources."array-uniq-1.0.3" + sources."arrify-1.0.1" + sources."path-type-3.0.0" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."minimist-1.2.0" + sources."normalize-package-data-2.4.0" + sources."object-assign-4.1.1" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + (sources."read-pkg-1.1.0" // { + dependencies = [ + sources."path-type-1.1.0" + sources."pify-2.3.0" + ]; + }) + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + (sources."load-json-file-1.1.0" // { dependencies = [ - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."hash-0.2.0" - sources."lodash-4.17.4" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - sources."object-0.1.1" - ]; - }) - sources."bluebird-3.4.7" - (sources."debug-2.6.1" // { - dependencies = [ - sources."ms-0.7.2" - ]; - }) - sources."filesize-3.5.5" - sources."lodash.defaults-4.2.0" - sources."lodash.escaperegexp-4.1.2" - sources."lodash.isstring-4.0.1" - sources."lodash.last-3.0.0" - sources."lodash.map-4.6.0" - sources."lodash.partialright-4.2.1" - sources."lodash.reduce-4.6.0" - sources."lodash.reject-4.6.0" - sources."lodash.result-4.5.2" - sources."mime-1.3.4" - sources."object-hash-1.1.5" - (sources."postcss-5.2.15" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."pify-2.3.0" ]; }) - (sources."request-2.79.0" // { + sources."parse-json-2.2.0" + sources."strip-bom-2.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."is-utf8-0.2.1" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."get-stdin-4.0.1" + sources."ms-2.0.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."coa-2.0.0" + sources."colors-1.1.2" + sources."css-url-regex-1.1.0" + sources."unquote-1.1.1" + (sources."mkdirp-0.5.1" // { dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.11.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-2.0.6" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."commander-2.11.0" - (sources."is-my-json-valid-2.16.0" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."qs-6.3.2" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.4.3" - sources."uuid-3.1.0" + sources."minimist-0.0.8" ]; }) - (sources."svgo-0.7.2" // { + sources."css-select-1.3.0-rc0" + sources."css-select-base-adapter-0.1.0" + (sources."css-tree-1.0.0-alpha25" // { dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) + sources."source-map-0.5.7" ]; }) - (sources."then-fs-2.0.0" // { + sources."csso-3.4.0" + sources."js-yaml-3.10.0" + sources."object.values-1.0.4" + sources."sax-1.2.4" + sources."stable-0.1.6" + sources."util.promisify-1.0.0" + sources."q-1.5.1" + sources."boolbase-1.0.0" + sources."css-what-2.1.0" + sources."domutils-1.5.1" + sources."nth-check-1.0.1" + (sources."dom-serializer-0.1.0" // { dependencies = [ - (sources."promise-7.3.1" // { - dependencies = [ - sources."asap-2.0.6" - ]; - }) + sources."domelementtype-1.1.3" ]; }) + sources."domelementtype-1.3.0" + sources."entities-1.1.1" + sources."mdn-data-1.0.0" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."define-properties-1.1.2" + sources."es-abstract-1.10.0" + sources."has-1.0.1" + sources."function-bind-1.1.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."es-to-primitive-1.1.1" + sources."is-callable-1.1.3" + sources."is-regex-1.0.4" + sources."is-date-object-1.0.1" + sources."is-symbol-1.0.1" + sources."object.getownpropertydescriptors-2.0.3" + sources."promise-7.3.1" + sources."asap-2.0.6" ]; buildInputs = globalBuildInputs; meta = { @@ -56446,229 +39928,79 @@ in postcss-image-set-generator = nodeEnv.buildNodePackage { name = "postcss-image-set-generator"; packageName = "postcss-image-set-generator"; - version = "0.1.3"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-image-set-generator/-/postcss-image-set-generator-0.1.3.tgz"; - sha1 = "d3427cced9e27a9ebdc233e8827d041c2e2a268e"; + url = "https://registry.npmjs.org/postcss-image-set-generator/-/postcss-image-set-generator-0.2.0.tgz"; + sha1 = "f771ec76fa6baf005ae82243453d881d303fed1d"; }; dependencies = [ - (sources."assets-2.1.0" // { - dependencies = [ - sources."async-1.5.2" - sources."bluebird-3.5.0" - sources."calipers-2.0.0" - sources."calipers-gif-2.0.0" - sources."calipers-jpeg-2.0.0" - sources."calipers-png-2.0.0" - sources."calipers-svg-2.0.0" - sources."calipers-webp-2.0.0" - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."lodash-3.10.1" - sources."mime-1.3.6" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-functions-2.1.1" // { - dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."sharp-0.18.2" // { - dependencies = [ - (sources."caw-2.0.0" // { - dependencies = [ - (sources."get-proxy-1.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."tunnel-agent-0.4.3" - ]; - }) - (sources."color-2.0.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."got-7.1.0" // { - dependencies = [ - (sources."decompress-response-3.3.0" // { - dependencies = [ - sources."mimic-response-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-3.0.0" - sources."is-plain-obj-1.1.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - (sources."isurl-1.0.0" // { - dependencies = [ - (sources."has-to-string-tag-x-1.4.0" // { - dependencies = [ - sources."has-symbol-support-x-1.4.0" - ]; - }) - sources."is-object-1.0.1" - ]; - }) - sources."lowercase-keys-1.0.0" - sources."p-cancelable-0.3.0" - (sources."p-timeout-1.2.0" // { - dependencies = [ - sources."p-finally-1.0.0" - ]; - }) - sources."safe-buffer-5.1.1" - sources."timed-out-4.0.1" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - sources."url-to-options-1.0.1" - ]; - }) - sources."nan-2.6.2" - sources."semver-5.3.0" - (sources."tar-3.1.5" // { - dependencies = [ - sources."minipass-2.2.1" - sources."minizlib-1.0.3" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."yallist-3.0.2" - ]; - }) - ]; - }) + sources."assets-3.0.0" + sources."postcss-6.0.14" + sources."postcss-functions-3.0.0" + sources."sharp-0.18.4" + sources."async-2.6.0" + sources."bluebird-3.5.1" + sources."calipers-2.0.0" + sources."calipers-gif-2.0.0" + sources."calipers-jpeg-2.0.0" + sources."calipers-png-2.0.0" + sources."calipers-svg-2.0.0" + sources."calipers-webp-2.0.0" + sources."glob-7.1.2" + sources."lodash-4.17.4" + sources."mime-1.6.0" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."object-assign-4.1.1" + sources."postcss-value-parser-3.3.0" + sources."caw-2.0.1" + sources."color-2.0.1" + sources."detect-libc-0.2.0" + sources."nan-2.8.0" + sources."semver-5.4.1" + sources."simple-get-2.7.0" + sources."tar-3.2.1" + sources."get-proxy-2.1.0" + sources."isurl-1.0.0" + sources."tunnel-agent-0.6.0" + sources."url-to-options-1.0.1" + sources."npm-conf-1.1.3" + sources."config-chain-1.1.11" + sources."pify-3.0.0" + sources."proto-list-1.2.4" + sources."ini-1.3.5" + sources."has-to-string-tag-x-1.4.1" + sources."is-object-1.0.1" + sources."has-symbol-support-x-1.4.1" + sources."safe-buffer-5.1.1" + sources."color-string-1.5.2" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."decompress-response-3.3.0" + sources."simple-concat-1.0.0" + sources."mimic-response-1.0.0" + sources."chownr-1.0.1" + sources."minipass-2.2.1" + sources."minizlib-1.1.0" + sources."mkdirp-0.5.1" + sources."yallist-3.0.2" + sources."minimist-0.0.8" ]; buildInputs = globalBuildInputs; meta = { @@ -56681,41 +40013,28 @@ in postcss-image-set-polyfill = nodeEnv.buildNodePackage { name = "postcss-image-set-polyfill"; packageName = "postcss-image-set-polyfill"; - version = "0.4.3"; + version = "0.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-image-set-polyfill/-/postcss-image-set-polyfill-0.4.3.tgz"; - sha1 = "34d66e67d4d8c1f4eaab486ec28410a42504fba6"; + url = "https://registry.npmjs.org/postcss-image-set-polyfill/-/postcss-image-set-polyfill-0.4.4.tgz"; + sha1 = "5acdebd25aeb237dde0791c524b68947400995f8"; }; dependencies = [ - (sources."postcss-6.0.1" // { + sources."postcss-6.0.1" + sources."postcss-media-query-parser-0.2.3" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-media-query-parser-0.2.3" - sources."postcss-value-parser-3.3.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -56734,35 +40053,22 @@ in sha1 = "8fb20ccac6a00f0503a6d5d9da935ccdd924a397"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."image-size-0.3.5" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."image-size-0.3.5" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -56781,35 +40087,22 @@ in sha1 = "9933bdd05babf8e561219a5405a369ba171f6a31"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."image-size-0.5.5" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."image-size-0.5.5" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -56828,45 +40121,24 @@ in sha1 = "6ce10397b59516fc963917886a6922bf14838b12"; }; dependencies = [ - (sources."array-includes-2.0.0" // { - dependencies = [ - (sources."define-properties-1.1.2" // { - dependencies = [ - sources."foreach-2.0.5" - sources."object-keys-1.0.11" - ]; - }) - (sources."es-abstract-1.7.0" // { - dependencies = [ - sources."function-bind-1.1.0" - sources."is-callable-1.1.3" - (sources."es-to-primitive-1.1.1" // { - dependencies = [ - sources."is-date-object-1.0.1" - sources."is-symbol-1.0.1" - ]; - }) - (sources."is-regex-1.0.4" // { - dependencies = [ - sources."has-1.0.1" - ]; - }) - ]; - }) - ]; - }) + sources."array-includes-2.0.0" sources."array.prototype.find-1.0.0" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."define-properties-1.1.2" + sources."es-abstract-1.10.0" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."es-to-primitive-1.1.1" + sources."function-bind-1.1.1" + sources."has-1.0.1" + sources."is-callable-1.1.3" + sources."is-regex-1.0.4" + sources."is-date-object-1.0.1" + sources."is-symbol-1.0.1" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -56879,48 +40151,26 @@ in postcss-import = nodeEnv.buildNodePackage { name = "postcss-import"; packageName = "postcss-import"; - version = "10.0.0"; + version = "11.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-import/-/postcss-import-10.0.0.tgz"; - sha1 = "4c85c97b099136cc5ea0240dc1dfdbfde4e2ebbe"; + url = "https://registry.npmjs.org/postcss-import/-/postcss-import-11.0.0.tgz"; + sha1 = "a962e2df82d3bc5a6da6a386841747204f41ef5b"; }; dependencies = [ - sources."object-assign-4.1.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -56939,30 +40189,15 @@ in sha1 = "9cae577d0b135e2e16fafec25a9acee698837f8f"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -56980,67 +40215,35 @@ in sha1 = "cbac95da3a97a8018be2dd2475ed3a0a8d570560"; }; dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) + sources."glob-5.0.15" sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-message-helpers-2.0.0" - (sources."resolve-1.3.3" // { + sources."resolve-1.5.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."path-parse-1.0.5" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -57053,60 +40256,26 @@ in postcss-import-url = nodeEnv.buildNodePackage { name = "postcss-import-url"; packageName = "postcss-import-url"; - version = "2.2.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-import-url/-/postcss-import-url-2.2.0.tgz"; - sha1 = "d82fe7ae2a66539637fd9c474111d056fb764d3a"; + url = "https://registry.npmjs.org/postcss-import-url/-/postcss-import-url-3.0.1.tgz"; + sha1 = "832b919a827aa4c327311eeceaf801e694f4b7ce"; }; dependencies = [ sources."http-https-1.0.0" sources."is-url-1.2.2" sources."lodash.assign-4.2.0" sources."lodash.trim-4.5.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."resolve-relative-url-1.0.0" // { - dependencies = [ - (sources."url-0.10.3" // { - dependencies = [ - sources."punycode-1.3.2" - sources."querystring-0.2.0" - ]; - }) - ]; - }) + sources."resolve-relative-url-1.0.0" + sources."url-0.10.3" + sources."punycode-1.3.2" + sources."querystring-0.2.0" ]; buildInputs = globalBuildInputs; meta = { description = "PostCSS plugin inlines remote files."; homepage = https://github.com/unlight/postcss-import-url; - license = "Beerware"; + license = "MIT"; }; production = true; }; @@ -57120,50 +40289,28 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-value-parser-3.3.0" - (sources."promise-each-2.2.0" // { - dependencies = [ - sources."any-promise-0.1.0" - ]; - }) - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { + sources."promise-each-2.2.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."path-parse-1.0.5" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."any-promise-0.1.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -57183,1116 +40330,519 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."pkg-resolve-0.1.14" // { + sources."pkg-resolve-0.1.14" + (sources."postcss-5.2.18" // { dependencies = [ - (sources."jspm-0.17.0-beta.42" // { - dependencies = [ - sources."bluebird-3.5.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."core-js-1.2.7" - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."graceful-fs-4.1.11" - (sources."jspm-github-0.14.13" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - sources."netrc-0.1.4" - (sources."tar-fs-1.15.3" // { - dependencies = [ - sources."chownr-1.0.1" - (sources."pump-1.0.2" // { - dependencies = [ - sources."end-of-stream-1.4.0" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."jspm-npm-0.30.2" // { - dependencies = [ - sources."buffer-peek-stream-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."tar-fs-1.15.3" // { - dependencies = [ - sources."chownr-1.0.1" - (sources."pump-1.0.2" // { - dependencies = [ - sources."end-of-stream-1.4.0" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."jspm-registry-0.4.4" // { - dependencies = [ - sources."rsvp-3.6.1" - sources."semver-4.3.6" - ]; - }) - (sources."liftoff-2.3.0" // { - dependencies = [ - sources."extend-3.0.1" - (sources."findup-sync-0.4.3" // { - dependencies = [ - (sources."detect-file-0.1.0" // { - dependencies = [ - sources."fs-exists-sync-0.1.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."resolve-dir-0.1.1" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."global-modules-0.2.3" // { - dependencies = [ - (sources."global-prefix-0.1.5" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - sources."ini-1.3.4" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fined-1.1.0" // { - dependencies = [ - (sources."expand-tilde-2.0.2" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - ]; - }) - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."array-each-1.0.1" - sources."array-slice-1.0.0" - (sources."for-own-1.0.0" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."isobject-3.0.1" - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - (sources."parse-filepath-1.0.1" // { - dependencies = [ - (sources."is-absolute-0.2.6" // { - dependencies = [ - (sources."is-relative-0.2.1" // { - dependencies = [ - (sources."is-unc-path-0.1.2" // { - dependencies = [ - sources."unc-path-regex-0.1.2" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - sources."map-cache-0.2.2" - (sources."path-root-0.1.1" // { - dependencies = [ - sources."path-root-regex-0.1.2" - ]; - }) - ]; - }) - ]; - }) - sources."flagged-respawn-0.3.2" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.mapvalues-4.6.0" - sources."rechoir-0.6.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ncp-2.0.0" - (sources."proper-lockfile-1.2.0" // { - dependencies = [ - sources."err-code-1.1.2" - sources."extend-3.0.1" - sources."retry-0.10.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - (sources."sane-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."exec-sh-0.2.0" // { - dependencies = [ - sources."merge-1.2.0" - ]; - }) - (sources."fb-watchman-2.0.0" // { - dependencies = [ - (sources."bser-2.0.0" // { - dependencies = [ - sources."node-int64-0.4.0" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."walker-1.0.7" // { - dependencies = [ - (sources."makeerror-1.0.11" // { - dependencies = [ - sources."tmpl-1.0.4" - ]; - }) - ]; - }) - sources."watch-0.10.0" - ]; - }) - sources."semver-5.3.0" - sources."systemjs-0.20.14" - (sources."systemjs-builder-0.16.9" // { - dependencies = [ - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."source-map-support-0.4.15" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."convert-source-map-1.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."json5-0.5.1" - sources."lodash-4.17.4" - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - ]; - }) - sources."babel-plugin-syntax-dynamic-import-6.18.0" - (sources."babel-plugin-transform-amd-system-wrapper-0.3.7" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-cjs-system-wrapper-0.6.2" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-hoist-variables-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-global-system-wrapper-0.3.4" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - sources."babel-plugin-transform-system-register-0.0.1" - sources."data-uri-to-buffer-0.0.4" - (sources."es6-template-strings-2.0.1" // { - dependencies = [ - (sources."es5-ext-0.10.24" // { - dependencies = [ - (sources."es6-iterator-2.0.1" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - (sources."es6-symbol-3.1.1" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - ]; - }) - (sources."esniff-1.1.0" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."rollup-0.36.4" // { - dependencies = [ - sources."source-map-support-0.4.15" - ]; - }) - sources."source-map-0.5.6" - (sources."systemjs-0.19.47" // { - dependencies = [ - sources."when-3.7.8" - ]; - }) - ]; - }) - (sources."traceur-0.0.105" // { - dependencies = [ - (sources."commander-2.9.0" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."rsvp-3.6.1" - sources."semver-4.3.6" - (sources."source-map-support-0.2.10" // { - dependencies = [ - (sources."source-map-0.1.32" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) + sources."supports-color-3.2.3" ]; }) - (sources."postcss-5.2.17" // { + sources."postcss-value-parser-3.3.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."jspm-0.17.0-beta.47" + sources."bluebird-3.5.1" + sources."chalk-1.1.3" + sources."core-js-1.2.7" + sources."glob-6.0.4" + sources."graceful-fs-4.1.11" + sources."jspm-github-0.14.13" + sources."jspm-npm-0.30.3" + (sources."jspm-registry-0.4.4" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."semver-4.3.6" + ]; + }) + sources."liftoff-2.5.0" + sources."minimatch-3.0.4" + sources."mkdirp-0.5.1" + sources."ncp-2.0.0" + sources."proper-lockfile-1.2.0" + sources."request-2.83.0" + (sources."rimraf-2.6.2" // { + dependencies = [ + sources."glob-7.1.2" + ]; + }) + (sources."sane-1.7.0" // { + dependencies = [ + sources."minimist-1.2.0" + ]; + }) + sources."semver-5.4.1" + sources."systemjs-0.20.19" + (sources."systemjs-builder-0.16.12" // { + dependencies = [ + sources."glob-7.1.2" + sources."systemjs-0.19.47" + ]; + }) + (sources."traceur-0.0.105" // { + dependencies = [ + sources."glob-5.0.15" + sources."semver-4.3.6" + sources."source-map-support-0.2.10" + sources."source-map-0.1.32" + ]; + }) + sources."uglify-js-2.8.29" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."expand-tilde-1.2.2" + sources."netrc-0.1.4" + sources."tar-fs-1.16.0" + sources."which-1.3.0" + sources."os-homedir-1.0.2" + sources."chownr-1.0.1" + sources."pump-1.0.3" + sources."tar-stream-1.5.5" + sources."end-of-stream-1.4.0" + sources."bl-1.2.1" + sources."readable-stream-2.3.3" + sources."xtend-4.0.1" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."isexe-2.0.0" + sources."buffer-peek-stream-1.0.1" + sources."readdirp-2.1.0" + sources."set-immediate-shim-1.0.1" + sources."rsvp-3.6.2" + sources."extend-3.0.1" + sources."findup-sync-2.0.0" + (sources."fined-1.1.0" // { + dependencies = [ + sources."expand-tilde-2.0.2" + ]; + }) + sources."flagged-respawn-1.0.0" + sources."is-plain-object-2.0.4" + sources."object.map-1.0.1" + sources."rechoir-0.6.2" + sources."detect-file-1.0.0" + sources."is-glob-3.1.0" + sources."micromatch-3.1.4" + (sources."resolve-dir-1.0.1" // { + dependencies = [ + sources."expand-tilde-2.0.2" + ]; + }) + sources."is-extglob-2.1.1" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."to-regex-3.0.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { + dependencies = [ + sources."extend-shallow-3.0.2" + ]; + }) + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + (sources."is-descriptor-1.0.1" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."debug-2.6.9" + sources."posix-character-classes-0.1.1" + sources."ms-2.0.0" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-0.5.7" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { + dependencies = [ + sources."isobject-2.1.0" ]; }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { + sources."has-values-0.1.4" + ]; + }) + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - sources."has-flag-1.0.0" + sources."kind-of-5.1.0" ]; }) ]; }) - sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."global-modules-1.0.0" + sources."homedir-polyfill-1.0.1" + sources."parse-passwd-1.0.0" + (sources."global-prefix-1.0.2" // { dependencies = [ - sources."pify-2.3.0" + sources."expand-tilde-2.0.2" + ]; + }) + sources."is-windows-1.0.1" + sources."ini-1.3.5" + sources."object.defaults-1.1.0" + sources."parse-filepath-1.0.2" + sources."array-each-1.0.1" + sources."array-slice-1.1.0" + sources."for-own-1.0.0" + sources."is-absolute-1.0.0" + sources."path-root-0.1.1" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."unc-path-regex-0.1.2" + sources."path-root-regex-0.1.2" + (sources."make-iterator-1.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."minimist-0.0.8" + sources."err-code-1.1.2" + sources."retry-0.10.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."fs.realpath-1.0.0" + (sources."anymatch-1.3.2" // { + dependencies = [ + sources."micromatch-2.3.11" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + sources."kind-of-3.2.2" + ]; + }) + sources."exec-sh-0.2.1" + sources."fb-watchman-2.0.0" + sources."walker-1.0.7" + sources."watch-0.10.0" + sources."normalize-path-2.1.1" + sources."filename-regex-2.0.1" + (sources."object.omit-2.0.1" // { + dependencies = [ + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + ]; + }) + (sources."parse-glob-3.0.4" // { + dependencies = [ + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + ]; + }) + sources."regex-cache-0.4.4" + (sources."expand-range-1.8.2" // { + dependencies = [ + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + sources."kind-of-3.2.2" + ]; + }) + sources."preserve-0.2.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."is-posix-bracket-0.1.1" + (sources."glob-base-0.3.0" // { + dependencies = [ + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-dotfile-1.0.3" + (sources."glob-parent-2.0.0" // { + dependencies = [ + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."merge-1.2.0" + sources."bser-2.0.0" + sources."node-int64-0.4.0" + sources."makeerror-1.0.11" + sources."tmpl-1.0.4" + sources."babel-core-6.26.0" + sources."babel-plugin-syntax-dynamic-import-6.18.0" + sources."babel-plugin-transform-amd-system-wrapper-0.3.7" + sources."babel-plugin-transform-cjs-system-wrapper-0.6.2" + sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" + sources."babel-plugin-transform-global-system-wrapper-0.3.4" + sources."babel-plugin-transform-system-register-0.0.1" + sources."data-uri-to-buffer-0.0.4" + sources."es6-template-strings-2.0.1" + sources."rollup-0.36.4" + sources."babel-code-frame-6.26.0" + sources."babel-generator-6.26.0" + sources."babel-helpers-6.24.1" + sources."babel-messages-6.23.0" + (sources."babel-register-6.26.0" // { + dependencies = [ + sources."core-js-2.5.3" + ]; + }) + (sources."babel-runtime-6.26.0" // { + dependencies = [ + sources."core-js-2.5.3" + ]; + }) + sources."babel-template-6.26.0" + sources."babel-traverse-6.26.0" + sources."babel-types-6.26.0" + sources."babylon-6.18.0" + sources."convert-source-map-1.5.1" + sources."json5-0.5.1" + sources."lodash-4.17.4" + sources."private-0.1.8" + sources."slash-1.0.0" + sources."esutils-2.0.2" + sources."js-tokens-3.0.2" + sources."detect-indent-4.0.0" + sources."jsesc-1.3.0" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."home-or-tmp-2.0.0" + sources."source-map-support-0.4.18" + sources."os-tmpdir-1.0.2" + sources."regenerator-runtime-0.11.1" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."loose-envify-1.3.1" + sources."to-fast-properties-1.0.3" + sources."babel-helper-hoist-variables-6.24.1" + sources."es5-ext-0.10.37" + sources."esniff-1.1.0" + sources."es6-iterator-2.0.3" + sources."es6-symbol-3.1.1" + sources."d-1.0.0" + sources."when-3.7.8" + sources."commander-2.9.0" + sources."graceful-readlink-1.0.1" + sources."amdefine-1.0.1" + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + (sources."center-align-0.1.3" // { + dependencies = [ + sources."lazy-cache-1.0.4" ]; }) - (sources."resolve-1.3.3" // { + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + (sources."align-text-0.1.4" // { dependencies = [ - sources."path-parse-1.0.5" + sources."kind-of-3.2.2" ]; }) + sources."longest-1.0.1" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -58311,34 +40861,21 @@ in sha1 = "4e628362ae81d010403de131105c023e0f8b8de7"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -58357,17 +40894,11 @@ in sha1 = "5ef6efebdf4252a16e463aca243781782ec498fc"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -58380,42 +40911,29 @@ in postcss-increase-specificity = nodeEnv.buildNodePackage { name = "postcss-increase-specificity"; packageName = "postcss-increase-specificity"; - version = "0.5.0"; + version = "0.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-increase-specificity/-/postcss-increase-specificity-0.5.0.tgz"; - sha1 = "a913fb42530a5c7a1e6b892ea01007ee2e28b2db"; + url = "https://registry.npmjs.org/postcss-increase-specificity/-/postcss-increase-specificity-0.6.0.tgz"; + sha1 = "28facf95b24527aaaf8e687915da837ab9bd814c"; }; dependencies = [ sources."escape-string-regexp-1.0.5" sources."object-assign-3.0.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."string.prototype.repeat-0.2.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."string.prototype.repeat-0.2.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -58435,53 +40953,34 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."parse-css-font-2.0.2" // { - dependencies = [ - sources."css-font-size-keywords-1.0.0" - sources."css-font-stretch-keywords-1.0.1" - sources."css-font-style-keywords-1.0.1" - sources."css-font-weight-keywords-1.0.0" - sources."css-global-keywords-1.0.1" - sources."css-list-helpers-1.0.1" - sources."css-system-font-keywords-1.0.0" - sources."tcomb-2.7.0" - sources."unquote-1.1.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."units-css-0.4.0" // { + sources."parse-css-font-2.0.2" + sources."postcss-5.2.18" + sources."units-css-0.4.0" + sources."css-font-size-keywords-1.0.0" + sources."css-font-stretch-keywords-1.0.1" + sources."css-font-style-keywords-1.0.1" + sources."css-font-weight-keywords-1.0.0" + sources."css-global-keywords-1.0.1" + sources."css-list-helpers-1.0.1" + sources."css-system-font-keywords-1.0.0" + sources."tcomb-2.7.0" + sources."unquote-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."isnumeric-0.2.0" - sources."viewport-dimensions-0.2.0" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."isnumeric-0.2.0" + sources."viewport-dimensions-0.2.0" ]; buildInputs = globalBuildInputs; meta = { @@ -58500,34 +40999,21 @@ in sha1 = "d9c13787d7194eee66acfc0a8ce28df14b1984c6"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -58546,1725 +41032,318 @@ in sha1 = "9c56372e2764cd23e06aa7fadc9c60975af278c3"; }; dependencies = [ - (sources."debug-2.6.8" // { + sources."debug-2.6.9" + sources."postcss-5.2.18" + sources."postcss-inherit-parser-0.1.4" + sources."ms-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."ms-2.0.0" + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."babel-cli-6.26.0" + sources."babel-core-6.26.0" + sources."babel-plugin-add-module-exports-0.2.1" + sources."babel-plugin-istanbul-2.0.3" + sources."babel-plugin-precompile-charcodes-1.1.0" + sources."babel-preset-es2015-6.24.1" + sources."babel-register-6.26.0" + sources."babel-polyfill-6.26.0" + (sources."babel-runtime-6.26.0" // { + dependencies = [ + sources."regenerator-runtime-0.11.1" + ]; + }) + sources."commander-2.12.2" + sources."convert-source-map-1.5.1" + sources."fs-readdir-recursive-1.1.0" + sources."glob-7.1.2" + sources."lodash-4.17.4" + sources."output-file-sync-1.1.2" + sources."path-is-absolute-1.0.1" + sources."slash-1.0.0" + sources."v8flags-2.1.1" + sources."chokidar-1.7.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.10.5" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."graceful-fs-4.1.11" + sources."mkdirp-0.5.1" + sources."object-assign-4.1.1" + sources."minimist-0.0.8" + sources."user-home-1.1.1" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" ]; }) - (sources."postcss-5.2.17" // { + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + (sources."rc-1.2.2" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."minimist-1.2.0" ]; }) - (sources."postcss-inherit-parser-0.1.4" // { + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."semver-5.4.1" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + sources."tar-pack-3.4.1" + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."signal-exit-3.0.2" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - (sources."babel-cli-6.24.1" // { - dependencies = [ - (sources."babel-polyfill-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."commander-2.11.0" - sources."convert-source-map-1.5.0" - sources."fs-readdir-recursive-1.0.0" - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - (sources."output-file-sync-1.1.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."object-assign-4.1.1" - ]; - }) - sources."path-is-absolute-1.0.1" - sources."slash-1.0.0" - sources."source-map-0.5.6" - (sources."v8flags-2.1.1" // { - dependencies = [ - sources."user-home-1.1.1" - ]; - }) - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."rimraf-2.6.1" - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."convert-source-map-1.5.0" - sources."json5-0.5.1" - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - sources."source-map-0.5.6" - ]; - }) - sources."babel-plugin-add-module-exports-0.2.1" - (sources."babel-plugin-istanbul-2.0.3" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."istanbul-lib-instrument-1.7.3" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."lodash-4.17.4" - sources."source-map-0.5.6" - sources."trim-right-1.0.1" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."istanbul-lib-coverage-1.1.1" - sources."semver-5.3.0" - ]; - }) - sources."object-assign-4.1.1" - (sources."test-exclude-2.1.3" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."require-main-filename-1.0.1" - ]; - }) - ]; - }) - sources."babel-plugin-precompile-charcodes-1.1.0" - (sources."babel-preset-es2015-6.24.1" // { - dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-arrow-functions-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-block-scoping-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - ]; - }) - sources."lodash-4.17.4" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-classes-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-helper-replace-supers-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-define-map-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-computed-properties-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-for-of-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-amd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-hoist-variables-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-umd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-object-super-6.24.1" // { - dependencies = [ - (sources."babel-helper-replace-supers-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-template-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-regenerator-6.24.1" // { - dependencies = [ - (sources."regenerator-transform-0.9.11" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."private-0.1.7" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."lodash-4.17.4" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - ]; - }) + sources."assert-plus-1.0.0" + ]; + }) + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" ]; }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."babel-code-frame-6.26.0" + sources."babel-generator-6.26.0" + sources."babel-helpers-6.24.1" + sources."babel-messages-6.23.0" + sources."babel-template-6.26.0" + sources."babel-traverse-6.26.0" + sources."babel-types-6.26.0" + sources."babylon-6.18.0" + sources."json5-0.5.1" + sources."private-0.1.8" + sources."esutils-2.0.2" + sources."js-tokens-3.0.2" + sources."detect-indent-4.0.0" + sources."jsesc-1.3.0" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."loose-envify-1.3.1" + sources."to-fast-properties-1.0.3" + sources."find-up-1.1.2" + sources."istanbul-lib-instrument-1.9.1" + sources."test-exclude-2.1.3" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."istanbul-lib-coverage-1.1.1" + sources."arrify-1.0.1" + sources."read-pkg-up-1.0.1" + sources."require-main-filename-1.0.1" + sources."read-pkg-1.1.0" + sources."load-json-file-1.1.0" + sources."normalize-package-data-2.4.0" + sources."path-type-1.1.0" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-2.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."is-utf8-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."babel-plugin-check-es2015-constants-6.22.0" + sources."babel-plugin-transform-es2015-arrow-functions-6.22.0" + sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0" + sources."babel-plugin-transform-es2015-block-scoping-6.26.0" + sources."babel-plugin-transform-es2015-classes-6.24.1" + sources."babel-plugin-transform-es2015-computed-properties-6.24.1" + sources."babel-plugin-transform-es2015-destructuring-6.23.0" + sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1" + sources."babel-plugin-transform-es2015-for-of-6.23.0" + sources."babel-plugin-transform-es2015-function-name-6.24.1" + sources."babel-plugin-transform-es2015-literals-6.22.0" + sources."babel-plugin-transform-es2015-modules-amd-6.24.1" + sources."babel-plugin-transform-es2015-modules-commonjs-6.26.0" + sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" + sources."babel-plugin-transform-es2015-modules-umd-6.24.1" + sources."babel-plugin-transform-es2015-object-super-6.24.1" + sources."babel-plugin-transform-es2015-parameters-6.24.1" + sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1" + sources."babel-plugin-transform-es2015-spread-6.22.0" + sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" + sources."babel-plugin-transform-es2015-template-literals-6.22.0" + sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0" + sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" + sources."babel-plugin-transform-regenerator-6.26.0" + sources."babel-helper-optimise-call-expression-6.24.1" + sources."babel-helper-function-name-6.24.1" + sources."babel-helper-replace-supers-6.24.1" + sources."babel-helper-define-map-6.26.0" + sources."babel-helper-get-function-arity-6.24.1" + sources."babel-plugin-transform-strict-mode-6.24.1" + sources."babel-helper-hoist-variables-6.24.1" + sources."babel-helper-call-delegate-6.24.1" + sources."babel-helper-regex-6.26.0" + sources."regexpu-core-2.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + (sources."regjsparser-0.1.5" // { + dependencies = [ + sources."jsesc-0.5.0" + ]; + }) + sources."regenerator-transform-0.10.1" + sources."home-or-tmp-2.0.0" + sources."source-map-support-0.4.18" ]; buildInputs = globalBuildInputs; meta = { @@ -60283,36 +41362,18 @@ in sha1 = "72715f7336e0bb79351d99ee65c4a253a8441ba4"; }; dependencies = [ - (sources."lodash.template-4.4.0" // { - dependencies = [ - sources."lodash._reinterpolate-3.0.0" - sources."lodash.templatesettings-4.1.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."lodash.template-4.4.0" + sources."postcss-6.0.14" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.templatesettings-4.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60332,34 +41393,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60394,35 +41442,22 @@ in sha1 = "987f50a924f086f37fe32411f987b3b8b5f2df28"; }; dependencies = [ - sources."mime-1.3.6" - (sources."postcss-5.2.17" // { + sources."mime-1.6.0" + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60441,59 +41476,35 @@ in sha1 = "be3a306e9bc9a055ee12e0304441aff73089f476"; }; dependencies = [ - (sources."debug-2.2.0" // { - dependencies = [ - sources."ms-0.7.1" - ]; - }) + sources."debug-2.2.0" sources."file-type-3.8.0" - (sources."got-6.3.0" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-1.1.0" - sources."is-plain-obj-1.1.0" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."node-status-codes-2.0.1" - sources."timed-out-2.0.0" - sources."unzip-response-1.0.2" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."is-svg-2.0.1" // { - dependencies = [ - sources."html-comment-regex-1.1.1" - ]; - }) + sources."got-6.3.0" + sources."is-svg-2.0.1" sources."lagden-promisify-3.0.0" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) + sources."mkdirp-0.5.1" sources."pify-2.3.0" - (sources."postcss-5.1.2" // { - dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-5.1.2" + sources."ms-0.7.1" + sources."create-error-class-3.0.2" + sources."duplexer3-0.1.4" + sources."get-stream-1.1.0" + sources."is-plain-obj-1.1.0" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."is-stream-1.1.0" + sources."lowercase-keys-1.0.0" + sources."node-status-codes-2.0.1" + sources."timed-out-2.0.0" + sources."unzip-response-1.0.2" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."prepend-http-1.0.4" + sources."html-comment-regex-1.1.1" + sources."minimist-0.0.8" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60512,34 +41523,21 @@ in sha1 = "acebca70d0de5dbd47ed1cced9068038b868c171"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60558,34 +41556,21 @@ in sha1 = "1e6aa9880ee253821cf5c3d6bc0eccd775f9a8a3"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60604,18 +41589,12 @@ in sha1 = "f078b83dda444215d7021c2ff7744d52a16a5de4"; }; dependencies = [ - sources."mime-1.3.6" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."mime-1.6.0" + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -60634,63 +41613,22 @@ in sha1 = "7c90317b7c6c0f6d12ac53cb0e5126c191ab05cb"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."rtlcss-2.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."findup-0.1.5" // { - dependencies = [ - sources."colors-0.6.2" - sources."commander-2.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."strip-json-comments-2.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."rtlcss-2.2.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."findup-0.1.5" + sources."mkdirp-0.5.1" + sources."strip-json-comments-2.0.1" + sources."colors-0.6.2" + sources."commander-2.1.0" + sources."minimist-0.0.8" ]; buildInputs = globalBuildInputs; meta = { @@ -60709,68 +41647,38 @@ in sha1 = "195da9f5487bf8f183b03f8a2a843b060ff00525"; }; dependencies = [ - (sources."css-select-1.2.0" // { - dependencies = [ - sources."css-what-2.1.0" - (sources."domutils-1.5.1" // { - dependencies = [ - sources."domelementtype-1.3.0" - ]; - }) - sources."boolbase-1.0.0" - sources."nth-check-1.0.1" - ]; - }) + sources."css-select-1.2.0" (sources."dom-serializer-0.1.0" // { dependencies = [ sources."domelementtype-1.1.3" - sources."entities-1.1.1" - ]; - }) - (sources."htmlparser2-3.9.2" // { - dependencies = [ - sources."domelementtype-1.3.0" - sources."domhandler-2.4.1" - sources."domutils-1.6.2" - sources."entities-1.1.1" - sources."inherits-2.0.3" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) ]; }) + sources."htmlparser2-3.9.2" + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."css-what-2.1.0" + sources."domutils-1.5.1" + sources."boolbase-1.0.0" + sources."nth-check-1.0.1" + sources."domelementtype-1.3.0" + sources."entities-1.1.1" + sources."domhandler-2.4.1" + sources."inherits-2.0.3" + sources."readable-stream-2.3.3" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60789,34 +41697,21 @@ in sha1 = "0c3b3b58160812133f4a3c3bec7d76e11eac4e05"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60836,30 +41731,15 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60878,37 +41758,19 @@ in sha1 = "829c2fa9c53fb9bebe53c7533e1638e91e64e173"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-2.2.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -60921,40 +41783,21 @@ in postcss-input-style = nodeEnv.buildNodePackage { name = "postcss-input-style"; packageName = "postcss-input-style"; - version = "0.3.0"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-input-style/-/postcss-input-style-0.3.0.tgz"; - sha1 = "e3b4fdb0aa441bed1930cbb44d8ad5634cf38540"; + url = "https://registry.npmjs.org/postcss-input-style/-/postcss-input-style-1.0.0.tgz"; + sha1 = "bbfdc82b9f799b3e78c863a02476757e26fbdc61"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -60973,34 +41816,21 @@ in sha1 = "26bcc130bb256d7d955eb9fadce72f1c425c0a50"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -61019,34 +41849,21 @@ in sha1 = "7c3c0803478237c54479dfcc93a805891dd737fb"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -61065,34 +41882,21 @@ in sha1 = "1bfe62905a1a9bd69a1231c61d821d0d9c20979c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -61111,39 +41915,23 @@ in sha1 = "b729dd628e50e4e95d7ada39c4626d61470eca88"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."reduce-function-call-1.0.2" // { + sources."postcss-5.2.18" + sources."reduce-function-call-1.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -61162,34 +41950,21 @@ in sha1 = "5424406f0049ef85cb66a527b2540d475fcd8a70"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -61208,34 +41983,21 @@ in sha1 = "4eb1fc0229c75d48b972e53ea961424b13132c82"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -61254,34 +42016,21 @@ in sha1 = "da63c2bce5f9cd9c161dd1b98214457755dc3322"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -61300,480 +42049,350 @@ in sha1 = "41f648e296b47b00993bd57a15e81fbd95ec06ef"; }; dependencies = [ - (sources."gulp-3.9.1" // { + sources."gulp-3.9.1" + (sources."postcss-4.1.16" // { dependencies = [ - sources."archy-1.0.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."deprecated-0.0.1" - (sources."gulp-util-3.0.8" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - sources."interpret-1.0.3" - (sources."liftoff-2.3.0" // { - dependencies = [ - sources."extend-3.0.1" - (sources."findup-sync-0.4.3" // { - dependencies = [ - (sources."detect-file-0.1.0" // { - dependencies = [ - sources."fs-exists-sync-0.1.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."resolve-dir-0.1.1" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."global-modules-0.2.3" // { - dependencies = [ - (sources."global-prefix-0.1.5" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - sources."ini-1.3.4" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fined-1.1.0" // { - dependencies = [ - (sources."expand-tilde-2.0.2" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - ]; - }) - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."array-each-1.0.1" - sources."array-slice-1.0.0" - (sources."for-own-1.0.0" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."isobject-3.0.1" - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - (sources."parse-filepath-1.0.1" // { - dependencies = [ - (sources."is-absolute-0.2.6" // { - dependencies = [ - (sources."is-relative-0.2.1" // { - dependencies = [ - (sources."is-unc-path-0.1.2" // { - dependencies = [ - sources."unc-path-regex-0.1.2" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - sources."map-cache-0.2.2" - (sources."path-root-0.1.1" // { - dependencies = [ - sources."path-root-regex-0.1.2" - ]; - }) - ]; - }) - ]; - }) - sources."flagged-respawn-0.3.2" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.mapvalues-4.6.0" - sources."rechoir-0.6.2" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."orchestrator-0.3.8" // { - dependencies = [ - (sources."end-of-stream-0.1.5" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."sequencify-0.0.7" - sources."stream-consume-0.1.0" - ]; - }) - sources."pretty-hrtime-1.0.3" - sources."semver-4.3.6" - (sources."tildify-1.2.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."v8flags-2.1.1" // { - dependencies = [ - sources."user-home-1.1.1" - ]; - }) - (sources."vinyl-fs-0.3.14" // { + sources."source-map-0.4.4" + ]; + }) + sources."archy-1.0.0" + sources."chalk-1.1.3" + sources."deprecated-0.0.1" + sources."gulp-util-3.0.8" + sources."interpret-1.1.0" + sources."liftoff-2.5.0" + sources."minimist-1.2.0" + sources."orchestrator-0.3.8" + sources."pretty-hrtime-1.0.3" + sources."semver-4.3.6" + sources."tildify-1.2.0" + sources."v8flags-2.1.1" + (sources."vinyl-fs-0.3.14" // { + dependencies = [ + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."vinyl-0.5.3" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."extend-3.0.1" + sources."findup-sync-2.0.0" + sources."fined-1.1.0" + sources."flagged-respawn-1.0.0" + sources."is-plain-object-2.0.4" + sources."object.map-1.0.1" + sources."rechoir-0.6.2" + sources."resolve-1.5.0" + sources."detect-file-1.0.0" + sources."is-glob-3.1.0" + sources."micromatch-3.1.4" + sources."resolve-dir-1.0.1" + sources."is-extglob-2.1.1" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."to-regex-3.0.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { + dependencies = [ + sources."extend-shallow-3.0.2" + ]; + }) + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + (sources."is-descriptor-1.0.1" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."debug-2.6.9" + sources."posix-character-classes-0.1.1" + sources."ms-2.0.0" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-0.5.7" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { dependencies = [ - (sources."defaults-1.0.3" // { - dependencies = [ - sources."clone-1.0.2" - ]; - }) - (sources."glob-stream-3.1.18" // { - dependencies = [ - (sources."glob-4.5.3" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."minimatch-2.0.10" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."ordered-read-streams-0.1.0" - (sources."glob2base-0.0.12" // { - dependencies = [ - sources."find-index-0.1.1" - ]; - }) - sources."unique-stream-1.0.0" - ]; - }) - (sources."glob-watcher-0.0.6" // { - dependencies = [ - (sources."gaze-0.5.2" // { - dependencies = [ - (sources."globule-0.1.0" // { - dependencies = [ - sources."lodash-1.0.2" - (sources."glob-3.1.21" // { - dependencies = [ - sources."graceful-fs-1.2.3" - sources."inherits-1.0.2" - ]; - }) - (sources."minimatch-0.2.14" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."strip-bom-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - sources."is-utf8-0.2.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) + sources."isobject-2.1.0" ]; }) + sources."has-values-0.1.4" + sources."isarray-1.0.0" ]; }) - (sources."postcss-4.1.16" // { + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - sources."amdefine-1.0.1" + sources."kind-of-5.1.0" ]; }) - sources."js-base64-2.1.9" ]; }) + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."expand-tilde-2.0.2" + sources."global-modules-1.0.0" + sources."homedir-polyfill-1.0.1" + sources."parse-passwd-1.0.0" + sources."global-prefix-1.0.2" + sources."is-windows-1.0.1" + sources."ini-1.3.5" + sources."which-1.3.0" + sources."isexe-2.0.0" + sources."object.defaults-1.1.0" + sources."parse-filepath-1.0.2" + sources."array-each-1.0.1" + sources."array-slice-1.1.0" + sources."for-own-1.0.0" + sources."is-absolute-1.0.0" + sources."path-root-0.1.1" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."unc-path-regex-0.1.2" + sources."path-root-regex-0.1.2" + (sources."make-iterator-1.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."path-parse-1.0.5" + sources."end-of-stream-0.1.5" + sources."sequencify-0.0.7" + sources."stream-consume-0.1.0" + sources."once-1.3.3" + sources."wrappy-1.0.2" + sources."os-homedir-1.0.2" + sources."user-home-1.1.1" + sources."defaults-1.0.3" + (sources."glob-stream-3.1.18" // { + dependencies = [ + sources."through2-0.6.5" + sources."readable-stream-1.0.34" + ]; + }) + sources."glob-watcher-0.0.6" + sources."graceful-fs-3.0.11" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."strip-bom-1.0.0" + sources."glob-4.5.3" + sources."minimatch-2.0.10" + sources."ordered-read-streams-0.1.0" + sources."glob2base-0.0.12" + sources."unique-stream-1.0.0" + sources."inflight-1.0.6" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."find-index-0.1.1" + sources."gaze-0.5.2" + (sources."globule-0.1.0" // { + dependencies = [ + sources."glob-3.1.21" + sources."minimatch-0.2.14" + sources."graceful-fs-1.2.3" + sources."inherits-1.0.2" + ]; + }) + sources."lodash-1.0.2" + sources."lru-cache-2.7.3" + sources."sigmund-1.0.1" + sources."natives-1.1.1" + sources."first-chunk-stream-1.0.0" + sources."is-utf8-0.2.1" + sources."es6-promise-2.3.0" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -61792,480 +42411,347 @@ in sha1 = "6d7cb9b8ec274cb3e9e19808ecc896f6aee1e2a5"; }; dependencies = [ - (sources."postcss-4.1.16" // { + sources."postcss-4.1.16" + sources."gulp-3.9.1" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."archy-1.0.0" + sources."chalk-1.1.3" + sources."deprecated-0.0.1" + sources."gulp-util-3.0.8" + sources."interpret-1.1.0" + sources."liftoff-2.5.0" + sources."minimist-1.2.0" + sources."orchestrator-0.3.8" + sources."pretty-hrtime-1.0.3" + sources."semver-4.3.6" + sources."tildify-1.2.0" + sources."v8flags-2.1.1" + (sources."vinyl-fs-0.3.14" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" ]; }) - (sources."gulp-3.9.1" // { + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."vinyl-0.5.3" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."extend-3.0.1" + sources."findup-sync-2.0.0" + sources."fined-1.1.0" + sources."flagged-respawn-1.0.0" + sources."is-plain-object-2.0.4" + sources."object.map-1.0.1" + sources."rechoir-0.6.2" + sources."resolve-1.5.0" + sources."detect-file-1.0.0" + sources."is-glob-3.1.0" + sources."micromatch-3.1.4" + sources."resolve-dir-1.0.1" + sources."is-extglob-2.1.1" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { dependencies = [ - sources."archy-1.0.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."deprecated-0.0.1" - (sources."gulp-util-3.0.8" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - sources."interpret-1.0.3" - (sources."liftoff-2.3.0" // { - dependencies = [ - sources."extend-3.0.1" - (sources."findup-sync-0.4.3" // { - dependencies = [ - (sources."detect-file-0.1.0" // { - dependencies = [ - sources."fs-exists-sync-0.1.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."resolve-dir-0.1.1" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."global-modules-0.2.3" // { - dependencies = [ - (sources."global-prefix-0.1.5" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - sources."ini-1.3.4" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fined-1.1.0" // { - dependencies = [ - (sources."expand-tilde-2.0.2" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - ]; - }) - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."array-each-1.0.1" - sources."array-slice-1.0.0" - (sources."for-own-1.0.0" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."isobject-3.0.1" - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - (sources."parse-filepath-1.0.1" // { - dependencies = [ - (sources."is-absolute-0.2.6" // { - dependencies = [ - (sources."is-relative-0.2.1" // { - dependencies = [ - (sources."is-unc-path-0.1.2" // { - dependencies = [ - sources."unc-path-regex-0.1.2" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - sources."map-cache-0.2.2" - (sources."path-root-0.1.1" // { - dependencies = [ - sources."path-root-regex-0.1.2" - ]; - }) - ]; - }) - ]; - }) - sources."flagged-respawn-0.3.2" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.mapvalues-4.6.0" - sources."rechoir-0.6.2" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."orchestrator-0.3.8" // { - dependencies = [ - (sources."end-of-stream-0.1.5" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."sequencify-0.0.7" - sources."stream-consume-0.1.0" - ]; - }) - sources."pretty-hrtime-1.0.3" - sources."semver-4.3.6" - (sources."tildify-1.2.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."v8flags-2.1.1" // { + sources."is-extendable-0.1.1" + ]; + }) + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."source-map-0.5.7" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."to-regex-3.0.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { + dependencies = [ + sources."extend-shallow-3.0.2" + ]; + }) + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + (sources."is-descriptor-1.0.1" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."debug-2.6.9" + sources."posix-character-classes-0.1.1" + sources."ms-2.0.0" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { dependencies = [ - sources."user-home-1.1.1" + sources."isobject-2.1.0" ]; }) - (sources."vinyl-fs-0.3.14" // { + sources."has-values-0.1.4" + sources."isarray-1.0.0" + ]; + }) + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - (sources."defaults-1.0.3" // { - dependencies = [ - sources."clone-1.0.2" - ]; - }) - (sources."glob-stream-3.1.18" // { - dependencies = [ - (sources."glob-4.5.3" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."minimatch-2.0.10" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."ordered-read-streams-0.1.0" - (sources."glob2base-0.0.12" // { - dependencies = [ - sources."find-index-0.1.1" - ]; - }) - sources."unique-stream-1.0.0" - ]; - }) - (sources."glob-watcher-0.0.6" // { - dependencies = [ - (sources."gaze-0.5.2" // { - dependencies = [ - (sources."globule-0.1.0" // { - dependencies = [ - sources."lodash-1.0.2" - (sources."glob-3.1.21" // { - dependencies = [ - sources."graceful-fs-1.2.3" - sources."inherits-1.0.2" - ]; - }) - (sources."minimatch-0.2.14" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."strip-bom-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - sources."is-utf8-0.2.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) + sources."kind-of-5.1.0" ]; }) ]; }) + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."expand-tilde-2.0.2" + sources."global-modules-1.0.0" + sources."homedir-polyfill-1.0.1" + sources."parse-passwd-1.0.0" + sources."global-prefix-1.0.2" + sources."is-windows-1.0.1" + sources."ini-1.3.5" + sources."which-1.3.0" + sources."isexe-2.0.0" + sources."object.defaults-1.1.0" + sources."parse-filepath-1.0.2" + sources."array-each-1.0.1" + sources."array-slice-1.1.0" + sources."for-own-1.0.0" + sources."is-absolute-1.0.0" + sources."path-root-0.1.1" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."unc-path-regex-0.1.2" + sources."path-root-regex-0.1.2" + (sources."make-iterator-1.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."path-parse-1.0.5" + sources."end-of-stream-0.1.5" + sources."sequencify-0.0.7" + sources."stream-consume-0.1.0" + sources."once-1.3.3" + sources."wrappy-1.0.2" + sources."os-homedir-1.0.2" + sources."user-home-1.1.1" + sources."defaults-1.0.3" + (sources."glob-stream-3.1.18" // { + dependencies = [ + sources."through2-0.6.5" + sources."readable-stream-1.0.34" + ]; + }) + sources."glob-watcher-0.0.6" + sources."graceful-fs-3.0.11" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."strip-bom-1.0.0" + sources."glob-4.5.3" + sources."minimatch-2.0.10" + sources."ordered-read-streams-0.1.0" + sources."glob2base-0.0.12" + sources."unique-stream-1.0.0" + sources."inflight-1.0.6" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."find-index-0.1.1" + sources."gaze-0.5.2" + (sources."globule-0.1.0" // { + dependencies = [ + sources."glob-3.1.21" + sources."minimatch-0.2.14" + sources."graceful-fs-1.2.3" + sources."inherits-1.0.2" + ]; + }) + sources."lodash-1.0.2" + sources."lru-cache-2.7.3" + sources."sigmund-1.0.1" + sources."natives-1.1.1" + sources."first-chunk-stream-1.0.0" + sources."is-utf8-0.2.1" ]; buildInputs = globalBuildInputs; meta = { @@ -62278,41 +42764,22 @@ in postcss-js-mixins = nodeEnv.buildNodePackage { name = "postcss-js-mixins"; packageName = "postcss-js-mixins"; - version = "2.5.0"; + version = "2.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-js-mixins/-/postcss-js-mixins-2.5.0.tgz"; - sha1 = "76ad36a681c960c743abf78f42598851854c2e51"; + url = "https://registry.npmjs.org/postcss-js-mixins/-/postcss-js-mixins-2.5.3.tgz"; + sha1 = "c5d8441f334ae09e447e20e2a7dd5014853af75b"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."tinycolor2-1.4.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -62331,34 +42798,21 @@ in sha1 = "27af0ad50d7aa0d57b03a0b90342a2a5d6487b66"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -62377,17 +42831,11 @@ in sha1 = "49b76fbd7df2a214773fcf4143037c4ac909c889"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -62406,34 +42854,21 @@ in sha1 = "6527f82708e0118f5e9d71ae07d97f91485aec23"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -62452,34 +42887,21 @@ in sha1 = "5646ca7332ec3bbbbf0e4aef74ec87af0239e936"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -62498,35 +42920,22 @@ in sha1 = "a93d968167e7a53a635a89882f9391d79b897198"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."chalk-1.1.3" sources."lodash-3.10.1" - (sources."postcss-5.2.17" // { + (sources."postcss-5.2.18" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -62539,537 +42948,273 @@ in postcss-lazysprite = nodeEnv.buildNodePackage { name = "postcss-lazysprite"; packageName = "postcss-lazysprite"; - version = "1.6.1"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-lazysprite/-/postcss-lazysprite-1.6.1.tgz"; - sha1 = "4a7dfd2e7246f566f58cb98afff6b1a35e84c7b8"; + url = "https://registry.npmjs.org/postcss-lazysprite/-/postcss-lazysprite-1.7.0.tgz"; + sha1 = "9e34285d354a73504c51bddd6ea21179ddd3477c"; }; dependencies = [ - sources."bluebird-3.5.0" - (sources."gulp-util-3.0.8" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - sources."minimist-1.2.0" - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) + sources."bluebird-3.5.1" + sources."gulp-util-3.0.8" sources."lodash-4.17.4" (sources."mkdirp-0.5.1" // { dependencies = [ sources."minimist-0.0.8" ]; }) - (sources."postcss-6.0.6" // { + (sources."postcss-6.0.14" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" ]; }) sources."rev-hash-2.0.0" sources."spark-md5-3.0.0" - (sources."spritesmith-3.1.1" // { + sources."spritesmith-3.2.1" + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."chalk-1.1.3" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."minimist-1.2.0" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { dependencies = [ - (sources."concat-stream-1.5.2" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-2.1.1" // { - dependencies = [ - sources."async-0.9.2" - (sources."get-pixels-3.3.0" // { - dependencies = [ - sources."pngjs-2.3.1" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.3.4" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - (sources."ndarray-ops-1.2.2" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."pngjs-nozlib-1.0.0" - sources."through-2.3.8" - ]; - }) - (sources."vinyl-file-1.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.0.3" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."vinyl-0.5.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."source-map-0.6.1" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + (sources."concat-stream-1.5.2" // { + dependencies = [ + sources."readable-stream-2.0.6" + sources."isarray-1.0.0" + ]; + }) + sources."layout-2.2.0" + sources."pixelsmith-2.1.3" + sources."semver-5.0.3" + sources."typedarray-0.0.6" + sources."bin-pack-1.0.2" + sources."async-0.9.2" + sources."get-pixels-3.3.0" + sources."mime-types-2.1.17" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.3.4" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + (sources."vinyl-file-1.3.0" // { + dependencies = [ + sources."vinyl-1.2.0" + ]; + }) + sources."pngjs-2.3.1" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."is-buffer-1.1.6" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { + dependencies = [ + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" ]; }) + sources."through2-0.4.2" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" + ]; + }) + (sources."uglify-js-2.8.29" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."esprima-1.2.5" + (sources."escodegen-1.3.3" // { + dependencies = [ + sources."esprima-1.1.1" + sources."source-map-0.1.43" + ]; + }) + sources."falafel-2.1.0" + sources."has-1.0.1" + sources."object-inspect-0.4.0" + (sources."quote-stream-0.0.0" // { + dependencies = [ + sources."through2-0.4.2" + sources."minimist-0.0.8" + sources."readable-stream-1.0.34" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" + ]; + }) + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { + dependencies = [ + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" ]; }) + sources."gif-encoder-0.4.3" + sources."ndarray-ops-1.2.2" + sources."pngjs-nozlib-1.0.0" + sources."graceful-fs-4.1.11" + sources."strip-bom-2.0.0" + sources."strip-bom-stream-1.0.0" + sources."is-utf8-0.2.1" + sources."first-chunk-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -63120,34 +43265,21 @@ in sha1 = "d2b8595a6ff59e8d85cfa5c1cbcbd307a2131303"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -63160,45 +43292,26 @@ in postcss-lh = nodeEnv.buildNodePackage { name = "postcss-lh"; packageName = "postcss-lh"; - version = "1.1.4"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-lh/-/postcss-lh-1.1.4.tgz"; - sha1 = "6555286ba01d8f27958f35a510341c4fe6843079"; + url = "https://registry.npmjs.org/postcss-lh/-/postcss-lh-2.0.1.tgz"; + sha1 = "d5ab0dbdf652e4263ad0b6592ba4c77d2ee37eb0"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { description = "PostCSS plugin to define a lh unit based on the line height for vertical rhythm"; - homepage = "https://github.com/kolcethompsonco/postcss-lh#readme"; + homepage = "https://github.com/jameskolce/postcss-lh#readme"; license = "MIT"; }; production = true; @@ -63212,120 +43325,64 @@ in sha1 = "c05db224c76629a677b0f8793f12d47426c82b9e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."ligang-px2rem-0.5.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."chalk-0.5.1" + sources."ansi-styles-1.1.0" + sources."has-ansi-0.1.0" + sources."strip-ansi-0.3.0" + sources."supports-color-0.2.0" + sources."ansi-regex-0.2.1" ]; }) - (sources."ligang-px2rem-0.5.1" // { + (sources."chalk-1.1.3" // { dependencies = [ - (sources."css-2.2.1" // { - dependencies = [ - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."source-map-resolve-0.3.1" // { - dependencies = [ - sources."source-map-url-0.3.0" - sources."atob-1.1.3" - sources."resolve-url-0.2.1" - ]; - }) - sources."urix-0.1.0" - sources."inherits-2.0.3" - ]; - }) - sources."extend-3.0.1" - sources."commander-2.6.0" - (sources."chalk-0.5.1" // { - dependencies = [ - sources."ansi-styles-1.1.0" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-0.1.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - (sources."strip-ansi-0.3.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - sources."supports-color-0.2.0" - ]; - }) - (sources."fs-extra-0.16.5" // { - dependencies = [ - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."jsonfile-2.4.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - ]; - }) + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + (sources."css-2.2.1" // { + dependencies = [ + sources."source-map-0.1.43" + ]; + }) + sources."extend-3.0.1" + sources."commander-2.6.0" + sources."fs-extra-0.16.5" + sources."source-map-resolve-0.3.1" + sources."urix-0.1.0" + sources."inherits-2.0.3" + sources."amdefine-1.0.1" + sources."source-map-url-0.3.0" + sources."atob-1.1.3" + sources."resolve-url-0.2.1" + sources."graceful-fs-3.0.11" + (sources."jsonfile-2.4.0" // { + dependencies = [ + sources."graceful-fs-4.1.11" ]; }) + sources."rimraf-2.6.2" + sources."natives-1.1.1" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -63344,34 +43401,21 @@ in sha1 = "6062a4976d26f54e3353b99b4cc6fde1c042f77e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -63390,34 +43434,21 @@ in sha1 = "f6ef3eb7c989a3faaf8d3a1608339b43b9393ae1"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -63436,34 +43467,21 @@ in sha1 = "a7c923e634d7eacc0bd077c4029c4c2162d583c0"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -63482,34 +43500,21 @@ in sha1 = "c4585cc34aaa63ca158ac3d686963b527580c6bc"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -63529,34 +43534,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -63575,1185 +43567,534 @@ in sha1 = "035b559d76ea4bed308290d6e92cf70180ae5918"; }; dependencies = [ - (sources."calipers-2.0.0" // { + sources."calipers-2.0.0" + sources."calipers-gif-2.0.0" + sources."calipers-jpeg-2.0.0" + sources."calipers-png-2.0.0" + sources."calipers-svg-2.0.0" + sources."calipers-webp-2.0.0" + sources."jspm-0.17.0-beta.47" + sources."pkg-resolve-0.2.2" + (sources."postcss-5.2.18" // { dependencies = [ - sources."bluebird-3.5.0" + sources."supports-color-3.2.3" ]; }) - (sources."calipers-gif-2.0.0" // { + (sources."postcss-functions-2.1.1" // { dependencies = [ - sources."bluebird-3.5.0" + sources."glob-5.0.15" ]; }) - (sources."calipers-jpeg-2.0.0" // { + sources."postcss-less-0.13.0" + sources."postcss-scss-0.1.9" + sources."read-cache-1.0.0" + sources."sugarss-0.1.6" + sources."bluebird-3.5.1" + sources."chalk-1.1.3" + sources."core-js-1.2.7" + sources."glob-6.0.4" + sources."graceful-fs-4.1.11" + sources."jspm-github-0.14.13" + sources."jspm-npm-0.30.3" + (sources."jspm-registry-0.4.4" // { dependencies = [ - sources."bluebird-3.5.0" + sources."semver-4.3.6" ]; }) - (sources."calipers-png-2.0.0" // { + sources."liftoff-2.5.0" + sources."minimatch-3.0.4" + sources."mkdirp-0.5.1" + sources."ncp-2.0.0" + sources."proper-lockfile-1.2.0" + sources."request-2.83.0" + (sources."rimraf-2.6.2" // { dependencies = [ - sources."bluebird-3.5.0" + sources."glob-7.1.2" ]; }) - (sources."calipers-svg-2.0.0" // { + (sources."sane-1.7.0" // { dependencies = [ - sources."bluebird-3.5.0" + sources."minimist-1.2.0" ]; }) - (sources."calipers-webp-2.0.0" // { + sources."semver-5.4.1" + sources."systemjs-0.20.19" + (sources."systemjs-builder-0.16.12" // { dependencies = [ - sources."bluebird-3.5.0" + sources."glob-7.1.2" + sources."systemjs-0.19.47" ]; }) - (sources."jspm-0.17.0-beta.42" // { + (sources."traceur-0.0.105" // { dependencies = [ - sources."bluebird-3.5.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."core-js-1.2.7" - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."graceful-fs-4.1.11" - (sources."jspm-github-0.14.13" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - sources."netrc-0.1.4" - (sources."tar-fs-1.15.3" // { - dependencies = [ - sources."chownr-1.0.1" - (sources."pump-1.0.2" // { - dependencies = [ - sources."end-of-stream-1.4.0" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."jspm-npm-0.30.2" // { - dependencies = [ - sources."buffer-peek-stream-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."tar-fs-1.15.3" // { - dependencies = [ - sources."chownr-1.0.1" - (sources."pump-1.0.2" // { - dependencies = [ - sources."end-of-stream-1.4.0" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."jspm-registry-0.4.4" // { - dependencies = [ - sources."rsvp-3.6.1" - sources."semver-4.3.6" - ]; - }) - (sources."liftoff-2.3.0" // { - dependencies = [ - sources."extend-3.0.1" - (sources."findup-sync-0.4.3" // { - dependencies = [ - (sources."detect-file-0.1.0" // { - dependencies = [ - sources."fs-exists-sync-0.1.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."resolve-dir-0.1.1" // { - dependencies = [ - (sources."expand-tilde-1.2.2" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - (sources."global-modules-0.2.3" // { - dependencies = [ - (sources."global-prefix-0.1.5" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - sources."ini-1.3.4" - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fined-1.1.0" // { - dependencies = [ - (sources."expand-tilde-2.0.2" // { - dependencies = [ - (sources."homedir-polyfill-1.0.1" // { - dependencies = [ - sources."parse-passwd-1.0.0" - ]; - }) - ]; - }) - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."array-each-1.0.1" - sources."array-slice-1.0.0" - (sources."for-own-1.0.0" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."isobject-3.0.1" - ]; - }) - (sources."object.pick-1.2.0" // { - dependencies = [ - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - ]; - }) - (sources."parse-filepath-1.0.1" // { - dependencies = [ - (sources."is-absolute-0.2.6" // { - dependencies = [ - (sources."is-relative-0.2.1" // { - dependencies = [ - (sources."is-unc-path-0.1.2" // { - dependencies = [ - sources."unc-path-regex-0.1.2" - ]; - }) - ]; - }) - sources."is-windows-0.2.0" - ]; - }) - sources."map-cache-0.2.2" - (sources."path-root-0.1.1" // { - dependencies = [ - sources."path-root-regex-0.1.2" - ]; - }) - ]; - }) - ]; - }) - sources."flagged-respawn-0.3.2" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.mapvalues-4.6.0" - sources."rechoir-0.6.2" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ncp-2.0.0" - (sources."proper-lockfile-1.2.0" // { - dependencies = [ - sources."err-code-1.1.2" - sources."extend-3.0.1" - sources."retry-0.10.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - (sources."sane-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."exec-sh-0.2.0" // { - dependencies = [ - sources."merge-1.2.0" - ]; - }) - (sources."fb-watchman-2.0.0" // { - dependencies = [ - (sources."bser-2.0.0" // { - dependencies = [ - sources."node-int64-0.4.0" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - (sources."walker-1.0.7" // { - dependencies = [ - (sources."makeerror-1.0.11" // { - dependencies = [ - sources."tmpl-1.0.4" - ]; - }) - ]; - }) - sources."watch-0.10.0" - ]; - }) - sources."semver-5.3.0" - sources."systemjs-0.20.14" - (sources."systemjs-builder-0.16.9" // { - dependencies = [ - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."source-map-support-0.4.15" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."convert-source-map-1.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."json5-0.5.1" - sources."lodash-4.17.4" - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - ]; - }) - sources."babel-plugin-syntax-dynamic-import-6.18.0" - (sources."babel-plugin-transform-amd-system-wrapper-0.3.7" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-cjs-system-wrapper-0.6.2" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-hoist-variables-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-global-system-wrapper-0.3.4" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - sources."babel-plugin-transform-system-register-0.0.1" - sources."data-uri-to-buffer-0.0.4" - (sources."es6-template-strings-2.0.1" // { - dependencies = [ - (sources."es5-ext-0.10.24" // { - dependencies = [ - (sources."es6-iterator-2.0.1" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - (sources."es6-symbol-3.1.1" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - ]; - }) - (sources."esniff-1.1.0" // { - dependencies = [ - sources."d-1.0.0" - ]; - }) - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."rollup-0.36.4" // { - dependencies = [ - sources."source-map-support-0.4.15" - ]; - }) - sources."source-map-0.5.6" - (sources."systemjs-0.19.47" // { - dependencies = [ - sources."when-3.7.8" - ]; - }) - ]; - }) - (sources."traceur-0.0.105" // { - dependencies = [ - (sources."commander-2.9.0" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."rsvp-3.6.1" - sources."semver-4.3.6" - (sources."source-map-support-0.2.10" // { - dependencies = [ - (sources."source-map-0.1.32" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) + sources."glob-5.0.15" + sources."semver-4.3.6" + sources."source-map-support-0.2.10" + sources."source-map-0.1.32" ]; }) - (sources."pkg-resolve-0.2.2" // { + sources."uglify-js-2.8.29" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."expand-tilde-1.2.2" + sources."netrc-0.1.4" + sources."tar-fs-1.16.0" + sources."which-1.3.0" + sources."os-homedir-1.0.2" + sources."chownr-1.0.1" + sources."pump-1.0.3" + sources."tar-stream-1.5.5" + sources."end-of-stream-1.4.0" + sources."bl-1.2.1" + sources."readable-stream-2.3.3" + sources."xtend-4.0.1" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."isexe-2.0.0" + sources."buffer-peek-stream-1.0.1" + sources."readdirp-2.1.0" + sources."set-immediate-shim-1.0.1" + sources."rsvp-3.6.2" + sources."extend-3.0.1" + sources."findup-sync-2.0.0" + (sources."fined-1.1.0" // { dependencies = [ - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."expand-tilde-2.0.2" ]; }) - (sources."postcss-5.2.17" // { + sources."flagged-respawn-1.0.0" + sources."is-plain-object-2.0.4" + sources."object.map-1.0.1" + sources."rechoir-0.6.2" + sources."resolve-1.5.0" + sources."detect-file-1.0.0" + sources."is-glob-3.1.0" + sources."micromatch-3.1.4" + (sources."resolve-dir-1.0.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { + sources."expand-tilde-2.0.2" + ]; + }) + sources."is-extglob-2.1.1" + sources."arr-diff-4.0.0" + sources."array-unique-0.3.2" + sources."braces-2.3.0" + sources."define-property-1.0.0" + (sources."extend-shallow-2.0.1" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + sources."extglob-2.0.3" + sources."fragment-cache-0.2.1" + sources."kind-of-6.0.2" + (sources."nanomatch-1.2.6" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + sources."object.pick-1.3.0" + sources."regex-not-1.0.0" + (sources."snapdragon-0.8.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + (sources."to-regex-3.0.1" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."arr-flatten-1.1.0" + sources."fill-range-4.0.0" + sources."isobject-3.0.1" + sources."repeat-element-1.1.2" + sources."snapdragon-node-2.1.1" + (sources."split-string-3.1.0" // { + dependencies = [ + sources."extend-shallow-3.0.2" + ]; + }) + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."repeat-string-1.6.1" + sources."to-regex-range-2.1.1" + sources."is-buffer-1.1.6" + (sources."snapdragon-util-3.0.1" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."assign-symbols-1.0.0" + sources."is-extendable-1.0.1" + (sources."is-descriptor-1.0.1" // { + dependencies = [ + sources."kind-of-5.1.0" + ]; + }) + (sources."is-accessor-descriptor-0.1.6" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."is-data-descriptor-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."expand-brackets-2.1.4" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."debug-2.6.9" + sources."posix-character-classes-0.1.1" + sources."ms-2.0.0" + sources."map-cache-0.2.2" + sources."is-odd-1.0.0" + sources."base-0.11.2" + sources."source-map-0.5.7" + sources."source-map-resolve-0.5.1" + (sources."use-2.0.2" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."cache-base-1.0.1" + (sources."class-utils-0.3.5" // { + dependencies = [ + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."component-emitter-1.2.1" + sources."mixin-deep-1.3.0" + sources."pascalcase-0.1.1" + sources."collection-visit-1.0.0" + sources."get-value-2.0.6" + sources."has-value-1.0.0" + (sources."set-value-2.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + ]; + }) + (sources."to-object-path-0.3.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + (sources."union-value-1.0.0" // { + dependencies = [ + sources."is-extendable-0.1.1" + sources."set-value-0.4.3" + ]; + }) + (sources."unset-value-1.0.0" // { + dependencies = [ + (sources."has-value-0.3.1" // { dependencies = [ - sources."has-flag-1.0.0" + sources."isobject-2.1.0" ]; }) + sources."has-values-0.1.4" ]; }) - (sources."postcss-functions-2.1.1" // { + sources."map-visit-1.0.0" + sources."object-visit-1.0.1" + (sources."has-values-1.0.0" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."arr-union-3.1.0" + sources."lazy-cache-2.0.2" + (sources."static-extend-0.1.2" // { dependencies = [ - (sources."glob-5.0.15" // { + sources."define-property-0.2.5" + sources."is-descriptor-0.1.6" + sources."kind-of-5.1.0" + ]; + }) + sources."set-getter-0.1.0" + (sources."object-copy-0.1.0" // { + dependencies = [ + sources."define-property-0.2.5" + sources."kind-of-3.2.2" + (sources."is-descriptor-0.1.6" // { dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" + sources."kind-of-5.1.0" ]; }) - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" ]; }) - sources."postcss-less-0.13.0" - sources."postcss-scss-0.1.9" - (sources."read-cache-1.0.0" // { + sources."copy-descriptor-0.1.1" + sources."for-in-1.0.2" + sources."decode-uri-component-0.2.0" + sources."source-map-url-0.4.0" + sources."atob-2.0.3" + sources."urix-0.1.0" + sources."resolve-url-0.2.1" + sources."global-modules-1.0.0" + sources."homedir-polyfill-1.0.1" + sources."parse-passwd-1.0.0" + (sources."global-prefix-1.0.2" // { dependencies = [ - sources."pify-2.3.0" + sources."expand-tilde-2.0.2" ]; }) - sources."sugarss-0.1.6" + sources."is-windows-1.0.1" + sources."ini-1.3.5" + sources."object.defaults-1.1.0" + sources."parse-filepath-1.0.2" + sources."array-each-1.0.1" + sources."array-slice-1.1.0" + sources."for-own-1.0.0" + sources."is-absolute-1.0.0" + sources."path-root-0.1.1" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."unc-path-regex-0.1.2" + sources."path-root-regex-0.1.2" + (sources."make-iterator-1.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."path-parse-1.0.5" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."minimist-0.0.8" + sources."err-code-1.1.2" + sources."retry-0.10.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."fs.realpath-1.0.0" + (sources."anymatch-1.3.2" // { + dependencies = [ + sources."micromatch-2.3.11" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + sources."kind-of-3.2.2" + ]; + }) + sources."exec-sh-0.2.1" + sources."fb-watchman-2.0.0" + sources."walker-1.0.7" + sources."watch-0.10.0" + sources."normalize-path-2.1.1" + sources."filename-regex-2.0.1" + (sources."object.omit-2.0.1" // { + dependencies = [ + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + ]; + }) + (sources."parse-glob-3.0.4" // { + dependencies = [ + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + ]; + }) + sources."regex-cache-0.4.4" + (sources."expand-range-1.8.2" // { + dependencies = [ + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + sources."kind-of-3.2.2" + ]; + }) + sources."preserve-0.2.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + sources."kind-of-4.0.0" + ]; + }) + sources."is-posix-bracket-0.1.1" + (sources."glob-base-0.3.0" // { + dependencies = [ + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-dotfile-1.0.3" + (sources."glob-parent-2.0.0" // { + dependencies = [ + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."merge-1.2.0" + sources."bser-2.0.0" + sources."node-int64-0.4.0" + sources."makeerror-1.0.11" + sources."tmpl-1.0.4" + sources."babel-core-6.26.0" + sources."babel-plugin-syntax-dynamic-import-6.18.0" + sources."babel-plugin-transform-amd-system-wrapper-0.3.7" + sources."babel-plugin-transform-cjs-system-wrapper-0.6.2" + sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" + sources."babel-plugin-transform-global-system-wrapper-0.3.4" + sources."babel-plugin-transform-system-register-0.0.1" + sources."data-uri-to-buffer-0.0.4" + sources."es6-template-strings-2.0.1" + sources."rollup-0.36.4" + sources."babel-code-frame-6.26.0" + sources."babel-generator-6.26.0" + sources."babel-helpers-6.24.1" + sources."babel-messages-6.23.0" + (sources."babel-register-6.26.0" // { + dependencies = [ + sources."core-js-2.5.3" + ]; + }) + (sources."babel-runtime-6.26.0" // { + dependencies = [ + sources."core-js-2.5.3" + ]; + }) + sources."babel-template-6.26.0" + sources."babel-traverse-6.26.0" + sources."babel-types-6.26.0" + sources."babylon-6.18.0" + sources."convert-source-map-1.5.1" + sources."json5-0.5.1" + sources."lodash-4.17.4" + sources."private-0.1.8" + sources."slash-1.0.0" + sources."esutils-2.0.2" + sources."js-tokens-3.0.2" + sources."detect-indent-4.0.0" + sources."jsesc-1.3.0" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."home-or-tmp-2.0.0" + sources."source-map-support-0.4.18" + sources."os-tmpdir-1.0.2" + sources."regenerator-runtime-0.11.1" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."loose-envify-1.3.1" + sources."to-fast-properties-1.0.3" + sources."babel-helper-hoist-variables-6.24.1" + sources."es5-ext-0.10.37" + sources."esniff-1.1.0" + sources."es6-iterator-2.0.3" + sources."es6-symbol-3.1.1" + sources."d-1.0.0" + sources."when-3.7.8" + sources."commander-2.9.0" + sources."graceful-readlink-1.0.1" + sources."amdefine-1.0.1" + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + (sources."center-align-0.1.3" // { + dependencies = [ + sources."lazy-cache-1.0.4" + ]; + }) + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + (sources."align-text-0.1.4" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."longest-1.0.1" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" + sources."object-assign-4.1.1" + sources."postcss-value-parser-3.3.0" + sources."pify-2.3.0" ]; buildInputs = globalBuildInputs; meta = { @@ -64772,34 +44113,19 @@ in sha1 = "745768116599aca2f009fad426b00175049d8d92"; }; dependencies = [ - (sources."cosmiconfig-2.1.3" // { - dependencies = [ - sources."is-directory-0.3.1" - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - sources."minimist-1.2.0" - sources."os-homedir-1.0.2" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."require-from-string-1.2.1" - ]; - }) + sources."cosmiconfig-2.2.2" sources."object-assign-4.1.1" + sources."is-directory-0.3.1" + sources."js-yaml-3.10.0" + sources."minimist-1.2.0" + sources."os-homedir-1.0.2" + sources."parse-json-2.2.0" + sources."require-from-string-1.2.1" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" ]; buildInputs = globalBuildInputs; meta = { @@ -64819,22 +44145,13 @@ in }; dependencies = [ sources."lodash-3.10.1" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."postcss-4.1.16" + sources."resolve-1.5.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -64853,17 +44170,11 @@ in sha1 = "bfac11bf5d59fcf2366e66c3680afc858547aca9"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -64882,17 +44193,11 @@ in sha1 = "cd622e23be5682ae917ff9344a94c7333339384d"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -64912,34 +44217,21 @@ in }; dependencies = [ sources."merge-1.2.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -64961,34 +44253,21 @@ in sources."lodash-3.10.1" sources."lolcat-css-properties-1.0.0" sources."lolcat-css-values-1.0.3" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65008,34 +44287,21 @@ in }; dependencies = [ sources."css-longhand-1.1.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65054,30 +44320,15 @@ in sha1 = "5ab5b1cf8bba80cd8d9134c3a654b1218525c14b"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65096,35 +44347,22 @@ in sha1 = "3a644f791d2bb9583d2ff193943dada46b5c127b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-magic-animations-data-1.2.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-magic-animations-data-1.2.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65159,45 +44397,21 @@ in sha1 = "00b0b7649384ec3de2fbe4e43557cbe02a417d44"; }; dependencies = [ - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) + sources."js-yaml-3.10.0" + sources."postcss-6.0.14" + sources."reduce-function-call-1.0.2" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -65216,17 +44430,11 @@ in sha1 = "889a075406c16684d72dc10052afcc953d2dee4c"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -65245,85 +44453,47 @@ in sha1 = "af0b0280049bf3b165756f8a134d8177444f2290"; }; dependencies = [ - (sources."cacha-1.0.3" // { - dependencies = [ - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."path-is-absolute-1.0.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."got-6.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-3.0.0" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."safe-buffer-5.1.1" - sources."timed-out-4.0.1" - sources."unzip-response-2.0.1" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."string-replace-async-1.2.0" // { + sources."cacha-1.0.3" + sources."got-6.7.1" + sources."postcss-5.2.18" + sources."string-replace-async-1.2.1" + sources."home-or-tmp-2.0.0" + sources."mkdirp-0.5.1" + sources."path-is-absolute-1.0.1" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."minimist-0.0.8" + sources."pinkie-2.0.4" + sources."create-error-class-3.0.2" + sources."duplexer3-0.1.4" + sources."get-stream-3.0.0" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."is-stream-1.1.0" + sources."lowercase-keys-1.0.0" + sources."safe-buffer-5.1.1" + sources."timed-out-4.0.1" + sources."unzip-response-2.0.1" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."prepend-http-1.0.4" + (sources."chalk-1.1.3" // { dependencies = [ - sources."escape-string-regexp-1.0.5" - sources."object-assign-4.1.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."object-assign-4.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -65342,34 +44512,21 @@ in sha1 = "f88ff804e832be4e74070b2bcf3f335af2c9e534"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65388,51 +44545,32 @@ in sha1 = "40907561d9ef0bc0773ac6ff2b55c14edf467673"; }; dependencies = [ - (sources."mathjs-3.14.2" // { - dependencies = [ - sources."complex.js-2.0.4" - sources."decimal.js-7.2.3" - sources."fraction.js-4.0.2" - sources."javascript-natural-sort-0.7.1" - sources."seed-random-2.2.0" - sources."tiny-emitter-2.0.0" - sources."typed-function-0.10.5" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."mathjs-3.18.0" + sources."postcss-5.2.18" sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { + sources."reduce-function-call-1.0.2" + sources."complex.js-2.0.4" + sources."decimal.js-9.0.1" + sources."fraction.js-4.0.4" + sources."javascript-natural-sort-0.7.1" + sources."seed-random-2.2.0" + sources."tiny-emitter-2.0.2" + sources."typed-function-0.10.6" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -65451,45 +44589,26 @@ in sha1 = "cfffb20d990c3788f1f9417531648e2c3473b806"; }; dependencies = [ - (sources."mathjs-1.7.1" // { - dependencies = [ - sources."decimal.js-4.0.4" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."mathjs-1.7.1" + sources."postcss-5.2.18" sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { + sources."reduce-function-call-1.0.2" + sources."decimal.js-4.0.4" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -65508,35 +44627,22 @@ in sha1 = "293076c386e7b9851c223d9e10ad4f3a1aee086a"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."chalk-1.1.3" sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + (sources."postcss-5.2.18" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65555,35 +44661,22 @@ in sha1 = "6138a272b402ef72b5fab19bc647de94fe4b8125"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."underscore-1.8.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."underscore-1.8.3" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65602,31 +44695,16 @@ in sha1 = "581e33ea5436d6f05f356ed4963dc910f292e255"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65645,34 +44723,21 @@ in sha1 = "eafecfb9db75d194c55828dc59ee2a42d12a9050"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65691,30 +44756,15 @@ in sha1 = "675256037a43ef40bc4f0760bfd06d4dc69d48d2"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65733,34 +44783,21 @@ in sha1 = "9d606a40e4f77ac7d892e6d331081c8969a1ecab"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65778,39 +44815,23 @@ in sha1 = "41970709026e380a209e1a12fcb2ef8f1152ef83"; }; dependencies = [ - (sources."media-query-gap-1.0.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."media-query-gap-1.0.0" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65830,34 +44851,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65876,34 +44884,21 @@ in sha1 = "2de8710e193701e80fe299664360e782df327b33"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65922,34 +44917,21 @@ in sha1 = "4ac2ab6afc19a3b17f0968ee4cc8f1a5988402db"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -65968,30 +44950,15 @@ in sha1 = "5be176c6dae64f6afd266e264e372cbc08674241"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66010,40 +44977,24 @@ in sha1 = "4c5530313c08e1d5b3bbf3d2bbc747e278eea270"; }; dependencies = [ - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."has-1.0.1" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."function-bind-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66063,88 +45014,41 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-value-parser-3.3.0" - (sources."stylehacks-2.3.2" // { + sources."stylehacks-2.3.2" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."log-symbols-1.0.2" - sources."minimist-1.2.0" - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."postcss-reporter-1.4.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."read-file-stdin-0.2.1" // { - dependencies = [ - sources."gather-stream-1.0.0" - ]; - }) - sources."text-table-0.2.0" - sources."write-file-stdout-0.0.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."browserslist-1.7.7" + sources."log-symbols-1.0.2" + sources."minimist-1.2.0" + sources."plur-2.1.2" + sources."postcss-reporter-1.4.1" + sources."postcss-selector-parser-2.2.3" + sources."read-file-stdin-0.2.1" + sources."text-table-0.2.0" + sources."write-file-stdout-0.0.2" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."irregular-plurals-1.4.0" + sources."lodash-4.17.4" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."gather-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66163,55 +45067,33 @@ in sha1 = "d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"; }; dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-1.6.1" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."browserslist-1.7.7" + sources."caniuse-api-1.6.1" + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + sources."vendors-1.0.1" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) - sources."vendors-1.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -66230,34 +45112,21 @@ in sha1 = "0157b0a1ce11eb2757ee961e139bce945d45e99c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66276,17 +45145,11 @@ in sha1 = "89a7a3ad16e7442035b3f70f77c72af36881d384"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -66306,35 +45169,22 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66353,34 +45203,21 @@ in sha1 = "f97b5058eb1dc5d3c09e8717587d6d3207ff05e6"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66399,35 +45236,22 @@ in sha1 = "5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66447,36 +45271,23 @@ in }; dependencies = [ sources."alphanum-sort-1.0.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."uniqs-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - sources."uniqs-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66496,46 +45307,27 @@ in }; dependencies = [ sources."alphanum-sort-1.0.2" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."has-1.0.1" + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + sources."function-bind-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -66554,17 +45346,11 @@ in sha1 = "0b90951339725db5c2fc7a667ab5ce805eb243a1"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -66583,34 +45369,21 @@ in sha1 = "0dedd2268005450e872b7d6d8cc89c9ef4a8aacc"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66629,34 +45402,21 @@ in sha1 = "c76f9e74b03c35d937dc5d60d4915196f1b7f2c3"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66669,86 +45429,43 @@ in postcss-mixins = nodeEnv.buildNodePackage { name = "postcss-mixins"; packageName = "postcss-mixins"; - version = "6.0.1"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-6.0.1.tgz"; - sha1 = "f5c9726259a6103733b43daa6a8b67dd0ed7aa47"; + url = "https://registry.npmjs.org/postcss-mixins/-/postcss-mixins-6.2.0.tgz"; + sha1 = "fa9d2c2166b2ae7745956c727ab9dd2de4b96a40"; }; dependencies = [ - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-js-1.0.0" // { - dependencies = [ - sources."camelcase-css-1.0.1" - ]; - }) - sources."postcss-simple-vars-4.0.0" - sources."sugarss-1.0.0" + sources."globby-6.1.0" + sources."postcss-6.0.14" + sources."postcss-js-1.0.1" + sources."postcss-simple-vars-4.1.0" + sources."sugarss-1.0.1" + sources."array-union-1.0.2" + sources."glob-7.1.2" + sources."object-assign-4.1.1" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."pinkie-2.0.4" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."camelcase-css-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -66767,31 +45484,16 @@ in sha1 = "c08ef783143973232a6cab364fad25bd70437b8f"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."lodash-4.17.4" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66810,34 +45512,21 @@ in }; dependencies = [ sources."css-mediaquery-0.1.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66856,34 +45545,21 @@ in sha1 = "955d958ac2f9fb7ed66d1ab44aaedeb7ac5a92f3"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66903,34 +45579,21 @@ in }; dependencies = [ sources."modular-scale-4.4.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -66950,39 +45613,23 @@ in }; dependencies = [ sources."modular-scale-4.4.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."reduce-function-call-1.0.2" // { + sources."postcss-5.2.18" + sources."reduce-function-call-1.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."balanced-match-0.4.2" ]; buildInputs = globalBuildInputs; meta = { @@ -67001,31 +45648,16 @@ in sha1 = "0504f2ae627e07121c1623c8c11dda3809f6a926"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."ramda-0.24.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -67038,125 +45670,61 @@ in postcss-modules = nodeEnv.buildNodePackage { name = "postcss-modules"; packageName = "postcss-modules"; - version = "0.8.0"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules/-/postcss-modules-0.8.0.tgz"; - sha1 = "a9d01806dffe19c2607dee88ea1cbd80dc059992"; + url = "https://registry.npmjs.org/postcss-modules/-/postcss-modules-1.1.0.tgz"; + sha1 = "c9f94f76ff6addf7c35b842e69ed442118156bb0"; }; dependencies = [ (sources."css-modules-loader-core-1.1.0" // { dependencies = [ - sources."icss-replace-symbols-1.1.0" - (sources."postcss-6.0.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - sources."postcss-modules-extract-imports-1.1.0" - (sources."postcss-modules-local-by-default-1.2.0" // { - dependencies = [ - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-modules-scope-1.1.0" // { - dependencies = [ - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."postcss-modules-values-1.3.0" + sources."postcss-6.0.1" ]; }) - (sources."generic-names-1.0.2" // { + sources."generic-names-1.0.3" + (sources."postcss-6.0.14" // { dependencies = [ - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."object-assign-4.1.1" - ]; - }) + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."has-flag-2.0.0" ]; }) - (sources."postcss-6.0.6" // { + sources."string-hash-1.1.3" + sources."icss-replace-symbols-1.1.0" + sources."postcss-modules-extract-imports-1.1.0" + sources."postcss-modules-local-by-default-1.2.0" + sources."postcss-modules-scope-1.1.0" + sources."postcss-modules-values-1.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."string-hash-1.1.3" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."css-selector-tokenizer-0.7.0" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."regexpu-core-1.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."loader-utils-0.2.17" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."object-assign-4.1.1" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" ]; buildInputs = globalBuildInputs; meta = { @@ -67175,34 +45743,21 @@ in sha1 = "742d961fc6d1716732adb3e2504d537715a899d4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -67221,47 +45776,23 @@ in sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069"; }; dependencies = [ - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."css-selector-tokenizer-0.7.0" + sources."postcss-6.0.14" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."regexpu-core-1.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -67281,51 +45812,29 @@ in }; dependencies = [ sources."icss-replace-symbols-1.1.0" - (sources."lodash.foreach-3.0.3" // { - dependencies = [ - sources."lodash._arrayeach-3.0.0" - (sources."lodash._baseeach-3.0.4" // { - dependencies = [ - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - ]; - }) - ]; - }) - sources."lodash._bindcallback-3.0.1" - sources."lodash.isarray-3.0.4" - ]; - }) - (sources."postcss-5.2.17" // { + sources."lodash.foreach-3.0.3" + sources."postcss-5.2.18" + sources."lodash._arrayeach-3.0.0" + sources."lodash._baseeach-3.0.4" + sources."lodash._bindcallback-3.0.1" + sources."lodash.isarray-3.0.4" + sources."lodash.keys-3.1.2" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -67344,574 +45853,121 @@ in sha1 = "5fcb4a6406ad8bb09ecc972f53dcdf01073456eb"; }; dependencies = [ - (sources."@ava/babel-preset-stage-4-1.1.0" // { + sources."@ava/babel-preset-stage-4-1.1.0" + sources."enhanced-resolve-3.4.1" + sources."es6-promisify-5.0.0" + sources."icss-replace-symbols-1.1.0" + (sources."postcss-5.2.18" // { + dependencies = [ + sources."supports-color-3.2.3" + ]; + }) + sources."babel-plugin-check-es2015-constants-6.22.0" + sources."babel-plugin-syntax-trailing-function-commas-6.22.0" + sources."babel-plugin-transform-async-to-generator-6.24.1" + sources."babel-plugin-transform-es2015-destructuring-6.23.0" + sources."babel-plugin-transform-es2015-function-name-6.24.1" + sources."babel-plugin-transform-es2015-modules-commonjs-6.26.0" + sources."babel-plugin-transform-es2015-parameters-6.24.1" + sources."babel-plugin-transform-es2015-spread-6.22.0" + sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" + sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" + sources."babel-plugin-transform-exponentiation-operator-6.24.1" + sources."package-hash-1.2.0" + sources."babel-runtime-6.26.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."babel-helper-remap-async-to-generator-6.24.1" + sources."babel-plugin-syntax-async-functions-6.13.0" + sources."babel-template-6.26.0" + sources."babel-types-6.26.0" + sources."babel-traverse-6.26.0" + sources."babel-helper-function-name-6.24.1" + sources."babylon-6.18.0" + sources."lodash-4.17.4" + sources."esutils-2.0.2" + sources."to-fast-properties-1.0.3" + sources."babel-code-frame-6.26.0" + sources."babel-messages-6.23.0" + sources."debug-2.6.9" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."chalk-1.1.3" + sources."js-tokens-3.0.2" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."ms-2.0.0" + sources."loose-envify-1.3.1" + sources."babel-helper-get-function-arity-6.24.1" + sources."babel-plugin-transform-strict-mode-6.24.1" + sources."babel-helper-call-delegate-6.24.1" + sources."babel-helper-hoist-variables-6.24.1" + sources."babel-helper-regex-6.26.0" + sources."regexpu-core-2.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."babel-plugin-syntax-exponentiation-operator-6.13.0" + sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" + sources."babel-helper-explode-assignable-expression-6.24.1" + sources."md5-hex-1.3.0" + sources."md5-o-matic-0.1.1" + sources."graceful-fs-4.1.11" + sources."memory-fs-0.4.1" + sources."object-assign-4.1.1" + sources."tapable-0.2.8" + sources."errno-0.1.6" + sources."readable-stream-2.3.3" + sources."prr-1.0.1" + sources."core-util-is-1.0.2" + sources."inherits-2.0.3" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."es6-promise-4.2.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to work around CSS Modules values limitations"; + homepage = https://github.com/princed/postcss-modules-values-replace; + license = "ISC"; + }; + production = true; + }; + postcss-momocss = nodeEnv.buildNodePackage { + name = "postcss-momocss"; + packageName = "postcss-momocss"; + version = "0.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-momocss/-/postcss-momocss-0.0.0.tgz"; + sha1 = "8e0c65a69b63567bc530059c50d6f1c9dff8562d"; + }; + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."package-hash-1.2.0" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - ]; - }) - ]; - }) - (sources."enhanced-resolve-3.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."memory-fs-0.4.1" // { - dependencies = [ - (sources."errno-0.1.4" // { - dependencies = [ - sources."prr-0.0.0" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - sources."tapable-0.2.6" - ]; - }) - (sources."es6-promisify-5.0.0" // { - dependencies = [ - sources."es6-promise-4.1.1" - ]; - }) - sources."icss-replace-symbols-1.1.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin to work around CSS Modules values limitations"; - homepage = https://github.com/princed/postcss-modules-values-replace; - license = "ISC"; - }; - production = true; - }; - postcss-momocss = nodeEnv.buildNodePackage { - name = "postcss-momocss"; - packageName = "postcss-momocss"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-momocss/-/postcss-momocss-0.0.0.tgz"; - sha1 = "8e0c65a69b63567bc530059c50d6f1c9dff8562d"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -67930,34 +45986,21 @@ in sha1 = "ee261d7bdd3c77c2327d4eb1bc8765b0a5555282"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -67976,44 +46019,25 @@ in sha1 = "cb039300f2bb15a7e1cdcc24732c25df10bee1ff"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."write-0.3.3" // { + sources."postcss-5.2.18" + sources."write-0.3.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."fs-exists-sync-0.1.0" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."fs-exists-sync-0.1.0" + sources."mkdirp-0.5.1" + sources."minimist-0.0.8" ]; buildInputs = globalBuildInputs; meta = { @@ -68032,34 +46056,21 @@ in sha1 = "766abf0f012510ba8ab3b6f8aabba9cd2d437aad"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68078,34 +46089,21 @@ in sha1 = "4c7b84a2e1c99989a592820237633a00267f0d85"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68124,34 +46122,21 @@ in sha1 = "7b2eff68962ffceff40487405395702099c26a5b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68171,34 +46156,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68211,47 +46183,25 @@ in postcss-neat = nodeEnv.buildNodePackage { name = "postcss-neat"; packageName = "postcss-neat"; - version = "2.5.2"; + version = "2.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-neat/-/postcss-neat-2.5.2.tgz"; - sha1 = "3943f2dcf5f4182d2fcb33fd6be2fcbee8e6e158"; + url = "https://registry.npmjs.org/postcss-neat/-/postcss-neat-2.5.3.tgz"; + sha1 = "80984aed8733355fd64db9ae9ef30eccc406a55b"; }; dependencies = [ - (sources."babel-polyfill-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."babel-runtime-6.23.0" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."postcss-5.2.17" // { + sources."babel-polyfill-6.7.4" + sources."postcss-5.0.19" + sources."core-js-2.5.3" + sources."babel-regenerator-runtime-6.5.0" + (sources."babel-runtime-5.8.38" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."core-js-1.2.7" ]; }) + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68264,43 +46214,26 @@ in postcss-nested = nodeEnv.buildNodePackage { name = "postcss-nested"; packageName = "postcss-nested"; - version = "2.0.4"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-2.0.4.tgz"; - sha1 = "f2becb7c67b9a94fc43b59e4ef194c13d4349027"; + url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-3.0.0.tgz"; + sha1 = "cde40bd07a078565f3df72e2dc2665871c724852"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-3.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."dot-prop-4.2.0" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."is-obj-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -68321,34 +46254,21 @@ in dependencies = [ sources."escape-string-regexp-1.0.5" sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-resolve-nested-selector-0.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-resolve-nested-selector-0.1.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68367,34 +46287,21 @@ in sha1 = "2e53393f034f1dbd73a1e4fc131e09a56a2846f0"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68407,42 +46314,23 @@ in postcss-nested-props = nodeEnv.buildNodePackage { name = "postcss-nested-props"; packageName = "postcss-nested-props"; - version = "1.1.7"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-nested-props/-/postcss-nested-props-1.1.7.tgz"; - sha1 = "dd1d2912683974d81b98415d065b0655f463b836"; + url = "https://registry.npmjs.org/postcss-nested-props/-/postcss-nested-props-2.0.0.tgz"; + sha1 = "91ad31b05cbfbf0ff8a38b6c22ef46efbdb0b03a"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."pseudo-classes-1.0.0" sources."pseudo-elements-1.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68462,33 +46350,20 @@ in }; dependencies = [ sources."escape-string-regexp-1.0.5" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68501,40 +46376,21 @@ in postcss-nested-vars = nodeEnv.buildNodePackage { name = "postcss-nested-vars"; packageName = "postcss-nested-vars"; - version = "0.0.2"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-nested-vars/-/postcss-nested-vars-0.0.2.tgz"; - sha1 = "c215ee070ae19d6b371f40a4f1e24f490d769313"; + url = "https://registry.npmjs.org/postcss-nested-vars/-/postcss-nested-vars-1.0.0.tgz"; + sha1 = "483df85642d2b74b049d661417475479f6230753"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68547,36 +46403,21 @@ in postcss-nesting = nodeEnv.buildNodePackage { name = "postcss-nesting"; packageName = "postcss-nesting"; - version = "4.0.1"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-4.0.1.tgz"; - sha1 = "8fc2ce40cbfcfab7ee24e7b68fb6ebe84b641469"; + url = "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-4.2.1.tgz"; + sha1 = "0483bce338b3f0828ced90ff530b29b98b00300d"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68595,31 +46436,16 @@ in sha1 = "227c0beae79d9fb106707199e024470e1ddf28e9"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68637,34 +46463,21 @@ in sha1 = "6f0640d4f13df7e53505075d1a0ba58402e61f62"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68683,34 +46496,21 @@ in sha1 = "7dc16aaf1f26ec4717ef8677f633ce079e34671d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68729,36 +46529,19 @@ in sha1 = "12d05a6005661a7282034347b5d12ccf083bd119"; }; dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."browserslist-2.10.0" + sources."postcss-6.0.14" + sources."caniuse-lite-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68777,34 +46560,21 @@ in sha1 = "ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68817,43 +46587,25 @@ in postcss-normalize-positions = nodeEnv.buildNodePackage { name = "postcss-normalize-positions"; packageName = "postcss-normalize-positions"; - version = "4.0.0-rc.0"; + version = "4.0.0-rc.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.0-rc.0.tgz"; - sha1 = "6f095a558bf98f7c4f4483f2bc1c39b25f3fa54f"; + url = "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.0-rc.2.tgz"; + sha1 = "f12cb691438e8cb91abe914052ac2381e563da32"; }; dependencies = [ - sources."cssnano-util-get-arguments-4.0.0-rc.0" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."cssnano-util-get-arguments-4.0.0-rc.2" + sources."has-1.0.1" + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."function-bind-1.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68866,42 +46618,24 @@ in postcss-normalize-string = nodeEnv.buildNodePackage { name = "postcss-normalize-string"; packageName = "postcss-normalize-string"; - version = "4.0.0-rc.0"; + version = "4.0.0-rc.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.0-rc.0.tgz"; - sha1 = "12bf55d0664eadbf7718184bc060ecbac1b57291"; + url = "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.0-rc.2.tgz"; + sha1 = "924f2a98bf9b44d40591434acf8f31b71a977606"; }; dependencies = [ - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."has-1.0.1" + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."function-bind-1.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68914,37 +46648,22 @@ in postcss-normalize-unicode = nodeEnv.buildNodePackage { name = "postcss-normalize-unicode"; packageName = "postcss-normalize-unicode"; - version = "4.0.0-rc.0"; + version = "4.0.0-rc.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.0-rc.0.tgz"; - sha1 = "3a9eeb487f9c5cd5e126b4f0ce3ff55359f91dd0"; + url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.0-rc.2.tgz"; + sha1 = "953650b1449ec23da462fa45570435c43bed9dd6"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -68964,51 +46683,29 @@ in }; dependencies = [ sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."object-assign-4.1.1" - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."normalize-url-1.9.1" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."object-assign-4.1.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69028,51 +46725,29 @@ in }; dependencies = [ sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."object-assign-4.1.1" - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."normalize-url-1.9.1" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."object-assign-4.1.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69085,37 +46760,22 @@ in postcss-normalize-whitespace = nodeEnv.buildNodePackage { name = "postcss-normalize-whitespace"; packageName = "postcss-normalize-whitespace"; - version = "4.0.0-rc.0"; + version = "4.0.0-rc.2"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.0-rc.0.tgz"; - sha1 = "824e25fa793c5a75f1ae4bae4c8fa8e35f250658"; + url = "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.0-rc.2.tgz"; + sha1 = "d8df79a51bab0003d009226be0cb1af87f308f43"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69134,49 +46794,30 @@ in sha1 = "88a87df3cea31386252e43c0c6f7f50e9c125984"; }; dependencies = [ - (sources."clean-css-3.4.28" // { + sources."clean-css-3.4.28" + sources."normalize.css-5.0.0" + (sources."postcss-5.2.18" // { dependencies = [ - (sources."commander-2.8.1" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) + sources."source-map-0.5.7" ]; }) - sources."normalize.css-5.0.0" - (sources."postcss-5.2.17" // { + sources."commander-2.8.1" + sources."source-map-0.4.4" + sources."graceful-readlink-1.0.1" + sources."amdefine-1.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69195,34 +46836,21 @@ in sha1 = "341d51f0bf15f9f811edae27aafc1bbd4c6c4ac4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69241,44 +46869,25 @@ in sha1 = "d1783ced6d07371acb1a7a59a757c99cc7be836f"; }; dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."resolve-1.3.3" // { + sources."debug-2.6.9" + sources."postcss-5.2.18" + sources."resolve-1.5.0" + sources."ms-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."path-parse-1.0.5" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -69297,30 +46906,15 @@ in sha1 = "d38df7693a373779925f43ee1176e7259c5d9c74"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69339,34 +46933,21 @@ in sha1 = "6fb41b431f3eacad0678a47972f208977601803e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69384,48 +46965,32 @@ in sha1 = "8b773043db14672ef6cd6f2cb1f0d8b26a9f573b"; }; dependencies = [ - (sources."parse-css-font-2.0.2" // { - dependencies = [ - sources."css-font-size-keywords-1.0.0" - sources."css-font-stretch-keywords-1.0.1" - sources."css-font-style-keywords-1.0.1" - sources."css-font-weight-keywords-1.0.0" - sources."css-global-keywords-1.0.1" - sources."css-list-helpers-1.0.1" - sources."css-system-font-keywords-1.0.0" - sources."tcomb-2.7.0" - sources."unquote-1.1.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."parse-css-font-2.0.2" + sources."postcss-5.2.18" + sources."quote-0.4.0" + sources."css-font-size-keywords-1.0.0" + sources."css-font-stretch-keywords-1.0.1" + sources."css-font-style-keywords-1.0.1" + sources."css-font-weight-keywords-1.0.0" + sources."css-global-keywords-1.0.1" + sources."css-list-helpers-1.0.1" + sources."css-system-font-keywords-1.0.0" + sources."tcomb-2.7.0" + sources."unquote-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."quote-0.4.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69444,34 +47009,21 @@ in sha1 = "118280f60c8f8d1b00112bc007208af43679418b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69490,34 +47042,21 @@ in sha1 = "e2a885eb4e77f044ad33839e04ca7cccee56bae4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69536,34 +47075,21 @@ in sha1 = "e0ec97f7de733ba5ae31199f5cbb6c443c612ecc"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69576,40 +47102,21 @@ in postcss-opacity = nodeEnv.buildNodePackage { name = "postcss-opacity"; packageName = "postcss-opacity"; - version = "4.0.0"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-opacity/-/postcss-opacity-4.0.0.tgz"; - sha1 = "aa562043da3394c94a3acedcf43f0c323d0986a1"; + url = "https://registry.npmjs.org/postcss-opacity/-/postcss-opacity-5.0.0.tgz"; + sha1 = "6ea6deef4d5fc28dd4cf7af97dba2807b3e07c4c"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69628,35 +47135,22 @@ in sha1 = "eec6c2a67b6c412a8db2042e77fe8da43f95c11d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69675,34 +47169,21 @@ in sha1 = "407dcadb86529affafa4a9f8b4c4089c98303fc1"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69721,34 +47202,21 @@ in sha1 = "7ad5880b9843763bcbc77c3bfd78b0e28b77b064"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69767,30 +47235,15 @@ in sha1 = "0a4052bb4e574e57f0b99319ec6687bfc6d52abe"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69809,30 +47262,15 @@ in sha1 = "92074a9cd094445caf766992d790793972282969"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69851,34 +47289,21 @@ in sha1 = "a2951161d36709a587f8964c3301d82c4650b41f"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -69897,118 +47322,45 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-import-7.1.3" // { + sources."postcss-5.2.18" + sources."postcss-import-7.1.3" + sources."postcss-mixins-1.0.2" + sources."postcss-nested-1.0.1" + sources."postcss-simple-vars-1.2.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."postcss-mixins-1.0.2" // { - dependencies = [ - (sources."globby-3.0.1" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."arrify-1.0.1" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-1.0.0" // { - dependencies = [ - sources."pinkie-1.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-nested-1.0.1" - sources."postcss-simple-vars-1.2.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."glob-5.0.15" + sources."postcss-message-helpers-2.0.0" + sources."resolve-1.5.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."path-parse-1.0.5" + sources."globby-3.0.1" + sources."array-union-1.0.2" + sources."arrify-1.0.1" + sources."pify-2.3.0" + sources."pinkie-promise-1.0.0" + sources."array-uniq-1.0.3" + sources."pinkie-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70027,34 +47379,21 @@ in sha1 = "363b64a3b10573f362f87f3b8cd8a5602972fa7c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70074,34 +47413,21 @@ in }; dependencies = [ sources."lodash-3.10.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70120,34 +47446,21 @@ in sha1 = "eefe506f82a29343dd67eca6141bf4aa562e88a6"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70166,73 +47479,33 @@ in sha1 = "f6c3e78e7bbeda4d9dab96d360367b90b353f9a4"; }; dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."postcss-import-10.0.0" // { - dependencies = [ - sources."object-assign-4.1.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) + sources."glob-7.1.2" + sources."postcss-import-10.0.0" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."object-assign-4.1.1" + sources."postcss-6.0.14" + sources."postcss-value-parser-3.3.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -70245,40 +47518,21 @@ in postcss-pe = nodeEnv.buildNodePackage { name = "postcss-pe"; packageName = "postcss-pe"; - version = "1.1.1"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-pe/-/postcss-pe-1.1.1.tgz"; - sha1 = "7a5d1bf86a10a946fb67b8db01730ba9e95adc9d"; + url = "https://registry.npmjs.org/postcss-pe/-/postcss-pe-1.2.1.tgz"; + sha1 = "e823cb115a2f27910912809937abce361dd5af15"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70298,35 +47552,22 @@ in }; dependencies = [ sources."math-expression-evaluator-1.2.17" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70348,44 +47589,28 @@ in sources."comment-regex-1.0.0" sources."defined-1.0.0" sources."minimist-1.2.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-scss-0.3.1" sources."postcss-value-parser-3.3.0" - (sources."read-file-stdin-0.2.1" // { - dependencies = [ - sources."gather-stream-1.0.0" - ]; - }) + sources."read-file-stdin-0.2.1" sources."string.prototype.repeat-0.2.0" sources."vendors-1.0.1" sources."write-file-stdout-0.0.2" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."gather-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70404,117 +47629,70 @@ in sha1 = "f1e6bae8b2b58047b60d856852bb277c1d5da5b2"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) + sources."postcss-6.0.14" + sources."request-2.83.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" ]; buildInputs = globalBuildInputs; meta = { @@ -70533,31 +47711,16 @@ in sha1 = "9a78b0b57b2388a6a483ea89338b53c2f61446fb"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70576,34 +47739,21 @@ in sha1 = "2ad820d9e563c5d112a9dab1bf0eb8ed64cd0884"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70622,34 +47772,21 @@ in sha1 = "353d96f471b572485ba4156d43087dcf2d88f25b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70668,121 +47805,76 @@ in sha1 = "13ad862573fceef80ae28d7ddcf0f760409c4c9e"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."request-2.81.0" // { + sources."postcss-5.2.18" + sources."request-2.83.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" ]; buildInputs = globalBuildInputs; meta = { @@ -70801,30 +47893,15 @@ in sha1 = "913382228eeeab14252b574b7ca8bb2a1fae8d5b"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70842,30 +47919,15 @@ in sha1 = "383fe9c6436c0177999d7aa3f86eeac065e3b626"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70883,34 +47945,21 @@ in sha1 = "e9a3cf6a9082826daa9e2530b21b672a45f1c82c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70929,34 +47978,21 @@ in sha1 = "ba1a467969d5dfbf812b596974538a55535f5ef7"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -70975,50 +48011,18 @@ in sha1 = "7e7adf8bc42862b541b37dc0251416594c4f9987"; }; dependencies = [ - (sources."postcss-5.2.17" // { + (sources."postcss-5.2.18" // { dependencies = [ (sources."chalk-1.1.3" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) sources."supports-color-2.0.0" ]; }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) ]; }) (sources."css-2.2.1" // { dependencies = [ - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."source-map-resolve-0.3.1" // { - dependencies = [ - sources."source-map-url-0.3.0" - sources."atob-1.1.3" - sources."resolve-url-0.2.1" - ]; - }) - sources."urix-0.1.0" - sources."inherits-2.0.3" + sources."source-map-0.1.43" ]; }) sources."extend-2.0.1" @@ -71026,65 +48030,47 @@ in (sources."chalk-0.5.1" // { dependencies = [ sources."ansi-styles-1.1.0" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-0.1.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - (sources."strip-ansi-0.3.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) + sources."has-ansi-0.1.0" + sources."strip-ansi-0.3.0" sources."supports-color-0.2.0" + sources."ansi-regex-0.2.1" ]; }) - (sources."fs-extra-0.16.5" // { + sources."fs-extra-0.16.5" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."source-map-resolve-0.3.1" + sources."urix-0.1.0" + sources."inherits-2.0.3" + sources."amdefine-1.0.1" + sources."source-map-url-0.3.0" + sources."atob-1.1.3" + sources."resolve-url-0.2.1" + sources."graceful-fs-3.0.11" + (sources."jsonfile-2.4.0" // { dependencies = [ - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."jsonfile-2.4.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) + sources."graceful-fs-4.1.11" ]; }) + sources."rimraf-2.6.2" + sources."natives-1.1.1" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -71097,254 +48083,137 @@ in postcss-plugins = nodeEnv.buildNodePackage { name = "postcss-plugins"; packageName = "postcss-plugins"; - version = "1.9.12"; + version = "1.10.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-plugins/-/postcss-plugins-1.10.1.tgz"; + sha1 = "fe68730c7087321002401c0ebbaff4cd41277e1b"; + }; + dependencies = [ + sources."chalk-2.3.0" + sources."inquirer-3.3.0" + sources."octonode-0.9.1" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."supports-color-4.5.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."ansi-escapes-3.0.0" + sources."cli-cursor-2.1.0" + sources."cli-width-2.2.0" + sources."external-editor-2.1.0" + sources."figures-2.0.0" + sources."lodash-4.17.4" + sources."mute-stream-0.0.7" + sources."run-async-2.3.0" + sources."rx-lite-4.0.8" + sources."rx-lite-aggregates-4.0.8" + sources."string-width-2.1.1" + sources."strip-ansi-4.0.0" + sources."through-2.3.8" + sources."restore-cursor-2.0.0" + sources."onetime-2.0.1" + sources."signal-exit-3.0.2" + sources."mimic-fn-1.1.0" + sources."chardet-0.4.2" + sources."iconv-lite-0.4.19" + sources."tmp-0.0.33" + sources."os-tmpdir-1.0.2" + sources."is-promise-2.1.0" + sources."is-fullwidth-code-point-2.0.0" + sources."ansi-regex-3.0.0" + sources."bluebird-3.5.1" + sources."deep-extend-0.4.2" + sources."randomstring-1.1.5" + sources."request-2.83.0" + sources."array-uniq-1.0.2" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "A consolidated list of PostCSS plugins in an ready-to-use format."; + homepage = "https://github.com/himynameisdave/postcss-plugins#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-plumber = nodeEnv.buildNodePackage { + name = "postcss-plumber"; + packageName = "postcss-plumber"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-plugins/-/postcss-plugins-1.9.12.tgz"; - sha1 = "952c184061237c9d5aca05cf00a9cd50c18358bb"; + url = "https://registry.npmjs.org/postcss-plumber/-/postcss-plumber-0.3.0.tgz"; + sha1 = "80cb2953d83ec9212c0c3721325ae8358880349e"; }; dependencies = [ + sources."postcss-5.2.18" (sources."chalk-1.1.3" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) sources."supports-color-2.0.0" ]; }) - (sources."inquirer-1.2.3" // { - dependencies = [ - sources."ansi-escapes-1.4.0" - (sources."cli-cursor-1.0.2" // { - dependencies = [ - (sources."restore-cursor-1.0.1" // { - dependencies = [ - sources."exit-hook-1.1.1" - sources."onetime-1.1.0" - ]; - }) - ]; - }) - sources."cli-width-2.1.0" - (sources."external-editor-1.1.1" // { - dependencies = [ - sources."extend-3.0.1" - (sources."spawn-sync-1.0.15" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."os-shim-0.1.3" - ]; - }) - (sources."tmp-0.0.29" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."figures-1.7.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - sources."object-assign-4.1.1" - ]; - }) - sources."lodash-4.17.4" - sources."mute-stream-0.0.6" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."run-async-2.3.0" // { - dependencies = [ - sources."is-promise-2.1.0" - ]; - }) - sources."rx-4.1.0" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."through-2.3.8" - ]; - }) - (sources."octonode-0.7.13" // { - dependencies = [ - sources."deep-extend-0.4.2" - (sources."randomstring-1.1.5" // { - dependencies = [ - sources."array-uniq-1.0.2" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A consolidated list of PostCSS plugins in an ready-to-use format."; - homepage = "https://github.com/himynameisdave/postcss-plugins#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-plumber = nodeEnv.buildNodePackage { - name = "postcss-plumber"; - packageName = "postcss-plumber"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-plumber/-/postcss-plumber-0.3.0.tgz"; - sha1 = "80cb2953d83ec9212c0c3721325ae8358880349e"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71363,17 +48232,11 @@ in sha1 = "5d39c02d1562ea1fb383c112cff292ef5eaa5f53"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -71392,34 +48255,21 @@ in sha1 = "21a3ff584bec50d3ff6b83358a72a98619a72e09"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71438,34 +48288,21 @@ in sha1 = "94b92ce90a45fbce164cfff3d538d2373718b56c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71484,31 +48321,16 @@ in sha1 = "8da004a24ec877fe84d5ede936e19e52cf141eb1"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71527,34 +48349,21 @@ in sha1 = "79b21e8119e75d886ae203203553649632511f0e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71567,40 +48376,21 @@ in postcss-position = nodeEnv.buildNodePackage { name = "postcss-position"; packageName = "postcss-position"; - version = "0.5.0"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-position/-/postcss-position-0.5.0.tgz"; - sha1 = "8653d4f0b84ffb07e544fb7f7eae08c6551b73a0"; + url = "https://registry.npmjs.org/postcss-position/-/postcss-position-1.0.0.tgz"; + sha1 = "30cbeee408f26a6dbebbf61261ca210e548c77ff"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71619,30 +48409,15 @@ in sha1 = "faf5671e32f45c092a48df0290719d2daaa0cb1b"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71661,30 +48436,15 @@ in sha1 = "407b7801fe34de0037cd480128539d9e6bf994d0"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71703,34 +48463,21 @@ in sha1 = "dafffc69fe1273f4703f86a0e98ed877a213e2bc"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71749,34 +48496,21 @@ in sha1 = "b7598492aa601003f506df8693534d42fe2d0197"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71795,17 +48529,11 @@ in sha1 = "b179ba6e0a9c9e54c4a2db3ede2c0488d21fbe51"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -71824,17 +48552,11 @@ in sha1 = "6e2e1e78f2aa9864ac8614e41dcbd2033d1d0f75"; }; dependencies = [ - (sources."postcss-5.0.19" // { - dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-5.0.19" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71853,34 +48575,21 @@ in sha1 = "b495949d639c63147145648326853216f3c10900"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -71899,72 +48608,37 @@ in sha1 = "05abbb0513e731cb32e04e781b2df35b9d9ab766"; }; dependencies = [ - (sources."consistent-1.1.0" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."murmurhash-0.0.2" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-functions-2.1.1" // { + sources."consistent-1.1.0" + sources."postcss-5.2.18" + sources."postcss-functions-2.1.1" + sources."lru-cache-2.7.3" + sources."murmurhash-0.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."glob-5.0.15" + sources."object-assign-4.1.1" + sources."postcss-value-parser-3.3.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -71983,51 +48657,29 @@ in sha1 = "4b32bec44dfc4fd69ee2774b9fd4f7957cda1249"; }; dependencies = [ - (sources."css-selector-tokenizer-0.7.0" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - (sources."regexpu-core-1.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."css-selector-tokenizer-0.7.0" + sources."postcss-5.2.18" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."regexpu-core-1.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72046,34 +48698,21 @@ in sha1 = "ff8399055c24d68909036de0e7b7c10975aac12f"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72091,34 +48730,21 @@ in sha1 = "d2e994ffaaa0c8b891ba893a86b8564e2e6ceac7"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72130,40 +48756,27 @@ in postcss-prepend-selector = nodeEnv.buildNodePackage { name = "postcss-prepend-selector"; packageName = "postcss-prepend-selector"; - version = "0.3.0"; + version = "0.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-prepend-selector/-/postcss-prepend-selector-0.3.0.tgz"; - sha1 = "94088648aeb4ff2cfb32a35f0c5ecd669a70e1c0"; + url = "https://registry.npmjs.org/postcss-prepend-selector/-/postcss-prepend-selector-0.3.1.tgz"; + sha1 = "daa54e93ed48be090d8e72a90342fdf438a4a143"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72183,34 +48796,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72229,35 +48829,22 @@ in sha1 = "6ae3bc74134cb7ccabdac3f976b62112f9cdabb9"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-2.0.5" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-2.0.5" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72277,17 +48864,11 @@ in }; dependencies = [ sources."defined-1.0.0" - (sources."postcss-5.0.19" // { - dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-5.0.19" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72306,34 +48887,21 @@ in sha1 = "eeec8190c3a6451a27f623a95183257299789353"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72352,34 +48920,21 @@ in sha1 = "bdd760a43da14c193797121bffb12afa0bff039c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72399,31 +48954,16 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."tcomb-3.2.21" + sources."postcss-6.0.14" + sources."tcomb-3.2.24" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72442,34 +48982,21 @@ in sha1 = "0e239c2d0f2f36b6e67b6b5f9b8310f2f63f90c4"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72488,41 +49015,25 @@ in sha1 = "bf9e0a1311337bb4ef71d51e7de6d2d85f7a3fd7"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -72541,37 +49052,19 @@ in sha1 = "9152a0613d3450720513e8892854bae42d0ee68e"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-2.2.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -72590,41 +49083,25 @@ in sha1 = "5e60e91d1dc7fe5e07b8c4c84fb1a599e26943de"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -72643,34 +49120,21 @@ in sha1 = "c65b5802f8f339ceb7d23f2368bc01bce68964de"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72689,34 +49153,21 @@ in sha1 = "d711900b4f4e98aa17dad8e20acc5794cac9fb38"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72735,34 +49186,21 @@ in sha1 = "2dcce4d1590f9adf20fa0f2b6e15ee1f4e2c61cf"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72781,17 +49219,11 @@ in sha1 = "128276fe1866887365b2708b6adefde86052bd01"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -72810,30 +49242,15 @@ in sha1 = "eef194e8d524645ca520a949e95e518e812402cb"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72853,17 +49270,11 @@ in }; dependencies = [ sources."lodash-3.10.1" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -72883,34 +49294,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72930,34 +49328,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -72976,120 +49361,64 @@ in sha1 = "0dfa4e8a268fa7478273f0c4b47c619834894041"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."px2rem-0.5.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."chalk-0.5.1" + sources."ansi-styles-1.1.0" + sources."has-ansi-0.1.0" + sources."strip-ansi-0.3.0" + sources."supports-color-0.2.0" + sources."ansi-regex-0.2.1" ]; }) - (sources."px2rem-0.5.0" // { + (sources."chalk-1.1.3" // { dependencies = [ - (sources."css-2.2.1" // { - dependencies = [ - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."source-map-resolve-0.3.1" // { - dependencies = [ - sources."source-map-url-0.3.0" - sources."atob-1.1.3" - sources."resolve-url-0.2.1" - ]; - }) - sources."urix-0.1.0" - sources."inherits-2.0.3" - ]; - }) - sources."extend-3.0.1" - sources."commander-2.6.0" - (sources."chalk-0.5.1" // { - dependencies = [ - sources."ansi-styles-1.1.0" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-0.1.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - (sources."strip-ansi-0.3.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - sources."supports-color-0.2.0" - ]; - }) - (sources."fs-extra-0.16.5" // { - dependencies = [ - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."jsonfile-2.4.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - ]; - }) + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + (sources."css-2.2.1" // { + dependencies = [ + sources."source-map-0.1.43" + ]; + }) + sources."extend-3.0.1" + sources."commander-2.6.0" + sources."fs-extra-0.16.5" + sources."source-map-resolve-0.3.1" + sources."urix-0.1.0" + sources."inherits-2.0.3" + sources."amdefine-1.0.1" + sources."source-map-url-0.3.0" + sources."atob-1.1.3" + sources."resolve-url-0.2.1" + sources."graceful-fs-3.0.11" + (sources."jsonfile-2.4.0" // { + dependencies = [ + sources."graceful-fs-4.1.11" ]; }) + sources."rimraf-2.6.2" + sources."natives-1.1.1" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -73108,120 +49437,64 @@ in sha1 = "19d91587c19f6a86828b9f22e8196f5520aa4d6a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."px2rem-dpr-0.6.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."chalk-0.5.1" + sources."ansi-styles-1.1.0" + sources."has-ansi-0.1.0" + sources."strip-ansi-0.3.0" + sources."supports-color-0.2.0" + sources."ansi-regex-0.2.1" ]; }) - (sources."px2rem-dpr-0.6.1" // { + (sources."chalk-1.1.3" // { dependencies = [ - (sources."css-2.2.1" // { - dependencies = [ - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."source-map-resolve-0.3.1" // { - dependencies = [ - sources."source-map-url-0.3.0" - sources."atob-1.1.3" - sources."resolve-url-0.2.1" - ]; - }) - sources."urix-0.1.0" - sources."inherits-2.0.3" - ]; - }) - sources."extend-3.0.1" - sources."commander-2.6.0" - (sources."chalk-0.5.1" // { - dependencies = [ - sources."ansi-styles-1.1.0" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-0.1.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - (sources."strip-ansi-0.3.0" // { - dependencies = [ - sources."ansi-regex-0.2.1" - ]; - }) - sources."supports-color-0.2.0" - ]; - }) - (sources."fs-extra-0.16.5" // { - dependencies = [ - (sources."graceful-fs-3.0.11" // { - dependencies = [ - sources."natives-1.1.0" - ]; - }) - (sources."jsonfile-2.4.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - ]; - }) + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + (sources."css-2.2.1" // { + dependencies = [ + sources."source-map-0.1.43" ]; }) + sources."extend-3.0.1" + sources."commander-2.6.0" + sources."fs-extra-0.16.5" + sources."source-map-resolve-0.3.1" + sources."urix-0.1.0" + sources."inherits-2.0.3" + sources."amdefine-1.0.1" + sources."source-map-url-0.3.0" + sources."atob-1.1.3" + sources."resolve-url-0.2.1" + sources."graceful-fs-3.0.11" + (sources."jsonfile-2.4.0" // { + dependencies = [ + sources."graceful-fs-4.1.11" + ]; + }) + sources."rimraf-2.6.2" + sources."natives-1.1.1" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -73240,34 +49513,21 @@ in sha1 = "1fdad2e6be760f622c76aa6a6e242e6b5c57776c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73287,34 +49547,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73327,47 +49574,38 @@ in postcss-pxtorem-dpr = nodeEnv.buildNodePackage { name = "postcss-pxtorem-dpr"; packageName = "postcss-pxtorem-dpr"; - version = "0.1.2"; + version = "0.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-pxtorem-dpr/-/postcss-pxtorem-dpr-0.1.2.tgz"; - sha1 = "251b1ebce7b81dc5912bcc904c0f146f2809840c"; + url = "https://registry.npmjs.org/postcss-pxtorem-dpr/-/postcss-pxtorem-dpr-0.2.5.tgz"; + sha1 = "d9ef718f2404a16cc0ced7a4523f167953d3d8b9"; }; dependencies = [ - sources."bson-1.0.4" - sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."css-2.2.1" + (sources."postcss-6.0.14" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."source-map-0.6.1" ]; }) + sources."source-map-0.1.43" + sources."source-map-resolve-0.3.1" + sources."urix-0.1.0" + sources."inherits-2.0.3" + sources."amdefine-1.0.1" + sources."source-map-url-0.3.0" + sources."atob-1.1.3" + sources."resolve-url-0.2.1" + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { description = "A CSS post-processor that converts px to rem."; - homepage = https://github.com/525729985/postcss-pxtorem-dpr; + homepage = "https://github.com/525729985/postcss-pxtorem-dpr#readme"; license = "MIT"; }; production = true; @@ -73375,41 +49613,28 @@ in postcss-pxtorem-plus = nodeEnv.buildNodePackage { name = "postcss-pxtorem-plus"; packageName = "postcss-pxtorem-plus"; - version = "3.4.1"; + version = "3.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-pxtorem-plus/-/postcss-pxtorem-plus-3.4.1.tgz"; - sha1 = "b643c52926c478965e823b7131d707846fec25df"; + url = "https://registry.npmjs.org/postcss-pxtorem-plus/-/postcss-pxtorem-plus-3.5.1.tgz"; + sha1 = "482f0b764ba8074480c0c5edf176b8c25a3bd3f2"; }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73429,34 +49654,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73476,30 +49688,15 @@ in }; dependencies = [ sources."balanced-match-0.4.2" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73518,34 +49715,21 @@ in sha1 = "b1da35e0df6ee8a252bd89e8b13c8a19b4236a31"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73564,34 +49748,21 @@ in sha1 = "704b5c22c8b4e8ed80e05e01cba502fc4ddced6f"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73610,36 +49781,23 @@ in sha1 = "83f531ca3a9f5e2c15319a047b1c0b3f8340579f"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."randomcolor-0.4.4" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - sources."randomcolor-0.4.4" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73658,34 +49816,21 @@ in sha1 = "b1abe6f6749304488792ece8298725d50703f983"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73705,34 +49850,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -73751,81 +49883,40 @@ in sha1 = "52069e28ecc1a1af1388bdb9008d0d324a24506a"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."rcs-core-0.11.1" // { + sources."postcss-6.0.14" + sources."rcs-core-0.11.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."array-includes-3.0.3" + sources."decimal-to-any-1.0.0" + sources."fs-extra-2.1.2" + (sources."json-extra-0.5.0" // { dependencies = [ - (sources."array-includes-3.0.3" // { - dependencies = [ - (sources."define-properties-1.1.2" // { - dependencies = [ - sources."foreach-2.0.5" - sources."object-keys-1.0.11" - ]; - }) - (sources."es-abstract-1.7.0" // { - dependencies = [ - sources."function-bind-1.1.0" - sources."is-callable-1.1.3" - (sources."es-to-primitive-1.1.1" // { - dependencies = [ - sources."is-date-object-1.0.1" - sources."is-symbol-1.0.1" - ]; - }) - (sources."is-regex-1.0.4" // { - dependencies = [ - sources."has-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."decimal-to-any-1.0.0" - (sources."fs-extra-2.1.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - ]; - }) - (sources."json-extra-0.5.0" // { - dependencies = [ - (sources."fs-extra-1.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - ]; - }) - sources."lodash.includes-4.3.0" - ]; - }) - sources."lodash-4.17.4" + sources."fs-extra-1.0.0" ]; }) + sources."lodash-4.17.4" + sources."define-properties-1.1.2" + sources."es-abstract-1.10.0" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."es-to-primitive-1.1.1" + sources."function-bind-1.1.1" + sources."has-1.0.1" + sources."is-callable-1.1.3" + sources."is-regex-1.0.4" + sources."is-date-object-1.0.1" + sources."is-symbol-1.0.1" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."lodash.includes-4.3.0" + sources."klaw-1.3.1" ]; buildInputs = globalBuildInputs; meta = { @@ -73845,1988 +49936,345 @@ in }; dependencies = [ sources."esprima-fb-15001.1001.0-dev-harmony-fb" - (sources."glob-6.0.4" // { + sources."glob-6.0.4" + (sources."jscodeshift-0.3.32" // { dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" + sources."recast-0.12.9" + sources."ast-types-0.10.1" + sources."core-js-2.5.3" + sources."esprima-4.0.0" + sources."source-map-0.6.1" ]; }) - (sources."jscodeshift-0.3.32" // { + sources."lodash-4.17.4" + sources."postcss-selector-parser-1.3.3" + (sources."postcss-5.2.18" // { dependencies = [ - sources."async-1.5.2" - (sources."babel-core-5.8.38" // { - dependencies = [ - sources."babel-plugin-constant-folding-1.0.1" - sources."babel-plugin-dead-code-elimination-1.0.2" - sources."babel-plugin-eval-1.0.1" - sources."babel-plugin-inline-environment-variables-1.0.1" - sources."babel-plugin-jscript-1.0.4" - sources."babel-plugin-member-expression-literals-1.0.1" - sources."babel-plugin-property-literals-1.0.1" - sources."babel-plugin-proto-to-assign-1.0.4" - sources."babel-plugin-react-constant-elements-1.0.3" - sources."babel-plugin-react-display-name-1.0.3" - sources."babel-plugin-remove-console-1.0.1" - sources."babel-plugin-remove-debugger-1.0.1" - sources."babel-plugin-runtime-1.0.7" - (sources."babel-plugin-undeclared-variables-check-1.0.2" // { - dependencies = [ - sources."leven-1.0.2" - ]; - }) - sources."babel-plugin-undefined-to-void-1.1.6" - sources."babylon-5.8.38" - sources."bluebird-2.11.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."convert-source-map-1.5.0" - sources."core-js-1.2.7" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."detect-indent-3.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - sources."minimist-1.2.0" - ]; - }) - sources."esutils-2.0.2" - sources."fs-readdir-recursive-0.1.2" - sources."globals-6.4.1" - (sources."home-or-tmp-1.0.0" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."user-home-1.1.1" - ]; - }) - (sources."is-integer-1.0.7" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."js-tokens-1.0.1" - sources."json5-0.4.0" - sources."lodash-3.10.1" - (sources."minimatch-2.0.10" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."output-file-sync-1.1.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."object-assign-4.1.1" - ]; - }) - sources."path-exists-1.0.0" - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - (sources."regenerator-0.8.40" // { - dependencies = [ - (sources."commoner-0.10.8" // { - dependencies = [ - sources."commander-2.11.0" - (sources."detective-4.5.0" // { - dependencies = [ - sources."acorn-4.0.13" - sources."defined-1.0.0" - ]; - }) - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - sources."iconv-lite-0.4.18" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."q-1.5.0" - (sources."recast-0.11.23" // { - dependencies = [ - sources."ast-types-0.9.6" - sources."esprima-3.1.3" - ]; - }) - ]; - }) - (sources."defs-1.1.1" // { - dependencies = [ - (sources."alter-0.2.0" // { - dependencies = [ - sources."stable-0.1.6" - ]; - }) - sources."ast-traverse-0.1.1" - sources."breakable-1.0.0" - sources."simple-fmt-0.1.0" - sources."simple-is-0.2.0" - sources."stringmap-0.2.2" - sources."stringset-0.2.1" - sources."tryor-0.1.2" - (sources."yargs-3.27.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - (sources."os-locale-1.4.0" // { - dependencies = [ - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - ]; - }) - sources."window-size-0.1.4" - sources."y18n-3.2.1" - ]; - }) - ]; - }) - (sources."recast-0.10.33" // { - dependencies = [ - sources."ast-types-0.8.12" - ]; - }) - sources."through-2.3.8" - ]; - }) - (sources."regexpu-1.3.0" // { - dependencies = [ - sources."esprima-2.7.3" - (sources."recast-0.10.43" // { - dependencies = [ - sources."ast-types-0.8.15" - ]; - }) - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - (sources."repeating-1.1.3" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - sources."shebang-regex-1.0.0" - sources."slash-1.0.0" - sources."source-map-0.5.6" - (sources."source-map-support-0.2.10" // { - dependencies = [ - (sources."source-map-0.1.32" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - sources."to-fast-properties-1.0.3" - sources."trim-right-1.0.1" - sources."try-resolve-1.0.1" - ]; - }) - (sources."babel-plugin-transform-flow-strip-types-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."babel-plugin-syntax-flow-6.18.0" - ]; - }) - (sources."babel-preset-es2015-6.24.1" // { - dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-arrow-functions-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-block-scoping-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-classes-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-helper-replace-supers-6.24.1" - sources."babel-template-6.25.0" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."babel-helper-define-map-6.24.1" - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-computed-properties-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-for-of-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - sources."babel-template-6.25.0" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-amd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-helper-hoist-variables-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-umd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-object-super-6.24.1" // { - dependencies = [ - (sources."babel-helper-replace-supers-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - sources."babel-template-6.25.0" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - sources."babel-helper-regex-6.24.1" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-template-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-regenerator-6.24.1" // { - dependencies = [ - (sources."regenerator-transform-0.9.11" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."private-0.1.7" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-preset-stage-1-6.24.1" // { - dependencies = [ - (sources."babel-plugin-transform-class-constructor-call-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-class-constructor-call-6.18.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-export-extensions-6.22.0" // { - dependencies = [ - sources."babel-plugin-syntax-export-extensions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-preset-stage-2-6.24.1" // { - dependencies = [ - (sources."babel-plugin-transform-class-properties-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-plugin-syntax-class-properties-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-decorators-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babel-plugin-syntax-decorators-6.13.0" - (sources."babel-helper-explode-class-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."babel-helper-bindify-decorators-6.24.1" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-dynamic-import-6.18.0" - (sources."babel-preset-stage-3-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-generator-functions-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - sources."babel-template-6.25.0" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-generators-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - sources."babel-template-6.25.0" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-object-rest-spread-6.23.0" // { - dependencies = [ - sources."babel-plugin-syntax-object-rest-spread-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."convert-source-map-1.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."json5-0.5.1" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - sources."source-map-0.5.6" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - ]; - }) - sources."babylon-6.17.4" - sources."colors-1.1.2" - sources."flow-parser-0.50.0" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - sources."node-dir-0.1.8" - (sources."nomnom-1.8.1" // { - dependencies = [ - sources."underscore-1.6.0" - (sources."chalk-0.4.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."ansi-styles-1.0.0" - sources."strip-ansi-0.1.1" - ]; - }) - ]; - }) - (sources."recast-0.12.6" // { - dependencies = [ - sources."ast-types-0.9.11" - sources."core-js-2.4.1" - sources."esprima-4.0.0" - sources."private-0.1.7" - sources."source-map-0.5.6" - ]; - }) - (sources."temp-0.8.3" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."rimraf-2.2.8" - ]; - }) - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) + sources."supports-color-3.2.3" ]; }) - sources."lodash-4.17.4" - (sources."postcss-selector-parser-1.3.3" // { + (sources."recast-0.11.23" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."ast-types-0.9.6" + sources."esprima-3.1.3" ]; }) - (sources."postcss-5.2.17" // { + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."async-1.5.2" + (sources."babel-core-5.8.38" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."babylon-5.8.38" + sources."lodash-3.10.1" + sources."minimatch-2.0.10" ]; }) - (sources."recast-0.11.23" // { + sources."babel-plugin-transform-flow-strip-types-6.22.0" + sources."babel-preset-es2015-6.24.1" + sources."babel-preset-stage-1-6.24.1" + (sources."babel-register-6.26.0" // { dependencies = [ - sources."ast-types-0.9.6" - sources."esprima-3.1.3" - sources."private-0.1.7" - sources."source-map-0.5.6" + sources."babel-core-6.26.0" + sources."core-js-2.5.3" + sources."home-or-tmp-2.0.0" + sources."source-map-support-0.4.18" + sources."json5-0.5.1" ]; }) + sources."babylon-6.18.0" + sources."colors-1.1.2" + sources."flow-parser-0.62.0" + sources."micromatch-2.3.11" + sources."node-dir-0.1.8" + (sources."nomnom-1.8.1" // { + dependencies = [ + sources."chalk-0.4.0" + sources."ansi-styles-1.0.0" + sources."strip-ansi-0.1.1" + ]; + }) + sources."temp-0.8.3" + sources."write-file-atomic-1.3.4" + sources."babel-plugin-constant-folding-1.0.1" + sources."babel-plugin-dead-code-elimination-1.0.2" + sources."babel-plugin-eval-1.0.1" + sources."babel-plugin-inline-environment-variables-1.0.1" + sources."babel-plugin-jscript-1.0.4" + sources."babel-plugin-member-expression-literals-1.0.1" + sources."babel-plugin-property-literals-1.0.1" + (sources."babel-plugin-proto-to-assign-1.0.4" // { + dependencies = [ + sources."lodash-3.10.1" + ]; + }) + sources."babel-plugin-react-constant-elements-1.0.3" + sources."babel-plugin-react-display-name-1.0.3" + sources."babel-plugin-remove-console-1.0.1" + sources."babel-plugin-remove-debugger-1.0.1" + sources."babel-plugin-runtime-1.0.7" + sources."babel-plugin-undeclared-variables-check-1.0.2" + sources."babel-plugin-undefined-to-void-1.1.6" + sources."bluebird-2.11.0" + sources."chalk-1.1.3" + sources."convert-source-map-1.5.1" + sources."core-js-1.2.7" + sources."debug-2.6.9" + sources."detect-indent-3.0.1" + sources."esutils-2.0.2" + sources."fs-readdir-recursive-0.1.2" + sources."globals-6.4.1" + sources."home-or-tmp-1.0.0" + sources."is-integer-1.0.7" + sources."js-tokens-1.0.1" + sources."json5-0.4.0" + sources."output-file-sync-1.1.2" + sources."path-exists-1.0.0" + sources."private-0.1.8" + (sources."regenerator-0.8.40" // { + dependencies = [ + sources."recast-0.10.33" + ]; + }) + (sources."regexpu-1.3.0" // { + dependencies = [ + sources."recast-0.10.43" + sources."ast-types-0.8.15" + ]; + }) + sources."repeating-1.1.3" + sources."resolve-1.5.0" + sources."shebang-regex-1.0.0" + sources."slash-1.0.0" + sources."source-map-0.5.7" + (sources."source-map-support-0.2.10" // { + dependencies = [ + sources."source-map-0.1.32" + ]; + }) + sources."to-fast-properties-1.0.3" + sources."trim-right-1.0.1" + sources."try-resolve-1.0.1" + sources."leven-1.0.2" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."ms-2.0.0" + sources."get-stdin-4.0.1" + sources."minimist-1.2.0" + sources."os-tmpdir-1.0.2" + sources."user-home-1.1.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."graceful-fs-4.1.11" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."object-assign-4.1.1" + (sources."commoner-0.10.8" // { + dependencies = [ + sources."glob-5.0.15" + ]; + }) + sources."defs-1.1.1" + sources."through-2.3.8" + sources."commander-2.12.2" + sources."detective-4.7.1" + sources."iconv-lite-0.4.19" + sources."q-1.5.1" + sources."acorn-5.2.1" + sources."defined-1.0.0" + sources."alter-0.2.0" + sources."ast-traverse-0.1.1" + sources."breakable-1.0.0" + sources."simple-fmt-0.1.0" + sources."simple-is-0.2.0" + sources."stringmap-0.2.2" + sources."stringset-0.2.1" + sources."tryor-0.1.2" + sources."yargs-3.27.0" + sources."stable-0.1.6" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."os-locale-1.4.0" + sources."window-size-0.1.4" + sources."y18n-3.2.1" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + sources."is-buffer-1.1.6" + sources."lcid-1.0.0" + sources."invert-kv-1.0.0" + sources."ast-types-0.8.12" + sources."esprima-2.7.3" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."path-parse-1.0.5" + sources."amdefine-1.0.1" + (sources."babel-runtime-6.26.0" // { + dependencies = [ + sources."core-js-2.5.3" + ]; + }) + sources."babel-plugin-syntax-flow-6.18.0" + sources."regenerator-runtime-0.11.1" + sources."babel-plugin-check-es2015-constants-6.22.0" + sources."babel-plugin-transform-es2015-arrow-functions-6.22.0" + sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0" + sources."babel-plugin-transform-es2015-block-scoping-6.26.0" + sources."babel-plugin-transform-es2015-classes-6.24.1" + sources."babel-plugin-transform-es2015-computed-properties-6.24.1" + sources."babel-plugin-transform-es2015-destructuring-6.23.0" + sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1" + sources."babel-plugin-transform-es2015-for-of-6.23.0" + sources."babel-plugin-transform-es2015-function-name-6.24.1" + sources."babel-plugin-transform-es2015-literals-6.22.0" + sources."babel-plugin-transform-es2015-modules-amd-6.24.1" + sources."babel-plugin-transform-es2015-modules-commonjs-6.26.0" + sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" + sources."babel-plugin-transform-es2015-modules-umd-6.24.1" + sources."babel-plugin-transform-es2015-object-super-6.24.1" + sources."babel-plugin-transform-es2015-parameters-6.24.1" + sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1" + sources."babel-plugin-transform-es2015-spread-6.22.0" + sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" + sources."babel-plugin-transform-es2015-template-literals-6.22.0" + sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0" + sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" + sources."babel-plugin-transform-regenerator-6.26.0" + sources."babel-template-6.26.0" + (sources."babel-traverse-6.26.0" // { + dependencies = [ + sources."globals-9.18.0" + ]; + }) + sources."babel-types-6.26.0" + (sources."babel-code-frame-6.26.0" // { + dependencies = [ + sources."js-tokens-3.0.2" + ]; + }) + sources."babel-messages-6.23.0" + sources."invariant-2.2.2" + (sources."loose-envify-1.3.1" // { + dependencies = [ + sources."js-tokens-3.0.2" + ]; + }) + sources."babel-helper-optimise-call-expression-6.24.1" + sources."babel-helper-function-name-6.24.1" + sources."babel-helper-replace-supers-6.24.1" + sources."babel-helper-define-map-6.26.0" + sources."babel-helper-get-function-arity-6.24.1" + sources."babel-plugin-transform-strict-mode-6.24.1" + sources."babel-helper-hoist-variables-6.24.1" + sources."babel-helper-call-delegate-6.24.1" + sources."babel-helper-regex-6.26.0" + sources."regexpu-core-2.0.0" + sources."regenerator-transform-0.10.1" + sources."babel-plugin-transform-class-constructor-call-6.24.1" + sources."babel-plugin-transform-export-extensions-6.22.0" + sources."babel-preset-stage-2-6.24.1" + sources."babel-plugin-syntax-class-constructor-call-6.18.0" + sources."babel-plugin-syntax-export-extensions-6.13.0" + sources."babel-plugin-transform-class-properties-6.24.1" + sources."babel-plugin-transform-decorators-6.24.1" + sources."babel-plugin-syntax-dynamic-import-6.18.0" + sources."babel-preset-stage-3-6.24.1" + sources."babel-plugin-syntax-class-properties-6.13.0" + sources."babel-plugin-syntax-decorators-6.13.0" + sources."babel-helper-explode-class-6.24.1" + sources."babel-helper-bindify-decorators-6.24.1" + sources."babel-plugin-syntax-trailing-function-commas-6.22.0" + sources."babel-plugin-transform-async-generator-functions-6.24.1" + sources."babel-plugin-transform-async-to-generator-6.24.1" + sources."babel-plugin-transform-exponentiation-operator-6.24.1" + sources."babel-plugin-transform-object-rest-spread-6.26.0" + sources."babel-helper-remap-async-to-generator-6.24.1" + sources."babel-plugin-syntax-async-generators-6.13.0" + sources."babel-plugin-syntax-async-functions-6.13.0" + sources."babel-plugin-syntax-exponentiation-operator-6.13.0" + sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" + sources."babel-helper-explode-assignable-expression-6.24.1" + sources."babel-plugin-syntax-object-rest-spread-6.13.0" + (sources."babel-generator-6.26.0" // { + dependencies = [ + sources."detect-indent-4.0.0" + sources."jsesc-1.3.0" + sources."repeating-2.0.1" + ]; + }) + sources."babel-helpers-6.24.1" + sources."os-homedir-1.0.2" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + sources."normalize-path-2.1.1" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."isarray-1.0.0" + sources."is-posix-bracket-0.1.1" + sources."remove-trailing-separator-1.1.0" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."glob-parent-2.0.0" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."underscore-1.6.0" + sources."has-color-0.1.7" + sources."rimraf-2.2.8" + sources."imurmurhash-0.1.4" + sources."slide-1.1.6" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -75845,78 +50293,50 @@ in sha1 = "1847690a0fdb3941be0b7f7ac0c7e786a25a8ee4"; }; dependencies = [ - (sources."css-border-property-1.1.0" // { - dependencies = [ - sources."is-border-style-0.1.0" - (sources."is-color-0.2.0" // { - dependencies = [ - sources."css-color-names-0.0.1" - sources."hex-color-regex-1.1.0" - sources."hsl-regex-1.0.0" - sources."hsla-regex-1.0.0" - sources."rgb-regex-1.0.1" - sources."rgba-regex-1.0.0" - ]; - }) - sources."is-css-length-0.1.0" - ]; - }) + sources."css-border-property-1.1.0" sources."css-mediaquery-0.1.2" - (sources."parse-color-1.0.0" // { - dependencies = [ - sources."color-convert-0.5.3" - ]; - }) - (sources."parse-css-font-2.0.2" // { - dependencies = [ - sources."css-font-size-keywords-1.0.0" - sources."css-font-stretch-keywords-1.0.1" - sources."css-font-style-keywords-1.0.1" - sources."css-font-weight-keywords-1.0.0" - sources."css-global-keywords-1.0.1" - sources."css-list-helpers-1.0.1" - sources."css-system-font-keywords-1.0.0" - sources."tcomb-2.7.0" - sources."unquote-1.1.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."parse-color-1.0.0" + sources."parse-css-font-2.0.2" + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + sources."postcss-value-parser-3.3.0" + sources."react-native-animatable-0.6.1" + sources."is-border-style-0.1.0" + sources."is-color-0.2.0" + sources."is-css-length-0.1.0" + sources."css-color-names-0.0.1" + sources."hex-color-regex-1.1.0" + sources."hsl-regex-1.0.0" + sources."hsla-regex-1.0.0" + sources."rgb-regex-1.0.1" + sources."rgba-regex-1.0.0" + sources."color-convert-0.5.3" + sources."css-font-size-keywords-1.0.0" + sources."css-font-stretch-keywords-1.0.1" + sources."css-font-style-keywords-1.0.1" + sources."css-font-weight-keywords-1.0.0" + sources."css-global-keywords-1.0.1" + sources."css-list-helpers-1.0.1" + sources."css-system-font-keywords-1.0.0" + sources."tcomb-2.7.0" + sources."unquote-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - sources."react-native-animatable-0.6.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -75935,35 +50355,22 @@ in sha1 = "c2c6d20cc958284f6abfbe63f7609bf409059ad3"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -75982,35 +50389,22 @@ in sha1 = "258ae8e2b81ef0f96bcbe36850e2c9a3cad28f24"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76029,34 +50423,21 @@ in sha1 = "68f80695f045d08263a879ad240df8dd64f644ea"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76075,34 +50456,21 @@ in sha1 = "4fc0795986537b2ca96b566aabc3f76ce95eac5e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76121,34 +50489,21 @@ in }; dependencies = [ sources."array-find-1.0.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76167,17 +50522,11 @@ in sha1 = "39ebf0c6cd3cd44839c1e09301c39bdd2fb3ac1f"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -76196,34 +50545,21 @@ in sha1 = "acb05f5c3bee64cb54b00443526c8480bf006706"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76267,41 +50603,28 @@ in postcss-remove-media-query-ranges = nodeEnv.buildNodePackage { name = "postcss-remove-media-query-ranges"; packageName = "postcss-remove-media-query-ranges"; - version = "1.0.1"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-remove-media-query-ranges/-/postcss-remove-media-query-ranges-1.0.1.tgz"; - sha1 = "5e4509f207b099f8602ef1ae1d7345ed0e332c1d"; + url = "https://registry.npmjs.org/postcss-remove-media-query-ranges/-/postcss-remove-media-query-ranges-1.0.3.tgz"; + sha1 = "0a82a5e3fadaa978ed3311f443c6d206d0be3370"; }; dependencies = [ sources."css-mediaquery-0.1.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76320,35 +50643,22 @@ in }; dependencies = [ sources."lodash-3.10.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."require-directory-2.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."require-directory-2.1.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76367,166 +50677,69 @@ in sha1 = "89b2b0765f21c950b31aeb7ccb26550115d485b3"; }; dependencies = [ - (sources."is-blank-0.0.1" // { - dependencies = [ - sources."is-empty-0.0.1" - sources."is-whitespace-0.2.0" - ]; - }) - (sources."is-vendor-prefixed-0.0.1" // { - dependencies = [ - sources."vendor-prefixes-0.0.1" - ]; - }) - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."is-blank-0.0.1" + sources."is-vendor-prefixed-0.0.1" + sources."meow-3.7.0" + sources."postcss-5.2.18" + sources."is-empty-0.0.1" + sources."is-whitespace-0.2.0" + sources."vendor-prefixes-0.0.1" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."minimist-1.2.0" + sources."normalize-package-data-2.4.0" + sources."object-assign-4.1.1" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."graceful-fs-4.1.11" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-2.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."is-utf8-0.2.1" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."get-stdin-4.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76545,34 +50758,21 @@ in sha1 = "19d4f385d106442b03c2b78d64aa3a6d6757646d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76591,34 +50791,21 @@ in sha1 = "0887380be572fe147be32b9e85b75f548dbb11f8"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76637,34 +50824,21 @@ in sha1 = "f28a03d6310c2e153c3c00862f3fbf802e8f4f91"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76684,34 +50858,21 @@ in }; dependencies = [ sources."lodash.merge-4.6.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76730,30 +50891,15 @@ in sha1 = "794db6faa54f8db100854392a93af45768b4e25b"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76772,196 +50918,114 @@ in sha1 = "41f94de2184d9b1cc6b6b94033a3ab484eb23a26"; }; dependencies = [ - (sources."jimp-0.2.28" // { - dependencies = [ - sources."bignumber.js-2.4.0" - sources."bmp-js-0.0.3" - sources."es6-promise-3.3.1" - sources."exif-parser-0.1.11" - sources."file-type-3.9.0" - sources."jpeg-js-0.2.0" - (sources."load-bmfont-1.3.0" // { - dependencies = [ - sources."buffer-equal-0.0.1" - sources."parse-bmfont-ascii-1.0.6" - sources."parse-bmfont-binary-1.0.6" - (sources."parse-bmfont-xml-1.1.3" // { - dependencies = [ - sources."xml-parse-from-string-1.0.1" - (sources."xml2js-0.4.17" // { - dependencies = [ - sources."sax-1.2.4" - (sources."xmlbuilder-4.2.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - ]; - }) - ]; - }) - (sources."xhr-2.4.0" // { - dependencies = [ - (sources."global-4.3.2" // { - dependencies = [ - (sources."min-document-2.19.0" // { - dependencies = [ - sources."dom-walk-0.1.1" - ]; - }) - sources."process-0.5.2" - ]; - }) - sources."is-function-1.0.1" - (sources."parse-headers-2.0.1" // { - dependencies = [ - sources."for-each-0.3.2" - sources."trim-0.0.1" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - sources."mime-1.3.6" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."pixelmatch-4.0.2" - sources."pngjs-3.2.0" - sources."read-chunk-1.0.1" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."stream-to-buffer-0.1.0" // { - dependencies = [ - sources."stream-to-0.2.2" - ]; - }) - sources."tinycolor2-1.4.1" - (sources."url-regex-3.2.0" // { - dependencies = [ - sources."ip-regex-1.0.3" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."jimp-0.2.28" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."bignumber.js-2.4.0" + sources."bmp-js-0.0.3" + sources."es6-promise-3.3.1" + sources."exif-parser-0.1.12" + sources."file-type-3.9.0" + sources."jpeg-js-0.2.0" + sources."load-bmfont-1.3.0" + sources."mime-1.6.0" + sources."mkdirp-0.5.1" + sources."pixelmatch-4.0.2" + sources."pngjs-3.3.1" + sources."read-chunk-1.0.1" + sources."request-2.83.0" + sources."stream-to-buffer-0.1.0" + sources."tinycolor2-1.4.1" + sources."url-regex-3.2.0" + sources."buffer-equal-0.0.1" + sources."parse-bmfont-ascii-1.0.6" + sources."parse-bmfont-binary-1.0.6" + sources."parse-bmfont-xml-1.1.3" + sources."xhr-2.4.1" + sources."xtend-4.0.1" + sources."xml-parse-from-string-1.0.1" + sources."xml2js-0.4.19" + sources."sax-1.2.4" + sources."xmlbuilder-9.0.4" + sources."global-4.3.2" + sources."is-function-1.0.1" + sources."parse-headers-2.0.1" + sources."min-document-2.19.0" + sources."process-0.5.2" + sources."dom-walk-0.1.1" + sources."for-each-0.3.2" + sources."trim-0.0.1" + sources."minimist-0.0.8" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."stream-to-0.2.2" + sources."ip-regex-1.0.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -76980,34 +51044,21 @@ in sha1 = "09ab4dd3034a6f05cb847faa52be31a13b3986c2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77026,34 +51077,21 @@ in sha1 = "8a0309f620d753d98fbb99d765f091698023ab0a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77072,34 +51110,21 @@ in sha1 = "386d6dbc0b63d729305c89a37703fae90cf82e5e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77118,59 +51143,34 @@ in sha1 = "a77aabc91a73e13385d14c8e54659e27dca00c78"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-merge-rules-2.1.2" // { + sources."postcss-5.2.18" + sources."postcss-merge-rules-2.1.2" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-1.6.1" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - sources."vendors-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."browserslist-1.7.7" + sources."caniuse-api-1.6.1" + sources."postcss-selector-parser-2.2.3" + sources."vendors-1.0.1" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -77183,40 +51183,21 @@ in postcss-responsive-type = nodeEnv.buildNodePackage { name = "postcss-responsive-type"; packageName = "postcss-responsive-type"; - version = "0.5.1"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-responsive-type/-/postcss-responsive-type-0.5.1.tgz"; - sha1 = "274133bc046359e542a58bbc621847d040fd10e6"; + url = "https://registry.npmjs.org/postcss-responsive-type/-/postcss-responsive-type-1.0.0.tgz"; + sha1 = "bb2d57d830beb9586ec4fda7994f07e37953aad8"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77229,40 +51210,21 @@ in postcss-retina-bg-img = nodeEnv.buildNodePackage { name = "postcss-retina-bg-img"; packageName = "postcss-retina-bg-img"; - version = "3.0.1"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-retina-bg-img/-/postcss-retina-bg-img-3.0.1.tgz"; - sha1 = "ece6ceb872051c92becf4019b6db0a6a280ff532"; + url = "https://registry.npmjs.org/postcss-retina-bg-img/-/postcss-retina-bg-img-4.1.0.tgz"; + sha1 = "cac8a4a9222c365889d043c657751e7cde3e18c4"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77282,35 +51244,22 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-2.0.5" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-2.0.5" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77329,44 +51278,25 @@ in sha1 = "6d327dff0b3d7ecec52f5d13bb5b63ed47124cc8"; }; dependencies = [ - (sources."color-0.10.1" // { + sources."color-0.10.1" + sources."postcss-5.2.18" + sources."color-convert-0.5.3" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77385,34 +51315,21 @@ in sha1 = "6ab14d9ad4966a993ecf42422413ee665ed9e65b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77432,35 +51349,22 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."rgb2hex-0.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."rgb2hex-0.1.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77479,46 +51383,30 @@ in sha1 = "3d375e63443326fa7949d12021f9f07ff4e5e9d0"; }; dependencies = [ - (sources."parse-css-dimension-1.1.0" // { - dependencies = [ - sources."css-angle-units-1.0.1" - sources."css-frequency-units-1.0.1" - sources."css-length-units-1.0.0" - sources."css-resolution-units-1.0.1" - sources."css-time-units-1.0.1" - sources."lodash.fill-3.4.0" - sources."lodash.merge-4.6.0" - sources."lodash.zipobject-4.1.3" - ]; - }) - (sources."postcss-5.2.17" // { + sources."parse-css-dimension-1.1.0" + sources."postcss-5.2.18" + sources."css-angle-units-1.0.1" + sources."css-frequency-units-1.0.1" + sources."css-length-units-1.0.0" + sources."css-resolution-units-1.0.1" + sources."css-time-units-1.0.1" + sources."lodash.fill-3.4.0" + sources."lodash.merge-4.6.0" + sources."lodash.zipobject-4.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77537,18 +51425,12 @@ in sha1 = "469eded469c61243765347c95bb9e65a807df178"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."postcss-value-parser-3.3.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -77567,35 +51449,22 @@ in sha1 = "844e64377ae3b0352c8dae494e25b58f844e83ab"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."roman-numerals-0.3.2" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."roman-numerals-0.3.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77614,30 +51483,15 @@ in sha1 = "4b3c28fd9866cae7e97b673b31ef13dc2892fa2d"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77656,35 +51510,22 @@ in sha1 = "e21d6ac5952e185f9bdc008b94f004fe509d0a11"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77703,34 +51544,21 @@ in sha1 = "98ddc20fad751620621ab679058651006844a64c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -77743,69 +51571,28 @@ in postcss-rtl = nodeEnv.buildNodePackage { name = "postcss-rtl"; packageName = "postcss-rtl"; - version = "0.5.10"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-rtl/-/postcss-rtl-0.5.10.tgz"; - sha1 = "9d22eb384eec1f7a82bfac6e0b5cf8ac3c6ed570"; + url = "https://registry.npmjs.org/postcss-rtl/-/postcss-rtl-1.1.3.tgz"; + sha1 = "a27be31a51c5aa9d36486ef376e5c47e1ff4946b"; }; dependencies = [ - (sources."rtlcss-2.2.0" // { - dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."findup-0.1.5" // { - dependencies = [ - sources."colors-0.6.2" - sources."commander-2.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."strip-json-comments-2.0.1" - ]; - }) + sources."rtlcss-2.2.1" + sources."chalk-2.3.0" + sources."findup-0.1.5" + sources."mkdirp-0.5.1" + sources."postcss-6.0.14" + sources."strip-json-comments-2.0.1" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."supports-color-4.5.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."colors-0.6.2" + sources."commander-2.1.0" + sources."minimist-0.0.8" + sources."source-map-0.6.1" ]; buildInputs = globalBuildInputs; meta = { @@ -77824,666 +51611,314 @@ in sha1 = "abb632bd1f9f9453c83986ce41f919827d8b5d14"; }; dependencies = [ - (sources."loot-diff-1.0.1" // { + sources."loot-diff-1.0.1" + sources."null-prune-1.0.3" + sources."postcss-5.2.18" + sources."postcss-js-0.1.3" + (sources."rtlcss-1.7.4" // { dependencies = [ - sources."lodash-3.10.1" - (sources."webpack-1.15.0" // { - dependencies = [ - sources."acorn-3.3.0" - sources."async-1.5.2" - sources."clone-1.0.2" - (sources."enhanced-resolve-0.9.1" // { - dependencies = [ - sources."memory-fs-0.2.0" - sources."graceful-fs-4.1.11" - ]; - }) - sources."interpret-0.6.6" - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."object-assign-4.1.1" - ]; - }) - (sources."memory-fs-0.3.0" // { - dependencies = [ - (sources."errno-0.1.4" // { - dependencies = [ - sources."prr-0.0.0" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."node-libs-browser-0.7.0" // { - dependencies = [ - sources."assert-1.4.1" - (sources."browserify-zlib-0.1.4" // { - dependencies = [ - sources."pako-0.2.9" - ]; - }) - (sources."buffer-4.9.1" // { - dependencies = [ - sources."base64-js-1.2.1" - sources."ieee754-1.1.8" - sources."isarray-1.0.0" - ]; - }) - (sources."console-browserify-1.1.0" // { - dependencies = [ - sources."date-now-0.1.4" - ]; - }) - sources."constants-browserify-1.0.0" - (sources."crypto-browserify-3.3.0" // { - dependencies = [ - sources."pbkdf2-compat-2.0.1" - sources."ripemd160-0.2.0" - sources."sha.js-2.2.6" - (sources."browserify-aes-0.4.0" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."domain-browser-1.1.7" - sources."events-1.1.1" - sources."https-browserify-0.0.1" - sources."os-browserify-0.2.1" - sources."path-browserify-0.0.0" - sources."process-0.11.10" - sources."punycode-1.4.1" - sources."querystring-es3-0.2.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."stream-browserify-2.0.1" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - (sources."stream-http-2.7.2" // { - dependencies = [ - sources."builtin-status-codes-3.0.0" - sources."inherits-2.0.3" - sources."to-arraybuffer-1.0.1" - sources."xtend-4.0.1" - ]; - }) - sources."string_decoder-0.10.31" - (sources."timers-browserify-2.0.2" // { - dependencies = [ - sources."setimmediate-1.0.5" - ]; - }) - sources."tty-browserify-0.0.0" - (sources."url-0.11.0" // { - dependencies = [ - sources."punycode-1.3.2" - sources."querystring-0.2.0" - ]; - }) - (sources."util-0.10.3" // { - dependencies = [ - sources."inherits-2.0.1" - ]; - }) - (sources."vm-browserify-0.0.4" // { - dependencies = [ - sources."indexof-0.0.1" - ]; - }) - ]; - }) - (sources."optimist-0.6.1" // { - dependencies = [ - sources."wordwrap-0.0.3" - sources."minimist-0.0.10" - ]; - }) - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."tapable-0.1.10" - (sources."uglify-js-2.7.5" // { - dependencies = [ - sources."async-0.2.10" - sources."source-map-0.5.6" - sources."uglify-to-browserify-1.0.2" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - ]; - }) - (sources."watchpack-0.2.9" // { - dependencies = [ - sources."async-0.9.2" - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - sources."fstream-1.0.11" - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."fstream-1.0.11" - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - ]; - }) - (sources."webpack-core-0.6.9" // { - dependencies = [ - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."source-list-map-0.1.8" - ]; - }) - ]; - }) + sources."strip-json-comments-1.0.4" ]; }) - sources."null-prune-1.0.3" - (sources."postcss-5.2.17" // { + sources."lodash-3.10.1" + sources."webpack-1.15.0" + sources."acorn-3.3.0" + sources."async-1.5.2" + sources."clone-1.0.3" + (sources."enhanced-resolve-0.9.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."memory-fs-0.2.0" ]; }) - (sources."postcss-js-0.1.3" // { + sources."interpret-0.6.6" + sources."loader-utils-0.2.17" + sources."memory-fs-0.3.0" + sources."mkdirp-0.5.1" + (sources."node-libs-browser-0.7.0" // { dependencies = [ - sources."camelcase-css-1.0.1" + sources."string_decoder-0.10.31" ]; }) - (sources."rtlcss-1.7.4" // { + sources."optimist-0.6.1" + sources."supports-color-3.2.3" + sources."tapable-0.1.10" + (sources."uglify-js-2.7.5" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."findup-0.1.5" // { - dependencies = [ - sources."colors-0.6.2" - sources."commander-2.1.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."strip-json-comments-1.0.4" + sources."async-0.2.10" + ]; + }) + (sources."watchpack-0.2.9" // { + dependencies = [ + sources."async-0.9.2" + ]; + }) + (sources."webpack-core-0.6.9" // { + dependencies = [ + sources."source-map-0.4.4" + ]; + }) + sources."graceful-fs-4.1.11" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."object-assign-4.1.1" + sources."errno-0.1.6" + sources."readable-stream-2.3.3" + sources."prr-1.0.1" + sources."core-util-is-1.0.2" + sources."inherits-2.0.3" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."minimist-0.0.8" + sources."assert-1.4.1" + sources."browserify-zlib-0.1.4" + sources."buffer-4.9.1" + sources."console-browserify-1.1.0" + sources."constants-browserify-1.0.0" + sources."crypto-browserify-3.3.0" + sources."domain-browser-1.1.7" + sources."events-1.1.1" + sources."https-browserify-0.0.1" + sources."os-browserify-0.2.1" + sources."path-browserify-0.0.0" + sources."process-0.11.10" + sources."punycode-1.4.1" + sources."querystring-es3-0.2.1" + sources."stream-browserify-2.0.1" + sources."stream-http-2.7.2" + sources."timers-browserify-2.0.4" + sources."tty-browserify-0.0.0" + (sources."url-0.11.0" // { + dependencies = [ + sources."punycode-1.3.2" + ]; + }) + (sources."util-0.10.3" // { + dependencies = [ + sources."inherits-2.0.1" + ]; + }) + sources."vm-browserify-0.0.4" + sources."pako-0.2.9" + sources."base64-js-1.2.1" + sources."ieee754-1.1.8" + sources."date-now-0.1.4" + sources."pbkdf2-compat-2.0.1" + sources."ripemd160-0.2.0" + sources."sha.js-2.2.6" + sources."browserify-aes-0.4.0" + sources."builtin-status-codes-3.0.0" + sources."to-arraybuffer-1.0.1" + sources."xtend-4.0.1" + sources."setimmediate-1.0.5" + sources."querystring-0.2.0" + sources."indexof-0.0.1" + sources."wordwrap-0.0.3" + sources."has-flag-1.0.0" + sources."source-map-0.5.7" + sources."uglify-to-browserify-1.0.2" + sources."yargs-3.10.0" + sources."camelcase-1.2.1" + (sources."cliui-2.1.0" // { + dependencies = [ + sources."wordwrap-0.0.2" + ]; + }) + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + sources."is-buffer-1.1.6" + sources."chokidar-1.7.0" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."path-is-absolute-1.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."minimatch-3.0.4" + sources."set-immediate-shim-1.0.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + (sources."rc-1.2.2" // { + dependencies = [ + sources."minimist-1.2.0" + ]; + }) + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."semver-5.4.1" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + sources."tar-pack-3.4.1" + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."signal-exit-3.0.2" + sources."string-width-1.0.2" + sources."strip-ansi-3.0.1" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."ansi-regex-2.1.1" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."debug-2.6.9" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."ms-2.0.0" + sources."source-list-map-0.1.8" + sources."amdefine-1.0.1" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."camelcase-css-1.0.1" + sources."findup-0.1.5" + sources."colors-0.6.2" + sources."commander-2.1.0" ]; buildInputs = globalBuildInputs; meta = { @@ -78502,34 +51937,21 @@ in sha1 = "e99796fd85edf8083c1ef7e92025f949c7559277"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -78549,18 +51971,12 @@ in }; dependencies = [ sources."array.prototype.find-1.0.0" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" sources."russian-length-units-1.1.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -78573,40 +51989,27 @@ in postcss-safe-important = nodeEnv.buildNodePackage { name = "postcss-safe-important"; packageName = "postcss-safe-important"; - version = "1.0.4"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-safe-important/-/postcss-safe-important-1.0.4.tgz"; - sha1 = "7faf89afe6630023e5fab2f267113db69ef3874d"; + url = "https://registry.npmjs.org/postcss-safe-important/-/postcss-safe-important-1.1.0.tgz"; + sha1 = "6ac6841b0a42ba3634167c589b107a54dc03203f"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -78628,35 +52031,22 @@ in sources."lodash.every-4.6.0" sources."lodash.isregexp-3.0.5" sources."lodash.isstring-4.0.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -78675,35 +52065,17 @@ in sha1 = "e55516441e9526ba4b380a730d3a02e9eaa78c7a"; }; dependencies = [ - (sources."gonzales-pe-4.0.3" // { - dependencies = [ - sources."minimist-1.1.3" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."gonzales-pe-4.2.3" + sources."postcss-6.0.14" + sources."minimist-1.1.3" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -78723,50 +52095,27 @@ in }; dependencies = [ sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."color-0.11.4" + sources."postcss-5.2.18" + sources."postcss-message-helpers-2.0.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -78784,50 +52133,27 @@ in sha1 = "c44a32693f5d4defbca0f84bba82a5121c7abfcc"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."color-0.11.4" // { + sources."postcss-5.2.18" + sources."color-0.11.4" + sources."balanced-match-0.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."balanced-match-0.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" ]; buildInputs = globalBuildInputs; meta = { @@ -78846,35 +52172,22 @@ in sha1 = "d501bda466965037c3d9c1d15f4e63ae062be4d6"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-simple-vars-3.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-simple-vars-3.1.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -78893,17 +52206,11 @@ in sha1 = "69435f0b096256bfe3ebfab80a5c28dcaf69973b"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -78923,17 +52230,11 @@ in }; dependencies = [ sources."postcss-simple-vars-0.3.0" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -78952,88 +52253,50 @@ in sha1 = "c5b4cd88c1a85530e451aa8b1223d88ef05bdbc9"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - sources."postcss-advanced-variables-0.0.2" - (sources."postcss-color-function-1.3.2" // { - dependencies = [ - sources."balanced-match-0.1.0" - (sources."css-color-function-1.3.0" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - sources."postcss-message-helpers-1.1.1" - ]; - }) - (sources."postcss-import-6.2.0" // { + sources."postcss-4.1.16" + sources."postcss-advanced-variables-0.0.2" + sources."postcss-color-function-1.3.2" + (sources."postcss-import-6.2.0" // { dependencies = [ sources."clone-0.1.19" - sources."es6-promise-2.3.0" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-3.0.0" sources."postcss-message-helpers-2.0.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) ]; }) sources."postcss-media-minmax-1.2.0" sources."postcss-mixins-0.3.0" sources."postcss-nested-0.3.2" sources."postcss-simple-vars-0.3.0" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."balanced-match-0.1.0" + sources."css-color-function-1.3.3" + sources."postcss-message-helpers-1.1.1" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."ms-2.0.0" + sources."glob-5.0.15" + sources."object-assign-3.0.0" + sources."resolve-1.5.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."brace-expansion-1.1.8" // { + dependencies = [ + sources."balanced-match-1.0.0" + ]; + }) + sources."concat-map-0.0.1" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -79052,62 +52315,33 @@ in sha1 = "02d96c25ae971ea6507389a93f40c7ab197f2160"; }; dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."glob-7.1.2" + sources."postcss-5.2.18" sources."postcss-scss-0.1.9" - (sources."minimatch-3.0.4" // { + sources."minimatch-3.0.4" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -79126,61 +52360,32 @@ in sha1 = "368f200946bfdef6a8b12d68c0f6379b9a222f26"; }; dependencies = [ - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."postcss-5.2.17" // { + sources."glob-6.0.4" + sources."postcss-5.2.18" + sources."postcss-simple-vars-1.2.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-simple-vars-1.2.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79199,34 +52404,21 @@ in sha1 = "6d6b3c624ce4de9899ec082e59ec33b622d3e967"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79246,34 +52438,21 @@ in }; dependencies = [ sources."hash-sum-1.0.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79292,202 +52471,125 @@ in sha1 = "713c1b75e5b5c4283ffe5a3792b08b4c5e3f1dc5"; }; dependencies = [ - (sources."cheerio-0.20.0" // { + sources."cheerio-0.20.0" + sources."postcss-5.2.18" + sources."css-select-1.2.0" + sources."entities-1.1.1" + (sources."htmlparser2-3.8.3" // { dependencies = [ - (sources."css-select-1.2.0" // { - dependencies = [ - sources."css-what-2.1.0" - (sources."domutils-1.5.1" // { - dependencies = [ - sources."domelementtype-1.3.0" - ]; - }) - sources."boolbase-1.0.0" - sources."nth-check-1.0.1" - ]; - }) - sources."entities-1.1.1" - (sources."htmlparser2-3.8.3" // { - dependencies = [ - sources."domhandler-2.3.0" - sources."domutils-1.5.1" - sources."domelementtype-1.3.0" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."entities-1.0.0" - ]; - }) - (sources."dom-serializer-0.1.0" // { - dependencies = [ - sources."domelementtype-1.1.3" - ]; - }) - sources."lodash-4.17.4" - (sources."jsdom-7.2.2" // { - dependencies = [ - sources."abab-1.0.3" - sources."acorn-2.7.0" - sources."acorn-globals-1.0.9" - sources."cssom-0.3.2" - sources."cssstyle-0.2.37" - (sources."escodegen-1.8.1" // { - dependencies = [ - sources."estraverse-1.9.3" - sources."esutils-2.0.2" - sources."esprima-2.7.3" - (sources."optionator-0.8.2" // { - dependencies = [ - sources."prelude-ls-1.1.2" - sources."deep-is-0.1.3" - sources."wordwrap-1.0.0" - sources."type-check-0.3.2" - sources."levn-0.3.0" - sources."fast-levenshtein-2.0.6" - ]; - }) - (sources."source-map-0.2.0" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - sources."nwmatcher-1.4.1" - sources."parse5-1.5.1" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."sax-1.2.4" - sources."symbol-tree-3.2.2" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."webidl-conversions-2.0.1" - (sources."whatwg-url-compat-0.6.5" // { - dependencies = [ - sources."tr46-0.0.3" - ]; - }) - sources."xml-name-validator-2.0.1" - ]; - }) + sources."entities-1.0.0" ]; }) - (sources."postcss-5.2.17" // { + (sources."dom-serializer-0.1.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."domelementtype-1.1.3" ]; }) + sources."lodash-4.17.4" + sources."jsdom-7.2.2" + sources."css-what-2.1.0" + sources."domutils-1.5.1" + sources."boolbase-1.0.0" + sources."nth-check-1.0.1" + sources."domelementtype-1.3.0" + sources."domhandler-2.3.0" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."abab-1.0.4" + sources."acorn-2.7.0" + sources."acorn-globals-1.0.9" + sources."cssom-0.3.2" + sources."cssstyle-0.2.37" + sources."escodegen-1.9.0" + sources."nwmatcher-1.4.3" + sources."parse5-1.5.1" + sources."request-2.83.0" + sources."sax-1.2.4" + sources."symbol-tree-3.2.2" + sources."tough-cookie-2.3.3" + sources."webidl-conversions-2.0.1" + sources."whatwg-url-compat-0.6.5" + sources."xml-name-validator-2.0.1" + sources."estraverse-4.2.0" + sources."esutils-2.0.2" + sources."esprima-3.1.3" + sources."optionator-0.8.2" + sources."source-map-0.5.7" + sources."prelude-ls-1.1.2" + sources."deep-is-0.1.3" + sources."wordwrap-1.0.0" + sources."type-check-0.3.2" + sources."levn-0.3.0" + sources."fast-levenshtein-2.0.6" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."tr46-0.0.3" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79506,34 +52608,21 @@ in sha1 = "c3737606a76c32412d55ce2e5095e89ab586ac56"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79552,34 +52641,21 @@ in sha1 = "b0fffd6d3f0d7c1ffbbac34a2c2f026f4095c193"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79598,34 +52674,21 @@ in sha1 = "5c9fde61cf6bbc6a03209238d0f6c3c011aff806"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79644,62 +52707,31 @@ in sha1 = "c1ea819f82448f700fa74d857eb14c6d265f45f9"; }; dependencies = [ - (sources."get-css-classes-1.1.0" // { - dependencies = [ - (sources."css-selector-tokenizer-0.5.4" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."is-blank-1.1.0" // { - dependencies = [ - sources."is-empty-0.0.1" - sources."is-whitespace-0.3.0" - ]; - }) + sources."get-css-classes-1.1.0" + sources."is-blank-1.1.0" sources."is-css-root-1.0.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."strip-pseudos-1.0.0" // { + sources."postcss-5.2.18" + sources."strip-pseudos-1.0.0" + sources."css-selector-tokenizer-0.5.4" + sources."lodash-4.17.4" + sources."cssesc-0.1.0" + sources."fastparse-1.1.1" + sources."is-empty-0.0.1" + sources."is-whitespace-0.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."css-selector-tokenizer-0.5.4" // { - dependencies = [ - sources."cssesc-0.1.0" - sources."fastparse-1.1.1" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79719,30 +52751,15 @@ in }; dependencies = [ sources."balanced-match-0.4.2" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79762,30 +52779,15 @@ in }; dependencies = [ sources."balanced-match-0.4.2" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79805,33 +52807,20 @@ in }; dependencies = [ sources."escape-string-regexp-1.0.5" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79850,34 +52839,21 @@ in sha1 = "eed5d8f8782158a94408cc74b29d486b792afda1"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79896,40 +52872,27 @@ in sha1 = "f0bf250845c6617c3e0c9b76fc2e51cae0997fdb"; }; dependencies = [ - (sources."postcss-5.2.17" // { + (sources."postcss-5.2.18" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."source-map-0.5.7" ]; }) sources."scouter-git://github.com/divshot/scouter.git#master" - (sources."source-map-0.4.4" // { + sources."source-map-0.4.4" + (sources."chalk-1.1.3" // { dependencies = [ - sources."amdefine-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -79948,34 +52911,21 @@ in sha1 = "b2a1fc7a55d5d9ab9880a2831c3a61db7c7cea08"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -79994,35 +52944,22 @@ in sha1 = "402eeb33c03d7522f59d6b6383ca2d600bbd9749"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."expr-eval-1.2.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."expr-eval-1.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80041,34 +52978,21 @@ in sha1 = "ed5b8219df54466fa18378fcd35521cc1b472e6d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80087,34 +53011,21 @@ in sha1 = "a3747b1c1e006a1b18c071ff0e980632e8a0be85"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80134,35 +53045,22 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80181,30 +53079,15 @@ in sha1 = "a22057878b0b58388cf7100a71f7e7bad5fe08db"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80223,67 +53106,39 @@ in sha1 = "ebf792a51b55b7fba53e7c226a7c2bd79de7c364"; }; dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-calc-5.3.1" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) + sources."autoprefixer-6.7.7" + sources."postcss-5.2.18" + sources."postcss-calc-5.3.1" sources."postcss-discard-comments-2.0.4" sources."postcss-flexbugs-fixes-2.1.1" - (sources."postcss-selector-matches-2.0.5" // { + sources."postcss-selector-matches-2.0.5" + sources."postcss-will-change-1.1.0" + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."postcss-value-parser-3.3.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) - sources."postcss-will-change-1.1.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -80296,40 +53151,27 @@ in postcss-shopify-liquid-expander = nodeEnv.buildNodePackage { name = "postcss-shopify-liquid-expander"; packageName = "postcss-shopify-liquid-expander"; - version = "0.0.2"; + version = "0.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-shopify-liquid-expander/-/postcss-shopify-liquid-expander-0.0.2.tgz"; - sha1 = "871ac2736f93d7dc4cee0310d69cb304f9622ade"; + url = "https://registry.npmjs.org/postcss-shopify-liquid-expander/-/postcss-shopify-liquid-expander-0.0.3.tgz"; + sha1 = "40df78306e37c6d3249a6751436aa003a951567c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80342,23 +53184,21 @@ in postcss-shopify-settings-variables = nodeEnv.buildNodePackage { name = "postcss-shopify-settings-variables"; packageName = "postcss-shopify-settings-variables"; - version = "0.1.4"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-shopify-settings-variables/-/postcss-shopify-settings-variables-0.1.4.tgz"; - sha1 = "431c1f20a97fe78ddf1dfaa4da2c080092e208be"; + url = "https://registry.npmjs.org/postcss-shopify-settings-variables/-/postcss-shopify-settings-variables-0.2.0.tgz"; + sha1 = "8a77e9aa59c34952f587aa38cd4814d63d7b8221"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80377,36 +53217,8 @@ in sha1 = "179d72f1980768c885914d2f8c0a511e3335303a"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-font-weights-4.0.0" // { - dependencies = [ - sources."css-font-weight-names-0.2.1" - sources."postcss-value-parser-3.3.0" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-font-weights-4.0.0" sources."postcss-overflow-1.1.5" sources."postcss-short-border-3.0.0" sources."postcss-short-border-radius-2.0.0" @@ -80415,6 +53227,16 @@ in sources."postcss-short-position-3.0.0" sources."postcss-short-size-3.0.0" sources."postcss-short-spacing-3.0.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."css-font-weight-names-0.2.1" + sources."postcss-value-parser-3.3.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80433,30 +53255,15 @@ in sha1 = "e56379c4a2f5327d81db61acd42bc6025dfcb9d9"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80475,30 +53282,15 @@ in sha1 = "a87b1d60ac433222963945d90e2b7a5b3bc24453"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80517,30 +53309,15 @@ in sha1 = "874e9af3301cf5f5413d7bd235caf1dc0105ac38"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80559,34 +53336,21 @@ in sha1 = "4e7ac80a173b6ec4dde0acd8205cd282cb4f8330"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80605,30 +53369,15 @@ in sha1 = "750a4411a776e9deecdc90b9e8d82226ef79cee9"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80647,30 +53396,15 @@ in sha1 = "1874105a4c8c768fe57bbb8ab5f048a5431293d4"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80689,30 +53423,15 @@ in sha1 = "0905e11c7c14d42551260407894f57466c102fbc"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80731,30 +53450,15 @@ in sha1 = "360c5e496fca1250aeeac5988d82e7c409352ca0"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80774,34 +53478,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80820,53 +53511,34 @@ in sha1 = "f8309b58120de4676d1208620ba2d880830f8978"; }; dependencies = [ - (sources."css-shorthand-expand-1.1.0" // { - dependencies = [ - sources."css-color-names-0.0.1" - sources."css-url-regex-0.0.1" - sources."hex-color-regex-1.1.0" - sources."hsl-regex-1.0.0" - sources."hsla-regex-1.0.0" - sources."map-obj-1.0.1" - sources."repeat-element-1.1.2" - sources."rgb-regex-1.0.1" - sources."rgba-regex-1.0.0" - sources."xtend-4.0.1" - ]; - }) - (sources."is-css-shorthand-1.0.1" // { - dependencies = [ - sources."css-shorthand-properties-1.0.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."css-shorthand-expand-1.1.0" + sources."is-css-shorthand-1.0.1" + sources."postcss-5.2.18" + sources."css-color-names-0.0.1" + sources."css-url-regex-0.0.1" + sources."hex-color-regex-1.1.0" + sources."hsl-regex-1.0.0" + sources."hsla-regex-1.0.0" + sources."map-obj-1.0.1" + sources."repeat-element-1.1.2" + sources."rgb-regex-1.0.1" + sources."rgba-regex-1.0.0" + sources."xtend-4.0.1" + sources."css-shorthand-properties-1.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80885,34 +53557,21 @@ in sha1 = "a6bfbf0572699c25c44112e1063eedb55db0d9a2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80931,34 +53590,21 @@ in sha1 = "7d369c4ee1c0df752c252f4a3d82aab81309c29e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -80977,30 +53623,15 @@ in sha1 = "8f5f4fc4b917269522e79d3b131d8192e50e7a32"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81019,95 +53650,43 @@ in sha1 = "5aa761668d38aa57df9b6afde0986f4cc20695bd"; }; dependencies = [ - (sources."async-array-methods-2.1.0" // { - dependencies = [ - (sources."callback-sequence-3.2.0" // { - dependencies = [ - (sources."run-callback-3.1.0" // { - dependencies = [ - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."stream-consume-0.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."custom-resolve-1.0.1" // { - dependencies = [ - sources."caller-1.0.1" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) + sources."async-array-methods-2.1.0" + sources."custom-resolve-1.0.1" + sources."glob-7.1.2" sources."node-promisify-1.2.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."mixy-1.0.0" + sources."callback-sequence-3.2.0" + sources."run-callback-3.1.0" + sources."end-of-stream-1.4.0" + sources."stream-consume-0.1.0" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."caller-1.0.1" + sources."resolve-1.5.0" + sources."path-parse-1.0.5" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."path-is-absolute-1.0.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."mixy-1.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81126,17 +53705,11 @@ in sha1 = "2d5c8beb724ff18c2d0d2a9e546715313e6dd651"; }; dependencies = [ - (sources."postcss-5.0.21" // { - dependencies = [ - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - sources."source-map-0.5.6" - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-5.0.21" + sources."supports-color-3.2.3" + sources."source-map-0.5.7" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81171,34 +53744,21 @@ in sha1 = "61fe25ebf2d16d457edcde889d9cf5fe09680b1b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81211,36 +53771,21 @@ in postcss-simple-vars = nodeEnv.buildNodePackage { name = "postcss-simple-vars"; packageName = "postcss-simple-vars"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-4.0.0.tgz"; - sha1 = "d49e082897d9a4824f2268fa91d969d943e2ea76"; + url = "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-4.1.0.tgz"; + sha1 = "043248cfef8d3f51b3486a28c09f8375dbf1b2f9"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81259,34 +53804,21 @@ in sha1 = "599027a1129fc75cde64b421b965177ed4138c24"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81305,247 +53837,139 @@ in sha1 = "4cd0f58d5825c84297569f6b0807d821fffb90ea"; }; dependencies = [ - (sources."fs-promise-1.0.0" // { - dependencies = [ - sources."any-promise-1.3.0" - (sources."fs-extra-1.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - ]; - }) - (sources."mz-2.6.0" // { - dependencies = [ - sources."object-assign-4.1.1" - ]; - }) - (sources."thenify-all-1.6.0" // { - dependencies = [ - sources."thenify-3.3.0" - ]; - }) - ]; - }) - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."hasha-2.2.0" // { + sources."fs-promise-1.0.0" + sources."globby-6.1.0" + sources."hasha-2.2.0" + sources."jsdom-9.12.0" + sources."postcss-5.2.18" + sources."any-promise-1.3.0" + sources."fs-extra-1.0.0" + sources."mz-2.7.0" + sources."thenify-all-1.6.0" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."object-assign-4.1.1" + sources."thenify-3.3.0" + sources."array-union-1.0.2" + sources."glob-7.1.2" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."pinkie-2.0.4" + sources."is-stream-1.1.0" + sources."abab-1.0.4" + sources."acorn-4.0.13" + sources."acorn-globals-3.1.0" + sources."array-equal-1.0.0" + sources."content-type-parser-1.0.2" + sources."cssom-0.3.2" + sources."cssstyle-0.2.37" + sources."escodegen-1.9.0" + sources."html-encoding-sniffer-1.0.2" + sources."nwmatcher-1.4.3" + sources."parse5-1.5.1" + sources."request-2.83.0" + sources."sax-1.2.4" + sources."symbol-tree-3.2.2" + sources."tough-cookie-2.3.3" + sources."webidl-conversions-4.0.2" + sources."whatwg-encoding-1.0.3" + (sources."whatwg-url-4.8.0" // { + dependencies = [ + sources."webidl-conversions-3.0.1" + ]; + }) + sources."xml-name-validator-2.0.1" + sources."estraverse-4.2.0" + sources."esutils-2.0.2" + sources."esprima-3.1.3" + sources."optionator-0.8.2" + sources."source-map-0.5.7" + sources."prelude-ls-1.1.2" + sources."deep-is-0.1.3" + sources."wordwrap-1.0.0" + sources."type-check-0.3.2" + sources."levn-0.3.0" + sources."fast-levenshtein-2.0.6" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."core-util-is-1.0.2" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."iconv-lite-0.4.19" + sources."tr46-0.0.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."is-stream-1.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."jsdom-9.12.0" // { - dependencies = [ - sources."abab-1.0.3" - sources."acorn-4.0.13" - sources."acorn-globals-3.1.0" - sources."array-equal-1.0.0" - sources."content-type-parser-1.0.1" - sources."cssom-0.3.2" - sources."cssstyle-0.2.37" - (sources."escodegen-1.8.1" // { - dependencies = [ - sources."estraverse-1.9.3" - sources."esutils-2.0.2" - sources."esprima-2.7.3" - (sources."optionator-0.8.2" // { - dependencies = [ - sources."prelude-ls-1.1.2" - sources."deep-is-0.1.3" - sources."wordwrap-1.0.0" - sources."type-check-0.3.2" - sources."levn-0.3.0" - sources."fast-levenshtein-2.0.6" - ]; - }) - (sources."source-map-0.2.0" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - sources."html-encoding-sniffer-1.0.1" - sources."nwmatcher-1.4.1" - sources."parse5-1.5.1" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."sax-1.2.4" - sources."symbol-tree-3.2.2" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."webidl-conversions-4.0.1" - (sources."whatwg-encoding-1.0.1" // { - dependencies = [ - sources."iconv-lite-0.4.13" - ]; - }) - (sources."whatwg-url-4.8.0" // { - dependencies = [ - sources."tr46-0.0.3" - sources."webidl-conversions-3.0.1" - ]; - }) - sources."xml-name-validator-2.0.1" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81564,30 +53988,15 @@ in sha1 = "167159a9140f3f95c6e3a4e8ceccc8c54b688f1d"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81620,3225 +54029,182 @@ in src = fetchurl { url = "https://registry.npmjs.org/postcss-singlish-stylesheets/-/postcss-singlish-stylesheets-0.0.8.tgz"; sha1 = "50131d44e2a9eae51521d086db0bd050e542f3f3"; - }; - dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin for writing Singlish Style Sheets"; - homepage = "https://github.com/lcpriest/postcss-singlish-stylesheets#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-size = nodeEnv.buildNodePackage { - name = "postcss-size"; - packageName = "postcss-size"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-size/-/postcss-size-2.0.0.tgz"; - sha1 = "b9b35240c12e507c3b86c820852bee49f4f26655"; - }; - dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin for size shortcut"; - homepage = https://github.com/postcss/postcss-size; - license = "MIT"; - }; - production = true; - }; - postcss-size-nib = nodeEnv.buildNodePackage { - name = "postcss-size-nib"; - packageName = "postcss-size-nib"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-size-nib/-/postcss-size-nib-1.0.3.tgz"; - sha1 = "dfbbf44216733426ffdca1b57acb346be4afa2bc"; - }; - dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin that allows the use of 'size' as a shorthand for width & height"; - homepage = https://github.com/TheSisb/postcss-size-nib; - license = "MIT"; - }; - production = true; - }; - postcss-sketch = nodeEnv.buildNodePackage { - name = "postcss-sketch"; - packageName = "postcss-sketch"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-sketch/-/postcss-sketch-0.4.0.tgz"; - sha1 = "3842a5957b80a9d8168d72757c47f78c3e16810d"; - }; - dependencies = [ - sources."lodash-4.17.4" - (sources."md5-2.2.1" // { - dependencies = [ - sources."charenc-0.0.2" - sources."crypt-0.0.2" - sources."is-buffer-1.1.5" - ]; - }) - (sources."path-0.12.7" // { - dependencies = [ - sources."process-0.11.10" - (sources."util-0.10.3" // { - dependencies = [ - sources."inherits-2.0.1" - ]; - }) - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."postcss-nesting-4.0.1" - sources."postcss-value-parser-3.3.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin that provides deep bindings between sketch files and your CSS."; - homepage = https://github.com/jturle/postcss-sketch; - license = "MIT"; - }; - production = true; - }; - postcss-slds-prefix = nodeEnv.buildNodePackage { - name = "postcss-slds-prefix"; - packageName = "postcss-slds-prefix"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-slds-prefix/-/postcss-slds-prefix-2.0.1.tgz"; - sha1 = "59599cad883939f01963071c18a69c468b5558e1"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A custom prefixer for the Salesforce Lightning Design System"; - homepage = "https://github.com/salesforce-ux/postcss-slds-prefix#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-smart-asset = nodeEnv.buildNodePackage { - name = "postcss-smart-asset"; - packageName = "postcss-smart-asset"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-smart-asset/-/postcss-smart-asset-0.2.0.tgz"; - sha1 = "35cb3b6e14fe2c4c4e06dd86cc24885bf53aa2a5"; - }; - dependencies = [ - (sources."babel-preset-edge-0.9.6" // { - dependencies = [ - sources."app-root-dir-1.0.2" - (sources."babel-cli-6.24.1" // { - dependencies = [ - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."source-map-support-0.4.15" - ]; - }) - (sources."babel-polyfill-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."commander-2.11.0" - sources."convert-source-map-1.5.0" - sources."fs-readdir-recursive-1.0.0" - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - (sources."output-file-sync-1.1.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."object-assign-4.1.1" - ]; - }) - sources."path-is-absolute-1.0.1" - sources."slash-1.0.0" - sources."source-map-0.5.6" - (sources."v8flags-2.1.1" // { - dependencies = [ - sources."user-home-1.1.1" - ]; - }) - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."rimraf-2.6.1" - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - sources."fstream-ignore-1.0.5" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."source-map-support-0.4.15" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."convert-source-map-1.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."json5-0.5.1" - sources."lodash-4.17.4" - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - sources."source-map-0.5.6" - ]; - }) - (sources."babel-plugin-dynamic-import-node-1.0.2" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-dynamic-import-webpack-1.0.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-fast-async-6.1.2" // { - dependencies = [ - (sources."nodent-3.1.0" // { - dependencies = [ - (sources."nodent-compiler-3.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."acorn-es7-plugin-1.1.7" - sources."source-map-0.5.6" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-lodash-3.2.11" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-plugin-module-resolver-3.0.0-beta.4" // { - dependencies = [ - (sources."find-babel-config-1.1.0" // { - dependencies = [ - sources."json5-0.5.1" - sources."path-exists-3.0.0" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."reselect-3.0.1" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - (sources."babel-plugin-react-intl-2.3.1" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."intl-messageformat-parser-1.3.0" - ]; - }) - sources."babel-plugin-syntax-dynamic-import-6.18.0" - sources."babel-plugin-syntax-jsx-6.18.0" - (sources."babel-plugin-transform-class-properties-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-plugin-syntax-class-properties-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es3-member-expression-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es3-property-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-object-rest-spread-6.23.0" // { - dependencies = [ - sources."babel-plugin-syntax-object-rest-spread-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-react-constant-elements-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-react-inline-elements-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-react-remove-prop-types-0.4.6" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-runtime-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-preset-babili-0.1.4" // { - dependencies = [ - (sources."babel-plugin-minify-builtins-0.1.3" // { - dependencies = [ - sources."babel-helper-evaluate-path-0.1.0" - ]; - }) - (sources."babel-plugin-minify-constant-folding-0.1.3" // { - dependencies = [ - sources."babel-helper-evaluate-path-0.1.0" - ]; - }) - (sources."babel-plugin-minify-dead-code-elimination-0.1.7" // { - dependencies = [ - sources."babel-helper-mark-eval-scopes-0.1.1" - sources."babel-helper-remove-or-void-0.1.1" - sources."lodash.some-4.6.0" - ]; - }) - (sources."babel-plugin-minify-flip-comparisons-0.1.2" // { - dependencies = [ - sources."babel-helper-is-void-0-0.1.1" - ]; - }) - (sources."babel-plugin-minify-guarded-expressions-0.1.2" // { - dependencies = [ - sources."babel-helper-flip-expressions-0.1.2" - ]; - }) - sources."babel-plugin-minify-infinity-0.1.2" - (sources."babel-plugin-minify-mangle-names-0.1.3" // { - dependencies = [ - sources."babel-helper-mark-eval-scopes-0.1.1" - ]; - }) - sources."babel-plugin-minify-numeric-literals-0.1.1" - sources."babel-plugin-minify-replace-0.1.2" - (sources."babel-plugin-minify-simplify-0.1.2" // { - dependencies = [ - sources."babel-helper-flip-expressions-0.1.2" - sources."babel-helper-is-nodes-equiv-0.0.1" - sources."babel-helper-to-multiple-sequence-expressions-0.1.1" - ]; - }) - (sources."babel-plugin-minify-type-constructors-0.1.2" // { - dependencies = [ - sources."babel-helper-is-void-0-0.1.1" - ]; - }) - sources."babel-plugin-transform-inline-consecutive-adds-0.1.2" - sources."babel-plugin-transform-member-expression-literals-6.8.4" - sources."babel-plugin-transform-merge-sibling-variables-6.8.5" - sources."babel-plugin-transform-minify-booleans-6.8.2" - (sources."babel-plugin-transform-property-literals-6.8.4" // { - dependencies = [ - sources."esutils-2.0.2" - ]; - }) - sources."babel-plugin-transform-regexp-constructors-0.1.1" - sources."babel-plugin-transform-remove-console-6.8.4" - sources."babel-plugin-transform-remove-debugger-6.8.4" - sources."babel-plugin-transform-remove-undefined-0.1.2" - sources."babel-plugin-transform-simplify-comparison-operators-6.8.4" - sources."babel-plugin-transform-undefined-to-void-6.8.2" - sources."lodash.isplainobject-4.0.6" - ]; - }) - (sources."babel-preset-env-1.6.0" // { - dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-arrow-functions-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-block-scoping-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - ]; - }) - sources."lodash-4.17.4" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-classes-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-helper-replace-supers-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-define-map-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-computed-properties-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-for-of-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-amd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-hoist-variables-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-umd-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-object-super-6.24.1" // { - dependencies = [ - (sources."babel-helper-replace-supers-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - sources."lodash-4.17.4" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-template-literals-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-regenerator-6.24.1" // { - dependencies = [ - (sources."regenerator-transform-0.9.11" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."private-0.1.7" - ]; - }) - ]; - }) - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."semver-5.3.0" - ]; - }) - (sources."babel-preset-flow-6.23.0" // { - dependencies = [ - (sources."babel-plugin-transform-flow-strip-types-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."babel-plugin-syntax-flow-6.18.0" - ]; - }) - ]; - }) - (sources."babel-preset-react-6.24.1" // { - dependencies = [ - (sources."babel-plugin-transform-react-display-name-6.25.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-react-jsx-6.24.1" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-helper-builder-react-jsx-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."esutils-2.0.2" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-react-jsx-source-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-react-jsx-self-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - ]; - }) - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."caniuse-lite-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."nodent-runtime-3.0.4" - ]; - }) - sources."mime-1.3.6" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."prepublish-1.0.6" // { - dependencies = [ - sources."app-root-dir-1.0.2" - sources."async-2.5.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."file-exists-4.0.0" - (sources."fs-extra-3.0.1" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-3.0.1" - sources."universalify-0.1.0" - ]; - }) - (sources."loader-utils-1.1.0" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - ]; - }) - sources."lodash-4.17.4" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."rollup-0.45.2" // { - dependencies = [ - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."rollup-plugin-babel-2.7.1" // { - dependencies = [ - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."source-map-support-0.4.15" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."convert-source-map-1.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."json5-0.5.1" - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."slash-1.0.0" - sources."source-map-0.5.6" - ]; - }) - (sources."babel-plugin-transform-es2015-classes-6.24.1" // { - dependencies = [ - sources."babel-helper-optimise-call-expression-6.24.1" - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - sources."babel-helper-replace-supers-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babylon-6.17.4" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."babel-helper-define-map-6.24.1" - sources."babel-messages-6.23.0" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."rollup-pluginutils-1.5.2" // { - dependencies = [ - sources."estree-walker-0.2.1" - ]; - }) - ]; - }) - (sources."rollup-plugin-buble-0.15.0" // { - dependencies = [ - (sources."buble-0.15.2" // { - dependencies = [ - sources."acorn-3.3.0" - sources."acorn-jsx-3.0.1" - sources."acorn-object-spread-1.0.0" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."magic-string-0.14.0" // { - dependencies = [ - sources."vlq-0.2.2" - ]; - }) - sources."minimist-1.2.0" - sources."os-homedir-1.0.2" - ]; - }) - (sources."rollup-pluginutils-1.5.2" // { - dependencies = [ - sources."estree-walker-0.2.1" - ]; - }) - ]; - }) - (sources."rollup-plugin-commonjs-8.0.2" // { - dependencies = [ - sources."acorn-4.0.13" - sources."estree-walker-0.3.1" - (sources."magic-string-0.19.1" // { - dependencies = [ - sources."vlq-0.2.2" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - (sources."rollup-pluginutils-2.0.1" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."rollup-plugin-executable-1.0.0" - (sources."rollup-plugin-json-2.3.0" // { - dependencies = [ - (sources."rollup-pluginutils-2.0.1" // { - dependencies = [ - sources."estree-walker-0.3.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."rollup-plugin-node-resolve-3.0.0" // { - dependencies = [ - (sources."browser-resolve-1.11.2" // { - dependencies = [ - sources."resolve-1.1.7" - ]; - }) - sources."builtin-modules-1.1.1" - sources."is-module-1.0.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - (sources."rollup-plugin-rebase-0.6.2" // { - dependencies = [ - sources."denodeify-1.2.1" - (sources."postcss-sass-0.1.0" // { - dependencies = [ - (sources."gonzales-pe-4.0.3" // { - dependencies = [ - sources."minimist-1.1.3" - ]; - }) - (sources."mathjs-3.14.2" // { - dependencies = [ - sources."complex.js-2.0.4" - sources."decimal.js-7.2.3" - sources."fraction.js-4.0.2" - sources."javascript-natural-sort-0.7.1" - sources."seed-random-2.2.0" - sources."tiny-emitter-2.0.0" - sources."typed-function-0.10.5" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-scss-1.0.2" - (sources."postcss-simple-url-0.1.6" // { - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-smart-import-0.7.5" // { - dependencies = [ - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" - (sources."promise-each-2.2.0" // { - dependencies = [ - sources."any-promise-0.1.0" - ]; - }) - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - (sources."rollup-pluginutils-2.0.1" // { - dependencies = [ - sources."estree-walker-0.3.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."sugarss-1.0.0" - ]; - }) - (sources."rollup-plugin-replace-1.1.1" // { - dependencies = [ - (sources."magic-string-0.15.2" // { - dependencies = [ - sources."vlq-0.2.2" - ]; - }) - (sources."rollup-pluginutils-1.5.2" // { - dependencies = [ - sources."estree-walker-0.2.1" - ]; - }) - ]; - }) - (sources."rollup-plugin-yaml-1.1.0" // { - dependencies = [ - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."rollup-pluginutils-1.5.2" // { - dependencies = [ - sources."estree-walker-0.2.1" - ]; - }) - sources."tosource-1.0.0" - ]; - }) - ]; - }) - (sources."xxhashjs-0.2.1" // { + }; + dependencies = [ + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin for writing Singlish Style Sheets"; + homepage = "https://github.com/lcpriest/postcss-singlish-stylesheets#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-size = nodeEnv.buildNodePackage { + name = "postcss-size"; + packageName = "postcss-size"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-size/-/postcss-size-2.0.0.tgz"; + sha1 = "b9b35240c12e507c3b86c820852bee49f4f26655"; + }; + dependencies = [ + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin for size shortcut"; + homepage = https://github.com/postcss/postcss-size; + license = "MIT"; + }; + production = true; + }; + postcss-size-nib = nodeEnv.buildNodePackage { + name = "postcss-size-nib"; + packageName = "postcss-size-nib"; + version = "1.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-size-nib/-/postcss-size-nib-1.0.3.tgz"; + sha1 = "dfbbf44216733426ffdca1b57acb346be4afa2bc"; + }; + dependencies = [ + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin that allows the use of 'size' as a shorthand for width & height"; + homepage = https://github.com/TheSisb/postcss-size-nib; + license = "MIT"; + }; + production = true; + }; + postcss-sketch = nodeEnv.buildNodePackage { + name = "postcss-sketch"; + packageName = "postcss-sketch"; + version = "0.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-sketch/-/postcss-sketch-0.4.0.tgz"; + sha1 = "3842a5957b80a9d8168d72757c47f78c3e16810d"; + }; + dependencies = [ + sources."lodash-4.17.4" + sources."md5-2.2.1" + sources."path-0.12.7" + sources."postcss-6.0.14" + sources."postcss-nesting-4.2.1" + sources."postcss-value-parser-3.3.0" + sources."charenc-0.0.2" + sources."crypt-0.0.2" + sources."is-buffer-1.1.6" + sources."process-0.11.10" + sources."util-0.10.3" + sources."inherits-2.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin that provides deep bindings between sketch files and your CSS."; + homepage = https://github.com/jturle/postcss-sketch; + license = "MIT"; + }; + production = true; + }; + postcss-slds-prefix = nodeEnv.buildNodePackage { + name = "postcss-slds-prefix"; + packageName = "postcss-slds-prefix"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-slds-prefix/-/postcss-slds-prefix-2.0.1.tgz"; + sha1 = "59599cad883939f01963071c18a69c468b5558e1"; + }; + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."cuint-0.2.2" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "A custom prefixer for the Salesforce Lightning Design System"; + homepage = "https://github.com/salesforce-ux/postcss-slds-prefix#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-smart-asset = nodeEnv.buildNodePackage { + name = "postcss-smart-asset"; + packageName = "postcss-smart-asset"; + version = "0.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-smart-asset/-/postcss-smart-asset-0.5.1.tgz"; + sha1 = "dba0617f1330e06b9e7598f164646cfc7139abb0"; + }; + dependencies = [ + sources."asset-hash-0.1.1" + sources."cp-file-5.0.0" + sources."mime-2.1.0" + sources."minimatch-3.0.4" + sources."nodent-runtime-3.2.0" + sources."pify-3.0.0" + sources."postcss-6.0.14" + sources."big.js-5.0.3" + sources."xxhash-0.2.4" + sources."nan-2.8.0" + sources."graceful-fs-4.1.11" + sources."make-dir-1.1.0" + sources."nested-error-stacks-2.0.0" + sources."safe-buffer-5.1.1" + sources."inherits-2.0.3" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -84851,110 +54217,38 @@ in postcss-smart-import = nodeEnv.buildNodePackage { name = "postcss-smart-import"; packageName = "postcss-smart-import"; - version = "0.7.5"; + version = "0.7.6"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-smart-import/-/postcss-smart-import-0.7.5.tgz"; - sha1 = "df9a9c6dd60d916e5e0670d1c57d03af5d3dcc31"; + url = "https://registry.npmjs.org/postcss-smart-import/-/postcss-smart-import-0.7.6.tgz"; + sha1 = "259deb84aa28f138458218ecc0e9a84c61ada6a4"; }; dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) + sources."babel-runtime-6.26.0" sources."lodash-4.17.4" sources."object-assign-4.1.1" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-sass-0.1.0" // { - dependencies = [ - (sources."gonzales-pe-4.0.3" // { - dependencies = [ - sources."minimist-1.1.3" - ]; - }) - (sources."mathjs-3.14.2" // { - dependencies = [ - sources."complex.js-2.0.4" - sources."decimal.js-7.2.3" - sources."fraction.js-4.0.2" - sources."javascript-natural-sort-0.7.1" - sources."seed-random-2.2.0" - sources."tiny-emitter-2.0.0" - sources."typed-function-0.10.5" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."postcss-sass-0.2.0" sources."postcss-scss-1.0.2" sources."postcss-value-parser-3.3.0" - (sources."promise-each-2.2.0" // { - dependencies = [ - sources."any-promise-0.1.0" - ]; - }) - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - sources."sugarss-1.0.0" + sources."promise-each-2.2.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."sugarss-1.0.1" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."gonzales-pe-4.2.3" + sources."minimist-1.1.3" + sources."any-promise-0.1.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -84974,39 +54268,22 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."profane-1.3.0" // { + sources."postcss-5.2.18" + sources."profane-1.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."escape-string-regexp-1.0.5" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -85025,17 +54302,11 @@ in sha1 = "65bd3db0fe32484757c51b4b3a9388f3e9a021da"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -85053,34 +54324,21 @@ in sha1 = "cc0745417f9e5b49afe9e2dc1871f0a2501f5194"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -85099,35 +54357,22 @@ in sha1 = "0e0e808f10ec99522699432d7a0bcca28c9ce2cd"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."specificity-0.1.6" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."specificity-0.1.6" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -85140,37 +54385,22 @@ in postcss-sorting = nodeEnv.buildNodePackage { name = "postcss-sorting"; packageName = "postcss-sorting"; - version = "3.0.1"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-3.0.1.tgz"; - sha1 = "13d42b255e7881fb33d19dcaa4085580be90664c"; + url = "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-3.1.0.tgz"; + sha1 = "af7c90ee73ad12569a57664eaf06735c2e25bec0"; }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -85189,41 +54419,25 @@ in sha1 = "8771fb368b72368ad8ab7c455f6a25ee7fe92aa4"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -85242,34 +54456,21 @@ in sha1 = "193c5d5dffaf15180f9e0d42ad14be5f5e29da3a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -85288,11074 +54489,3584 @@ in sha1 = "74c81cffba6503998960ea028ca3fb68ac29543c"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin creates speech bubbles with just 1-2 lines of CSS"; - homepage = https://github.com/archana-s/postcss-speech-bubble; - license = "MIT"; - }; - production = true; - }; - postcss-split = nodeEnv.buildNodePackage { - name = "postcss-split"; - packageName = "postcss-split"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-split/-/postcss-split-0.0.4.tgz"; - sha1 = "7c06c8c90540ddff53f732220dbaf03c820202f0"; - }; - dependencies = [ - (sources."postcss-4.1.16" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin to split annotated CSS into a small set of important rules that will be embedded in the HTML, and a large set of rules that will be loaded asynchronously."; - homepage = https://github.com/wladston/postcss-split; - license = "MIT"; - }; - production = true; - }; - postcss-sprites = nodeEnv.buildNodePackage { - name = "postcss-sprites"; - packageName = "postcss-sprites"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-sprites/-/postcss-sprites-4.2.1.tgz"; - sha1 = "15551e5f7245a08abac7dbc24528556b3e1d14c9"; - }; - dependencies = [ - sources."bluebird-3.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."fs-extra-0.26.7" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."spritesmith-3.1.1" // { - dependencies = [ - (sources."concat-stream-1.5.2" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-2.1.1" // { - dependencies = [ - sources."async-0.9.2" - (sources."get-pixels-3.3.0" // { - dependencies = [ - sources."pngjs-2.3.1" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.3.4" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - (sources."ndarray-ops-1.2.2" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."pngjs-nozlib-1.0.0" - sources."through-2.3.8" - ]; - }) - (sources."vinyl-file-1.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.0.3" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - (sources."svg-sprite-1.3.7" // { - dependencies = [ - sources."async-2.5.0" - sources."css-selector-parser-1.3.0" - sources."cssmin-0.4.3" - sources."cssom-0.3.2" - sources."dateformat-2.0.0" - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."lodash.pluck-3.1.2" // { - dependencies = [ - sources."lodash._baseget-3.7.2" - sources."lodash._topath-3.8.1" - sources."lodash.isarray-3.0.4" - (sources."lodash.map-3.1.4" // { - dependencies = [ - sources."lodash._arraymap-3.0.0" - (sources."lodash._basecallback-3.3.1" // { - dependencies = [ - (sources."lodash._baseisequal-3.0.7" // { - dependencies = [ - sources."lodash.istypedarray-3.0.6" - ]; - }) - sources."lodash._bindcallback-3.0.1" - sources."lodash.pairs-3.0.1" - ]; - }) - sources."lodash._baseeach-3.0.4" - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."mustache-2.3.0" - (sources."phantomjs-prebuilt-2.1.14" // { - dependencies = [ - sources."es6-promise-4.0.5" - (sources."extract-zip-1.5.0" // { - dependencies = [ - (sources."concat-stream-1.5.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."debug-0.7.4" - (sources."mkdirp-0.5.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."yauzl-2.4.1" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fs-extra-1.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - ]; - }) - (sources."hasha-2.2.0" // { - dependencies = [ - sources."is-stream-1.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."kew-0.7.0" - sources."progress-1.1.8" - (sources."request-2.79.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.11.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-2.0.6" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."commander-2.11.0" - (sources."is-my-json-valid-2.16.0" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."qs-6.3.2" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.4.3" - sources."uuid-3.1.0" - ]; - }) - (sources."request-progress-2.0.1" // { - dependencies = [ - sources."throttleit-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."prettysize-0.1.0" - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."vinyl-2.1.0" // { - dependencies = [ - sources."clone-2.1.1" - sources."clone-buffer-1.0.0" - sources."clone-stats-1.0.0" - (sources."cloneable-readable-1.0.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."process-nextick-args-1.0.7" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."remove-trailing-separator-1.0.2" - sources."replace-ext-1.0.0" - ]; - }) - (sources."winston-2.3.1" // { - dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" - sources."cycle-1.0.3" - sources."eyes-0.1.8" - sources."isstream-0.1.2" - sources."stack-trace-0.0.10" - ]; - }) - sources."xmldom-0.1.27" - sources."xpath-0.0.24" - (sources."yargs-8.0.2" // { - dependencies = [ - sources."camelcase-4.1.0" - (sources."cliui-3.2.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wrap-ansi-2.1.0" - ]; - }) - sources."decamelize-1.2.0" - sources."get-caller-file-1.0.2" - (sources."os-locale-2.0.0" // { - dependencies = [ - (sources."execa-0.5.1" // { - dependencies = [ - (sources."cross-spawn-4.0.2" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."get-stream-2.3.1" // { - dependencies = [ - sources."object-assign-4.1.1" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - (sources."mem-1.1.0" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - ]; - }) - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."set-blocking-2.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - sources."which-module-2.0.0" - sources."y18n-3.2.1" - sources."yargs-parser-7.0.0" - ]; - }) - ]; - }) + meta = { + description = "PostCSS plugin creates speech bubbles with just 1-2 lines of CSS"; + homepage = https://github.com/archana-s/postcss-speech-bubble; + license = "MIT"; + }; + production = true; + }; + postcss-split = nodeEnv.buildNodePackage { + name = "postcss-split"; + packageName = "postcss-split"; + version = "0.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-split/-/postcss-split-0.0.4.tgz"; + sha1 = "7c06c8c90540ddff53f732220dbaf03c820202f0"; + }; + dependencies = [ + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { - description = "Generate spritesheets from stylesheets"; - homepage = "https://github.com/2createStudio/postcss-sprites#readme"; + description = "PostCSS plugin to split annotated CSS into a small set of important rules that will be embedded in the HTML, and a large set of rules that will be loaded asynchronously."; + homepage = https://github.com/wladston/postcss-split; license = "MIT"; }; production = true; }; - postcss-sprites-2 = nodeEnv.buildNodePackage { - name = "postcss-sprites-2"; - packageName = "postcss-sprites-2"; + postcss-sprites = nodeEnv.buildNodePackage { + name = "postcss-sprites"; + packageName = "postcss-sprites"; version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-sprites-2/-/postcss-sprites-2-4.2.1.tgz"; - sha1 = "9f19f5a7ee6d674533ff04ea208d0264160c4c23"; + url = "https://registry.npmjs.org/postcss-sprites/-/postcss-sprites-4.2.1.tgz"; + sha1 = "15551e5f7245a08abac7dbc24528556b3e1d14c9"; }; dependencies = [ - sources."bluebird-3.5.0" - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."fs-extra-0.26.7" // { + sources."bluebird-3.5.1" + sources."debug-2.6.9" + sources."fs-extra-0.26.7" + sources."lodash-4.17.4" + sources."postcss-5.2.18" + sources."spritesmith-3.2.1" + (sources."svg-sprite-1.3.7" // { dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { + sources."async-2.6.0" + sources."vinyl-2.1.0" + sources."yargs-8.0.2" + sources."clone-2.1.1" + sources."clone-stats-1.0.0" + sources."replace-ext-1.0.0" + sources."camelcase-4.1.0" + (sources."cliui-3.2.0" // { dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) + sources."string-width-1.0.2" ]; }) ]; }) - sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."ms-2.0.0" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."concat-stream-1.5.2" + sources."layout-2.2.0" + sources."pixelsmith-2.1.3" + sources."semver-5.0.3" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."xtend-4.0.1" + sources."string_decoder-1.0.3" + ]; + }) + sources."typedarray-0.0.6" + sources."readable-stream-2.0.6" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."string_decoder-0.10.31" + sources."util-deprecate-1.0.2" + sources."bin-pack-1.0.2" + sources."async-0.9.2" + sources."get-pixels-3.3.0" + sources."mime-types-2.1.17" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.3.4" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + sources."vinyl-file-1.3.0" + sources."pngjs-2.3.1" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."is-buffer-1.1.6" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { dependencies = [ - sources."has-flag-1.0.0" + sources."string_decoder-0.10.31" ]; }) + sources."through2-0.4.2" + sources."string_decoder-1.0.3" + sources."isarray-0.0.1" ]; }) - (sources."spritesmith-3.1.1" // { + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + (sources."duplexer2-0.0.2" // { dependencies = [ - (sources."concat-stream-1.5.2" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-2.1.1" // { - dependencies = [ - sources."async-0.9.2" - (sources."get-pixels-3.3.0" // { - dependencies = [ - sources."pngjs-2.3.1" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.3.4" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - (sources."ndarray-ops-1.2.2" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."pngjs-nozlib-1.0.0" - sources."through-2.3.8" - ]; - }) - (sources."vinyl-file-1.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.0.3" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) + sources."readable-stream-1.1.14" + sources."isarray-0.0.1" ]; }) - (sources."svg-sprite-1.3.7" // { + (sources."escodegen-1.3.3" // { dependencies = [ - sources."async-2.5.0" - sources."css-selector-parser-1.3.0" - sources."cssmin-0.4.3" - sources."cssom-0.3.2" - sources."dateformat-2.0.0" - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."lodash.pluck-3.1.2" // { - dependencies = [ - sources."lodash._baseget-3.7.2" - sources."lodash._topath-3.8.1" - sources."lodash.isarray-3.0.4" - (sources."lodash.map-3.1.4" // { - dependencies = [ - sources."lodash._arraymap-3.0.0" - (sources."lodash._basecallback-3.3.1" // { - dependencies = [ - (sources."lodash._baseisequal-3.0.7" // { - dependencies = [ - sources."lodash.istypedarray-3.0.6" - ]; - }) - sources."lodash._bindcallback-3.0.1" - sources."lodash.pairs-3.0.1" - ]; - }) - sources."lodash._baseeach-3.0.4" - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."mustache-2.3.0" - (sources."phantomjs-prebuilt-2.1.14" // { - dependencies = [ - sources."es6-promise-4.0.5" - (sources."extract-zip-1.5.0" // { - dependencies = [ - (sources."concat-stream-1.5.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."debug-0.7.4" - (sources."mkdirp-0.5.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."yauzl-2.4.1" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fs-extra-1.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - ]; - }) - (sources."hasha-2.2.0" // { - dependencies = [ - sources."is-stream-1.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."kew-0.7.0" - sources."progress-1.1.8" - (sources."request-2.79.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.11.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-2.0.6" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."commander-2.11.0" - (sources."is-my-json-valid-2.16.0" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."qs-6.3.2" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.4.3" - sources."uuid-3.1.0" - ]; - }) - (sources."request-progress-2.0.1" // { - dependencies = [ - sources."throttleit-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."prettysize-0.1.0" - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."vinyl-2.1.0" // { - dependencies = [ - sources."clone-2.1.1" - sources."clone-buffer-1.0.0" - sources."clone-stats-1.0.0" - (sources."cloneable-readable-1.0.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."process-nextick-args-1.0.7" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."remove-trailing-separator-1.0.2" - sources."replace-ext-1.0.0" - ]; - }) - (sources."winston-2.3.1" // { - dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" - sources."cycle-1.0.3" - sources."eyes-0.1.8" - sources."isstream-0.1.2" - sources."stack-trace-0.0.10" - ]; - }) - sources."xmldom-0.1.27" - sources."xpath-0.0.24" - (sources."yargs-8.0.2" // { - dependencies = [ - sources."camelcase-4.1.0" - (sources."cliui-3.2.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wrap-ansi-2.1.0" - ]; - }) - sources."decamelize-1.2.0" - sources."get-caller-file-1.0.2" - (sources."os-locale-2.0.0" // { - dependencies = [ - (sources."execa-0.5.1" // { - dependencies = [ - (sources."cross-spawn-4.0.2" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."get-stream-2.3.1" // { - dependencies = [ - sources."object-assign-4.1.1" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - (sources."mem-1.1.0" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - ]; - }) - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."set-blocking-2.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - sources."which-module-2.0.0" - sources."y18n-3.2.1" - sources."yargs-parser-7.0.0" - ]; - }) + sources."esprima-1.1.1" + sources."source-map-0.1.43" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Generate spritesheets from stylesheets"; - homepage = "https://github.com/2createStudio/postcss-sprites#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-sprites-just = nodeEnv.buildNodePackage { - name = "postcss-sprites-just"; - packageName = "postcss-sprites-just"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-sprites-just/-/postcss-sprites-just-2.0.4.tgz"; - sha1 = "2cf8fa78b2b669d5a096e7fe6555fdd45ac0b071"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { + (sources."falafel-2.1.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."isarray-0.0.1" ]; }) - sources."async-0.9.2" - sources."lodash-3.10.1" - (sources."mkdirp-0.5.1" // { + sources."has-1.0.1" + sources."object-inspect-0.4.0" + (sources."quote-stream-0.0.0" // { dependencies = [ - sources."minimist-0.0.8" + sources."through2-0.4.2" + sources."readable-stream-1.0.34" + sources."isarray-0.0.1" ]; }) - sources."q-1.5.0" - (sources."spritesmith-1.5.0" // { + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { dependencies = [ - sources."async-0.2.10" - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-1.3.4" // { - dependencies = [ - sources."async-0.9.2" - (sources."concat-stream-1.4.10" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - ]; - }) - ]; - }) - (sources."get-pixels-3.2.3" // { - dependencies = [ - sources."pngjs2-1.2.0" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.2.1" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - sources."pngjs2-1.2.0" - sources."through-2.3.8" - ]; - }) - ]; - }) - sources."semver-5.0.3" + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Generate sprites from stylesheets."; - homepage = "https://github.com/justdigital/postcss-sprites-just#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-sprites-rem = nodeEnv.buildNodePackage { - name = "postcss-sprites-rem"; - packageName = "postcss-sprites-rem"; - version = "4.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-sprites-rem/-/postcss-sprites-rem-4.2.2.tgz"; - sha1 = "c83dff716ce6be55e60ca5562912fba11b5a5311"; - }; - dependencies = [ - sources."bluebird-3.5.0" - (sources."debug-2.6.8" // { + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + sources."minimist-0.0.8" + (sources."xtend-2.1.2" // { dependencies = [ - sources."ms-2.0.0" + sources."object-keys-0.4.0" ]; }) - (sources."fs-extra-0.26.7" // { + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) + sources."readable-stream-1.0.34" + sources."isarray-0.0.1" ]; }) - sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + (sources."gif-encoder-0.4.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."readable-stream-1.1.14" + sources."isarray-0.0.1" ]; }) - (sources."spritesmith-3.1.1" // { + sources."ndarray-ops-1.2.2" + sources."pngjs-nozlib-1.0.0" + sources."strip-bom-2.0.0" + sources."strip-bom-stream-1.0.0" + sources."vinyl-1.2.0" + sources."is-utf8-0.2.1" + sources."first-chunk-stream-1.0.0" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."replace-ext-0.0.1" + sources."css-selector-parser-1.3.0" + sources."cssmin-0.4.3" + sources."cssom-0.3.2" + sources."dateformat-2.2.0" + (sources."js-yaml-3.10.0" // { dependencies = [ - (sources."concat-stream-1.5.2" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-2.1.1" // { - dependencies = [ - sources."async-0.9.2" - (sources."get-pixels-3.3.0" // { - dependencies = [ - sources."pngjs-2.3.1" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.3.4" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - (sources."ndarray-ops-1.2.2" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."pngjs-nozlib-1.0.0" - sources."through-2.3.8" - ]; - }) - (sources."vinyl-file-1.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.0.3" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) + sources."esprima-4.0.0" ]; }) - (sources."svg-sprite-1.3.7" // { + sources."lodash.pluck-3.1.2" + sources."mkdirp-0.5.1" + sources."mustache-2.3.0" + (sources."phantomjs-prebuilt-2.1.16" // { dependencies = [ - sources."async-2.5.0" - sources."css-selector-parser-1.3.0" - sources."cssmin-0.4.3" - sources."cssom-0.3.2" - sources."dateformat-2.0.0" - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."lodash.pluck-3.1.2" // { - dependencies = [ - sources."lodash._baseget-3.7.2" - sources."lodash._topath-3.8.1" - sources."lodash.isarray-3.0.4" - (sources."lodash.map-3.1.4" // { - dependencies = [ - sources."lodash._arraymap-3.0.0" - (sources."lodash._basecallback-3.3.1" // { - dependencies = [ - (sources."lodash._baseisequal-3.0.7" // { - dependencies = [ - sources."lodash.istypedarray-3.0.6" - ]; - }) - sources."lodash._bindcallback-3.0.1" - sources."lodash.pairs-3.0.1" - ]; - }) - sources."lodash._baseeach-3.0.4" - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."mustache-2.3.0" - (sources."phantomjs-prebuilt-2.1.14" // { - dependencies = [ - sources."es6-promise-4.0.5" - (sources."extract-zip-1.5.0" // { - dependencies = [ - (sources."concat-stream-1.5.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."debug-0.7.4" - (sources."mkdirp-0.5.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."yauzl-2.4.1" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fs-extra-1.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - ]; - }) - (sources."hasha-2.2.0" // { - dependencies = [ - sources."is-stream-1.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."kew-0.7.0" - sources."progress-1.1.8" - (sources."request-2.79.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.11.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-2.0.6" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."commander-2.11.0" - (sources."is-my-json-valid-2.16.0" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."qs-6.3.2" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.4.3" - sources."uuid-3.1.0" - ]; - }) - (sources."request-progress-2.0.1" // { - dependencies = [ - sources."throttleit-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."prettysize-0.1.0" - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."vinyl-2.1.0" // { - dependencies = [ - sources."clone-2.1.1" - sources."clone-buffer-1.0.0" - sources."clone-stats-1.0.0" - (sources."cloneable-readable-1.0.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."process-nextick-args-1.0.7" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."remove-trailing-separator-1.0.2" - sources."replace-ext-1.0.0" - ]; - }) - (sources."winston-2.3.1" // { - dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" - sources."cycle-1.0.3" - sources."eyes-0.1.8" - sources."isstream-0.1.2" - sources."stack-trace-0.0.10" - ]; - }) - sources."xmldom-0.1.27" - sources."xpath-0.0.24" - (sources."yargs-8.0.2" // { - dependencies = [ - sources."camelcase-4.1.0" - (sources."cliui-3.2.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wrap-ansi-2.1.0" - ]; - }) - sources."decamelize-1.2.0" - sources."get-caller-file-1.0.2" - (sources."os-locale-2.0.0" // { - dependencies = [ - (sources."execa-0.5.1" // { - dependencies = [ - (sources."cross-spawn-4.0.2" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - (sources."get-stream-2.3.1" // { - dependencies = [ - sources."object-assign-4.1.1" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - (sources."mem-1.1.0" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - ]; - }) - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."set-blocking-2.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - sources."which-module-2.0.0" - sources."y18n-3.2.1" - sources."yargs-parser-7.0.0" - ]; - }) + sources."fs-extra-1.0.0" + ]; + }) + sources."prettysize-0.1.0" + (sources."svgo-0.7.2" // { + dependencies = [ + sources."js-yaml-3.7.0" + sources."esprima-2.7.3" + ]; + }) + (sources."winston-2.4.0" // { + dependencies = [ + sources."async-1.0.0" + sources."colors-1.0.3" + ]; + }) + sources."xmldom-0.1.27" + sources."xpath-0.0.24" + sources."argparse-1.0.9" + sources."sprintf-js-1.0.3" + sources."lodash._baseget-3.7.2" + sources."lodash._topath-3.8.1" + sources."lodash.isarray-3.0.4" + sources."lodash.map-3.1.4" + sources."lodash._arraymap-3.0.0" + sources."lodash._basecallback-3.3.1" + sources."lodash._baseeach-3.0.4" + sources."lodash.keys-3.1.2" + sources."lodash._baseisequal-3.0.7" + sources."lodash._bindcallback-3.0.1" + sources."lodash.pairs-3.0.1" + sources."lodash.istypedarray-3.0.6" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."es6-promise-4.2.2" + (sources."extract-zip-1.6.6" // { + dependencies = [ + sources."concat-stream-1.6.0" + sources."mkdirp-0.5.0" + sources."readable-stream-2.3.3" + sources."string_decoder-1.0.3" + ]; + }) + sources."hasha-2.2.0" + sources."kew-0.7.0" + sources."progress-1.1.8" + sources."request-progress-2.0.1" + sources."which-1.3.0" + sources."yauzl-2.4.1" + sources."fd-slicer-1.0.1" + sources."pend-1.2.0" + sources."is-stream-1.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."throttleit-1.0.0" + sources."isexe-2.0.0" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."clap-1.2.3" + sources."clone-buffer-1.0.0" + sources."cloneable-readable-1.0.0" + sources."remove-trailing-separator-1.1.0" + sources."cycle-1.0.3" + sources."eyes-0.1.8" + sources."stack-trace-0.0.10" + sources."get-caller-file-1.0.2" + sources."os-locale-2.1.0" + sources."read-pkg-up-2.0.0" + sources."require-directory-2.1.1" + sources."require-main-filename-1.0.1" + sources."set-blocking-2.0.0" + (sources."string-width-2.1.1" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" ]; }) + sources."which-module-2.0.0" + sources."y18n-3.2.1" + (sources."yargs-parser-7.0.0" // { + dependencies = [ + sources."camelcase-4.1.0" + ]; + }) + (sources."wrap-ansi-2.1.0" // { + dependencies = [ + sources."string-width-1.0.2" + ]; + }) + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."execa-0.7.0" + sources."lcid-1.0.0" + sources."mem-1.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."path-key-2.0.1" + sources."invert-kv-1.0.0" + sources."mimic-fn-1.1.0" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + (sources."load-json-file-2.0.0" // { + dependencies = [ + sources."strip-bom-3.0.0" + ]; + }) + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" ]; buildInputs = globalBuildInputs; meta = { - description = "Generate spritesheets from stylesheets fork from https://github.com/2createStudio/postcss-sprites"; - homepage = "https://github.com/Global-Travel/postcss-sprites#readme"; + description = "Generate spritesheets from stylesheets"; + homepage = "https://github.com/2createStudio/postcss-sprites#readme"; license = "MIT"; }; production = true; }; - postcss-spritus = nodeEnv.buildNodePackage { - name = "postcss-spritus"; - packageName = "postcss-spritus"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-spritus/-/postcss-spritus-1.2.0.tgz"; - sha1 = "c8e0cab898cd4d4097453cd23b1adb52534a25bf"; - }; - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."gulp-util-3.0.8" // { - dependencies = [ - sources."array-differ-1.0.0" - sources."array-uniq-1.0.3" - sources."beeper-1.1.1" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."dateformat-2.0.0" - (sources."fancy-log-1.3.0" // { - dependencies = [ - sources."time-stamp-1.1.0" - ]; - }) - (sources."gulplog-1.0.0" // { - dependencies = [ - (sources."glogg-1.0.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - ]; - }) - (sources."has-gulplog-0.1.0" // { - dependencies = [ - sources."sparkles-1.0.0" - ]; - }) - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - (sources."lodash.template-3.6.2" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - (sources."lodash.escape-3.2.0" // { - dependencies = [ - sources."lodash._root-3.0.1" - ]; - }) - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - sources."lodash.restparam-3.6.1" - sources."lodash.templatesettings-3.1.1" - ]; - }) - sources."minimist-1.2.0" - (sources."multipipe-0.1.2" // { - dependencies = [ - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-3.0.0" - sources."replace-ext-0.0.1" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.5.3" // { + postcss-sprites-2 = nodeEnv.buildNodePackage { + name = "postcss-sprites-2"; + packageName = "postcss-sprites-2"; + version = "4.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-sprites-2/-/postcss-sprites-2-4.2.1.tgz"; + sha1 = "9f19f5a7ee6d674533ff04ea208d0264160c4c23"; + }; + dependencies = [ + sources."bluebird-3.5.1" + sources."debug-2.6.9" + sources."fs-extra-0.26.7" + sources."lodash-4.17.4" + sources."postcss-5.2.18" + sources."spritesmith-3.2.1" + (sources."svg-sprite-1.3.7" // { + dependencies = [ + sources."async-2.6.0" + sources."vinyl-2.1.0" + sources."yargs-8.0.2" + sources."clone-2.1.1" + sources."clone-stats-1.0.0" + sources."replace-ext-1.0.0" + sources."camelcase-4.1.0" + (sources."cliui-3.2.0" // { dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" + sources."string-width-1.0.2" ]; }) ]; }) - (sources."imagemin-5.3.1" // { + sources."ms-2.0.0" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."file-type-4.4.0" - (sources."globby-6.1.0" // { + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."concat-stream-1.5.2" + sources."layout-2.2.0" + sources."pixelsmith-2.1.3" + sources."semver-5.0.3" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."xtend-4.0.1" + sources."string_decoder-1.0.3" + ]; + }) + sources."typedarray-0.0.6" + sources."readable-stream-2.0.6" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."string_decoder-0.10.31" + sources."util-deprecate-1.0.2" + sources."bin-pack-1.0.2" + sources."async-0.9.2" + sources."get-pixels-3.3.0" + sources."mime-types-2.1.17" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.3.4" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + sources."vinyl-file-1.3.0" + sources."pngjs-2.3.1" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."is-buffer-1.1.6" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."object-assign-4.1.1" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) + sources."string_decoder-0.10.31" ]; }) - sources."make-dir-1.0.0" - sources."p-pipe-1.1.0" - sources."pify-2.3.0" - sources."replace-ext-1.0.0" + sources."through2-0.4.2" + sources."string_decoder-1.0.3" + sources."isarray-0.0.1" ]; }) - (sources."imagemin-pngquant-5.0.1" // { + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + (sources."duplexer2-0.0.2" // { dependencies = [ - (sources."exec-buffer-3.2.0" // { - dependencies = [ - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - sources."p-finally-1.0.0" - sources."pify-3.0.0" - sources."rimraf-2.6.1" - (sources."tempfile-2.0.0" // { - dependencies = [ - sources."temp-dir-1.0.0" - sources."uuid-3.1.0" - ]; - }) - ]; - }) - sources."is-png-1.1.0" + sources."readable-stream-1.1.14" + sources."isarray-0.0.1" ]; }) - (sources."mkdirp-0.5.1" // { + (sources."escodegen-1.3.3" // { dependencies = [ - sources."minimist-0.0.8" + sources."esprima-1.1.1" + sources."source-map-0.1.43" ]; }) - (sources."pngquant-bin-3.1.1" // { + (sources."falafel-2.1.0" // { dependencies = [ - (sources."bin-build-2.2.0" // { - dependencies = [ - (sources."archive-type-3.2.0" // { - dependencies = [ - sources."file-type-3.9.0" - ]; - }) - (sources."decompress-3.0.0" // { - dependencies = [ - (sources."buffer-to-vinyl-1.1.0" // { - dependencies = [ - sources."file-type-3.9.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uuid-2.0.3" - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."decompress-tar-3.1.0" // { - dependencies = [ - sources."is-tar-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-tarbz2-3.1.0" // { - dependencies = [ - sources."is-bzip2-1.0.0" - sources."object-assign-2.1.1" - (sources."seek-bzip-1.0.5" // { - dependencies = [ - (sources."commander-2.8.1" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - ]; - }) - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-targz-3.1.0" // { - dependencies = [ - sources."is-gzip-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-unzip-3.4.0" // { - dependencies = [ - sources."is-zip-1.0.0" - (sources."read-all-stream-3.1.0" // { - dependencies = [ - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."stat-mode-0.2.2" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - (sources."yauzl-2.8.0" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - sources."buffer-crc32-0.2.13" - ]; - }) - ]; - }) - (sources."stream-combiner2-1.1.1" // { - dependencies = [ - sources."duplexer2-0.1.4" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."vinyl-assign-1.2.1" // { - dependencies = [ - sources."object-assign-4.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."vinyl-fs-2.4.4" // { - dependencies = [ - (sources."duplexify-3.5.0" // { - dependencies = [ - (sources."end-of-stream-1.0.0" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."inherits-2.0.3" - sources."stream-shift-1.0.0" - ]; - }) - (sources."glob-stream-5.3.5" // { - dependencies = [ - sources."extend-3.0.1" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."glob-parent-3.1.0" // { - dependencies = [ - (sources."is-glob-3.1.0" // { - dependencies = [ - sources."is-extglob-2.1.1" - ]; - }) - sources."path-dirname-1.0.2" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."ordered-read-streams-0.3.0" // { - dependencies = [ - sources."is-stream-1.1.0" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."to-absolute-glob-0.1.1" // { - dependencies = [ - (sources."extend-shallow-2.0.1" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - ]; - }) - (sources."unique-stream-2.2.1" // { - dependencies = [ - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - (sources."gulp-sourcemaps-1.6.0" // { - dependencies = [ - sources."convert-source-map-1.5.0" - ]; - }) - sources."is-valid-glob-0.3.0" - sources."lazystream-1.0.0" - sources."lodash.isequal-4.5.0" - sources."merge-stream-1.0.1" - sources."object-assign-4.1.1" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."through2-filter-2.0.0" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - sources."vali-date-1.0.0" - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."download-4.4.3" // { - dependencies = [ - (sources."caw-1.2.0" // { - dependencies = [ - (sources."get-proxy-1.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."is-obj-1.0.1" - sources."object-assign-3.0.0" - sources."tunnel-agent-0.4.3" - ]; - }) - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - ]; - }) - (sources."each-async-1.1.1" // { - dependencies = [ - sources."onetime-1.1.0" - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."filenamify-1.2.1" // { - dependencies = [ - sources."filename-reserved-regex-1.0.0" - (sources."strip-outer-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."trim-repeated-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - ]; - }) - (sources."got-5.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer2-0.1.4" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."node-status-codes-1.0.0" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - sources."timed-out-3.1.3" - sources."unzip-response-1.0.2" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - sources."gulp-decompress-1.2.0" - sources."gulp-rename-1.2.2" - sources."is-url-1.2.2" - sources."object-assign-4.1.1" - (sources."read-all-stream-3.1.0" // { - dependencies = [ - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."stream-combiner2-1.1.1" // { - dependencies = [ - sources."duplexer2-0.1.4" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - (sources."vinyl-fs-2.4.4" // { - dependencies = [ - (sources."duplexify-3.5.0" // { - dependencies = [ - (sources."end-of-stream-1.0.0" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."inherits-2.0.3" - sources."stream-shift-1.0.0" - ]; - }) - (sources."glob-stream-5.3.5" // { - dependencies = [ - sources."extend-3.0.1" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."glob-parent-3.1.0" // { - dependencies = [ - (sources."is-glob-3.1.0" // { - dependencies = [ - sources."is-extglob-2.1.1" - ]; - }) - sources."path-dirname-1.0.2" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."ordered-read-streams-0.3.0" // { - dependencies = [ - sources."is-stream-1.1.0" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."to-absolute-glob-0.1.1" // { - dependencies = [ - (sources."extend-shallow-2.0.1" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - ]; - }) - (sources."unique-stream-2.2.1" // { - dependencies = [ - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - (sources."gulp-sourcemaps-1.6.0" // { - dependencies = [ - sources."convert-source-map-1.5.0" - ]; - }) - sources."is-valid-glob-0.3.0" - sources."lazystream-1.0.0" - sources."lodash.isequal-4.5.0" - sources."merge-stream-1.0.1" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."through2-filter-2.0.0" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - sources."vali-date-1.0.0" - ]; - }) - (sources."ware-1.3.0" // { - dependencies = [ - (sources."wrap-fn-0.1.5" // { - dependencies = [ - sources."co-3.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."exec-series-1.0.3" // { - dependencies = [ - sources."async-each-series-1.1.0" - sources."object-assign-4.1.1" - ]; - }) - sources."rimraf-2.6.1" - (sources."tempfile-1.1.1" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."uuid-2.0.3" - ]; - }) - (sources."url-regex-3.2.0" // { - dependencies = [ - sources."ip-regex-1.0.3" - ]; - }) - ]; - }) - (sources."bin-wrapper-3.0.2" // { - dependencies = [ - (sources."bin-check-2.0.0" // { - dependencies = [ - (sources."executable-1.1.0" // { - dependencies = [ - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."bin-version-check-2.1.0" // { - dependencies = [ - (sources."bin-version-1.0.4" // { - dependencies = [ - (sources."find-versions-1.2.1" // { - dependencies = [ - sources."array-uniq-1.0.3" - sources."get-stdin-4.0.1" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."strip-indent-1.0.1" - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - sources."semver-regex-1.0.0" - ]; - }) - ]; - }) - sources."minimist-1.2.0" - sources."semver-4.3.6" - (sources."semver-truncate-1.1.2" // { - dependencies = [ - sources."semver-5.3.0" - ]; - }) - ]; - }) - (sources."download-4.4.3" // { - dependencies = [ - (sources."caw-1.2.0" // { - dependencies = [ - (sources."get-proxy-1.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."is-obj-1.0.1" - sources."object-assign-3.0.0" - sources."tunnel-agent-0.4.3" - ]; - }) - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - ]; - }) - (sources."filenamify-1.2.1" // { - dependencies = [ - sources."filename-reserved-regex-1.0.0" - (sources."strip-outer-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."trim-repeated-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - ]; - }) - (sources."got-5.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer2-0.1.4" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."node-status-codes-1.0.0" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - sources."timed-out-3.1.3" - sources."unzip-response-1.0.2" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."gulp-decompress-1.2.0" // { - dependencies = [ - (sources."archive-type-3.2.0" // { - dependencies = [ - sources."file-type-3.9.0" - ]; - }) - (sources."decompress-3.0.0" // { - dependencies = [ - (sources."buffer-to-vinyl-1.1.0" // { - dependencies = [ - sources."file-type-3.9.0" - sources."uuid-2.0.3" - ]; - }) - (sources."decompress-tar-3.1.0" // { - dependencies = [ - sources."is-tar-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-tarbz2-3.1.0" // { - dependencies = [ - sources."is-bzip2-1.0.0" - sources."object-assign-2.1.1" - (sources."seek-bzip-1.0.5" // { - dependencies = [ - (sources."commander-2.8.1" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - ]; - }) - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-targz-3.1.0" // { - dependencies = [ - sources."is-gzip-1.0.0" - sources."object-assign-2.1.1" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."tar-stream-1.5.4" // { - dependencies = [ - sources."bl-1.2.1" - (sources."end-of-stream-1.4.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."vinyl-0.4.6" // { - dependencies = [ - sources."clone-0.2.0" - sources."clone-stats-0.0.1" - ]; - }) - ]; - }) - (sources."decompress-unzip-3.4.0" // { - dependencies = [ - sources."is-zip-1.0.0" - sources."stat-mode-0.2.2" - (sources."strip-dirs-1.1.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."get-stdin-4.0.1" - (sources."is-absolute-0.1.7" // { - dependencies = [ - sources."is-relative-0.1.3" - ]; - }) - sources."is-natural-number-2.1.1" - sources."minimist-1.2.0" - sources."sum-up-1.0.3" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."yauzl-2.8.0" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - sources."buffer-crc32-0.2.13" - ]; - }) - ]; - }) - sources."vinyl-assign-1.2.1" - ]; - }) - ]; - }) - sources."gulp-rename-1.2.2" - sources."is-url-1.2.2" - sources."object-assign-4.1.1" - (sources."read-all-stream-3.1.0" // { - dependencies = [ - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - (sources."stream-combiner2-1.1.1" // { - dependencies = [ - sources."duplexer2-0.1.4" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - (sources."vinyl-fs-2.4.4" // { - dependencies = [ - (sources."duplexify-3.5.0" // { - dependencies = [ - (sources."end-of-stream-1.0.0" // { - dependencies = [ - (sources."once-1.3.3" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."inherits-2.0.3" - sources."stream-shift-1.0.0" - ]; - }) - (sources."glob-stream-5.3.5" // { - dependencies = [ - sources."extend-3.0.1" - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."glob-parent-3.1.0" // { - dependencies = [ - (sources."is-glob-3.1.0" // { - dependencies = [ - sources."is-extglob-2.1.1" - ]; - }) - sources."path-dirname-1.0.2" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - (sources."ordered-read-streams-0.3.0" // { - dependencies = [ - sources."is-stream-1.1.0" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."to-absolute-glob-0.1.1" // { - dependencies = [ - (sources."extend-shallow-2.0.1" // { - dependencies = [ - sources."is-extendable-0.1.1" - ]; - }) - ]; - }) - (sources."unique-stream-2.2.1" // { - dependencies = [ - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - (sources."gulp-sourcemaps-1.6.0" // { - dependencies = [ - sources."convert-source-map-1.5.0" - ]; - }) - sources."is-valid-glob-0.3.0" - sources."lazystream-1.0.0" - sources."lodash.isequal-4.5.0" - sources."merge-stream-1.0.1" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."through2-2.0.3" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - (sources."through2-filter-2.0.0" // { - dependencies = [ - sources."xtend-4.0.1" - ]; - }) - sources."vali-date-1.0.0" - ]; - }) - (sources."ware-1.3.0" // { - dependencies = [ - (sources."wrap-fn-0.1.5" // { - dependencies = [ - sources."co-3.1.0" - ]; - }) - ]; - }) - ]; - }) - (sources."each-async-1.1.1" // { - dependencies = [ - sources."onetime-1.1.0" - sources."set-immediate-shim-1.0.1" - ]; - }) - sources."lazy-req-1.1.0" - sources."os-filter-obj-1.0.3" - ]; - }) - (sources."logalot-2.1.0" // { - dependencies = [ - (sources."figures-1.7.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - sources."object-assign-4.1.1" - ]; - }) - (sources."squeak-1.3.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."console-stream-0.1.1" - (sources."lpad-align-1.1.2" // { - dependencies = [ - sources."get-stdin-4.0.1" - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."longest-1.0.1" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - sources."strip-indent-1.0.1" - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - ]; - }) - ]; - }) - ]; - }) + sources."isarray-0.0.1" ]; }) - (sources."postcss-5.2.17" // { + sources."has-1.0.1" + sources."object-inspect-0.4.0" + (sources."quote-stream-0.0.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."through2-0.4.2" + sources."readable-stream-1.0.34" + sources."isarray-0.0.1" ]; }) - sources."pretty-bytes-4.0.2" - (sources."spritesmith-3.1.1" // { + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { dependencies = [ - (sources."concat-stream-1.5.2" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."layout-2.2.0" // { - dependencies = [ - sources."bin-pack-1.0.2" - ]; - }) - (sources."pixelsmith-2.1.1" // { - dependencies = [ - sources."async-0.9.2" - (sources."get-pixels-3.3.0" // { - dependencies = [ - sources."pngjs-2.3.1" - (sources."ndarray-pack-1.2.1" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."jpeg-js-0.1.2" - sources."omggif-1.0.8" - sources."node-bitmap-0.0.1" - sources."through-2.3.8" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."parse-data-uri-0.2.0" - sources."data-uri-to-buffer-0.0.3" - ]; - }) - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - (sources."ndarray-1.0.18" // { - dependencies = [ - sources."iota-array-1.0.0" - sources."is-buffer-1.1.5" - ]; - }) - (sources."ndarray-fill-1.0.2" // { - dependencies = [ - (sources."cwise-1.0.10" // { - dependencies = [ - (sources."cwise-parser-1.0.3" // { - dependencies = [ - sources."esprima-1.2.5" - sources."uniq-1.0.1" - ]; - }) - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - (sources."static-module-1.4.0" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."escodegen-1.3.3" // { - dependencies = [ - sources."esutils-1.0.0" - sources."estraverse-1.5.1" - sources."esprima-1.1.1" - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - (sources."falafel-2.1.0" // { - dependencies = [ - sources."acorn-5.1.1" - sources."foreach-2.0.5" - sources."isarray-0.0.1" - sources."object-keys-1.0.11" - ]; - }) - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-inspect-0.4.0" - (sources."quote-stream-0.0.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."shallow-copy-0.0.1" - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) - (sources."through2-0.4.2" // { - dependencies = [ - (sources."xtend-2.1.2" // { - dependencies = [ - sources."object-keys-0.4.0" - ]; - }) - ]; - }) - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."obj-extend-0.1.0" - (sources."save-pixels-2.3.4" // { - dependencies = [ - (sources."contentstream-1.0.0" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."gif-encoder-0.4.3" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - sources."jpeg-js-0.0.4" - (sources."ndarray-ops-1.2.2" // { - dependencies = [ - (sources."cwise-compiler-1.1.3" // { - dependencies = [ - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."pngjs-nozlib-1.0.0" - sources."through-2.3.8" - ]; - }) - (sources."vinyl-file-1.3.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."strip-bom-stream-1.0.0" // { - dependencies = [ - sources."first-chunk-stream-1.0.0" - ]; - }) - (sources."vinyl-1.2.0" // { - dependencies = [ - sources."clone-1.0.2" - sources."clone-stats-0.0.1" - sources."replace-ext-0.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.0.3" - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + sources."minimist-0.0.8" + (sources."xtend-2.1.2" // { + dependencies = [ + sources."object-keys-0.4.0" + ]; + }) + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" + sources."isarray-0.0.1" + ]; + }) + (sources."gif-encoder-0.4.3" // { + dependencies = [ + sources."readable-stream-1.1.14" + sources."isarray-0.0.1" + ]; + }) + sources."ndarray-ops-1.2.2" + sources."pngjs-nozlib-1.0.0" + sources."strip-bom-2.0.0" + sources."strip-bom-stream-1.0.0" + sources."vinyl-1.2.0" + sources."is-utf8-0.2.1" + sources."first-chunk-stream-1.0.0" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."replace-ext-0.0.1" + sources."css-selector-parser-1.3.0" + sources."cssmin-0.4.3" + sources."cssom-0.3.2" + sources."dateformat-2.2.0" + (sources."js-yaml-3.10.0" // { + dependencies = [ + sources."esprima-4.0.0" + ]; + }) + sources."lodash.pluck-3.1.2" + sources."mkdirp-0.5.1" + sources."mustache-2.3.0" + (sources."phantomjs-prebuilt-2.1.16" // { + dependencies = [ + sources."fs-extra-1.0.0" ]; }) + sources."prettysize-0.1.0" + (sources."svgo-0.7.2" // { + dependencies = [ + sources."js-yaml-3.7.0" + sources."esprima-2.7.3" + ]; + }) + (sources."winston-2.4.0" // { + dependencies = [ + sources."async-1.0.0" + sources."colors-1.0.3" + ]; + }) + sources."xmldom-0.1.27" + sources."xpath-0.0.24" + sources."argparse-1.0.9" + sources."sprintf-js-1.0.3" + sources."lodash._baseget-3.7.2" + sources."lodash._topath-3.8.1" + sources."lodash.isarray-3.0.4" + sources."lodash.map-3.1.4" + sources."lodash._arraymap-3.0.0" + sources."lodash._basecallback-3.3.1" + sources."lodash._baseeach-3.0.4" + sources."lodash.keys-3.1.2" + sources."lodash._baseisequal-3.0.7" + sources."lodash._bindcallback-3.0.1" + sources."lodash.pairs-3.0.1" + sources."lodash.istypedarray-3.0.6" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."es6-promise-4.2.2" + (sources."extract-zip-1.6.6" // { + dependencies = [ + sources."concat-stream-1.6.0" + sources."mkdirp-0.5.0" + sources."readable-stream-2.3.3" + sources."string_decoder-1.0.3" + ]; + }) + sources."hasha-2.2.0" + sources."kew-0.7.0" + sources."progress-1.1.8" + sources."request-progress-2.0.1" + sources."which-1.3.0" + sources."yauzl-2.4.1" + sources."fd-slicer-1.0.1" + sources."pend-1.2.0" + sources."is-stream-1.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."throttleit-1.0.0" + sources."isexe-2.0.0" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."clap-1.2.3" + sources."clone-buffer-1.0.0" + sources."cloneable-readable-1.0.0" + sources."remove-trailing-separator-1.1.0" + sources."cycle-1.0.3" + sources."eyes-0.1.8" + sources."stack-trace-0.0.10" + sources."get-caller-file-1.0.2" + sources."os-locale-2.1.0" + sources."read-pkg-up-2.0.0" + sources."require-directory-2.1.1" + sources."require-main-filename-1.0.1" + sources."set-blocking-2.0.0" + (sources."string-width-2.1.1" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" + ]; + }) + sources."which-module-2.0.0" + sources."y18n-3.2.1" + (sources."yargs-parser-7.0.0" // { + dependencies = [ + sources."camelcase-4.1.0" + ]; + }) + (sources."wrap-ansi-2.1.0" // { + dependencies = [ + sources."string-width-1.0.2" + ]; + }) + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."execa-0.7.0" + sources."lcid-1.0.0" + sources."mem-1.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."path-key-2.0.1" + sources."invert-kv-1.0.0" + sources."mimic-fn-1.1.0" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + (sources."load-json-file-2.0.0" // { + dependencies = [ + sources."strip-bom-3.0.0" + ]; + }) + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" ]; buildInputs = globalBuildInputs; meta = { - description = "Find the sprites and then creates, saves and compresses"; - homepage = "https://github.com/nurieff/postcss-spritus#readme"; + description = "Generate spritesheets from stylesheets"; + homepage = "https://github.com/2createStudio/postcss-sprites#readme"; license = "MIT"; }; production = true; }; - postcss-srcset = nodeEnv.buildNodePackage { - name = "postcss-srcset"; - packageName = "postcss-srcset"; - version = "1.0.1"; + postcss-sprites-just = nodeEnv.buildNodePackage { + name = "postcss-sprites-just"; + packageName = "postcss-sprites-just"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-srcset/-/postcss-srcset-1.0.1.tgz"; - sha1 = "45140b205a16fcfa5339cdff9cd7803f16d271cc"; + url = "https://registry.npmjs.org/postcss-sprites-just/-/postcss-sprites-just-2.0.4.tgz"; + sha1 = "2cf8fa78b2b669d5a096e7fe6555fdd45ac0b071"; }; dependencies = [ - sources."balanced-match-0.4.2" - sources."image-size-0.5.5" - (sources."loader-utils-1.1.0" // { + sources."postcss-5.2.18" + sources."async-0.9.2" + sources."lodash-3.10.1" + sources."mkdirp-0.5.1" + sources."q-1.5.1" + (sources."spritesmith-1.5.0" // { dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" + sources."async-0.2.10" ]; }) - (sources."postcss-6.0.6" // { + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."minimist-0.0.8" + sources."layout-2.2.0" + sources."pixelsmith-1.3.4" + sources."semver-5.0.3" + sources."bin-pack-1.0.2" + sources."concat-stream-1.4.10" + sources."get-pixels-3.2.3" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.2.1" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + sources."inherits-2.0.3" + sources."typedarray-0.0.6" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."pngjs2-1.2.0" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."mime-types-2.1.17" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."is-buffer-1.1.6" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { + dependencies = [ + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" ]; }) + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" ]; }) - (sources."sharp-0.17.3" // { + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + sources."duplexer2-0.0.2" + (sources."escodegen-1.3.3" // { dependencies = [ - (sources."caw-2.0.0" // { - dependencies = [ - (sources."get-proxy-1.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."tunnel-agent-0.4.3" - ]; - }) - (sources."color-1.0.3" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) - ]; - }) - (sources."got-6.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-3.0.0" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."safe-buffer-5.1.1" - sources."timed-out-4.0.1" - sources."unzip-response-2.0.1" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - sources."nan-2.6.2" - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."inherits-2.0.3" - ]; - }) + sources."esprima-1.1.1" + sources."source-map-0.1.43" ]; }) + sources."falafel-2.1.0" + sources."has-1.0.1" + sources."object-inspect-0.4.0" + sources."quote-stream-0.0.0" + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { + dependencies = [ + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + (sources."through2-0.4.2" // { + dependencies = [ + sources."readable-stream-1.0.34" + ]; + }) + sources."process-nextick-args-1.0.7" + sources."util-deprecate-1.0.2" + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + (sources."xtend-2.1.2" // { + dependencies = [ + sources."object-keys-0.4.0" + ]; + }) + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" + ]; + }) + sources."gif-encoder-0.4.3" ]; buildInputs = globalBuildInputs; meta = { - description = "Postcss plugin to auto resize images for different media queries"; - homepage = https://github.com/niceagency/postcss-srcset; + description = "Generate sprites from stylesheets."; + homepage = "https://github.com/justdigital/postcss-sprites-just#readme"; license = "MIT"; }; production = true; }; - postcss-start-to-end = nodeEnv.buildNodePackage { - name = "postcss-start-to-end"; - packageName = "postcss-start-to-end"; - version = "1.0.0"; + postcss-sprites-rem = nodeEnv.buildNodePackage { + name = "postcss-sprites-rem"; + packageName = "postcss-sprites-rem"; + version = "4.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-start-to-end/-/postcss-start-to-end-1.0.0.tgz"; - sha1 = "ee001141aba1db30db179d68ff1cfdb3a0e75c0a"; + url = "https://registry.npmjs.org/postcss-sprites-rem/-/postcss-sprites-rem-4.2.7.tgz"; + sha1 = "2122c324ab6c2c3f4e0afd42d64c8f7e7c0869fb"; }; dependencies = [ - (sources."postcss-6.0.6" // { + sources."bluebird-3.5.1" + sources."debug-2.6.9" + sources."fs-extra-0.26.7" + sources."lodash-4.17.4" + sources."postcss-5.2.18" + sources."spritesmith-3.2.1" + (sources."svg-sprite-1.3.7" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { + sources."async-2.6.0" + sources."vinyl-2.1.0" + sources."yargs-8.0.2" + sources."clone-2.1.1" + sources."clone-stats-1.0.0" + sources."replace-ext-1.0.0" + sources."camelcase-4.1.0" + (sources."cliui-3.2.0" // { dependencies = [ - sources."has-flag-2.0.0" + sources."string-width-1.0.2" ]; }) ]; }) - (sources."postcss-reporter-3.0.0" // { + sources."ms-2.0.0" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" - (sources."postcss-5.2.17" // { + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."concat-stream-1.5.2" + sources."layout-2.2.0" + sources."pixelsmith-2.1.3" + sources."semver-5.0.3" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."xtend-4.0.1" + sources."string_decoder-1.0.3" + ]; + }) + sources."typedarray-0.0.6" + sources."readable-stream-2.0.6" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."string_decoder-0.10.31" + sources."util-deprecate-1.0.2" + sources."bin-pack-1.0.2" + sources."async-0.9.2" + sources."get-pixels-3.3.0" + sources."mime-types-2.1.17" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.3.4" // { + dependencies = [ + sources."jpeg-js-0.0.4" + ]; + }) + sources."vinyl-file-1.3.0" + sources."pngjs-2.3.1" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + sources."request-2.83.0" + sources."parse-data-uri-0.2.0" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."is-buffer-1.1.6" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + (sources."readable-stream-1.0.34" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."string_decoder-0.10.31" ]; }) + sources."through2-0.4.2" + sources."string_decoder-1.0.3" + sources."isarray-0.0.1" + ]; + }) + sources."uglify-js-2.8.29" + sources."esprima-1.2.5" + (sources."duplexer2-0.0.2" // { + dependencies = [ + sources."readable-stream-1.1.14" + sources."isarray-0.0.1" + ]; + }) + (sources."escodegen-1.3.3" // { + dependencies = [ + sources."esprima-1.1.1" + sources."source-map-0.1.43" + ]; + }) + (sources."falafel-2.1.0" // { + dependencies = [ + sources."isarray-0.0.1" + ]; + }) + sources."has-1.0.1" + sources."object-inspect-0.4.0" + (sources."quote-stream-0.0.0" // { + dependencies = [ + sources."through2-0.4.2" + sources."readable-stream-1.0.34" + sources."isarray-0.0.1" + ]; + }) + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { + dependencies = [ + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" + ]; + }) + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + sources."minimist-0.0.8" + (sources."xtend-2.1.2" // { + dependencies = [ + sources."object-keys-0.4.0" + ]; + }) + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + sources."cliui-2.1.0" + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + (sources."contentstream-1.0.0" // { + dependencies = [ + sources."readable-stream-1.0.34" + sources."isarray-0.0.1" + ]; + }) + (sources."gif-encoder-0.4.3" // { + dependencies = [ + sources."readable-stream-1.1.14" + sources."isarray-0.0.1" + ]; + }) + sources."ndarray-ops-1.2.2" + sources."pngjs-nozlib-1.0.0" + sources."strip-bom-2.0.0" + sources."strip-bom-stream-1.0.0" + sources."vinyl-1.2.0" + sources."is-utf8-0.2.1" + sources."first-chunk-stream-1.0.0" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."replace-ext-0.0.1" + sources."css-selector-parser-1.3.0" + sources."cssmin-0.4.3" + sources."cssom-0.3.2" + sources."dateformat-2.2.0" + (sources."js-yaml-3.10.0" // { + dependencies = [ + sources."esprima-4.0.0" + ]; + }) + sources."lodash.pluck-3.1.2" + sources."mkdirp-0.5.1" + sources."mustache-2.3.0" + (sources."phantomjs-prebuilt-2.1.16" // { + dependencies = [ + sources."fs-extra-1.0.0" + ]; + }) + sources."prettysize-0.1.0" + (sources."svgo-0.7.2" // { + dependencies = [ + sources."js-yaml-3.7.0" + sources."esprima-2.7.3" + ]; + }) + (sources."winston-2.4.0" // { + dependencies = [ + sources."async-1.0.0" + sources."colors-1.0.3" + ]; + }) + sources."xmldom-0.1.27" + sources."xpath-0.0.24" + sources."argparse-1.0.9" + sources."sprintf-js-1.0.3" + sources."lodash._baseget-3.7.2" + sources."lodash._topath-3.8.1" + sources."lodash.isarray-3.0.4" + sources."lodash.map-3.1.4" + sources."lodash._arraymap-3.0.0" + sources."lodash._basecallback-3.3.1" + sources."lodash._baseeach-3.0.4" + sources."lodash.keys-3.1.2" + sources."lodash._baseisequal-3.0.7" + sources."lodash._bindcallback-3.0.1" + sources."lodash.pairs-3.0.1" + sources."lodash.istypedarray-3.0.6" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."es6-promise-4.2.2" + (sources."extract-zip-1.6.6" // { + dependencies = [ + sources."concat-stream-1.6.0" + sources."mkdirp-0.5.0" + sources."readable-stream-2.3.3" + sources."string_decoder-1.0.3" + ]; + }) + sources."hasha-2.2.0" + sources."kew-0.7.0" + sources."progress-1.1.8" + sources."request-progress-2.0.1" + sources."which-1.3.0" + sources."yauzl-2.4.1" + sources."fd-slicer-1.0.1" + sources."pend-1.2.0" + sources."is-stream-1.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."throttleit-1.0.0" + sources."isexe-2.0.0" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."clap-1.2.3" + sources."clone-buffer-1.0.0" + sources."cloneable-readable-1.0.0" + sources."remove-trailing-separator-1.1.0" + sources."cycle-1.0.3" + sources."eyes-0.1.8" + sources."stack-trace-0.0.10" + sources."get-caller-file-1.0.2" + sources."os-locale-2.1.0" + sources."read-pkg-up-2.0.0" + sources."require-directory-2.1.1" + sources."require-main-filename-1.0.1" + sources."set-blocking-2.0.0" + (sources."string-width-2.1.1" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" ]; }) + sources."which-module-2.0.0" + sources."y18n-3.2.1" + (sources."yargs-parser-7.0.0" // { + dependencies = [ + sources."camelcase-4.1.0" + ]; + }) + (sources."wrap-ansi-2.1.0" // { + dependencies = [ + sources."string-width-1.0.2" + ]; + }) + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."execa-0.7.0" + sources."lcid-1.0.0" + sources."mem-1.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."path-key-2.0.1" + sources."invert-kv-1.0.0" + sources."mimic-fn-1.1.0" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + (sources."load-json-file-2.0.0" // { + dependencies = [ + sources."strip-bom-3.0.0" + ]; + }) + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin that lets you control your layout (ltr or rtl) through logical rather than physical rules"; - homepage = https://github.com/sandrina-p/postcss-start-to-end; + description = "Generate spritesheets from stylesheets fork from https://github.com/2createStudio/postcss-sprites"; + homepage = "https://github.com/Global-Travel/postcss-sprites#readme"; license = "MIT"; }; production = true; }; - postcss-state-selector = nodeEnv.buildNodePackage { - name = "postcss-state-selector"; - packageName = "postcss-state-selector"; - version = "1.0.0"; + postcss-spritus = nodeEnv.buildNodePackage { + name = "postcss-spritus"; + packageName = "postcss-spritus"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-state-selector/-/postcss-state-selector-1.0.0.tgz"; - sha1 = "3a5bfea7aa8eac50c1b70ce5455070e7efb04384"; + url = "https://registry.npmjs.org/postcss-spritus/-/postcss-spritus-1.3.0.tgz"; + sha1 = "3962a32356bb37b36abb0f0b7f50d6cf47e62efc"; }; dependencies = [ - (sources."chai-3.5.0" // { + sources."glob-7.1.2" + sources."gulp-util-3.0.8" + (sources."imagemin-5.3.1" // { + dependencies = [ + sources."replace-ext-1.0.0" + ]; + }) + sources."imagemin-pngquant-5.0.1" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."pngquant-bin-3.1.1" + (sources."postcss-6.0.14" // { + dependencies = [ + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + ]; + }) + sources."pretty-bytes-4.0.2" + (sources."spritesmith-3.2.1" // { + dependencies = [ + sources."concat-stream-1.5.2" + sources."semver-5.0.3" + sources."readable-stream-2.0.6" + sources."isarray-1.0.0" + ]; + }) + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."array-differ-1.0.0" + sources."array-uniq-1.0.3" + sources."beeper-1.1.1" + sources."chalk-1.1.3" + sources."dateformat-2.2.0" + sources."fancy-log-1.3.2" + sources."gulplog-1.0.0" + sources."has-gulplog-0.1.0" + sources."lodash._reescape-3.0.0" + sources."lodash._reevaluate-3.0.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.template-3.6.2" + sources."minimist-1.2.0" + sources."multipipe-0.1.2" + sources."object-assign-3.0.0" + sources."replace-ext-0.0.1" + (sources."through2-2.0.3" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."vinyl-0.5.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."ansi-gray-0.1.1" + sources."color-support-1.1.3" + sources."time-stamp-1.1.0" + sources."ansi-wrap-0.1.0" + sources."glogg-1.0.0" + sources."sparkles-1.0.0" + sources."lodash._basecopy-3.0.1" + sources."lodash._basetostring-3.0.1" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.escape-3.2.0" + sources."lodash.keys-3.1.2" + sources."lodash.restparam-3.6.1" + sources."lodash.templatesettings-3.1.1" + sources."lodash._root-3.0.1" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."duplexer2-0.0.2" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."xtend-4.0.1" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."util-deprecate-1.0.2" + sources."clone-1.0.3" + sources."clone-stats-0.0.1" + sources."file-type-4.4.0" + (sources."globby-6.1.0" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + (sources."make-dir-1.1.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) + sources."p-pipe-1.2.0" + sources."pify-2.3.0" + sources."array-union-1.0.2" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + (sources."exec-buffer-3.2.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) + sources."is-png-1.1.0" + sources."execa-0.7.0" + sources."p-finally-1.0.0" + sources."rimraf-2.6.2" + sources."tempfile-2.0.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."isexe-2.0.0" + sources."path-key-2.0.1" + sources."temp-dir-1.0.0" + sources."uuid-3.1.0" + (sources."bin-build-2.2.0" // { + dependencies = [ + sources."tempfile-1.1.1" + sources."uuid-2.0.3" + ]; + }) + sources."bin-wrapper-3.0.2" + sources."logalot-2.1.0" + (sources."archive-type-3.2.0" // { + dependencies = [ + sources."file-type-3.9.0" + ]; + }) + sources."decompress-3.0.0" + (sources."download-4.4.3" // { + dependencies = [ + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."vinyl-1.2.0" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."exec-series-1.0.3" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."url-regex-3.2.0" + (sources."buffer-to-vinyl-1.1.0" // { + dependencies = [ + sources."file-type-3.9.0" + sources."readable-stream-2.3.3" + sources."uuid-2.0.3" + sources."vinyl-1.2.0" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."decompress-tar-3.1.0" // { + dependencies = [ + sources."object-assign-2.1.1" + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + (sources."decompress-tarbz2-3.1.0" // { + dependencies = [ + sources."object-assign-2.1.1" + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + (sources."decompress-targz-3.1.0" // { + dependencies = [ + sources."object-assign-2.1.1" + sources."through2-0.6.5" + sources."vinyl-0.4.6" + sources."readable-stream-1.0.34" + sources."clone-0.2.0" + ]; + }) + (sources."decompress-unzip-3.4.0" // { + dependencies = [ + sources."vinyl-1.2.0" + ]; + }) + (sources."stream-combiner2-1.1.1" // { + dependencies = [ + sources."duplexer2-0.1.4" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."vinyl-assign-1.2.1" // { + dependencies = [ + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."vinyl-fs-2.4.4" // { + dependencies = [ + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."vinyl-1.2.0" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."typedarray-0.0.6" + sources."is-tar-1.0.0" + sources."strip-dirs-1.1.1" + (sources."tar-stream-1.5.5" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."get-stdin-4.0.1" + sources."is-absolute-0.1.7" + sources."is-natural-number-2.1.1" + sources."sum-up-1.0.3" + sources."is-relative-0.1.3" + (sources."bl-1.2.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."end-of-stream-1.4.0" + sources."is-bzip2-1.0.0" + sources."seek-bzip-1.0.5" + sources."commander-2.8.1" + sources."graceful-readlink-1.0.1" + sources."is-gzip-1.0.0" + sources."is-zip-1.0.0" + (sources."read-all-stream-3.1.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."stat-mode-0.2.2" + sources."yauzl-2.9.1" + sources."fd-slicer-1.0.1" + sources."buffer-crc32-0.2.13" + sources."pend-1.2.0" + (sources."duplexify-3.5.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."glob-stream-5.3.5" // { + dependencies = [ + sources."glob-5.0.15" + sources."through2-0.6.5" + sources."readable-stream-1.0.34" + ]; + }) + sources."graceful-fs-4.1.11" + (sources."gulp-sourcemaps-1.6.0" // { + dependencies = [ + sources."vinyl-1.2.0" + ]; + }) + sources."is-valid-glob-0.3.0" + (sources."lazystream-1.0.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."lodash.isequal-4.5.0" + (sources."merge-stream-1.0.1" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."strip-bom-2.0.0" + sources."strip-bom-stream-1.0.0" + sources."through2-filter-2.0.0" + sources."vali-date-1.0.0" + sources."stream-shift-1.0.0" + sources."extend-3.0.1" + sources."glob-parent-3.1.0" + (sources."micromatch-2.3.11" // { + dependencies = [ + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + ]; + }) + (sources."ordered-read-streams-0.3.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."to-absolute-glob-0.1.1" + sources."unique-stream-2.2.1" + sources."is-glob-3.1.0" + sources."path-dirname-1.0.2" + sources."is-extglob-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + (sources."extglob-0.3.2" // { + dependencies = [ + sources."is-extglob-1.0.0" + ]; + }) + sources."filename-regex-2.0.1" + sources."kind-of-3.2.2" + sources."normalize-path-2.1.1" + sources."object.omit-2.0.1" + (sources."parse-glob-3.0.4" // { + dependencies = [ + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + ]; + }) + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + (sources."isobject-2.1.0" // { + dependencies = [ + sources."isarray-1.0.0" + ]; + }) + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."remove-trailing-separator-1.1.0" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + (sources."glob-base-0.3.0" // { + dependencies = [ + sources."glob-parent-2.0.0" + sources."is-glob-2.0.1" + sources."is-extglob-1.0.0" + ]; + }) + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."extend-shallow-2.0.1" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."convert-source-map-1.5.1" + sources."is-utf8-0.2.1" + sources."first-chunk-stream-1.0.0" + sources."caw-1.2.0" + sources."each-async-1.1.1" + sources."filenamify-1.2.1" + (sources."got-5.7.1" // { + dependencies = [ + sources."duplexer2-0.1.4" + sources."object-assign-4.1.1" + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + (sources."gulp-decompress-1.2.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + sources."isarray-1.0.0" + sources."string_decoder-1.0.3" + ]; + }) + sources."gulp-rename-1.2.2" + sources."is-url-1.2.2" + sources."ware-1.3.0" + sources."get-proxy-1.1.0" + sources."is-obj-1.0.1" + sources."tunnel-agent-0.4.3" + sources."rc-1.2.2" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."onetime-1.1.0" + sources."set-immediate-shim-1.0.1" + sources."filename-reserved-regex-1.0.0" + sources."strip-outer-1.0.0" + sources."trim-repeated-1.0.0" + sources."create-error-class-3.0.2" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."lowercase-keys-1.0.0" + sources."node-status-codes-1.0.0" + sources."parse-json-2.2.0" + sources."timed-out-3.1.3" + sources."unzip-response-1.0.2" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."prepend-http-1.0.4" + sources."wrap-fn-0.1.5" + sources."co-3.1.0" + sources."async-each-series-1.1.0" + sources."os-tmpdir-1.0.2" + sources."ip-regex-1.0.3" + sources."bin-check-2.0.0" + (sources."bin-version-check-2.1.0" // { + dependencies = [ + sources."semver-4.3.6" + ]; + }) + sources."lazy-req-1.1.0" + sources."os-filter-obj-1.0.3" + sources."executable-1.1.0" + (sources."meow-3.7.0" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."normalize-package-data-2.4.0" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."currently-unhandled-0.4.1" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."indent-string-2.1.0" + sources."strip-indent-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."bin-version-1.0.4" + sources."semver-truncate-1.1.2" + sources."find-versions-1.2.1" + sources."semver-regex-1.0.0" + (sources."figures-1.7.0" // { + dependencies = [ + sources."object-assign-4.1.1" + ]; + }) + sources."squeak-1.3.0" + sources."console-stream-0.1.1" + sources."lpad-align-1.1.2" + sources."longest-1.0.1" + sources."source-map-0.6.1" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."layout-2.2.0" + (sources."pixelsmith-2.1.3" // { + dependencies = [ + sources."concat-stream-1.5.2" + sources."readable-stream-2.0.6" + sources."isarray-1.0.0" + ]; + }) + sources."bin-pack-1.0.2" + sources."async-0.9.2" + sources."get-pixels-3.3.0" + sources."mime-types-2.1.17" + sources."ndarray-1.0.18" + sources."ndarray-fill-1.0.2" + sources."obj-extend-0.1.0" + (sources."save-pixels-2.3.4" // { dependencies = [ - sources."assertion-error-1.0.2" - (sources."deep-eql-0.1.3" // { - dependencies = [ - sources."type-detect-0.1.1" - ]; - }) - sources."type-detect-1.0.0" + sources."jpeg-js-0.0.4" ]; }) - (sources."mocha-3.4.2" // { + (sources."vinyl-file-1.3.0" // { dependencies = [ - sources."browser-stdout-1.3.0" - (sources."commander-2.9.0" // { - dependencies = [ - sources."graceful-readlink-1.0.1" - ]; - }) - (sources."debug-2.6.0" // { - dependencies = [ - sources."ms-0.7.2" - ]; - }) - sources."diff-3.2.0" - sources."escape-string-regexp-1.0.5" - (sources."glob-7.1.1" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."growl-1.9.2" - sources."json3-3.3.2" - (sources."lodash.create-3.1.1" // { - dependencies = [ - (sources."lodash._baseassign-3.2.0" // { - dependencies = [ - sources."lodash._basecopy-3.0.1" - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - ]; - }) - ]; - }) - sources."lodash._basecreate-3.0.3" - sources."lodash._isiterateecall-3.0.9" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."supports-color-3.1.2" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."vinyl-1.2.0" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Plugin which let you write CSS based on component's state."; - homepage = "https://github.com/binjospookie/postcss-props-selector#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-strip = nodeEnv.buildNodePackage { - name = "postcss-strip"; - packageName = "postcss-strip"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-strip/-/postcss-strip-2.1.1.tgz"; - sha1 = "8d603f1324c83ed1693202712c7ca8e43a86460e"; - }; - dependencies = [ - (sources."postcss-4.1.16" // { + sources."pngjs-2.3.1" + sources."ndarray-pack-1.2.1" + sources."jpeg-js-0.1.2" + sources."omggif-1.0.9" + sources."node-bitmap-0.0.1" + sources."through-2.3.8" + (sources."request-2.83.0" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."tunnel-agent-0.6.0" ]; }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { + sources."parse-data-uri-0.2.0" + sources."data-uri-to-buffer-0.0.3" + sources."cwise-compiler-1.1.3" + sources."uniq-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + (sources."ajv-5.5.2" // { + dependencies = [ + sources."co-4.6.0" + ]; + }) + sources."har-schema-2.0.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."punycode-1.4.1" + sources."mime-db-1.30.0" + sources."iota-array-1.0.0" + sources."cwise-1.0.10" + sources."cwise-parser-1.0.3" + (sources."static-module-1.5.0" // { + dependencies = [ + sources."readable-stream-1.0.34" + sources."through2-0.4.2" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" + ]; + }) + (sources."uglify-js-2.8.29" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."esprima-1.2.5" + (sources."escodegen-1.3.3" // { + dependencies = [ + sources."esprima-1.1.1" + sources."source-map-0.1.43" + ]; + }) + sources."falafel-2.1.0" + sources."has-1.0.1" + sources."object-inspect-0.4.0" + (sources."quote-stream-0.0.0" // { + dependencies = [ + sources."through2-0.4.2" + sources."minimist-0.0.8" + sources."readable-stream-1.0.34" + sources."xtend-2.1.2" + sources."object-keys-0.4.0" + ]; + }) + sources."shallow-copy-0.0.1" + (sources."static-eval-0.2.4" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."escodegen-0.0.28" + sources."esprima-1.0.4" + sources."estraverse-1.3.2" ]; }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin that strips units off of property values"; - homepage = https://github.com/whitneyit/postcss-strip; - license = "MIT"; - }; - production = true; - }; - postcss-strip-units = nodeEnv.buildNodePackage { - name = "postcss-strip-units"; - packageName = "postcss-strip-units"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-strip-units/-/postcss-strip-units-1.2.0.tgz"; - sha1 = "f7f727176692a33458a0100d4892f827ca5338d7"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { + sources."esutils-1.0.0" + sources."estraverse-1.5.1" + sources."amdefine-1.0.1" + sources."acorn-5.2.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."function-bind-1.1.1" + (sources."yargs-3.10.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."camelcase-1.2.1" ]; }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { + sources."uglify-to-browserify-1.0.2" + sources."cliui-2.1.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."wordwrap-0.0.2" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + (sources."contentstream-1.0.0" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."readable-stream-1.0.34" ]; }) + sources."gif-encoder-0.4.3" + sources."ndarray-ops-1.2.2" + sources."pngjs-nozlib-1.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin that strips units off of property values"; - homepage = https://github.com/whitneyit/postcss-strip-units; + description = "Find the sprites and then creates, saves and compresses"; + homepage = "https://github.com/nurieff/postcss-spritus#readme"; license = "MIT"; }; production = true; }; - postcss-strip-zero-length-units = nodeEnv.buildNodePackage { - name = "postcss-strip-zero-length-units"; - packageName = "postcss-strip-zero-length-units"; - version = "1.0.0"; + postcss-srcset = nodeEnv.buildNodePackage { + name = "postcss-srcset"; + packageName = "postcss-srcset"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-strip-zero-length-units/-/postcss-strip-zero-length-units-1.0.0.tgz"; - sha1 = "7a242a4d7fda2f93f20e1324d65998b80aa7c053"; + url = "https://registry.npmjs.org/postcss-srcset/-/postcss-srcset-1.0.1.tgz"; + sha1 = "45140b205a16fcfa5339cdff9cd7803f16d271cc"; }; dependencies = [ - (sources."lodash.includes-3.1.3" // { - dependencies = [ - sources."lodash._baseindexof-3.1.0" - sources."lodash._basevalues-3.0.0" - sources."lodash._isiterateecall-3.0.9" - sources."lodash.isarray-3.0.4" - sources."lodash.isstring-3.0.1" - (sources."lodash.keys-3.1.2" // { - dependencies = [ - sources."lodash._getnative-3.9.1" - sources."lodash.isarguments-3.1.0" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."balanced-match-0.4.2" + sources."image-size-0.5.5" + sources."loader-utils-1.1.0" + sources."postcss-6.0.14" + sources."sharp-0.17.3" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."caw-2.0.1" + sources."color-1.0.3" + sources."got-6.7.1" + sources."nan-2.8.0" + sources."semver-5.4.1" + sources."tar-2.2.1" + sources."get-proxy-2.1.0" + sources."isurl-1.0.0" + sources."tunnel-agent-0.6.0" + sources."url-to-options-1.0.1" + sources."npm-conf-1.1.3" + sources."config-chain-1.1.11" + sources."pify-3.0.0" + sources."proto-list-1.2.4" + sources."ini-1.3.5" + sources."has-to-string-tag-x-1.4.1" + sources."is-object-1.0.1" + sources."has-symbol-support-x-1.4.1" + sources."safe-buffer-5.1.1" + sources."color-string-1.5.2" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."create-error-class-3.0.2" + sources."duplexer3-0.1.4" + sources."get-stream-3.0.0" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."is-stream-1.1.0" + sources."lowercase-keys-1.0.0" + sources."timed-out-4.0.1" + sources."unzip-response-2.0.1" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."prepend-http-1.0.4" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."inherits-2.0.3" + sources."graceful-fs-4.1.11" + sources."mkdirp-0.5.1" + sources."rimraf-2.6.2" + sources."minimist-0.0.8" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."brace-expansion-1.1.8" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."balanced-match-1.0.0" ]; }) + sources."concat-map-0.0.1" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin to remove units from zero lengths."; - homepage = https://github.com/bighuggies/postcss-strip-zero-length-units; + description = "Postcss plugin to auto resize images for different media queries"; + homepage = https://github.com/niceagency/postcss-srcset; license = "MIT"; }; production = true; }; - postcss-stronk = nodeEnv.buildNodePackage { - name = "postcss-stronk"; - packageName = "postcss-stronk"; - version = "0.0.4"; + postcss-start-to-end = nodeEnv.buildNodePackage { + name = "postcss-start-to-end"; + packageName = "postcss-start-to-end"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-stronk/-/postcss-stronk-0.0.4.tgz"; - sha1 = "d40b6222c8f2b52e6bcf2c080a9c6ca43971d110"; + url = "https://registry.npmjs.org/postcss-start-to-end/-/postcss-start-to-end-1.0.1.tgz"; + sha1 = "6b8cd337532fd557d8b84a83c3b3ca277122c15e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-6.0.14" + (sources."postcss-reporter-3.0.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { + sources."chalk-1.1.3" + (sources."postcss-5.2.18" // { dependencies = [ - sources."has-flag-1.0.0" + sources."supports-color-3.2.3" ]; }) + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + ]; + }) + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."lodash-4.17.4" + (sources."log-symbols-1.0.2" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" ]; }) + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."js-base64-2.4.0" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin to really let you flex your muscles"; - homepage = https://github.com/ticky/postcss-stronk; + description = "PostCSS plugin that lets you control your layout (ltr or rtl) through logical rather than physical rules"; + homepage = https://github.com/sandrina-p/postcss-start-to-end; license = "MIT"; }; production = true; }; - postcss-structure = nodeEnv.buildNodePackage { - name = "postcss-structure"; - packageName = "postcss-structure"; - version = "0.11.5"; + postcss-state-selector = nodeEnv.buildNodePackage { + name = "postcss-state-selector"; + packageName = "postcss-state-selector"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-structure/-/postcss-structure-0.11.5.tgz"; - sha1 = "e14bf13a5fdc44036a0254222f5d01c4ba56e62c"; + url = "https://registry.npmjs.org/postcss-state-selector/-/postcss-state-selector-1.0.0.tgz"; + sha1 = "3a5bfea7aa8eac50c1b70ce5455070e7efb04384"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-grid-system-0.4.8" // { + sources."chai-3.5.0" + sources."mocha-3.5.3" + sources."assertion-error-1.0.2" + (sources."deep-eql-0.1.3" // { dependencies = [ - (sources."ava-0.19.1" // { - dependencies = [ - (sources."@ava/babel-preset-stage-4-1.1.0" // { - dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."package-hash-1.2.0" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - ]; - }) - ]; - }) - (sources."@ava/babel-preset-transform-test-files-3.0.0" // { - dependencies = [ - sources."@ava/babel-plugin-throws-helper-2.0.0" - (sources."babel-plugin-espower-2.3.2" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."lodash-4.17.4" - sources."source-map-0.5.6" - sources."trim-right-1.0.1" - ]; - }) - sources."babylon-6.17.4" - (sources."call-matcher-1.0.1" // { - dependencies = [ - sources."deep-equal-1.0.1" - ]; - }) - sources."core-js-2.4.1" - (sources."espower-location-detector-1.0.0" // { - dependencies = [ - sources."is-url-1.2.2" - sources."path-is-absolute-1.0.1" - sources."source-map-0.5.6" - sources."xtend-4.0.1" - ]; - }) - sources."espurify-1.7.0" - sources."estraverse-4.2.0" - ]; - }) - ]; - }) - (sources."@ava/pretty-format-1.1.0" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."esutils-2.0.2" - ]; - }) - sources."arr-flatten-1.1.0" - sources."array-union-1.0.2" - sources."array-uniq-1.0.3" - sources."arrify-1.0.1" - sources."auto-bind-1.1.0" - (sources."ava-init-0.2.1" // { - dependencies = [ - sources."arr-exclude-1.0.0" - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - sources."has-yarn-1.0.0" - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - (sources."write-pkg-3.1.0" // { - dependencies = [ - (sources."sort-keys-2.0.0" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-json-file-2.2.0" // { - dependencies = [ - sources."detect-indent-5.0.0" - sources."graceful-fs-4.1.11" - sources."make-dir-1.0.0" - sources."pify-2.3.0" - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."json5-0.5.1" - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."source-map-0.5.6" - ]; - }) - sources."bluebird-3.5.0" - (sources."caching-transform-1.0.1" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."clean-stack-1.3.0" - sources."clean-yaml-object-0.1.0" - (sources."cli-cursor-2.1.0" // { - dependencies = [ - (sources."restore-cursor-2.0.0" // { - dependencies = [ - (sources."onetime-2.0.1" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - ]; - }) - sources."cli-spinners-1.0.0" - (sources."cli-truncate-1.0.0" // { - dependencies = [ - sources."slice-ansi-0.0.4" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."co-with-promise-4.6.0" // { - dependencies = [ - (sources."pinkie-promise-1.0.0" // { - dependencies = [ - sources."pinkie-1.0.0" - ]; - }) - ]; - }) - (sources."code-excerpt-2.1.0" // { - dependencies = [ - sources."convert-to-spaces-1.0.2" - ]; - }) - sources."common-path-prefix-1.0.0" - sources."convert-source-map-1.5.0" - (sources."core-assert-0.2.1" // { - dependencies = [ - sources."buf-compare-1.0.1" - sources."is-error-2.2.1" - ]; - }) - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."diff-3.3.0" - sources."diff-match-patch-1.0.0" - sources."dot-prop-4.1.1" - (sources."empower-core-0.6.2" // { - dependencies = [ - sources."call-signature-0.0.2" - sources."core-js-2.4.1" - ]; - }) - sources."equal-length-1.0.1" - (sources."figures-2.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."find-cache-dir-0.1.1" // { - dependencies = [ - sources."commondir-1.0.1" - (sources."pkg-dir-1.0.0" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."fn-name-2.0.1" - sources."get-port-3.1.0" - (sources."globby-6.1.0" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."has-flag-2.0.0" - (sources."hullabaloo-config-manager-1.1.1" // { - dependencies = [ - sources."es6-error-4.0.2" - sources."graceful-fs-4.1.11" - sources."json5-0.5.1" - sources."lodash.clonedeep-4.5.0" - sources."lodash.clonedeepwith-4.5.0" - sources."lodash.merge-4.6.0" - (sources."pkg-dir-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."resolve-from-3.0.0" - sources."safe-buffer-5.1.1" - ]; - }) - sources."ignore-by-default-1.0.1" - sources."indent-string-3.1.0" - (sources."is-ci-1.0.10" // { - dependencies = [ - sources."ci-info-1.0.0" - ]; - }) - sources."is-generator-fn-1.0.0" - sources."is-obj-1.0.1" - (sources."is-observable-0.2.0" // { - dependencies = [ - sources."symbol-observable-0.2.4" - ]; - }) - sources."is-promise-2.1.0" - (sources."jest-diff-19.0.0" // { - dependencies = [ - sources."jest-matcher-utils-19.0.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."jest-snapshot-19.0.2" // { - dependencies = [ - sources."jest-file-exists-19.0.0" - sources."jest-matcher-utils-19.0.0" - (sources."jest-util-19.0.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jest-mock-19.0.0" - sources."jest-validate-19.0.2" - (sources."jest-message-util-19.0.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."leven-2.1.0" - ]; - }) - sources."natural-compare-1.4.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."last-line-stream-1.0.0" // { - dependencies = [ - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."lodash.debounce-4.0.8" - sources."lodash.difference-4.5.0" - sources."lodash.flatten-4.4.0" - sources."lodash.isequal-4.5.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - sources."signal-exit-3.0.2" - ]; - }) - (sources."matcher-0.1.2" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."md5-hex-2.0.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ms-0.7.3" - (sources."multimatch-2.1.0" // { - dependencies = [ - sources."array-differ-1.0.0" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."observable-to-promise-0.5.0" // { - dependencies = [ - sources."symbol-observable-1.0.4" - ]; - }) - (sources."option-chain-0.1.1" // { - dependencies = [ - sources."object-assign-4.1.1" - ]; - }) - (sources."package-hash-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."lodash.flattendeep-4.4.0" - (sources."release-zalgo-1.0.0" // { - dependencies = [ - sources."es6-error-4.0.2" - ]; - }) - ]; - }) - (sources."pkg-conf-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."pretty-ms-2.1.0" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - sources."parse-ms-1.0.1" - sources."plur-1.0.0" - ]; - }) - sources."require-precompiled-0.1.0" - (sources."resolve-cwd-1.0.0" // { - dependencies = [ - sources."resolve-from-2.0.0" - ]; - }) - sources."slash-1.0.0" - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - sources."stack-utils-1.0.1" - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-bom-buf-1.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - (sources."time-require-0.1.2" // { - dependencies = [ - (sources."chalk-0.4.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."ansi-styles-1.0.0" - sources."strip-ansi-0.1.1" - ]; - }) - sources."text-table-0.2.0" - sources."date-time-0.1.1" - (sources."pretty-ms-0.2.2" // { - dependencies = [ - sources."parse-ms-0.1.2" - ]; - }) - ]; - }) - (sources."unique-temp-dir-1.0.0" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."uid2-0.0.3" - ]; - }) - (sources."update-notifier-2.2.0" // { - dependencies = [ - (sources."boxen-1.2.0" // { - dependencies = [ - sources."ansi-align-2.0.0" - sources."camelcase-4.1.0" - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - sources."supports-color-4.2.0" - ]; - }) - sources."cli-boxes-1.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - (sources."term-size-1.2.0" // { - dependencies = [ - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - ]; - }) - (sources."widest-line-1.0.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."configstore-3.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."make-dir-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."unique-string-1.0.0" // { - dependencies = [ - sources."crypto-random-string-1.0.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - sources."import-lazy-2.1.0" - sources."is-npm-1.0.0" - (sources."latest-version-3.1.0" // { - dependencies = [ - (sources."package-json-4.0.1" // { - dependencies = [ - (sources."got-6.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-3.0.0" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."safe-buffer-5.1.1" - sources."timed-out-4.0.1" - sources."unzip-response-2.0.1" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."registry-auth-token-3.3.1" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - sources."safe-buffer-5.1.1" - ]; - }) - (sources."registry-url-3.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."semver-5.3.0" - ]; - }) - ]; - }) - (sources."semver-diff-2.1.0" // { - dependencies = [ - sources."semver-5.3.0" - ]; - }) - sources."xdg-basedir-3.0.0" - ]; - }) - ]; - }) + sources."type-detect-0.1.1" ]; }) - (sources."postcss-grid-fluid-0.1.17" // { - dependencies = [ - (sources."ava-0.19.1" // { - dependencies = [ - (sources."@ava/babel-preset-stage-4-1.1.0" // { - dependencies = [ - (sources."babel-plugin-check-es2015-constants-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-trailing-function-commas-6.22.0" - (sources."babel-plugin-transform-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-helper-remap-async-to-generator-6.24.1" // { - dependencies = [ - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - sources."babel-helper-get-function-arity-6.24.1" - ]; - }) - ]; - }) - sources."babel-plugin-syntax-async-functions-6.13.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-destructuring-6.23.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-function-name-6.24.1" // { - dependencies = [ - (sources."babel-helper-function-name-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-modules-commonjs-6.24.1" // { - dependencies = [ - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - sources."babel-plugin-transform-strict-mode-6.24.1" - ]; - }) - (sources."babel-plugin-transform-es2015-parameters-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - (sources."babel-helper-call-delegate-6.24.1" // { - dependencies = [ - sources."babel-helper-hoist-variables-6.24.1" - ]; - }) - sources."babel-helper-get-function-arity-6.24.1" - (sources."babel-template-6.25.0" // { - dependencies = [ - sources."babylon-6.17.4" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-spread-6.22.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" // { - dependencies = [ - (sources."babel-helper-regex-6.24.1" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."regexpu-core-2.0.0" // { - dependencies = [ - sources."regenerate-1.3.2" - sources."regjsgen-0.2.0" - (sources."regjsparser-0.1.5" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-plugin-transform-exponentiation-operator-6.24.1" // { - dependencies = [ - sources."babel-plugin-syntax-exponentiation-operator-6.13.0" - (sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" // { - dependencies = [ - (sources."babel-helper-explode-assignable-expression-6.24.1" // { - dependencies = [ - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - sources."babylon-6.17.4" - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - sources."lodash-4.17.4" - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - ]; - }) - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - ]; - }) - (sources."package-hash-1.2.0" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - ]; - }) - ]; - }) - (sources."@ava/babel-preset-transform-test-files-3.0.0" // { - dependencies = [ - sources."@ava/babel-plugin-throws-helper-2.0.0" - (sources."babel-plugin-espower-2.3.2" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."lodash-4.17.4" - sources."source-map-0.5.6" - sources."trim-right-1.0.1" - ]; - }) - sources."babylon-6.17.4" - (sources."call-matcher-1.0.1" // { - dependencies = [ - sources."deep-equal-1.0.1" - ]; - }) - sources."core-js-2.4.1" - (sources."espower-location-detector-1.0.0" // { - dependencies = [ - sources."is-url-1.2.2" - sources."path-is-absolute-1.0.1" - sources."source-map-0.5.6" - sources."xtend-4.0.1" - ]; - }) - sources."espurify-1.7.0" - sources."estraverse-4.2.0" - ]; - }) - ]; - }) - (sources."@ava/pretty-format-1.1.0" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."esutils-2.0.2" - ]; - }) - sources."arr-flatten-1.1.0" - sources."array-union-1.0.2" - sources."array-uniq-1.0.3" - sources."arrify-1.0.1" - sources."auto-bind-1.1.0" - (sources."ava-init-0.2.1" // { - dependencies = [ - sources."arr-exclude-1.0.0" - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - sources."has-yarn-1.0.0" - (sources."read-pkg-up-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."read-pkg-2.0.0" // { - dependencies = [ - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."path-type-2.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - ]; - }) - ]; - }) - (sources."write-pkg-3.1.0" // { - dependencies = [ - (sources."sort-keys-2.0.0" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-json-file-2.2.0" // { - dependencies = [ - sources."detect-indent-5.0.0" - sources."graceful-fs-4.1.11" - sources."make-dir-1.0.0" - sources."pify-2.3.0" - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - (sources."babel-core-6.25.0" // { - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-template-6.25.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."babel-register-6.24.1" // { - dependencies = [ - sources."core-js-2.4.1" - (sources."home-or-tmp-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."babel-traverse-6.25.0" // { - dependencies = [ - sources."globals-9.18.0" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - sources."esutils-2.0.2" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - sources."json5-0.5.1" - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - sources."private-0.1.7" - sources."source-map-0.5.6" - ]; - }) - sources."bluebird-3.5.0" - (sources."caching-transform-1.0.1" // { - dependencies = [ - (sources."md5-hex-1.3.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."write-file-atomic-1.3.4" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."chokidar-1.7.0" // { - dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."clean-stack-1.3.0" - sources."clean-yaml-object-0.1.0" - (sources."cli-cursor-2.1.0" // { - dependencies = [ - (sources."restore-cursor-2.0.0" // { - dependencies = [ - (sources."onetime-2.0.1" // { - dependencies = [ - sources."mimic-fn-1.1.0" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - ]; - }) - sources."cli-spinners-1.0.0" - (sources."cli-truncate-1.0.0" // { - dependencies = [ - sources."slice-ansi-0.0.4" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."co-with-promise-4.6.0" // { - dependencies = [ - (sources."pinkie-promise-1.0.0" // { - dependencies = [ - sources."pinkie-1.0.0" - ]; - }) - ]; - }) - (sources."code-excerpt-2.1.0" // { - dependencies = [ - sources."convert-to-spaces-1.0.2" - ]; - }) - sources."common-path-prefix-1.0.0" - sources."convert-source-map-1.5.0" - (sources."core-assert-0.2.1" // { - dependencies = [ - sources."buf-compare-1.0.1" - sources."is-error-2.2.1" - ]; - }) - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."diff-3.3.0" - sources."diff-match-patch-1.0.0" - sources."dot-prop-4.1.1" - (sources."empower-core-0.6.2" // { - dependencies = [ - sources."call-signature-0.0.2" - sources."core-js-2.4.1" - ]; - }) - sources."equal-length-1.0.1" - (sources."figures-2.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."find-cache-dir-0.1.1" // { - dependencies = [ - sources."commondir-1.0.1" - (sources."pkg-dir-1.0.0" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."fn-name-2.0.1" - sources."get-port-3.1.0" - (sources."globby-6.1.0" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."has-flag-2.0.0" - (sources."hullabaloo-config-manager-1.1.1" // { - dependencies = [ - sources."es6-error-4.0.2" - sources."graceful-fs-4.1.11" - sources."json5-0.5.1" - sources."lodash.clonedeep-4.5.0" - sources."lodash.clonedeepwith-4.5.0" - sources."lodash.merge-4.6.0" - (sources."pkg-dir-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."resolve-from-3.0.0" - sources."safe-buffer-5.1.1" - ]; - }) - sources."ignore-by-default-1.0.1" - sources."indent-string-3.1.0" - (sources."is-ci-1.0.10" // { - dependencies = [ - sources."ci-info-1.0.0" - ]; - }) - sources."is-generator-fn-1.0.0" - sources."is-obj-1.0.1" - (sources."is-observable-0.2.0" // { - dependencies = [ - sources."symbol-observable-0.2.4" - ]; - }) - sources."is-promise-2.1.0" - (sources."jest-diff-19.0.0" // { - dependencies = [ - sources."jest-matcher-utils-19.0.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."jest-snapshot-19.0.2" // { - dependencies = [ - sources."jest-file-exists-19.0.0" - sources."jest-matcher-utils-19.0.0" - (sources."jest-util-19.0.2" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jest-mock-19.0.0" - sources."jest-validate-19.0.2" - (sources."jest-message-util-19.0.0" // { - dependencies = [ - (sources."micromatch-2.3.11" // { - dependencies = [ - sources."arr-diff-2.0.0" - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."leven-2.1.0" - ]; - }) - sources."natural-compare-1.4.0" - (sources."pretty-format-19.0.0" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - (sources."last-line-stream-1.0.0" // { - dependencies = [ - (sources."through2-2.0.3" // { - dependencies = [ - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - ]; - }) - sources."lodash.debounce-4.0.8" - sources."lodash.difference-4.5.0" - sources."lodash.flatten-4.4.0" - sources."lodash.isequal-4.5.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - sources."signal-exit-3.0.2" - ]; - }) - (sources."matcher-0.1.2" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."md5-hex-2.0.0" // { - dependencies = [ - sources."md5-o-matic-0.1.1" - ]; - }) - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - sources."map-obj-1.0.1" - sources."minimist-1.2.0" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ms-0.7.3" - (sources."multimatch-2.1.0" // { - dependencies = [ - sources."array-differ-1.0.0" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."observable-to-promise-0.5.0" // { - dependencies = [ - sources."symbol-observable-1.0.4" - ]; - }) - (sources."option-chain-0.1.1" // { - dependencies = [ - sources."object-assign-4.1.1" - ]; - }) - (sources."package-hash-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."lodash.flattendeep-4.4.0" - (sources."release-zalgo-1.0.0" // { - dependencies = [ - sources."es6-error-4.0.2" - ]; - }) - ]; - }) - (sources."pkg-conf-2.0.0" // { - dependencies = [ - (sources."find-up-2.1.0" // { - dependencies = [ - (sources."locate-path-2.0.0" // { - dependencies = [ - (sources."p-locate-2.0.0" // { - dependencies = [ - sources."p-limit-1.1.0" - ]; - }) - sources."path-exists-3.0.0" - ]; - }) - ]; - }) - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."pify-2.3.0" - sources."strip-bom-3.0.0" - ]; - }) - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."pretty-ms-2.1.0" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - sources."parse-ms-1.0.1" - sources."plur-1.0.0" - ]; - }) - sources."require-precompiled-0.1.0" - (sources."resolve-cwd-1.0.0" // { - dependencies = [ - sources."resolve-from-2.0.0" - ]; - }) - sources."slash-1.0.0" - (sources."source-map-support-0.4.15" // { - dependencies = [ - sources."source-map-0.5.6" - ]; - }) - sources."stack-utils-1.0.1" - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-bom-buf-1.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - (sources."time-require-0.1.2" // { - dependencies = [ - (sources."chalk-0.4.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."ansi-styles-1.0.0" - sources."strip-ansi-0.1.1" - ]; - }) - sources."text-table-0.2.0" - sources."date-time-0.1.1" - (sources."pretty-ms-0.2.2" // { - dependencies = [ - sources."parse-ms-0.1.2" - ]; - }) - ]; - }) - (sources."unique-temp-dir-1.0.0" // { - dependencies = [ - sources."os-tmpdir-1.0.2" - sources."uid2-0.0.3" - ]; - }) - (sources."update-notifier-2.2.0" // { - dependencies = [ - (sources."boxen-1.2.0" // { - dependencies = [ - sources."ansi-align-2.0.0" - sources."camelcase-4.1.0" - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - sources."supports-color-4.2.0" - ]; - }) - sources."cli-boxes-1.0.0" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - (sources."term-size-1.2.0" // { - dependencies = [ - (sources."execa-0.7.0" // { - dependencies = [ - (sources."cross-spawn-5.1.0" // { - dependencies = [ - (sources."lru-cache-4.1.1" // { - dependencies = [ - sources."pseudomap-1.0.2" - sources."yallist-2.1.2" - ]; - }) - (sources."shebang-command-1.2.0" // { - dependencies = [ - sources."shebang-regex-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - ]; - }) - sources."get-stream-3.0.0" - sources."is-stream-1.1.0" - (sources."npm-run-path-2.0.2" // { - dependencies = [ - sources."path-key-2.0.1" - ]; - }) - sources."p-finally-1.0.0" - sources."signal-exit-3.0.2" - sources."strip-eof-1.0.0" - ]; - }) - ]; - }) - (sources."widest-line-1.0.0" // { - dependencies = [ - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."configstore-3.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."make-dir-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."unique-string-1.0.0" // { - dependencies = [ - sources."crypto-random-string-1.0.0" - ]; - }) - (sources."write-file-atomic-2.1.0" // { - dependencies = [ - sources."imurmurhash-0.1.4" - sources."slide-1.1.6" - ]; - }) - ]; - }) - sources."import-lazy-2.1.0" - sources."is-npm-1.0.0" - (sources."latest-version-3.1.0" // { - dependencies = [ - (sources."package-json-4.0.1" // { - dependencies = [ - (sources."got-6.7.1" // { - dependencies = [ - (sources."create-error-class-3.0.2" // { - dependencies = [ - sources."capture-stack-trace-1.0.0" - ]; - }) - sources."duplexer3-0.1.4" - sources."get-stream-3.0.0" - sources."is-redirect-1.0.0" - sources."is-retry-allowed-1.1.0" - sources."is-stream-1.1.0" - sources."lowercase-keys-1.0.0" - sources."safe-buffer-5.1.1" - sources."timed-out-4.0.1" - sources."unzip-response-2.0.1" - (sources."url-parse-lax-1.0.0" // { - dependencies = [ - sources."prepend-http-1.0.4" - ]; - }) - ]; - }) - (sources."registry-auth-token-3.3.1" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - sources."safe-buffer-5.1.1" - ]; - }) - (sources."registry-url-3.1.0" // { - dependencies = [ - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."minimist-1.2.0" - sources."strip-json-comments-2.0.1" - ]; - }) - ]; - }) - sources."semver-5.3.0" - ]; - }) - ]; - }) - (sources."semver-diff-2.1.0" // { - dependencies = [ - sources."semver-5.3.0" - ]; - }) - sources."xdg-basedir-3.0.0" - ]; - }) - ]; - }) + sources."type-detect-1.0.0" + sources."browser-stdout-1.3.0" + sources."commander-2.9.0" + sources."debug-2.6.8" + sources."diff-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."glob-7.1.1" + sources."growl-1.9.2" + sources."he-1.1.1" + sources."json3-3.3.2" + sources."lodash.create-3.1.1" + sources."mkdirp-0.5.1" + sources."supports-color-3.1.2" + sources."graceful-readlink-1.0.1" + sources."ms-2.0.0" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."lodash._baseassign-3.2.0" + sources."lodash._basecreate-3.0.3" + sources."lodash._isiterateecall-3.0.9" + sources."lodash._basecopy-3.0.1" + sources."lodash.keys-3.1.2" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + sources."lodash.isarray-3.0.4" + sources."minimist-0.0.8" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "Plugin which let you write CSS based on component's state."; + homepage = "https://github.com/binjospookie/postcss-props-selector#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-strip = nodeEnv.buildNodePackage { + name = "postcss-strip"; + packageName = "postcss-strip"; + version = "2.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-strip/-/postcss-strip-2.1.1.tgz"; + sha1 = "8d603f1324c83ed1693202712c7ca8e43a86460e"; + }; + dependencies = [ + sources."postcss-4.1.16" + sources."postcss-message-helpers-2.0.0" + sources."reduce-function-call-1.0.2" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."balanced-match-0.4.2" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin that strips units off of property values"; + homepage = https://github.com/whitneyit/postcss-strip; + license = "MIT"; + }; + production = true; + }; + postcss-strip-units = nodeEnv.buildNodePackage { + name = "postcss-strip-units"; + packageName = "postcss-strip-units"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-strip-units/-/postcss-strip-units-2.0.1.tgz"; + sha1 = "53d279b348f385f51db674b6e1f994617ba195ad"; + }; + dependencies = [ + sources."postcss-6.0.14" + sources."reduce-function-call-1.0.2" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."balanced-match-0.4.2" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin that strips units off of property values"; + homepage = https://github.com/whitneyit/postcss-strip-units; + license = "MIT"; + }; + production = true; + }; + postcss-strip-zero-length-units = nodeEnv.buildNodePackage { + name = "postcss-strip-zero-length-units"; + packageName = "postcss-strip-zero-length-units"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-strip-zero-length-units/-/postcss-strip-zero-length-units-1.0.0.tgz"; + sha1 = "7a242a4d7fda2f93f20e1324d65998b80aa7c053"; + }; + dependencies = [ + sources."lodash.includes-3.1.3" + sources."postcss-5.2.18" + sources."lodash._baseindexof-3.1.0" + sources."lodash._basevalues-3.0.0" + sources."lodash._isiterateecall-3.0.9" + sources."lodash.isarray-3.0.4" + sources."lodash.isstring-3.0.1" + sources."lodash.keys-3.1.2" + sources."lodash._getnative-3.9.1" + sources."lodash.isarguments-3.1.0" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" ]; }) - sources."postcss-typescale-0.1.8" - sources."postcss-button-0.1.19" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { - description = "A bundle of PostCSS plugins."; - homepage = http://francoisromain.github.io/postcss-structure/; + description = "PostCSS plugin to remove units from zero lengths."; + homepage = https://github.com/bighuggies/postcss-strip-zero-length-units; license = "MIT"; }; production = true; }; - postcss-style-guide = nodeEnv.buildNodePackage { - name = "postcss-style-guide"; - packageName = "postcss-style-guide"; - version = "0.14.0"; + postcss-stronk = nodeEnv.buildNodePackage { + name = "postcss-stronk"; + packageName = "postcss-stronk"; + version = "0.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-style-guide/-/postcss-style-guide-0.14.0.tgz"; - sha1 = "caa843886e909fc1431b8d5a279e0201001aeea8"; + url = "https://registry.npmjs.org/postcss-stronk/-/postcss-stronk-0.0.4.tgz"; + sha1 = "d40b6222c8f2b52e6bcf2c080a9c6ca43971d110"; }; dependencies = [ - sources."css-annotation-0.6.2" - sources."css-annotation-block-0.1.0" - (sources."cssnano-3.10.0" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - ]; - }) - sources."decamelize-1.2.0" - sources."defined-1.0.0" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-assign-4.1.1" - (sources."postcss-calc-5.3.1" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-colormin-2.2.2" // { - dependencies = [ - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - ]; - }) - ]; - }) - sources."postcss-convert-values-2.6.1" - sources."postcss-discard-comments-2.0.4" - sources."postcss-discard-duplicates-2.1.0" - sources."postcss-discard-empty-2.1.0" - sources."postcss-discard-overridden-0.1.1" - (sources."postcss-discard-unused-2.2.3" // { - dependencies = [ - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-filter-plugins-2.0.2" // { - dependencies = [ - (sources."uniqid-4.1.1" // { - dependencies = [ - sources."macaddress-0.2.8" - ]; - }) - ]; - }) - sources."postcss-merge-idents-2.1.7" - sources."postcss-merge-longhand-2.0.2" - (sources."postcss-merge-rules-2.1.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-1.6.1" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - sources."vendors-1.0.1" - ]; - }) - sources."postcss-minify-font-values-1.0.5" - sources."postcss-minify-gradients-1.0.5" - (sources."postcss-minify-params-1.2.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-minify-selectors-2.1.1" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."postcss-normalize-charset-1.1.1" - (sources."postcss-normalize-url-3.0.8" // { - dependencies = [ - sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-ordered-values-2.2.3" - sources."postcss-reduce-idents-2.4.0" - sources."postcss-reduce-initial-1.0.1" - sources."postcss-reduce-transforms-1.0.4" - (sources."postcss-svgo-2.1.6" // { - dependencies = [ - (sources."is-svg-2.1.0" // { - dependencies = [ - sources."html-comment-regex-1.1.1" - ]; - }) - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-unique-selectors-2.0.2" // { + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to really let you flex your muscles"; + homepage = https://github.com/ticky/postcss-stronk; + license = "MIT"; + }; + production = true; + }; + postcss-structure = nodeEnv.buildNodePackage { + name = "postcss-structure"; + packageName = "postcss-structure"; + version = "0.11.5"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-structure/-/postcss-structure-0.11.5.tgz"; + sha1 = "e14bf13a5fdc44036a0254222f5d01c4ba56e62c"; + }; + dependencies = [ + sources."postcss-6.0.14" + sources."postcss-grid-system-0.4.8" + sources."postcss-grid-fluid-0.1.17" + sources."postcss-typescale-0.1.8" + sources."postcss-button-0.1.19" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + (sources."ava-0.19.1" // { + dependencies = [ + (sources."chalk-1.1.3" // { dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - (sources."postcss-zindex-2.2.0" // { + (sources."supports-color-3.2.3" // { dependencies = [ - sources."uniqs-2.0.0" + sources."has-flag-1.0.0" ]; }) + sources."ansi-styles-2.2.1" ]; }) - sources."ejs-2.5.6" - sources."highlight.js-8.9.1" - (sources."is-color-0.2.0" // { + (sources."@ava/babel-preset-stage-4-1.1.0" // { dependencies = [ - sources."css-color-names-0.0.1" - sources."hex-color-regex-1.1.0" - sources."hsl-regex-1.0.0" - sources."hsla-regex-1.0.0" - sources."rgb-regex-1.0.1" - sources."rgba-regex-1.0.0" + sources."package-hash-1.2.0" + sources."md5-hex-1.3.0" + ]; + }) + sources."@ava/babel-preset-transform-test-files-3.0.0" + (sources."@ava/pretty-format-1.1.0" // { + dependencies = [ + sources."ansi-styles-2.2.1" + ]; + }) + sources."arr-flatten-1.1.0" + sources."array-union-1.0.2" + sources."array-uniq-1.0.3" + sources."arrify-1.0.1" + sources."auto-bind-1.1.0" + sources."ava-init-0.2.1" + (sources."babel-code-frame-6.26.0" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + (sources."babel-core-6.26.0" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."bluebird-3.5.1" + (sources."caching-transform-1.0.1" // { + dependencies = [ + sources."md5-hex-1.3.0" + sources."write-file-atomic-1.3.4" + ]; + }) + sources."chokidar-1.7.0" + sources."clean-stack-1.3.0" + sources."clean-yaml-object-0.1.0" + sources."cli-cursor-2.1.0" + sources."cli-spinners-1.1.0" + (sources."cli-truncate-1.1.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" + ]; + }) + sources."co-with-promise-4.6.0" + sources."code-excerpt-2.1.0" + sources."common-path-prefix-1.0.0" + sources."convert-source-map-1.5.1" + sources."core-assert-0.2.1" + sources."currently-unhandled-0.4.1" + (sources."debug-2.6.9" // { + dependencies = [ + sources."ms-2.0.0" + ]; + }) + sources."diff-3.4.0" + sources."diff-match-patch-1.0.0" + sources."dot-prop-4.2.0" + sources."empower-core-0.6.2" + sources."equal-length-1.0.1" + sources."figures-2.0.0" + sources."find-cache-dir-0.1.1" + sources."fn-name-2.0.1" + sources."get-port-3.2.0" + (sources."globby-6.1.0" // { + dependencies = [ + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + ]; + }) + (sources."hullabaloo-config-manager-1.1.1" // { + dependencies = [ + sources."pkg-dir-2.0.0" + ]; + }) + sources."ignore-by-default-1.0.1" + sources."indent-string-3.2.0" + sources."is-ci-1.0.10" + sources."is-generator-fn-1.0.0" + sources."is-obj-1.0.1" + sources."is-observable-0.2.0" + sources."is-promise-2.1.0" + (sources."jest-diff-19.0.0" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + (sources."jest-snapshot-19.0.2" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + sources."js-yaml-3.10.0" + sources."last-line-stream-1.0.0" + sources."lodash.debounce-4.0.8" + sources."lodash.difference-4.5.0" + sources."lodash.flatten-4.4.0" + sources."lodash.isequal-4.5.0" + sources."loud-rejection-1.6.0" + sources."matcher-0.1.2" + sources."md5-hex-2.0.0" + (sources."meow-3.7.0" // { + dependencies = [ + sources."read-pkg-up-1.0.1" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."strip-bom-2.0.0" ]; }) - sources."marked-0.3.6" (sources."mkdirp-0.5.1" // { dependencies = [ sources."minimist-0.0.8" ]; }) - (sources."postcss-5.2.17" // { + sources."ms-0.7.3" + sources."multimatch-2.1.0" + (sources."observable-to-promise-0.5.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."symbol-observable-1.1.0" ]; }) - (sources."psg-theme-default-1.1.0" // { + sources."option-chain-0.1.1" + sources."package-hash-2.0.0" + sources."pkg-conf-2.0.0" + sources."plur-2.1.2" + (sources."pretty-ms-2.1.0" // { dependencies = [ - (sources."suitcss-base-1.0.2" // { - dependencies = [ - sources."normalize.css-3.0.3" - ]; - }) + sources."plur-1.0.0" + ]; + }) + sources."require-precompiled-0.1.0" + (sources."resolve-cwd-1.0.0" // { + dependencies = [ + sources."resolve-from-2.0.0" + ]; + }) + sources."slash-1.0.0" + (sources."source-map-support-0.4.18" // { + dependencies = [ + sources."source-map-0.5.7" ]; }) + sources."stack-utils-1.0.1" + sources."strip-ansi-3.0.1" + sources."strip-bom-buf-1.0.0" + (sources."time-require-0.1.2" // { + dependencies = [ + sources."chalk-0.4.0" + sources."pretty-ms-0.2.2" + sources."ansi-styles-1.0.0" + sources."strip-ansi-0.1.1" + sources."parse-ms-0.1.2" + ]; + }) + sources."unique-temp-dir-1.0.0" + sources."update-notifier-2.3.0" + sources."babel-plugin-check-es2015-constants-6.22.0" + sources."babel-plugin-syntax-trailing-function-commas-6.22.0" + sources."babel-plugin-transform-async-to-generator-6.24.1" + sources."babel-plugin-transform-es2015-destructuring-6.23.0" + sources."babel-plugin-transform-es2015-function-name-6.24.1" + sources."babel-plugin-transform-es2015-modules-commonjs-6.26.0" + sources."babel-plugin-transform-es2015-parameters-6.24.1" + sources."babel-plugin-transform-es2015-spread-6.22.0" + sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" + sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" + sources."babel-plugin-transform-exponentiation-operator-6.24.1" + sources."babel-runtime-6.26.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."babel-helper-remap-async-to-generator-6.24.1" + sources."babel-plugin-syntax-async-functions-6.13.0" + sources."babel-template-6.26.0" + sources."babel-types-6.26.0" + sources."babel-traverse-6.26.0" + sources."babel-helper-function-name-6.24.1" + sources."babylon-6.18.0" + sources."lodash-4.17.4" + sources."esutils-2.0.2" + sources."to-fast-properties-1.0.3" + sources."babel-messages-6.23.0" + sources."globals-9.18.0" + sources."invariant-2.2.2" + sources."loose-envify-1.3.1" + sources."js-tokens-3.0.2" + sources."babel-helper-get-function-arity-6.24.1" + sources."babel-plugin-transform-strict-mode-6.24.1" + sources."babel-helper-call-delegate-6.24.1" + sources."babel-helper-hoist-variables-6.24.1" + sources."babel-helper-regex-6.26.0" + sources."regexpu-core-2.0.0" + sources."regenerate-1.3.3" + sources."regjsgen-0.2.0" + sources."regjsparser-0.1.5" + sources."jsesc-0.5.0" + sources."babel-plugin-syntax-exponentiation-operator-6.13.0" + sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1" + sources."babel-helper-explode-assignable-expression-6.24.1" + sources."md5-o-matic-0.1.1" + sources."@ava/babel-plugin-throws-helper-2.0.0" + sources."babel-plugin-espower-2.3.2" + (sources."babel-generator-6.26.0" // { + dependencies = [ + sources."jsesc-1.3.0" + sources."source-map-0.5.7" + ]; + }) + sources."call-matcher-1.0.1" + (sources."espower-location-detector-1.0.0" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."espurify-1.7.0" + sources."estraverse-4.2.0" + sources."detect-indent-4.0.0" + sources."trim-right-1.0.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."deep-equal-1.0.1" + sources."is-url-1.2.2" + sources."path-is-absolute-1.0.1" + sources."xtend-4.0.1" + sources."arr-exclude-1.0.0" + sources."execa-0.7.0" + sources."has-yarn-1.0.0" + sources."read-pkg-up-2.0.0" + sources."write-pkg-3.1.0" + sources."cross-spawn-5.1.0" + sources."get-stream-3.0.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."signal-exit-3.0.2" + sources."strip-eof-1.0.0" + sources."lru-cache-4.1.1" + sources."shebang-command-1.2.0" + sources."which-1.3.0" + sources."pseudomap-1.0.2" + sources."yallist-2.1.2" + sources."shebang-regex-1.0.0" + sources."isexe-2.0.0" + sources."path-key-2.0.1" + sources."find-up-2.1.0" + sources."read-pkg-2.0.0" + sources."locate-path-2.0.0" + sources."p-locate-2.0.0" + sources."path-exists-3.0.0" + sources."p-limit-1.1.0" + sources."load-json-file-2.0.0" + sources."normalize-package-data-2.4.0" + sources."path-type-2.0.0" + sources."graceful-fs-4.1.11" + sources."parse-json-2.2.0" + sources."pify-2.3.0" + sources."strip-bom-3.0.0" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."semver-5.4.1" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."sort-keys-2.0.0" + (sources."write-json-file-2.3.0" // { + dependencies = [ + sources."detect-indent-5.0.0" + sources."pify-3.0.0" + ]; + }) + sources."is-plain-obj-1.1.0" + (sources."make-dir-1.1.0" // { + dependencies = [ + sources."pify-3.0.0" + ]; + }) + sources."write-file-atomic-2.3.0" + sources."imurmurhash-0.1.4" + sources."has-ansi-2.0.0" + sources."ansi-regex-2.1.1" + sources."babel-helpers-6.24.1" + sources."babel-register-6.26.0" + sources."json5-0.5.1" + sources."minimatch-3.0.4" + sources."private-0.1.8" + sources."home-or-tmp-2.0.0" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."slide-1.1.6" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + sources."rc-1.2.2" + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + sources."tar-pack-3.4.1" + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."minimist-1.2.0" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."restore-cursor-2.0.0" + sources."onetime-2.0.1" + sources."mimic-fn-1.1.0" + (sources."slice-ansi-1.0.0" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."pinkie-promise-1.0.0" + sources."pinkie-1.0.0" + sources."convert-to-spaces-1.0.2" + sources."buf-compare-1.0.1" + sources."is-error-2.2.1" + sources."array-find-index-1.0.2" + sources."call-signature-0.0.2" + sources."commondir-1.0.1" + (sources."pkg-dir-1.0.0" // { + dependencies = [ + sources."find-up-1.1.2" + sources."path-exists-2.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + ]; + }) + sources."es6-error-4.0.2" + sources."lodash.clonedeep-4.5.0" + sources."lodash.clonedeepwith-4.5.0" + sources."lodash.merge-4.6.0" + sources."resolve-from-3.0.0" + sources."ci-info-1.1.2" + sources."symbol-observable-0.2.4" + (sources."jest-matcher-utils-19.0.0" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + sources."pretty-format-19.0.0" + sources."jest-file-exists-19.0.0" + (sources."jest-util-19.0.2" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + sources."natural-compare-1.4.0" + sources."jest-mock-19.0.0" + (sources."jest-validate-19.0.2" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + (sources."jest-message-util-19.0.0" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + sources."leven-2.1.0" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."through2-2.0.3" + sources."camelcase-keys-2.1.0" + sources."decamelize-1.2.0" + sources."map-obj-1.0.1" + (sources."redent-1.0.0" // { + dependencies = [ + sources."indent-string-2.1.0" + ]; + }) + sources."trim-newlines-1.0.0" + sources."camelcase-2.1.1" + sources."is-utf8-0.2.1" + sources."strip-indent-1.0.1" + sources."get-stdin-4.0.1" + sources."array-differ-1.0.0" + sources."lodash.flattendeep-4.4.0" + sources."release-zalgo-1.0.0" + sources."irregular-plurals-1.4.0" + sources."parse-ms-1.0.1" + sources."text-table-0.2.0" + sources."date-time-0.1.1" + sources."has-color-0.1.7" + sources."uid2-0.0.3" + (sources."boxen-1.3.0" // { + dependencies = [ + sources."camelcase-4.1.0" + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" + ]; + }) + sources."configstore-3.1.1" + sources."import-lazy-2.1.0" + sources."is-installed-globally-0.1.0" + sources."is-npm-1.0.0" + sources."latest-version-3.1.0" + sources."semver-diff-2.1.0" + sources."xdg-basedir-3.0.0" + (sources."ansi-align-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" + ]; + }) + sources."cli-boxes-1.0.0" + sources."term-size-1.2.0" + (sources."widest-line-2.0.0" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" + ]; + }) + sources."unique-string-1.0.0" + sources."crypto-random-string-1.0.0" + sources."global-dirs-0.1.1" + sources."is-path-inside-1.0.1" + sources."path-is-inside-1.0.2" + sources."package-json-4.0.1" + sources."got-6.7.1" + sources."registry-auth-token-3.3.1" + sources."registry-url-3.1.0" + sources."create-error-class-3.0.2" + sources."duplexer3-0.1.4" + sources."is-redirect-1.0.0" + sources."is-retry-allowed-1.1.0" + sources."lowercase-keys-1.0.0" + sources."timed-out-4.0.1" + sources."unzip-response-2.0.1" + sources."url-parse-lax-1.0.0" + sources."capture-stack-trace-1.0.0" + sources."prepend-http-1.0.4" ]; buildInputs = globalBuildInputs; meta = { - description = "PostCSS plugin to generate a style guide automatically"; + description = "A bundle of PostCSS plugins."; + homepage = http://francoisromain.github.io/postcss-structure/; license = "MIT"; }; production = true; }; - postcss-stylestats = nodeEnv.buildNodePackage { - name = "postcss-stylestats"; - packageName = "postcss-stylestats"; - version = "1.0.0"; + postcss-style-guide = nodeEnv.buildNodePackage { + name = "postcss-style-guide"; + packageName = "postcss-style-guide"; + version = "0.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-stylestats/-/postcss-stylestats-1.0.0.tgz"; - sha1 = "a4abcfcf38c93edb52d19dde552fb2019e4a4150"; + url = "https://registry.npmjs.org/postcss-style-guide/-/postcss-style-guide-0.14.0.tgz"; + sha1 = "caa843886e909fc1431b8d5a279e0201001aeea8"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."css-annotation-0.6.2" + sources."css-annotation-block-0.1.0" + sources."cssnano-3.10.0" + sources."ejs-2.5.7" + sources."highlight.js-8.9.1" + (sources."is-color-0.2.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."css-color-names-0.0.1" ]; }) - (sources."stylestats-6.3.0" // { + sources."marked-0.3.9" + sources."mkdirp-0.5.1" + (sources."postcss-5.2.18" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."cheerio-0.20.0" // { - dependencies = [ - (sources."css-select-1.2.0" // { - dependencies = [ - sources."css-what-2.1.0" - (sources."domutils-1.5.1" // { - dependencies = [ - sources."domelementtype-1.3.0" - ]; - }) - sources."boolbase-1.0.0" - sources."nth-check-1.0.1" - ]; - }) - sources."entities-1.1.1" - (sources."htmlparser2-3.8.3" // { - dependencies = [ - sources."domhandler-2.3.0" - sources."domutils-1.5.1" - sources."domelementtype-1.3.0" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."entities-1.0.0" - ]; - }) - (sources."dom-serializer-0.1.0" // { - dependencies = [ - sources."domelementtype-1.1.3" - ]; - }) - sources."lodash-4.17.4" - (sources."jsdom-7.2.2" // { - dependencies = [ - sources."abab-1.0.3" - sources."acorn-2.7.0" - sources."acorn-globals-1.0.9" - sources."cssom-0.3.2" - sources."cssstyle-0.2.37" - (sources."escodegen-1.8.1" // { - dependencies = [ - sources."estraverse-1.9.3" - sources."esutils-2.0.2" - sources."esprima-2.7.3" - (sources."optionator-0.8.2" // { - dependencies = [ - sources."prelude-ls-1.1.2" - sources."deep-is-0.1.3" - sources."wordwrap-1.0.0" - sources."type-check-0.3.2" - sources."levn-0.3.0" - sources."fast-levenshtein-2.0.6" - ]; - }) - (sources."source-map-0.2.0" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - sources."nwmatcher-1.4.1" - sources."parse5-1.5.1" - sources."sax-1.2.4" - sources."symbol-tree-3.2.2" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."webidl-conversions-2.0.1" - (sources."whatwg-url-compat-0.6.5" // { - dependencies = [ - sources."tr46-0.0.3" - ]; - }) - sources."xml-name-validator-2.0.1" - ]; - }) - ]; - }) - (sources."cli-table-0.3.1" // { - dependencies = [ - sources."colors-1.0.3" - ]; - }) - sources."commander-2.11.0" - (sources."css-parse-2.0.0" // { - dependencies = [ - (sources."css-2.2.1" // { - dependencies = [ - (sources."source-map-0.1.43" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."source-map-resolve-0.3.1" // { - dependencies = [ - sources."source-map-url-0.3.0" - sources."atob-1.1.3" - sources."resolve-url-0.2.1" - ]; - }) - sources."urix-0.1.0" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."gzip-size-3.0.0" // { - dependencies = [ - sources."duplexer-0.1.1" - ]; - }) - (sources."handlebars-4.0.10" // { - dependencies = [ - sources."async-1.5.2" - (sources."optimist-0.6.1" // { - dependencies = [ - sources."wordwrap-0.0.3" - sources."minimist-0.0.10" - ]; - }) - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.6" - (sources."yargs-3.10.0" // { - dependencies = [ - sources."camelcase-1.2.1" - (sources."cliui-2.1.0" // { - dependencies = [ - (sources."center-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - sources."lazy-cache-1.0.4" - ]; - }) - (sources."right-align-0.1.3" // { - dependencies = [ - (sources."align-text-0.1.4" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."wordwrap-0.0.2" - ]; - }) - sources."decamelize-1.2.0" - sources."window-size-0.1.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - ]; - }) - ]; - }) - (sources."json2csv-3.9.1" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."flat-2.0.1" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - sources."lodash.flatten-4.4.0" - sources."lodash.get-4.4.2" - sources."lodash.set-4.3.2" - sources."lodash.uniq-4.5.0" - sources."lodash.clonedeep-4.5.0" - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."mocha-2.5.3" // { - dependencies = [ - sources."commander-2.3.0" - (sources."debug-2.2.0" // { - dependencies = [ - sources."ms-0.7.1" - ]; - }) - sources."diff-1.4.0" - sources."escape-string-regexp-1.0.2" - (sources."glob-3.2.11" // { - dependencies = [ - sources."inherits-2.0.3" - (sources."minimatch-0.3.0" // { - dependencies = [ - sources."lru-cache-2.7.3" - sources."sigmund-1.0.1" - ]; - }) - ]; - }) - sources."growl-1.9.2" - (sources."jade-0.26.3" // { - dependencies = [ - sources."commander-0.6.1" - sources."mkdirp-0.3.0" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."supports-color-1.2.0" - sources."to-iso-string-0.0.2" - ]; - }) - sources."moment-2.18.1" - sources."numeral-1.5.6" - sources."object-assign-4.1.1" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."valid-url-1.0.9" + sources."supports-color-3.2.3" + ]; + }) + sources."psg-theme-default-1.1.0" + sources."autoprefixer-6.7.7" + sources."decamelize-1.2.0" + sources."defined-1.0.0" + sources."has-1.0.1" + sources."object-assign-4.1.1" + sources."postcss-calc-5.3.1" + sources."postcss-colormin-2.2.2" + sources."postcss-convert-values-2.6.1" + sources."postcss-discard-comments-2.0.4" + sources."postcss-discard-duplicates-2.1.0" + sources."postcss-discard-empty-2.1.0" + sources."postcss-discard-overridden-0.1.1" + sources."postcss-discard-unused-2.2.3" + sources."postcss-filter-plugins-2.0.2" + sources."postcss-merge-idents-2.1.7" + sources."postcss-merge-longhand-2.0.2" + sources."postcss-merge-rules-2.1.2" + sources."postcss-minify-font-values-1.0.5" + sources."postcss-minify-gradients-1.0.5" + sources."postcss-minify-params-1.2.2" + sources."postcss-minify-selectors-2.1.1" + sources."postcss-normalize-charset-1.1.1" + sources."postcss-normalize-url-3.0.8" + sources."postcss-ordered-values-2.2.3" + sources."postcss-reduce-idents-2.4.0" + sources."postcss-reduce-initial-1.0.1" + sources."postcss-reduce-transforms-1.0.4" + sources."postcss-svgo-2.1.6" + sources."postcss-unique-selectors-2.0.2" + sources."postcss-value-parser-3.3.0" + sources."postcss-zindex-2.2.0" + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."function-bind-1.1.1" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."colormin-1.1.2" + sources."color-0.11.4" + sources."css-color-names-0.0.4" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."uniqs-2.0.0" + sources."uniqid-4.1.1" + sources."macaddress-0.2.8" + sources."caniuse-api-1.6.1" + sources."postcss-selector-parser-2.2.3" + sources."vendors-1.0.1" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."alphanum-sort-1.0.2" + sources."is-absolute-url-2.1.0" + sources."normalize-url-1.9.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + sources."is-svg-2.1.0" + sources."svgo-0.7.2" + sources."html-comment-regex-1.1.1" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."js-yaml-3.7.0" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."argparse-1.0.9" + sources."esprima-2.7.3" + sources."sprintf-js-1.0.3" + sources."clap-1.2.3" + sources."source-map-0.5.7" + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."hex-color-regex-1.1.0" + sources."hsl-regex-1.0.0" + sources."hsla-regex-1.0.0" + sources."rgb-regex-1.0.1" + sources."rgba-regex-1.0.0" + sources."minimist-0.0.8" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" + sources."suitcss-base-1.0.2" + sources."normalize.css-3.0.3" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to generate a style guide automatically"; + license = "MIT"; + }; + production = true; + }; + postcss-stylestats = nodeEnv.buildNodePackage { + name = "postcss-stylestats"; + packageName = "postcss-stylestats"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-stylestats/-/postcss-stylestats-1.0.0.tgz"; + sha1 = "a4abcfcf38c93edb52d19dde552fb2019e4a4150"; + }; + dependencies = [ + sources."postcss-5.2.18" + sources."stylestats-6.3.0" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."cheerio-0.20.0" + sources."cli-table-0.3.1" + sources."commander-2.12.2" + sources."css-parse-2.0.0" + sources."glob-6.0.4" + sources."gzip-size-3.0.0" + (sources."handlebars-4.0.11" // { + dependencies = [ + sources."source-map-0.4.4" + ]; + }) + sources."json2csv-3.11.5" + (sources."mocha-2.5.3" // { + dependencies = [ + sources."commander-2.3.0" + sources."debug-2.2.0" + sources."escape-string-regexp-1.0.2" + sources."glob-3.2.11" + sources."supports-color-1.2.0" + sources."ms-0.7.1" + sources."minimatch-0.3.0" + ]; + }) + sources."moment-2.20.1" + sources."numeral-1.5.6" + sources."object-assign-4.1.1" + sources."request-2.83.0" + sources."valid-url-1.0.9" + sources."css-select-1.2.0" + sources."entities-1.1.1" + (sources."htmlparser2-3.8.3" // { + dependencies = [ + sources."entities-1.0.0" + ]; + }) + (sources."dom-serializer-0.1.0" // { + dependencies = [ + sources."domelementtype-1.1.3" + ]; + }) + sources."lodash-4.17.4" + sources."jsdom-7.2.2" + sources."css-what-2.1.0" + sources."domutils-1.5.1" + sources."boolbase-1.0.0" + sources."nth-check-1.0.1" + sources."domelementtype-1.3.0" + sources."domhandler-2.3.0" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."abab-1.0.4" + sources."acorn-2.7.0" + sources."acorn-globals-1.0.9" + sources."cssom-0.3.2" + sources."cssstyle-0.2.37" + sources."escodegen-1.9.0" + sources."nwmatcher-1.4.3" + sources."parse5-1.5.1" + sources."sax-1.2.4" + sources."symbol-tree-3.2.2" + sources."tough-cookie-2.3.3" + sources."webidl-conversions-2.0.1" + sources."whatwg-url-compat-0.6.5" + sources."xml-name-validator-2.0.1" + sources."estraverse-4.2.0" + sources."esutils-2.0.2" + sources."esprima-3.1.3" + sources."optionator-0.8.2" + sources."prelude-ls-1.1.2" + sources."deep-is-0.1.3" + sources."wordwrap-1.0.0" + sources."type-check-0.3.2" + sources."levn-0.3.0" + sources."fast-levenshtein-2.0.6" + sources."punycode-1.4.1" + sources."tr46-0.0.3" + sources."colors-1.0.3" + (sources."css-2.2.1" // { + dependencies = [ + sources."source-map-0.1.43" + ]; + }) + sources."source-map-resolve-0.3.1" + sources."urix-0.1.0" + sources."amdefine-1.0.1" + sources."source-map-url-0.3.0" + sources."atob-1.1.3" + sources."resolve-url-0.2.1" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."duplexer-0.1.1" + sources."async-1.5.2" + (sources."optimist-0.6.1" // { + dependencies = [ + sources."wordwrap-0.0.3" + ]; + }) + sources."uglify-js-2.8.29" + sources."minimist-0.0.10" + sources."yargs-3.10.0" + sources."uglify-to-browserify-1.0.2" + sources."camelcase-1.2.1" + (sources."cliui-2.1.0" // { + dependencies = [ + sources."wordwrap-0.0.2" + ]; + }) + sources."decamelize-1.2.0" + sources."window-size-0.1.0" + sources."center-align-0.1.3" + sources."right-align-0.1.3" + sources."align-text-0.1.4" + sources."lazy-cache-1.0.4" + sources."kind-of-3.2.2" + sources."longest-1.0.1" + sources."repeat-string-1.6.1" + sources."is-buffer-1.1.6" + sources."debug-3.1.0" + sources."flat-4.0.0" + sources."lodash.flatten-4.4.0" + sources."lodash.get-4.4.2" + sources."lodash.set-4.3.2" + sources."lodash.uniq-4.5.0" + sources."lodash.clonedeep-4.5.0" + sources."ms-2.0.0" + sources."diff-1.4.0" + sources."growl-1.9.2" + (sources."jade-0.26.3" // { + dependencies = [ + sources."commander-0.6.1" + sources."mkdirp-0.3.0" + ]; + }) + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" ]; }) + sources."to-iso-string-0.0.2" + sources."lru-cache-2.7.3" + sources."sigmund-1.0.1" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" ]; buildInputs = globalBuildInputs; meta = { @@ -96374,53 +58085,27 @@ in sha1 = "313545d1e3a07163d67923fcf2235f7b098e9e4d"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."color-1.0.3" // { + sources."postcss-5.2.18" + sources."color-1.0.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."color-convert-1.9.1" + sources."color-string-1.5.2" + sources."color-name-1.1.3" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" ]; buildInputs = globalBuildInputs; meta = { @@ -96439,49 +58124,26 @@ in sha1 = "893dc8909e11d68acc6122edf5c002aa5547a9f8"; }; dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."color-0.11.4" + sources."postcss-5.2.18" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -96500,34 +58162,21 @@ in sha1 = "7d149a95a2f35a5cc148412de8609289cabfeca8"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -96546,172 +58195,109 @@ in sha1 = "327dc042664f11d9ba3f17072d27f19ba863dd85"; }; dependencies = [ - (sources."jszip-3.1.3" // { + sources."jszip-3.1.3" + sources."kefir-3.7.0" + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + sources."request-2.79.0" + sources."url-join-1.1.0" + sources."core-js-2.3.0" + sources."es6-promise-3.0.2" + sources."lie-3.1.1" + sources."pako-1.0.6" + sources."readable-stream-2.0.6" + sources."immediate-3.0.6" + sources."core-util-is-1.0.2" + sources."inherits-2.0.3" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."string_decoder-0.10.31" + sources."util-deprecate-1.0.2" + sources."symbol-observable-1.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."core-js-2.3.0" - sources."es6-promise-3.0.2" - (sources."lie-3.1.1" // { - dependencies = [ - sources."immediate-3.0.6" - ]; - }) - sources."pako-1.0.5" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."kefir-3.7.0" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.11.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-2.0.6" + sources."hawk-3.1.3" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."qs-6.3.2" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.4.3" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."commander-2.12.2" + sources."is-my-json-valid-2.17.1" + sources."pinkie-promise-2.0.1" + sources."generate-function-2.0.0" + sources."generate-object-property-1.2.0" + sources."jsonpointer-4.0.1" + sources."xtend-4.0.1" + sources."is-property-1.0.2" + sources."pinkie-2.0.4" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - sources."symbol-observable-1.0.4" + sources."assert-plus-1.0.0" ]; }) - (sources."postcss-5.2.17" // { + (sources."sshpk-1.13.1" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - (sources."request-2.79.0" // { + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.11.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-2.0.6" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."commander-2.11.0" - (sources."is-my-json-valid-2.16.0" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."qs-6.3.2" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.4.3" - sources."uuid-3.1.0" + sources."assert-plus-1.0.0" ]; }) - sources."url-join-1.1.0" + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" ]; buildInputs = globalBuildInputs; meta = { @@ -96724,42 +58310,71 @@ in postcss-svg = nodeEnv.buildNodePackage { name = "postcss-svg"; packageName = "postcss-svg"; - version = "2.1.0"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-svg/-/postcss-svg-2.1.0.tgz"; - sha1 = "afddc042e5ab98794080cffa97f0c38536613949"; + url = "https://registry.npmjs.org/postcss-svg/-/postcss-svg-2.4.0.tgz"; + sha1 = "472321d5fc795556a3d59b090ff3feb3e7ada397"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" sources."postcss-value-parser-3.3.0" - (sources."xmldoc-1.1.0" // { + sources."svgo-1.0.3" + sources."xmldoc-1.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."coa-2.0.0" + sources."colors-1.1.2" + sources."css-url-regex-1.1.0" + sources."unquote-1.1.1" + sources."mkdirp-0.5.1" + sources."css-select-1.3.0-rc0" + sources."css-select-base-adapter-0.1.0" + (sources."css-tree-1.0.0-alpha25" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."csso-3.4.0" + sources."js-yaml-3.10.0" + sources."object.values-1.0.4" + sources."sax-1.2.4" + sources."stable-0.1.6" + sources."util.promisify-1.0.0" + sources."q-1.5.1" + sources."minimist-0.0.8" + sources."boolbase-1.0.0" + sources."css-what-2.1.0" + sources."domutils-1.5.1" + sources."nth-check-1.0.1" + (sources."dom-serializer-0.1.0" // { dependencies = [ - sources."sax-1.2.4" + sources."domelementtype-1.1.3" ]; }) + sources."domelementtype-1.3.0" + sources."entities-1.1.1" + sources."mdn-data-1.0.0" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."define-properties-1.1.2" + sources."es-abstract-1.10.0" + sources."has-1.0.1" + sources."function-bind-1.1.1" + sources."foreach-2.0.5" + sources."object-keys-1.0.11" + sources."es-to-primitive-1.1.1" + sources."is-callable-1.1.3" + sources."is-regex-1.0.4" + sources."is-date-object-1.0.1" + sources."is-symbol-1.0.1" + sources."object.getownpropertydescriptors-2.0.3" ]; buildInputs = globalBuildInputs; meta = { @@ -96778,256 +58393,137 @@ in sha1 = "ba0fe89250aec25bfc11d5c1713b6d51db545e40"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."phantomjs-1.9.20" + sources."async-0.9.2" + sources."when-3.7.8" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."phantomjs-1.9.20" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."extract-zip-1.5.0" + sources."fs-extra-0.26.7" + sources."hasha-2.2.0" + sources."kew-0.7.0" + sources."progress-1.1.8" + sources."request-2.67.0" + sources."request-progress-2.0.1" + sources."which-1.2.14" + sources."concat-stream-1.5.0" + sources."debug-0.7.4" + sources."mkdirp-0.5.0" + sources."yauzl-2.4.1" + sources."inherits-2.0.3" + sources."typedarray-0.0.6" + sources."readable-stream-2.0.6" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."string_decoder-0.10.31" + sources."util-deprecate-1.0.2" + sources."minimist-0.0.8" + sources."fd-slicer-1.0.1" + sources."pend-1.2.0" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."is-stream-1.1.0" + sources."pinkie-promise-2.0.1" + sources."pinkie-2.0.4" + sources."bl-1.0.3" + sources."caseless-0.11.0" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + (sources."form-data-1.0.1" // { + dependencies = [ + sources."async-2.6.0" + ]; + }) + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."node-uuid-1.4.8" + sources."qs-5.2.1" + sources."tunnel-agent-0.4.3" + sources."tough-cookie-2.2.2" + sources."http-signature-1.1.1" + sources."oauth-sign-0.8.2" + sources."hawk-3.1.3" + sources."aws-sign2-0.6.0" + sources."stringstream-0.0.5" + sources."combined-stream-1.0.5" + sources."isstream-0.1.2" + sources."is-typedarray-1.0.0" + sources."har-validator-2.0.6" + sources."lodash-4.17.4" + sources."mime-db-1.30.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - (sources."extract-zip-1.5.0" // { - dependencies = [ - (sources."concat-stream-1.5.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."debug-0.7.4" - (sources."mkdirp-0.5.0" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."yauzl-2.4.1" // { - dependencies = [ - (sources."fd-slicer-1.0.1" // { - dependencies = [ - sources."pend-1.2.0" - ]; - }) - ]; - }) - ]; - }) - (sources."fs-extra-0.26.7" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."hasha-2.2.0" // { - dependencies = [ - sources."is-stream-1.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - sources."kew-0.7.0" - sources."progress-1.1.8" - (sources."request-2.67.0" // { - dependencies = [ - (sources."bl-1.0.3" // { - dependencies = [ - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."caseless-0.11.0" - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-1.0.1" // { - dependencies = [ - (sources."async-2.5.0" // { - dependencies = [ - sources."lodash-4.17.4" - ]; - }) - ]; - }) - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."node-uuid-1.4.8" - sources."qs-5.2.1" - sources."tunnel-agent-0.4.3" - sources."tough-cookie-2.2.2" - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."oauth-sign-0.8.2" - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - sources."aws-sign2-0.6.0" - sources."stringstream-0.0.5" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."isstream-0.1.2" - sources."is-typedarray-1.0.0" - (sources."har-validator-2.0.6" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."commander-2.11.0" - (sources."is-my-json-valid-2.16.0" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - (sources."request-progress-2.0.1" // { - dependencies = [ - sources."throttleit-1.0.0" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."async-0.9.2" - sources."when-3.7.8" + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."delayed-stream-1.0.0" + sources."commander-2.12.2" + sources."is-my-json-valid-2.17.1" + sources."generate-function-2.0.0" + sources."generate-object-property-1.2.0" + sources."jsonpointer-4.0.1" + sources."xtend-4.0.1" + sources."is-property-1.0.2" + sources."throttleit-1.0.0" + sources."isexe-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97046,45 +58542,26 @@ in sha1 = "f3e4b7fc5607333ae4d7a349bcd47fc27d131fad"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-value-parser-3.3.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - (sources."xmldoc-1.1.0" // { + sources."resolve-1.5.0" + sources."xmldoc-1.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - sources."sax-1.2.4" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."path-parse-1.0.5" + sources."sax-1.2.4" ]; buildInputs = globalBuildInputs; meta = { @@ -97103,93 +58580,38 @@ in sha1 = "b6df18aa613b666e133f08adb5219c2684ac108d"; }; dependencies = [ - (sources."is-svg-2.1.0" // { - dependencies = [ - sources."html-comment-regex-1.1.1" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."is-svg-2.1.0" + sources."postcss-5.2.18" sources."postcss-value-parser-3.3.0" - (sources."svgo-0.7.2" // { + sources."svgo-0.7.2" + sources."html-comment-regex-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."js-yaml-3.7.0" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."mkdirp-0.5.1" + sources."csso-2.3.2" + sources."q-1.5.1" + sources."argparse-1.0.9" + sources."esprima-2.7.3" + sources."sprintf-js-1.0.3" + sources."minimist-0.0.8" + sources."clap-1.2.3" ]; buildInputs = globalBuildInputs; meta = { @@ -97209,36 +58631,23 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."swedish-css-properties-1.0.2" + sources."swedish-css-values-1.0.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."swedish-css-properties-1.0.2" - sources."swedish-css-values-1.0.3" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97273,25 +58682,16 @@ in sha1 = "fbe72970c1679db1afd13152f941a521c89c7bf4"; }; dependencies = [ - sources."commander-2.11.0" - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."commander-2.12.2" + sources."postcss-4.1.16" + sources."postcss-selector-parser-1.3.3" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -97319,10 +58719,10 @@ in postcss-tape = nodeEnv.buildNodePackage { name = "postcss-tape"; packageName = "postcss-tape"; - version = "2.0.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-tape/-/postcss-tape-2.0.1.tgz"; - sha1 = "3cfe29520e19278137cc2bd35ce7b2bd7ab8da36"; + url = "https://registry.npmjs.org/postcss-tape/-/postcss-tape-2.2.0.tgz"; + sha1 = "da15852e492ae031f0cd5d2560171b98ce10ee54"; }; buildInputs = globalBuildInputs; meta = { @@ -97342,34 +58742,21 @@ in }; dependencies = [ sources."lodash-3.10.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97388,69 +58775,40 @@ in sha1 = "e36dd363cf5d53853aaf0e34149800d23ad2e675"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-font-helpers-3.0.0" // { - dependencies = [ - (sources."parse-css-font-2.0.2" // { - dependencies = [ - sources."css-font-size-keywords-1.0.0" - sources."css-font-stretch-keywords-1.0.1" - sources."css-font-style-keywords-1.0.1" - sources."css-font-weight-keywords-1.0.0" - sources."css-global-keywords-1.0.1" - sources."css-list-helpers-1.0.1" - sources."css-system-font-keywords-1.0.0" - sources."tcomb-2.7.0" - ]; - }) - (sources."postcss-resolve-prop-3.1.0" // { - dependencies = [ - sources."object-assign-4.1.1" - sources."postcss-each-decl-1.0.2" - ]; - }) - (sources."tcomb-postcss-1.0.2" // { - dependencies = [ - sources."tcomb-2.7.0" - ]; - }) - sources."unquote-1.1.0" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.18" + sources."postcss-font-helpers-3.0.0" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."parse-css-font-2.0.2" + sources."postcss-resolve-prop-3.1.0" + sources."tcomb-postcss-1.0.2" + sources."unquote-1.1.1" + sources."css-font-size-keywords-1.0.0" + sources."css-font-stretch-keywords-1.0.1" + sources."css-font-style-keywords-1.0.1" + sources."css-font-weight-keywords-1.0.0" + sources."css-global-keywords-1.0.1" + sources."css-list-helpers-1.0.1" + sources."css-system-font-keywords-1.0.0" + sources."tcomb-2.7.0" + sources."object-assign-4.1.1" + sources."postcss-each-decl-1.0.2" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -97470,40 +58828,24 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-6.0.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-6.0.1" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -97522,35 +58864,22 @@ in sha1 = "6d90b2e7970262426391bf06eb1430ccfc0ec30f"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."underscore-1.8.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."underscore-1.8.3" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97569,38 +58898,20 @@ in sha1 = "a3af32a19bf4b226644c2a23dc6263deb3fd9fc5"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-6.0.14" + sources."postcss-selector-parser-2.2.3" sources."postcss-value-parser-3.3.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -97620,34 +58931,21 @@ in }; dependencies = [ sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97666,34 +58964,21 @@ in sha1 = "6dce2aa78ddbd975d87b2fe8032a2e0834209335"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97712,41 +58997,25 @@ in sha1 = "f8f82a0d2237be74b67e13a7d3c7dd8ae8625d07"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -97765,34 +59034,21 @@ in sha1 = "37b017cfcf1fd4d57db0bd72f7506b31228b7e1a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97811,34 +59067,21 @@ in sha1 = "6757b2e503f507cb0812e44268e5100086b1bd50"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97857,34 +59100,21 @@ in sha1 = "31d051e58c41a4bf902fbcb6ef9780ea19610a67"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97903,34 +59133,21 @@ in sha1 = "f335ecc25992bfa9560c78983d6e342f46b4082b"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97943,40 +59160,21 @@ in postcss-triangle = nodeEnv.buildNodePackage { name = "postcss-triangle"; packageName = "postcss-triangle"; - version = "1.0.1"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-triangle/-/postcss-triangle-1.0.1.tgz"; - sha1 = "20f64401a79122a67b0d8b2326b4729091211655"; + url = "https://registry.npmjs.org/postcss-triangle/-/postcss-triangle-2.0.0.tgz"; + sha1 = "eb85e10394e1e796de426581f8258184bc3f8520"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -97996,34 +59194,21 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98036,36 +59221,21 @@ in postcss-typescale = nodeEnv.buildNodePackage { name = "postcss-typescale"; packageName = "postcss-typescale"; - version = "0.1.8"; + version = "0.1.10"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-typescale/-/postcss-typescale-0.1.8.tgz"; - sha1 = "e90d7f182bef67e25391f31e3c1b5c427cab0977"; + url = "https://registry.npmjs.org/postcss-typescale/-/postcss-typescale-0.1.10.tgz"; + sha1 = "61b58f7905d35da1f6f834b52ded7a82995dd5c0"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98085,41 +59255,25 @@ in }; dependencies = [ sources."camelcase-4.1.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { + sources."postcss-5.2.17" + sources."postcss-selector-parser-2.2.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -98138,33 +59292,20 @@ in sha1 = "45dffd4718e6f013dfd0f60de7287a0b776129c8"; }; dependencies = [ - (sources."postcss-6.0.1" // { + sources."postcss-6.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98184,57 +59325,32 @@ in }; dependencies = [ sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."typography-0.13.3" // { + sources."postcss-5.2.18" + sources."typography-0.13.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."compass-vertical-rhythm-1.3.1" // { - dependencies = [ - (sources."convert-css-length-1.0.1" // { - dependencies = [ - sources."console-polyfill-0.1.2" - ]; - }) - sources."parse-unit-1.0.1" - ]; - }) - sources."decamelize-1.2.0" - sources."gray-percentage-2.0.0" - sources."lodash-4.17.4" - (sources."modularscale-1.0.2" // { - dependencies = [ - sources."lodash.isnumber-3.0.3" - ]; - }) - sources."typography-normalize-0.12.0" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."compass-vertical-rhythm-1.3.1" + sources."decamelize-1.2.0" + sources."gray-percentage-2.0.0" + sources."lodash-4.17.4" + sources."modularscale-1.0.2" + sources."typography-normalize-0.12.0" + sources."convert-css-length-1.0.1" + sources."parse-unit-1.0.1" + sources."console-polyfill-0.1.2" + sources."lodash.isnumber-3.0.3" ]; buildInputs = globalBuildInputs; meta = { @@ -98247,10 +59363,10 @@ in postcss-uncss = nodeEnv.buildNodePackage { name = "postcss-uncss"; packageName = "postcss-uncss"; - version = "0.15.0"; + version = "0.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-uncss/-/postcss-uncss-0.15.0.tgz"; - sha1 = "f1247b12bd8d69cf3ddcf77b855354f14e4038f0"; + url = "https://registry.npmjs.org/postcss-uncss/-/postcss-uncss-0.16.1.tgz"; + sha1 = "463bd3e6296d47f86ad59833a90f0852871a4621"; }; buildInputs = globalBuildInputs; meta = { @@ -98285,38 +59401,25 @@ in sha1 = "f9635a795835a5787dbdebd5716c58e816e90c37"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."postcss-value-parser-3.3.0" sources."unicode-9.0.1" sources."unicode-range-json-1.0.1" sources."uniqs-2.0.0" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" + ]; + }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98335,34 +59438,21 @@ in sha1 = "6a79cd1e47ed85c32934311747ac8a48c4a008af"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98382,35 +59472,22 @@ in }; dependencies = [ sources."alphanum-sort-1.0.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."uniqs-2.0.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."uniqs-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98430,34 +59507,21 @@ in }; dependencies = [ sources."extend-3.0.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98477,34 +59541,21 @@ in }; dependencies = [ sources."css-mediaquery-0.1.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98523,41 +59574,25 @@ in sha1 = "44e91c1ac2d89d5dbb6eaa626686bbaf56b5590a"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -98576,41 +59611,25 @@ in sha1 = "a0c0b2ad6917c629d720063da70b3d4106660ad8"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -98629,40 +59648,25 @@ in sha1 = "07eebf2e3e11d79407327cf590d26072f7c4612e"; }; dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."postcss-5.2.17" // { + sources."browserslist-1.7.7" + sources."postcss-5.2.18" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98681,35 +59685,22 @@ in sha1 = "62ef1627bd4c142c118bb6c02c536729f6d843bb"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98728,41 +59719,25 @@ in sha1 = "4441bc206c99c4818bcbd014f49dba1cb9e9b47f"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -98781,35 +59756,22 @@ in sha1 = "fde10065fadb9b488beec6906b21f9ec1c8f0271"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."lodash-3.10.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."lodash-3.10.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98828,34 +59790,21 @@ in sha1 = "d32d88e39080965e581adfbec95b15c73cedf3e0"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98868,57 +59817,30 @@ in postcss-url = nodeEnv.buildNodePackage { name = "postcss-url"; packageName = "postcss-url"; - version = "7.0.0"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-url/-/postcss-url-7.0.0.tgz"; - sha1 = "11c6a1103e527ae914c3bab48415273d027d9508"; + url = "https://registry.npmjs.org/postcss-url/-/postcss-url-7.3.0.tgz"; + sha1 = "cf2f45e06743cf43cfea25309f81cbc003dc783f"; }; dependencies = [ - sources."mime-1.3.6" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."xxhashjs-0.2.1" // { - dependencies = [ - sources."cuint-0.2.2" - ]; - }) + sources."mime-1.6.0" + sources."minimatch-3.0.4" + sources."mkdirp-0.5.1" + sources."postcss-6.0.14" + sources."xxhashjs-0.2.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."minimist-0.0.8" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."cuint-0.2.2" ]; buildInputs = globalBuildInputs; meta = { @@ -98938,30 +59860,15 @@ in }; dependencies = [ sources."json-last-commit-0.0.7" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -98980,30 +59887,15 @@ in sha1 = "25d0c065751f2bec64c1f2fea9b8397ff5c16e51"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -99024,623 +59916,279 @@ in dependencies = [ sources."balanced-match-0.4.2" sources."lodash.isplainobject-4.0.6" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" sources."resolve-from-2.0.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Enable PostCSS plugins directly in your stylesheet."; - homepage = https://github.com/postcss/postcss-use; - license = "MIT"; - }; - production = true; - }; - postcss-utilities = nodeEnv.buildNodePackage { - name = "postcss-utilities"; - packageName = "postcss-utilities"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-utilities/-/postcss-utilities-0.7.0.tgz"; - sha1 = "9bdc25ee87244b50e9e12c168d6ee2fcd8a47771"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - sources."postcss-value-parser-3.3.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS"; - homepage = https://github.com/ismamz/postcss-utilities; - license = "MIT"; - }; - production = true; - }; - postcss-validator = nodeEnv.buildNodePackage { - name = "postcss-validator"; - packageName = "postcss-validator"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-validator/-/postcss-validator-0.2.0.tgz"; - sha1 = "307f346cd707054cd8d55b19b119984efdc3bc54"; - }; - dependencies = [ (sources."chalk-1.1.3" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) sources."supports-color-2.0.0" ]; }) - sources."known-css-properties-0.0.7" - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin to check if an input string is valid CSS"; - license = "MIT"; - }; - production = true; - }; - postcss-variable-media = nodeEnv.buildNodePackage { - name = "postcss-variable-media"; - packageName = "postcss-variable-media"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-variable-media/-/postcss-variable-media-0.2.1.tgz"; - sha1 = "f6b54d039b3bfe8335637311c3a90d91cbfad94a"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin that allows for defining custom variables to represent media queries"; - homepage = "https://github.com/nathanhood/postcss-variable-media#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-variables = nodeEnv.buildNodePackage { - name = "postcss-variables"; - packageName = "postcss-variables"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-variables/-/postcss-variables-1.1.0.tgz"; - sha1 = "6a22d8c5d9e126a6ac34717847b8128f3edecbb6"; - }; - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostCSS plugin that converts variables into CSS"; - homepage = "https://github.com/nathanhood/postcss-variables#readme"; - license = "MIT"; - }; - production = true; - }; - postcss-variables-loader = nodeEnv.buildNodePackage { - name = "postcss-variables-loader"; - packageName = "postcss-variables-loader"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-variables-loader/-/postcss-variables-loader-2.1.3.tgz"; - sha1 = "ea5889a6303b3f33e033b8cac8eee525b55f531d"; - }; - dependencies = [ - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."object-assign-4.1.1" - ]; - }) - sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-cssnext-2.11.0" // { - dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."caniuse-api-1.6.1" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."pixrem-3.0.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."pleeease-filters-3.0.1" // { - dependencies = [ - sources."onecolor-2.4.2" - ]; - }) - (sources."postcss-apply-0.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - (sources."postcss-attribute-case-insensitive-1.0.1" // { - dependencies = [ - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) - (sources."postcss-calc-5.3.1" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-color-function-2.0.1" // { - dependencies = [ - (sources."css-color-function-1.3.0" // { - dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - sources."postcss-message-helpers-2.0.0" - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-color-gray-3.0.1" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-color-hex-alpha-2.0.0" // { - dependencies = [ - (sources."color-0.10.1" // { - dependencies = [ - sources."color-convert-0.5.3" - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - ]; - }) - (sources."postcss-color-hsl-1.0.5" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - (sources."units-css-0.4.0" // { - dependencies = [ - sources."isnumeric-0.2.0" - sources."viewport-dimensions-0.2.0" - ]; - }) - ]; - }) - (sources."postcss-color-hwb-2.0.1" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - ]; - }) - (sources."postcss-color-rebeccapurple-2.0.1" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-color-rgb-1.1.4" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) - (sources."postcss-color-rgba-fallback-2.2.0" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - sources."rgb-hex-1.0.0" - ]; - }) - sources."postcss-custom-media-5.0.1" - (sources."postcss-custom-properties-5.0.2" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - (sources."postcss-custom-selectors-3.0.0" // { - dependencies = [ - sources."balanced-match-0.2.1" - ]; - }) - (sources."postcss-font-family-system-ui-1.0.2" // { - dependencies = [ - sources."postcss-value-parser-3.3.0" - ]; - }) - sources."postcss-font-variant-2.0.1" - (sources."postcss-image-set-polyfill-0.3.5" // { - dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - sources."postcss-media-query-parser-0.2.3" - ]; - }) - (sources."postcss-initial-1.5.3" // { - dependencies = [ - (sources."lodash.template-4.4.0" // { - dependencies = [ - sources."lodash._reinterpolate-3.0.0" - sources."lodash.templatesettings-4.1.0" - ]; - }) - ]; - }) - sources."postcss-media-minmax-2.1.2" - sources."postcss-nesting-2.3.1" - (sources."postcss-pseudo-class-any-link-1.0.0" // { - dependencies = [ - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."postcss-pseudoelements-3.0.0" - sources."postcss-replace-overflow-wrap-1.0.0" - (sources."postcss-selector-matches-2.0.5" // { - dependencies = [ - sources."balanced-match-0.4.2" - ]; - }) - (sources."postcss-selector-not-2.0.0" // { - dependencies = [ - sources."balanced-match-0.2.1" - ]; - }) + buildInputs = globalBuildInputs; + meta = { + description = "Enable PostCSS plugins directly in your stylesheet."; + homepage = https://github.com/postcss/postcss-use; + license = "MIT"; + }; + production = true; + }; + postcss-utilities = nodeEnv.buildNodePackage { + name = "postcss-utilities"; + packageName = "postcss-utilities"; + version = "0.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-utilities/-/postcss-utilities-0.7.0.tgz"; + sha1 = "9bdc25ee87244b50e9e12c168d6ee2fcd8a47771"; + }; + dependencies = [ + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" ]; }) - (sources."postcss-import-7.1.3" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS"; + homepage = https://github.com/ismamz/postcss-utilities; + license = "MIT"; + }; + production = true; + }; + postcss-validator = nodeEnv.buildNodePackage { + name = "postcss-validator"; + packageName = "postcss-validator"; + version = "0.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-validator/-/postcss-validator-0.2.0.tgz"; + sha1 = "307f346cd707054cd8d55b19b119984efdc3bc54"; + }; + dependencies = [ + sources."chalk-1.1.3" + sources."known-css-properties-0.0.7" + (sources."postcss-5.2.18" // { dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."postcss-message-helpers-2.0.0" - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."supports-color-3.2.3" + ]; + }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin to check if an input string is valid CSS"; + license = "MIT"; + }; + production = true; + }; + postcss-variable-media = nodeEnv.buildNodePackage { + name = "postcss-variable-media"; + packageName = "postcss-variable-media"; + version = "1.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-variable-media/-/postcss-variable-media-1.0.3.tgz"; + sha1 = "9d0fe3e6b5f69c212787b9901efdcd2dbe9384ea"; + }; + dependencies = [ + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin that allows for defining custom variables to represent media queries"; + homepage = "https://github.com/nathanhood/postcss-variable-media#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-variables = nodeEnv.buildNodePackage { + name = "postcss-variables"; + packageName = "postcss-variables"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-variables/-/postcss-variables-1.1.1.tgz"; + sha1 = "f86856acd0583b0c493767f22f7258509d37f9e0"; + }; + dependencies = [ + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "PostCSS plugin that converts variables into CSS"; + homepage = "https://github.com/nathanhood/postcss-variables#readme"; + license = "MIT"; + }; + production = true; + }; + postcss-variables-loader = nodeEnv.buildNodePackage { + name = "postcss-variables-loader"; + packageName = "postcss-variables-loader"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-variables-loader/-/postcss-variables-loader-5.0.1.tgz"; + sha1 = "8c5f70e927e3a7b290ea3cab9a5895b30ad31803"; + }; + dependencies = [ + sources."loader-utils-0.2.17" + sources."lodash-4.17.4" + sources."postcss-6.0.14" + sources."postcss-cssnext-3.0.2" + sources."postcss-import-10.0.0" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."object-assign-4.1.1" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."autoprefixer-7.2.3" + sources."caniuse-api-2.0.0" + sources."pixrem-4.0.1" + sources."pleeease-filters-4.0.0" + sources."postcss-apply-0.8.0" + sources."postcss-attribute-case-insensitive-2.0.0" + (sources."postcss-calc-6.0.1" // { + dependencies = [ + sources."reduce-css-calc-2.1.3" + ]; + }) + sources."postcss-color-function-4.0.1" + (sources."postcss-color-gray-4.1.0" // { + dependencies = [ + sources."color-2.0.1" + sources."color-string-1.5.2" + ]; + }) + (sources."postcss-color-hex-alpha-3.0.0" // { + dependencies = [ + sources."color-1.0.3" + sources."color-string-1.5.2" + ]; + }) + sources."postcss-color-hsl-2.0.0" + (sources."postcss-color-hwb-3.0.0" // { + dependencies = [ + sources."color-1.0.3" + sources."color-string-1.5.2" + ]; + }) + sources."postcss-color-rebeccapurple-3.0.0" + sources."postcss-color-rgb-2.0.0" + sources."postcss-color-rgba-fallback-3.0.0" + sources."postcss-custom-media-6.0.0" + (sources."postcss-custom-properties-6.2.0" // { + dependencies = [ + sources."balanced-match-1.0.0" + ]; + }) + sources."postcss-custom-selectors-4.0.1" + sources."postcss-font-family-system-ui-2.1.1" + sources."postcss-font-variant-3.0.0" + sources."postcss-image-set-polyfill-0.3.5" + sources."postcss-initial-2.0.0" + sources."postcss-media-minmax-3.0.0" + sources."postcss-nesting-4.2.1" + sources."postcss-pseudo-class-any-link-4.0.0" + sources."postcss-pseudoelements-5.0.0" + sources."postcss-replace-overflow-wrap-2.0.0" + sources."postcss-selector-matches-3.0.1" + sources."postcss-selector-not-3.0.1" + sources."browserslist-2.10.0" + sources."caniuse-lite-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."postcss-value-parser-3.3.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."onecolor-3.0.5" + sources."babel-runtime-6.26.0" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."postcss-selector-parser-2.2.3" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."css-unit-converter-1.1.1" + (sources."css-color-function-1.3.3" // { + dependencies = [ + sources."balanced-match-0.1.0" ]; }) + sources."postcss-message-helpers-2.0.0" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-string-0.3.0" + sources."ms-2.0.0" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."units-css-0.4.0" + sources."isnumeric-0.2.0" + sources."viewport-dimensions-0.2.0" + sources."rgb-hex-2.1.0" + sources."@std/esm-0.16.0" + sources."postcss-media-query-parser-0.2.3" + sources."lodash.template-4.4.0" + sources."lodash._reinterpolate-3.0.0" + sources."lodash.templatesettings-4.1.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" ]; buildInputs = globalBuildInputs; meta = { @@ -99659,17 +60207,11 @@ in sha1 = "a1ce41cba343401b9beff65b1c3efc564bd5c983"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) + sources."postcss-4.1.16" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -99688,34 +60230,21 @@ in sha1 = "fa2961d6cf5ad63cf9bab0de3d84a8a5af57455e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -99735,506 +60264,10 @@ in }; dependencies = [ sources."install-0.4.4" - (sources."npm-3.10.10" // { - dependencies = [ - sources."abbrev-1.0.9" - sources."ansicolors-0.3.2" - sources."ansistyles-0.1.3" - sources."aproba-1.0.4" - sources."archy-1.0.0" - sources."asap-2.0.6" - sources."chownr-1.0.1" - sources."cmd-shim-2.0.2" - (sources."columnify-1.5.4" // { - dependencies = [ - (sources."wcwidth-1.0.1" // { - dependencies = [ - (sources."defaults-1.0.3" // { - dependencies = [ - sources."clone-1.0.2" - ]; - }) - ]; - }) - ]; - }) - (sources."config-chain-1.1.11" // { - dependencies = [ - sources."proto-list-1.2.4" - ]; - }) - sources."dezalgo-1.0.3" - sources."editor-1.0.0" - sources."fs-vacuum-1.2.10" - sources."fs-write-stream-atomic-1.0.10" - sources."fstream-1.0.11" - (sources."fstream-npm-1.2.1" // { - dependencies = [ - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."graceful-fs-4.1.11" - sources."has-unicode-2.0.1" - sources."hosted-git-info-2.1.5" - sources."iferr-0.1.5" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."ini-1.3.4" - (sources."init-package-json-1.9.6" // { - dependencies = [ - sources."promzard-0.3.0" - (sources."validate-npm-package-name-3.0.0" // { - dependencies = [ - sources."builtins-1.0.3" - ]; - }) - ]; - }) - sources."lockfile-1.0.3" - (sources."lodash._baseuniq-4.6.0" // { - dependencies = [ - sources."lodash._createset-4.0.3" - sources."lodash._root-3.0.1" - ]; - }) - sources."lodash.clonedeep-4.5.0" - sources."lodash.union-4.6.0" - sources."lodash.uniq-4.5.0" - sources."lodash.without-4.4.0" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."node-gyp-3.4.0" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."npmlog-3.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.6.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."path-array-1.0.1" // { - dependencies = [ - (sources."array-index-1.0.0" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."es6-symbol-3.1.1" // { - dependencies = [ - sources."d-1.0.0" - (sources."es5-ext-0.10.24" // { - dependencies = [ - sources."es6-iterator-2.0.1" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - ]; - }) - sources."nopt-3.0.6" - sources."normalize-git-url-3.0.2" - (sources."normalize-package-data-2.3.8" // { - dependencies = [ - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - ]; - }) - sources."npm-cache-filename-1.0.2" - sources."npm-install-checks-3.0.0" - sources."npm-package-arg-4.2.1" - (sources."npm-registry-client-7.2.1" // { - dependencies = [ - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-3.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.6.0" // { - dependencies = [ - sources."has-color-0.1.7" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - ]; - }) - sources."npm-user-validate-0.1.5" - (sources."npmlog-4.0.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - sources."once-1.4.0" - sources."opener-1.4.3" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - sources."path-is-inside-1.0.2" - (sources."read-1.0.7" // { - dependencies = [ - sources."mute-stream-0.0.7" - ]; - }) - sources."read-cmd-shim-1.0.1" - (sources."read-installed-4.0.3" // { - dependencies = [ - sources."util-extend-1.0.3" - ]; - }) - (sources."read-package-json-2.0.10" // { - dependencies = [ - (sources."json-parse-helpfulerror-1.0.3" // { - dependencies = [ - sources."jju-1.3.0" - ]; - }) - ]; - }) - sources."read-package-tree-5.1.6" - (sources."readable-stream-2.1.5" // { - dependencies = [ - sources."buffer-shims-1.0.0" - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - sources."realize-package-specifier-3.0.3" - (sources."request-2.75.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - (sources."bl-1.1.2" // { - dependencies = [ - (sources."readable-stream-2.0.6" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-0.10.31" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."caseless-0.11.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.0.0" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-2.0.6" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."commander-2.11.0" - (sources."is-my-json-valid-2.16.0" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."node-uuid-1.4.8" - sources."oauth-sign-0.8.2" - sources."qs-6.2.3" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.4.3" - ]; - }) - sources."retry-0.10.1" - sources."rimraf-2.5.4" - sources."semver-5.3.0" - sources."sha-2.0.1" - sources."slide-1.1.6" - sources."sorted-object-2.0.1" - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - ]; - }) - sources."text-table-0.2.0" - sources."uid-number-0.0.6" - sources."umask-1.1.0" - (sources."unique-filename-1.1.0" // { - dependencies = [ - sources."unique-slug-2.0.0" - ]; - }) - sources."unpipe-1.0.0" - (sources."validate-npm-package-name-2.2.2" // { - dependencies = [ - sources."builtins-0.0.7" - ]; - }) - (sources."which-1.2.14" // { - dependencies = [ - sources."isexe-2.0.0" - ]; - }) - sources."wrappy-1.0.2" - sources."write-file-atomic-1.2.0" - sources."ansi-regex-3.0.0" - sources."debuglog-1.0.1" - sources."imurmurhash-0.1.4" - sources."lodash._baseindexof-3.1.0" - sources."lodash._bindcallback-3.0.1" - sources."lodash._cacheindexof-3.0.2" - sources."lodash._createcache-3.1.2" - sources."lodash._getnative-3.9.1" - sources."lodash.restparam-3.6.1" - sources."readdir-scoped-modules-1.0.2" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - (sources."postcss-5.2.17" // { + sources."npm-3.10.10" + (sources."postcss-5.2.18" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) (sources."reduce-function-call-1.0.2" // { @@ -100242,6 +60275,268 @@ in sources."balanced-match-0.4.2" ]; }) + sources."abbrev-1.0.9" + sources."ansicolors-0.3.2" + sources."ansistyles-0.1.3" + sources."aproba-1.0.4" + sources."archy-1.0.0" + sources."asap-2.0.6" + sources."chownr-1.0.1" + sources."cmd-shim-2.0.2" + sources."columnify-1.5.4" + sources."config-chain-1.1.11" + sources."dezalgo-1.0.3" + sources."editor-1.0.0" + sources."fs-vacuum-1.2.10" + sources."fs-write-stream-atomic-1.0.10" + sources."fstream-1.0.11" + sources."fstream-npm-1.2.1" + sources."glob-7.1.2" + sources."graceful-fs-4.1.11" + sources."has-unicode-2.0.1" + sources."hosted-git-info-2.1.5" + sources."iferr-0.1.5" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."ini-1.3.5" + (sources."init-package-json-1.9.6" // { + dependencies = [ + sources."validate-npm-package-name-3.0.0" + ]; + }) + sources."lockfile-1.0.3" + sources."lodash._baseuniq-4.6.0" + sources."lodash.clonedeep-4.5.0" + sources."lodash.union-4.6.0" + sources."lodash.uniq-4.5.0" + sources."lodash.without-4.4.0" + sources."mkdirp-0.5.1" + (sources."node-gyp-3.4.0" // { + dependencies = [ + sources."npmlog-3.1.2" + ]; + }) + sources."nopt-3.0.6" + sources."normalize-git-url-3.0.2" + sources."normalize-package-data-2.3.8" + sources."npm-cache-filename-1.0.2" + sources."npm-install-checks-3.0.0" + sources."npm-package-arg-4.2.1" + (sources."npm-registry-client-7.2.1" // { + dependencies = [ + sources."npmlog-3.1.2" + ]; + }) + sources."npm-user-validate-0.1.5" + (sources."npmlog-4.0.2" // { + dependencies = [ + sources."gauge-2.7.4" + ]; + }) + sources."once-1.4.0" + sources."opener-1.4.3" + sources."osenv-0.1.4" + sources."path-is-inside-1.0.2" + sources."read-1.0.7" + sources."read-cmd-shim-1.0.1" + sources."read-installed-4.0.3" + sources."read-package-json-2.0.12" + sources."read-package-tree-5.1.6" + (sources."readable-stream-2.1.5" // { + dependencies = [ + sources."string_decoder-0.10.31" + ]; + }) + sources."realize-package-specifier-3.0.3" + sources."request-2.75.0" + sources."retry-0.10.1" + sources."rimraf-2.5.4" + sources."semver-5.3.0" + sources."sha-2.0.1" + sources."slide-1.1.6" + sources."sorted-object-2.0.1" + (sources."strip-ansi-3.0.1" // { + dependencies = [ + sources."ansi-regex-2.1.1" + ]; + }) + sources."tar-2.2.1" + sources."text-table-0.2.0" + sources."uid-number-0.0.6" + sources."umask-1.1.0" + sources."unique-filename-1.1.0" + sources."unpipe-1.0.0" + (sources."validate-npm-package-name-2.2.2" // { + dependencies = [ + sources."builtins-0.0.7" + ]; + }) + sources."which-1.2.14" + sources."wrappy-1.0.2" + sources."write-file-atomic-1.2.0" + sources."ansi-regex-3.0.0" + sources."debuglog-1.0.1" + sources."imurmurhash-0.1.4" + sources."lodash._baseindexof-3.1.0" + sources."lodash._bindcallback-3.0.1" + sources."lodash._cacheindexof-3.0.2" + sources."lodash._createcache-3.1.2" + sources."lodash._getnative-3.9.1" + sources."lodash.restparam-3.6.1" + sources."readdir-scoped-modules-1.0.2" + sources."validate-npm-package-license-3.0.1" + sources."wcwidth-1.0.1" + sources."defaults-1.0.3" + sources."clone-1.0.3" + sources."proto-list-1.2.4" + sources."fstream-ignore-1.0.5" + sources."minimatch-3.0.4" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."fs.realpath-1.0.0" + sources."path-is-absolute-1.0.1" + sources."promzard-0.3.0" + sources."builtins-1.0.3" + sources."lodash._createset-4.0.3" + sources."lodash._root-3.0.1" + sources."minimist-0.0.8" + sources."path-array-1.0.1" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.6.0" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."has-color-0.1.7" + sources."object-assign-4.1.1" + sources."signal-exit-3.0.2" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."array-index-1.0.0" + sources."debug-2.6.9" + sources."es6-symbol-3.1.1" + sources."ms-2.0.0" + sources."d-1.0.0" + sources."es5-ext-0.10.37" + sources."es6-iterator-2.0.3" + sources."is-builtin-module-1.0.0" + sources."builtin-modules-1.1.1" + (sources."concat-stream-1.6.0" // { + dependencies = [ + sources."readable-stream-2.3.3" + ]; + }) + sources."typedarray-0.0.6" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."mute-stream-0.0.7" + sources."util-extend-1.0.3" + sources."json-parse-better-errors-1.0.1" + sources."slash-1.0.0" + sources."buffer-shims-1.0.0" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + (sources."bl-1.1.2" // { + dependencies = [ + sources."readable-stream-2.0.6" + sources."string_decoder-0.10.31" + ]; + }) + sources."caseless-0.11.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.0.0" + sources."har-validator-2.0.6" + sources."hawk-3.1.3" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."node-uuid-1.4.8" + sources."oauth-sign-0.8.2" + sources."qs-6.2.3" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.4.3" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."chalk-1.1.3" + sources."commander-2.12.2" + sources."is-my-json-valid-2.17.1" + sources."pinkie-promise-2.0.1" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + (sources."has-ansi-2.0.0" // { + dependencies = [ + sources."ansi-regex-2.1.1" + ]; + }) + sources."supports-color-2.0.0" + sources."generate-function-2.0.0" + sources."generate-object-property-1.2.0" + sources."jsonpointer-4.0.1" + sources."xtend-4.0.1" + sources."is-property-1.0.2" + sources."pinkie-2.0.4" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."sshpk-1.13.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."block-stream-0.0.9" + sources."unique-slug-2.0.0" + sources."isexe-2.0.0" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100260,34 +60555,21 @@ in sha1 = "31aa92c6a6c7d86b05f2e7be286b4a74efaf563e"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100306,48 +60588,26 @@ in sha1 = "a48c6a77161562342f6d8a8cf96ea6326cf04d68"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."postcss-values-parser-1.2.2" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-2.2.3" + sources."postcss-values-parser-1.3.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -100366,34 +60626,21 @@ in sha1 = "e4870873309e135453ffac9f6f883e789226b068"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100412,34 +60659,21 @@ in sha1 = "bff1a1dc7ea61cb49db67a68505074592076a4a7"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100458,34 +60692,21 @@ in sha1 = "2a9bb0b4cbcb1fc1632fd072045777bb0ffd4707"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100504,34 +60725,21 @@ in sha1 = "96655b10d97c3b106ba82073cbcc05aef7c61ad2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100550,31 +60758,16 @@ in sha1 = "9aa68c1e5d054a7d24e1d9b94d1e411707429724"; }; dependencies = [ - sources."onecolor-3.0.4" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."onecolor-3.0.5" + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100603,40 +60796,21 @@ in postcss-wee-syntax = nodeEnv.buildNodePackage { name = "postcss-wee-syntax"; packageName = "postcss-wee-syntax"; - version = "2.0.1"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-wee-syntax/-/postcss-wee-syntax-2.0.1.tgz"; - sha1 = "d5e8ff2d4ac88fbfe12bc96c14406ae3f6aa3604"; + url = "https://registry.npmjs.org/postcss-wee-syntax/-/postcss-wee-syntax-3.0.0.tgz"; + sha1 = "83dab5155763fa6a492faaa00a74307eacf07a05"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100655,30 +60829,15 @@ in sha1 = "cff091a87a0386bab1f32a7cfa7f79d6b773e100"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100698,30 +60857,15 @@ in }; dependencies = [ sources."css-properties-values-1.0.0" - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100741,34 +60885,21 @@ in }; dependencies = [ sources."onecolor-2.5.0" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100787,35 +60918,22 @@ in sha1 = "9fa0fb0bed166171dac525fb276a6296e47a5758"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100834,24 +60952,15 @@ in sha1 = "5cb8f6e19a73e2d679659a40dcf69a1bf82f115b"; }; dependencies = [ - (sources."postcss-4.1.16" // { - dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."postcss-4.1.16" + sources."postcss-selector-parser-1.3.3" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -100871,34 +60980,21 @@ in }; dependencies = [ sources."colors-1.1.2" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100917,34 +61013,21 @@ in sha1 = "b09b5c0d5f0c8e3b877f7d81a87a659b044377a2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -100963,35 +61046,22 @@ in sha1 = "76e495d40f2321ff09b56487e03845af737f801a"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-value-parser-3.3.0" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101010,34 +61080,21 @@ in sha1 = "e60efcb3759acc2d117981a7cfd083c33d4dd13d"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101056,40 +61113,24 @@ in sha1 = "d2109ddc055b91af67fc4cb3b025946639d2af22"; }; dependencies = [ - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - (sources."postcss-5.2.17" // { + sources."has-1.0.1" + sources."postcss-5.2.18" + sources."uniqs-2.0.0" + sources."function-bind-1.1.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."uniqs-2.0.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101108,35 +61149,22 @@ in sha1 = "76feabd2a191dace880b13b384f80648e14b5449"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."underscore-1.8.3" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."underscore-1.8.3" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101155,34 +61183,21 @@ in sha1 = "48615a353927cf338358c3fde34bf42530dce1b2"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101201,34 +61216,21 @@ in sha1 = "9873075344c0fa138b1397bcd2e440c8faf1f0c3"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101247,124 +61249,38 @@ in sha1 = "7f567e3318e06d44c8fdbf9e58452e8358bf4b71"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" (sources."postcss-advanced-variables-1.2.2" // { dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) (sources."postcss-atroot-0.1.3" // { dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-color-function-4.0.0" // { - dependencies = [ - (sources."css-color-function-1.3.0" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" - sources."postcss-value-parser-3.3.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) + sources."postcss-color-function-4.0.1" sources."postcss-custom-media-6.0.0" - (sources."postcss-custom-properties-6.1.0" // { + (sources."postcss-custom-properties-6.2.0" // { dependencies = [ sources."balanced-match-1.0.0" ]; @@ -101372,182 +61288,35 @@ in sources."postcss-custom-selectors-4.0.1" (sources."postcss-extend-1.0.5" // { dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) sources."postcss-media-minmax-3.0.0" - (sources."postcss-mixins-6.0.1" // { - dependencies = [ - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."postcss-js-1.0.0" // { - dependencies = [ - sources."camelcase-css-1.0.1" - ]; - }) - sources."postcss-simple-vars-4.0.0" - sources."sugarss-1.0.0" - ]; - }) - (sources."postcss-nested-2.0.4" // { - dependencies = [ - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."postcss-nesting-4.0.1" - (sources."postcss-partial-import-4.1.0" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."postcss-import-10.0.0" // { - dependencies = [ - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) - ]; - }) - ]; - }) + sources."postcss-mixins-6.2.0" + sources."postcss-nested-2.1.2" + sources."postcss-nesting-4.2.1" + sources."postcss-partial-import-4.1.0" (sources."postcss-property-lookup-1.2.1" // { dependencies = [ - sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."tcomb-2.7.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) (sources."postcss-selector-matches-3.0.1" // { @@ -101560,6 +61329,62 @@ in sources."balanced-match-0.4.2" ]; }) + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."js-base64-2.4.0" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."css-color-function-1.3.3" + sources."postcss-message-helpers-2.0.0" + sources."postcss-value-parser-3.3.0" + sources."balanced-match-0.1.0" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-string-0.3.0" + sources."ms-2.0.0" + sources."globby-6.1.0" + sources."postcss-js-1.0.1" + sources."postcss-simple-vars-4.1.0" + sources."sugarss-1.0.1" + sources."array-union-1.0.2" + sources."glob-7.1.2" + sources."object-assign-4.1.1" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."brace-expansion-1.1.8" // { + dependencies = [ + sources."balanced-match-1.0.0" + ]; + }) + sources."concat-map-0.0.1" + sources."pinkie-2.0.4" + sources."camelcase-css-1.0.1" + sources."postcss-selector-parser-2.2.3" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."postcss-import-10.0.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."path-parse-1.0.5" + sources."tcomb-2.7.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101594,188 +61419,88 @@ in sha1 = "0f29a8ebe5123a83f27e62ec78febd38c8658924"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { description = "PostCSS plugin for less-like variables"; - homepage = "https://github.com/lamo2k123/postcss-less-vars#readme"; - license = "MIT"; - }; - production = true; - }; - react-css-components = nodeEnv.buildNodePackage { - name = "react-css-components"; - packageName = "react-css-components"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/react-css-components/-/react-css-components-1.0.1.tgz"; - sha1 = "fc2128a47911e4527ee1974dd3fbe72401c44d77"; - }; - dependencies = [ - (sources."babel-generator-6.25.0" // { - dependencies = [ - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."detect-indent-4.0.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."jsesc-1.3.0" - sources."lodash-4.17.4" - sources."source-map-0.5.6" - sources."trim-right-1.0.1" - ]; - }) - sources."babel-plugin-ast-literal-0.5.4" - (sources."babel-traverse-6.25.0" // { - dependencies = [ - (sources."babel-code-frame-6.22.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."esutils-2.0.2" - sources."js-tokens-3.0.2" - ]; - }) - sources."babel-messages-6.23.0" - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."globals-9.18.0" - sources."lodash-4.17.4" - ]; - }) - (sources."babel-types-6.25.0" // { - dependencies = [ - (sources."babel-runtime-6.23.0" // { - dependencies = [ - sources."core-js-2.4.1" - sources."regenerator-runtime-0.10.5" - ]; - }) - sources."esutils-2.0.2" - sources."lodash-4.17.4" - sources."to-fast-properties-1.0.3" - ]; - }) - sources."babylon-6.17.4" - (sources."invariant-2.2.2" // { - dependencies = [ - (sources."loose-envify-1.3.1" // { - dependencies = [ - sources."js-tokens-3.0.2" - ]; - }) - ]; - }) - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."big.js-3.1.3" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."object-assign-4.1.1" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + homepage = "https://github.com/lamo2k123/postcss-less-vars#readme"; + license = "MIT"; + }; + production = true; + }; + react-css-components = nodeEnv.buildNodePackage { + name = "react-css-components"; + packageName = "react-css-components"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/react-css-components/-/react-css-components-1.0.1.tgz"; + sha1 = "fc2128a47911e4527ee1974dd3fbe72401c44d77"; + }; + dependencies = [ + sources."babel-generator-6.26.0" + sources."babel-plugin-ast-literal-0.5.4" + sources."babel-traverse-6.26.0" + sources."babel-types-6.26.0" + sources."babylon-6.18.0" + sources."invariant-2.2.2" + sources."loader-utils-0.2.17" + (sources."postcss-5.2.18" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-3.2.3" ]; }) + sources."postcss-selector-parser-1.3.3" + sources."babel-messages-6.23.0" + sources."babel-runtime-6.26.0" + sources."detect-indent-4.0.0" + sources."jsesc-1.3.0" + sources."lodash-4.17.4" + sources."source-map-0.5.7" + sources."trim-right-1.0.1" + sources."core-js-2.5.3" + sources."regenerator-runtime-0.11.1" + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."number-is-nan-1.0.1" + sources."babel-code-frame-6.26.0" + sources."debug-2.6.9" + sources."globals-9.18.0" + sources."chalk-1.1.3" + sources."esutils-2.0.2" + sources."js-tokens-3.0.2" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."ms-2.0.0" + sources."to-fast-properties-1.0.3" + sources."loose-envify-1.3.1" + sources."big.js-3.2.0" + sources."emojis-list-2.1.0" + sources."json5-0.5.1" + sources."object-assign-4.1.1" + sources."js-base64-2.4.0" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -101810,30 +61535,15 @@ in sha1 = "1a50774ca9412c4a5a075ad8604cc5bbce3f4dc2"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) + sources."postcss-6.0.14" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101852,54 +61562,31 @@ in sha1 = "5e59723b28769ad3c412c5910c0061e9e74bae8b"; }; dependencies = [ - (sources."diveSync-0.3.0" // { - dependencies = [ - sources."append-0.1.1" - ]; - }) - (sources."postcss-4.1.16" // { + sources."diveSync-0.3.0" + sources."postcss-4.1.16" + (sources."postcss-scopify-0.1.9" // { dependencies = [ - sources."es6-promise-2.3.0" - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - sources."js-base64-2.1.9" + sources."postcss-5.2.18" + sources."source-map-0.5.7" ]; }) - (sources."postcss-scopify-0.1.9" // { + sources."append-0.1.1" + sources."es6-promise-2.3.0" + sources."source-map-0.4.4" + sources."js-base64-2.1.9" + sources."amdefine-1.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -101912,486 +61599,216 @@ in scssfmt = nodeEnv.buildNodePackage { name = "scssfmt"; packageName = "scssfmt"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/scssfmt/-/scssfmt-1.0.2.tgz"; - sha1 = "6f3ee1d90526e1cb17e7aaa8447bdeb498e28203"; + url = "https://registry.npmjs.org/scssfmt/-/scssfmt-1.0.3.tgz"; + sha1 = "98ff956803aa00fdf60196a5858a07cd8a5dbfe7"; }; dependencies = [ - (sources."chalk-1.1.3" // { + sources."chalk-2.3.0" + sources."chokidar-1.7.0" + sources."diff-3.4.0" + sources."globby-7.1.1" + sources."minimist-1.2.0" + sources."postcss-6.0.14" + sources."postcss-scss-1.0.2" + sources."stdin-0.0.1" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."supports-color-4.5.0" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."path-is-absolute-1.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."graceful-fs-4.1.11" + sources."minimatch-3.0.4" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + (sources."mkdirp-0.5.1" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."minimist-0.0.8" ]; }) - (sources."chokidar-1.7.0" // { + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + sources."rc-1.2.2" + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."semver-5.4.1" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + sources."tar-pack-3.4.1" + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + sources."signal-exit-3.0.2" + sources."string-width-1.0.2" + sources."strip-ansi-3.0.1" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."ansi-regex-2.1.1" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."diff-3.3.0" - (sources."globby-6.1.0" // { + (sources."sshpk-1.13.1" // { dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."minimist-1.2.0" - (sources."postcss-6.0.6" // { + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."postcss-scss-1.0.2" - sources."stdin-0.0.1" + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."debug-2.6.9" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."ms-2.0.0" + sources."array-union-1.0.2" + sources."dir-glob-2.0.0" + sources."ignore-3.3.7" + sources."pify-3.0.0" + sources."slash-1.0.0" + sources."array-uniq-1.0.3" + sources."arrify-1.0.1" + sources."path-type-3.0.0" + sources."source-map-0.6.1" ]; buildInputs = globalBuildInputs; meta = { @@ -102409,96 +61826,48 @@ in sha1 = "b81e3a0d5e871c031e8e10b55402ee2832a8db69"; }; dependencies = [ - sources."chroma-js-1.3.4" - (sources."fs-extra-0.26.7" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-2.4.0" - sources."klaw-1.3.1" - sources."path-is-absolute-1.0.1" - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."fs-promise-0.5.0" // { - dependencies = [ - sources."any-promise-1.3.0" - (sources."mz-2.6.0" // { - dependencies = [ - sources."object-assign-4.1.1" - ]; - }) - (sources."thenify-all-1.6.0" // { - dependencies = [ - sources."thenify-3.3.0" - ]; - }) - ]; - }) + sources."chroma-js-1.3.5" + sources."fs-extra-0.26.7" + sources."fs-promise-0.5.0" sources."lodash-4.17.4" - sources."marked-0.3.6" - (sources."sgcss-theme-default-0.2.1" // { - dependencies = [ - sources."ejs-2.5.6" - sources."object-assign-4.1.1" - ]; - }) - (sources."postcss-5.2.17" // { + sources."marked-0.3.9" + sources."sgcss-theme-default-0.2.1" + sources."postcss-5.2.18" + sources."graceful-fs-4.1.11" + sources."jsonfile-2.4.0" + sources."klaw-1.3.1" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.2" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."any-promise-1.3.0" + sources."mz-2.7.0" + sources."thenify-all-1.6.0" + sources."object-assign-4.1.1" + sources."thenify-3.3.0" + sources."ejs-2.5.7" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -102511,1213 +61880,801 @@ in spike-css-standards = nodeEnv.buildNodePackage { name = "spike-css-standards"; packageName = "spike-css-standards"; - version = "2.0.1"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/spike-css-standards/-/spike-css-standards-2.0.1.tgz"; - sha1 = "eb48ddab816d3529dfe553bc7b0831e900ce2900"; + url = "https://registry.npmjs.org/spike-css-standards/-/spike-css-standards-3.0.0.tgz"; + sha1 = "90169c351e0ba906abb2cb1c70ad4e387a51e6ed"; }; dependencies = [ - (sources."autoprefixer-7.1.2" // { + sources."autoprefixer-7.2.3" + (sources."cssnano-3.10.0" // { dependencies = [ - (sources."browserslist-2.1.5" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-lite-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - (sources."postcss-6.0.6" // { + sources."autoprefixer-6.7.7" + sources."postcss-5.2.18" + sources."postcss-calc-5.3.1" + sources."browserslist-1.7.7" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."cssnano-3.10.0" // { + sources."postcss-attribute-case-insensitive-2.0.0" + (sources."postcss-calc-6.0.1" // { dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - ]; - }) - sources."decamelize-1.2.0" - sources."defined-1.0.0" - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) - sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-calc-5.3.1" // { - dependencies = [ - sources."postcss-message-helpers-2.0.0" - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - (sources."postcss-colormin-2.2.2" // { - dependencies = [ - (sources."colormin-1.1.2" // { - dependencies = [ - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."css-color-names-0.0.4" - ]; - }) - ]; - }) - sources."postcss-convert-values-2.6.1" - sources."postcss-discard-comments-2.0.4" - sources."postcss-discard-duplicates-2.1.0" - sources."postcss-discard-empty-2.1.0" - sources."postcss-discard-overridden-0.1.1" - (sources."postcss-discard-unused-2.2.3" // { - dependencies = [ - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-filter-plugins-2.0.2" // { - dependencies = [ - (sources."uniqid-4.1.1" // { - dependencies = [ - sources."macaddress-0.2.8" - ]; - }) - ]; - }) - sources."postcss-merge-idents-2.1.7" - sources."postcss-merge-longhand-2.0.2" - (sources."postcss-merge-rules-2.1.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."caniuse-api-1.6.1" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - sources."vendors-1.0.1" - ]; - }) - sources."postcss-minify-font-values-1.0.5" - sources."postcss-minify-gradients-1.0.5" - (sources."postcss-minify-params-1.2.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) - (sources."postcss-minify-selectors-2.1.1" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - ]; - }) - sources."postcss-normalize-charset-1.1.1" - (sources."postcss-normalize-url-3.0.8" // { - dependencies = [ - sources."is-absolute-url-2.1.0" - (sources."normalize-url-1.9.1" // { - dependencies = [ - sources."prepend-http-1.0.4" - (sources."query-string-4.3.4" // { - dependencies = [ - sources."strict-uri-encode-1.1.0" - ]; - }) - (sources."sort-keys-1.1.2" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - ]; - }) - ]; - }) - sources."postcss-ordered-values-2.2.3" - sources."postcss-reduce-idents-2.4.0" - sources."postcss-reduce-initial-1.0.1" - sources."postcss-reduce-transforms-1.0.4" - (sources."postcss-svgo-2.1.6" // { - dependencies = [ - (sources."is-svg-2.1.0" // { - dependencies = [ - sources."html-comment-regex-1.1.1" - ]; - }) - (sources."svgo-0.7.2" // { - dependencies = [ - sources."sax-1.2.4" - (sources."coa-1.0.4" // { - dependencies = [ - sources."q-1.5.0" - ]; - }) - (sources."js-yaml-3.7.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-2.7.3" - ]; - }) - sources."colors-1.1.2" - sources."whet.extend-0.9.9" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."csso-2.3.2" // { - dependencies = [ - (sources."clap-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."source-map-0.5.6" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-unique-selectors-2.0.2" // { - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."uniqs-2.0.0" - ]; - }) - sources."postcss-value-parser-3.3.0" - (sources."postcss-zindex-2.2.0" // { - dependencies = [ - sources."uniqs-2.0.0" - ]; - }) + sources."reduce-css-calc-2.1.3" + ]; + }) + sources."postcss-color-function-4.0.1" + (sources."postcss-color-gray-4.1.0" // { + dependencies = [ + sources."color-2.0.1" + sources."color-string-1.5.2" + ]; + }) + (sources."postcss-color-hex-alpha-3.0.0" // { + dependencies = [ + sources."color-1.0.3" + sources."color-string-1.5.2" + ]; + }) + sources."postcss-color-hsl-2.0.0" + (sources."postcss-color-hwb-3.0.0" // { + dependencies = [ + sources."color-1.0.3" + sources."color-string-1.5.2" + ]; + }) + sources."postcss-color-rebeccapurple-3.0.0" + sources."postcss-color-rgb-2.0.0" + sources."postcss-custom-media-6.0.0" + (sources."postcss-custom-properties-6.2.0" // { + dependencies = [ + sources."balanced-match-1.0.0" ]; }) - (sources."postcss-attribute-case-insensitive-2.0.0" // { + sources."postcss-custom-selectors-4.0.1" + sources."postcss-font-family-system-ui-2.1.1" + sources."postcss-font-variant-3.0.0" + (sources."postcss-image-set-polyfill-0.4.4" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-6.0.1" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."postcss-selector-parser-2.2.3" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + sources."postcss-import-10.0.0" + sources."postcss-media-minmax-3.0.0" + sources."postcss-nesting-4.2.1" + sources."postcss-pseudo-class-any-link-4.0.0" + sources."postcss-selector-matches-3.0.1" + sources."postcss-selector-not-3.0.1" + (sources."rucksack-css-0.9.1" // { + dependencies = [ + sources."autoprefixer-6.7.7" + sources."minimist-1.2.0" + sources."postcss-5.2.18" + sources."browserslist-1.7.7" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-calc-6.0.0" // { + sources."browserslist-2.10.0" + sources."caniuse-lite-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."postcss-6.0.14" + sources."postcss-value-parser-3.3.0" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."decamelize-1.2.0" + sources."defined-1.0.0" + sources."has-1.0.1" + sources."object-assign-4.1.1" + (sources."postcss-colormin-2.2.2" // { dependencies = [ - sources."css-unit-converter-1.1.1" - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."postcss-selector-parser-2.2.3" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-convert-values-2.6.1" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) - (sources."reduce-css-calc-2.0.5" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-discard-comments-2.0.4" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."postcss-value-parser-3.3.0" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-color-function-4.0.0" // { + (sources."postcss-discard-duplicates-2.1.0" // { dependencies = [ - (sources."css-color-function-1.3.0" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" + sources."supports-color-2.0.0" ]; }) - (sources."postcss-6.0.6" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-discard-empty-2.1.0" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" - sources."postcss-value-parser-3.3.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-color-gray-4.0.0" // { + (sources."postcss-discard-overridden-0.1.1" // { dependencies = [ - (sources."color-1.0.3" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."postcss-6.0.6" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-discard-unused-2.2.3" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-filter-plugins-2.0.2" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-color-hex-alpha-3.0.0" // { + (sources."postcss-merge-idents-2.1.7" // { dependencies = [ - (sources."color-1.0.3" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."postcss-6.0.6" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-merge-longhand-2.0.2" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-color-hsl-2.0.0" // { + (sources."postcss-merge-rules-2.1.2" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."browserslist-1.7.7" + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - (sources."units-css-0.4.0" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-minify-font-values-1.0.5" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."isnumeric-0.2.0" - sources."viewport-dimensions-0.2.0" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-color-hwb-3.0.0" // { + (sources."postcss-minify-gradients-1.0.5" // { dependencies = [ - (sources."color-1.0.3" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-1.5.2" // { - dependencies = [ - sources."color-name-1.1.3" - (sources."simple-swizzle-0.2.2" // { - dependencies = [ - sources."is-arrayish-0.3.1" - ]; - }) - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."postcss-6.0.6" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-minify-params-1.2.2" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-message-helpers-2.0.0" - (sources."reduce-function-call-1.0.2" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-minify-selectors-2.1.1" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-color-rebeccapurple-3.0.0" // { + (sources."postcss-normalize-charset-1.1.1" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-color-rgb-2.0.0" // { + (sources."postcss-normalize-url-3.0.8" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-custom-media-6.0.0" // { + (sources."postcss-ordered-values-2.2.3" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-custom-properties-6.1.0" // { + (sources."postcss-reduce-idents-2.4.0" // { dependencies = [ - sources."balanced-match-1.0.0" - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-custom-selectors-4.0.1" // { + (sources."postcss-reduce-initial-1.0.1" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-font-family-system-ui-2.0.1" // { + (sources."postcss-reduce-transforms-1.0.4" // { dependencies = [ - sources."lodash-4.17.4" - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-font-variant-3.0.0" // { + (sources."postcss-svgo-2.1.6" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-image-set-polyfill-0.3.5" // { + (sources."postcss-unique-selectors-2.0.2" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-media-query-parser-0.2.3" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-import-10.0.0" // { + (sources."postcss-zindex-2.2.0" // { dependencies = [ - sources."object-assign-4.1.1" - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + sources."caniuse-db-1.0.30000784" + sources."function-bind-1.1.1" + sources."js-base64-2.4.0" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."postcss-message-helpers-2.0.0" + sources."reduce-css-calc-1.3.0" + sources."balanced-match-0.4.2" + sources."math-expression-evaluator-1.2.17" + sources."reduce-function-call-1.0.2" + sources."colormin-1.1.2" + sources."color-0.11.4" + sources."css-color-names-0.0.4" + sources."clone-1.0.3" + sources."color-string-0.3.0" + sources."uniqs-2.0.0" + sources."uniqid-4.1.1" + sources."macaddress-0.2.8" + (sources."caniuse-api-1.6.1" // { + dependencies = [ + sources."browserslist-1.7.7" + ]; + }) + sources."postcss-selector-parser-2.2.3" + sources."vendors-1.0.1" + sources."lodash.memoize-4.1.2" + sources."lodash.uniq-4.5.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."alphanum-sort-1.0.2" + sources."is-absolute-url-2.1.0" + sources."normalize-url-1.9.1" + sources."prepend-http-1.0.4" + sources."query-string-4.3.4" + sources."sort-keys-1.1.2" + sources."strict-uri-encode-1.1.0" + sources."is-plain-obj-1.1.0" + sources."is-svg-2.1.0" + sources."svgo-0.7.2" + sources."html-comment-regex-1.1.1" + sources."sax-1.2.4" + sources."coa-1.0.4" + sources."js-yaml-3.7.0" + sources."colors-1.1.2" + sources."whet.extend-0.9.9" + sources."mkdirp-0.5.1" + (sources."csso-2.3.2" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."q-1.5.1" + sources."argparse-1.0.9" + sources."esprima-2.7.3" + sources."sprintf-js-1.0.3" + sources."minimist-0.0.8" + (sources."clap-1.2.3" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + ]; + }) + sources."css-unit-converter-1.1.1" + (sources."css-color-function-1.3.3" // { + dependencies = [ + sources."balanced-match-0.1.0" + ]; + }) + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."ms-2.0.0" + sources."simple-swizzle-0.2.2" + sources."is-arrayish-0.3.1" + sources."units-css-0.4.0" + sources."isnumeric-0.2.0" + sources."viewport-dimensions-0.2.0" + sources."@std/esm-0.16.0" + sources."lodash-4.17.4" + sources."postcss-media-query-parser-0.2.3" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" + (sources."laggard-0.1.0" // { + dependencies = [ + sources."minimist-1.2.0" + sources."postcss-5.2.18" + sources."postcss-opacity-3.0.0" + sources."postcss-reporter-1.4.1" + (sources."chalk-1.1.3" // { dependencies = [ - sources."pify-2.3.0" + sources."supports-color-2.0.0" ]; }) - (sources."resolve-1.3.3" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-alias-1.0.0" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."path-parse-1.0.5" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-media-minmax-3.0.0" // { + (sources."postcss-clearfix-1.0.0" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-nesting-4.0.1" // { + (sources."postcss-color-rgba-fallback-2.2.0" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-pseudo-class-any-link-4.0.0" // { + (sources."postcss-easings-0.3.0" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - (sources."postcss-selector-parser-2.2.3" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-fontpath-0.3.0" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-selector-matches-3.0.1" // { + (sources."postcss-hexrgba-0.2.1" // { dependencies = [ - sources."balanced-match-0.4.2" - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."postcss-selector-not-3.0.1" // { + (sources."postcss-input-style-0.3.0" // { dependencies = [ - sources."balanced-match-0.4.2" - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."rucksack-css-0.9.1" // { + (sources."postcss-opacity-4.0.0" // { dependencies = [ - (sources."autoprefixer-6.7.7" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - sources."postcss-value-parser-3.3.0" + sources."supports-color-2.0.0" ]; }) - (sources."laggard-0.1.0" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-position-0.5.0" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."pixrem-3.0.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."reduce-css-calc-1.3.0" // { - dependencies = [ - sources."balanced-match-0.4.2" - sources."math-expression-evaluator-1.2.17" - sources."reduce-function-call-1.0.2" - ]; - }) - ]; - }) - sources."postcss-opacity-3.0.0" - (sources."postcss-reporter-1.4.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" - ]; - }) - sources."postcss-will-change-1.1.0" + sources."supports-color-2.0.0" ]; }) - sources."minimist-1.2.0" - (sources."postcss-5.2.17" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-pseudoelements-3.0.0" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) - sources."postcss-alias-1.0.0" - sources."postcss-clearfix-1.0.0" - (sources."postcss-color-rgba-fallback-2.2.0" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-quantity-queries-0.4.0" // { + dependencies = [ + sources."balanced-match-0.2.1" + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."postcss-value-parser-3.3.0" - sources."rgb-hex-1.0.0" + sources."supports-color-2.0.0" ]; }) - sources."postcss-easings-0.3.0" - (sources."postcss-fontpath-0.3.0" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-reporter-2.0.0" // { + dependencies = [ + sources."chalk-1.1.3" + (sources."postcss-5.2.18" // { dependencies = [ - sources."object-assign-4.1.1" + sources."supports-color-3.2.3" ]; }) - sources."postcss-hexrgba-0.2.1" - sources."postcss-input-style-0.3.0" - sources."postcss-opacity-4.0.0" - sources."postcss-position-0.5.0" - sources."postcss-pseudoelements-3.0.0" - (sources."postcss-quantity-queries-0.4.0" // { + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-responsive-type-0.5.1" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.2.1" + sources."supports-color-2.0.0" ]; }) - (sources."postcss-reporter-2.0.0" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."postcss-vmin-2.0.0" // { + dependencies = [ + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."lodash-4.17.4" - sources."log-symbols-1.0.2" + sources."supports-color-2.0.0" ]; }) - sources."postcss-responsive-type-0.5.1" - sources."postcss-vmin-2.0.0" - (sources."read-file-stdin-0.2.1" // { + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + sources."read-file-stdin-0.2.1" + sources."write-file-stdout-0.0.2" + (sources."pixrem-3.0.2" // { + dependencies = [ + sources."browserslist-1.7.7" + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - sources."gather-stream-1.0.0" + sources."supports-color-2.0.0" ]; }) - sources."write-file-stdout-0.0.2" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" ]; }) - (sources."sugarss-1.0.0" // { + (sources."postcss-will-change-1.1.0" // { dependencies = [ - (sources."postcss-6.0.6" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."has-flag-1.0.0" + ]; + }) + (sources."log-symbols-1.0.2" // { + dependencies = [ + sources."chalk-1.1.3" + sources."ansi-styles-2.2.1" + sources."supports-color-2.0.0" ]; }) + sources."rgb-hex-1.0.0" + sources."gather-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -103736,901 +62693,387 @@ in sha1 = "c851e9c2d78b8a99502f74ba3d863b30163eec93"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."css-color-list-0.0.1" // { - dependencies = [ - sources."css-color-names-0.0.1" - ]; - }) - sources."diff-3.3.0" - (sources."editorconfig-0.13.2" // { - dependencies = [ - sources."bluebird-3.5.0" - sources."commander-2.11.0" - (sources."lru-cache-3.2.0" // { - dependencies = [ - sources."pseudomap-1.0.2" - ]; - }) - sources."sigmund-1.0.1" - ]; - }) - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) + sources."chalk-1.1.3" + sources."css-color-list-0.0.1" + sources."diff-3.4.0" + sources."editorconfig-0.13.3" + sources."globby-6.1.0" sources."minimist-1.2.0" - (sources."postcss-6.0.6" // { + (sources."postcss-6.0.14" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" ]; }) sources."postcss-scss-1.0.2" (sources."postcss-sorting-2.1.0" // { dependencies = [ - sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) + sources."postcss-5.2.18" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" ]; }) sources."postcss-value-parser-3.3.0" sources."stdin-0.0.1" (sources."stylelint-7.13.0" // { dependencies = [ - (sources."autoprefixer-6.7.7" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - sources."normalize-range-0.1.2" - sources."num2fraction-1.2.2" - ]; - }) sources."balanced-match-0.4.2" - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."colorguard-1.2.0" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."color-diff-0.1.7" - sources."object-assign-4.1.1" - (sources."pipetteur-2.0.3" // { - dependencies = [ - sources."onecolor-3.0.4" - (sources."synesthesia-1.0.1" // { - dependencies = [ - sources."css-color-names-0.0.3" - ]; - }) - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - sources."postcss-reporter-1.4.1" - sources."text-table-0.2.0" - sources."yargs-1.3.3" - ]; - }) - (sources."cosmiconfig-2.1.3" // { - dependencies = [ - sources."is-directory-0.3.1" - (sources."js-yaml-3.9.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) - sources."object-assign-4.1.1" - sources."os-homedir-1.0.2" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - sources."require-from-string-1.2.1" - ]; - }) - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."doiuse-2.6.0" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."electron-to-chromium-1.3.15" - ]; - }) - sources."caniuse-db-1.0.30000701" - (sources."css-rule-stream-1.1.0" // { - dependencies = [ - (sources."css-tokenize-1.0.1" // { - dependencies = [ - sources."inherits-2.0.3" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - ]; - }) - ]; - }) - ]; - }) - (sources."duplexer2-0.0.2" // { - dependencies = [ - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - ]; - }) - (sources."jsonfilter-1.1.2" // { - dependencies = [ - (sources."JSONStream-0.8.4" // { - dependencies = [ - sources."jsonparse-0.0.5" - sources."through-2.3.8" - ]; - }) - (sources."stream-combiner-0.2.2" // { - dependencies = [ - sources."duplexer-0.1.1" - sources."through-2.3.8" - ]; - }) - ]; - }) - (sources."ldjson-stream-1.2.1" // { - dependencies = [ - sources."split2-0.2.1" - ]; - }) - (sources."multimatch-2.1.0" // { - dependencies = [ - sources."array-differ-1.0.0" - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."arrify-1.0.1" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."source-map-0.4.4" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - (sources."through2-0.6.5" // { - dependencies = [ - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."xtend-4.0.1" - ]; - }) - (sources."yargs-3.32.0" // { - dependencies = [ - sources."camelcase-2.1.1" - (sources."cliui-3.2.0" // { - dependencies = [ - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wrap-ansi-2.1.0" - ]; - }) - sources."decamelize-1.2.0" - (sources."os-locale-1.4.0" // { - dependencies = [ - (sources."lcid-1.0.0" // { - dependencies = [ - sources."invert-kv-1.0.0" - ]; - }) - ]; - }) - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - ]; - }) - sources."window-size-0.1.4" - sources."y18n-3.2.1" - ]; - }) - ]; - }) - (sources."execall-1.0.0" // { - dependencies = [ - (sources."clone-regexp-1.0.0" // { - dependencies = [ - sources."is-regexp-1.0.0" - sources."is-supported-regexp-flag-1.0.0" - ]; - }) - ]; - }) - (sources."file-entry-cache-2.0.0" // { - dependencies = [ - (sources."flat-cache-1.2.2" // { - dependencies = [ - sources."circular-json-0.3.1" - (sources."del-2.2.2" // { - dependencies = [ - (sources."globby-5.0.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."arrify-1.0.1" - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - sources."is-path-cwd-1.0.0" - (sources."is-path-in-cwd-1.0.0" // { - dependencies = [ - (sources."is-path-inside-1.0.0" // { - dependencies = [ - sources."path-is-inside-1.0.2" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - ]; - }) - ]; - }) - sources."graceful-fs-4.1.11" - (sources."write-0.2.1" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - ]; - }) - sources."get-stdin-5.0.1" - sources."globjoin-0.1.4" - sources."html-tags-2.0.0" - sources."ignore-3.3.3" - sources."imurmurhash-0.1.4" - sources."known-css-properties-0.2.0" - sources."lodash-4.17.4" - (sources."log-symbols-1.0.2" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - ]; - }) - sources."mathml-tag-names-2.0.1" - (sources."meow-3.7.0" // { - dependencies = [ - (sources."camelcase-keys-2.1.0" // { - dependencies = [ - sources."camelcase-2.1.1" - ]; - }) - sources."decamelize-1.2.0" - (sources."loud-rejection-1.6.0" // { - dependencies = [ - (sources."currently-unhandled-0.4.1" // { - dependencies = [ - sources."array-find-index-1.0.2" - ]; - }) - sources."signal-exit-3.0.2" - ]; - }) - sources."map-obj-1.0.1" - (sources."normalize-package-data-2.4.0" // { - dependencies = [ - sources."hosted-git-info-2.5.0" - (sources."is-builtin-module-1.0.0" // { - dependencies = [ - sources."builtin-modules-1.1.1" - ]; - }) - sources."semver-5.3.0" - (sources."validate-npm-package-license-3.0.1" // { - dependencies = [ - (sources."spdx-correct-1.0.2" // { - dependencies = [ - sources."spdx-license-ids-1.2.2" - ]; - }) - sources."spdx-expression-parse-1.0.4" - ]; - }) - ]; - }) - sources."object-assign-4.1.1" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - (sources."find-up-1.1.2" // { - dependencies = [ - sources."path-exists-2.1.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."read-pkg-1.1.0" // { - dependencies = [ - (sources."load-json-file-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."parse-json-2.2.0" // { - dependencies = [ - (sources."error-ex-1.3.1" // { - dependencies = [ - sources."is-arrayish-0.2.1" - ]; - }) - ]; - }) - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - (sources."strip-bom-2.0.0" // { - dependencies = [ - sources."is-utf8-0.2.1" - ]; - }) - ]; - }) - (sources."path-type-1.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - ]; - }) - ]; - }) - (sources."redent-1.0.0" // { - dependencies = [ - (sources."indent-string-2.1.0" // { - dependencies = [ - (sources."repeating-2.0.1" // { - dependencies = [ - (sources."is-finite-1.0.2" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."strip-indent-1.0.1" // { - dependencies = [ - sources."get-stdin-4.0.1" - ]; - }) - ]; - }) - sources."trim-newlines-1.0.0" - ]; - }) - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - (sources."glob-base-0.3.0" // { - dependencies = [ - sources."glob-parent-2.0.0" - ]; - }) - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - sources."normalize-selector-0.2.0" - sources."pify-2.3.0" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - sources."postcss-less-0.14.0" - sources."postcss-media-query-parser-0.2.3" - (sources."postcss-reporter-3.0.0" // { + sources."chalk-2.3.0" + (sources."postcss-5.2.18" // { dependencies = [ (sources."chalk-1.1.3" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) sources."supports-color-2.0.0" ]; }) + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" ]; }) - sources."postcss-resolve-nested-selector-0.1.1" sources."postcss-scss-0.4.1" - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - sources."resolve-from-3.0.0" - sources."specificity-0.3.1" - (sources."string-width-2.1.0" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - sources."style-search-0.1.0" - (sources."stylehacks-2.3.2" // { - dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - sources."postcss-reporter-1.4.1" - (sources."read-file-stdin-0.2.1" // { - dependencies = [ - sources."gather-stream-1.0.0" - ]; - }) - sources."text-table-0.2.0" - sources."write-file-stdout-0.0.2" - ]; - }) - sources."sugarss-0.2.0" - sources."svg-tags-1.0.0" - (sources."table-4.0.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."ajv-keywords-1.5.1" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."slice-ansi-0.0.4" - ]; - }) + sources."ansi-styles-3.2.0" + sources."supports-color-4.5.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + ]; + }) + (sources."stylelint-order-0.4.4" // { + dependencies = [ + sources."postcss-5.2.18" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" + ]; + }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."css-color-names-0.0.1" + sources."bluebird-3.5.1" + sources."commander-2.12.2" + sources."lru-cache-3.2.0" + sources."semver-5.4.1" + sources."sigmund-1.0.1" + sources."pseudomap-1.0.2" + sources."array-union-1.0.2" + sources."glob-7.1.2" + sources."object-assign-4.1.1" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."pinkie-2.0.4" + sources."source-map-0.6.1" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + sources."lodash-4.17.4" + sources."js-base64-2.4.0" + (sources."autoprefixer-6.7.7" // { + dependencies = [ + sources."postcss-5.2.18" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" ]; }) - (sources."stylelint-order-0.4.4" // { + (sources."colorguard-1.2.1" // { dependencies = [ - sources."lodash-4.17.4" - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + sources."postcss-reporter-1.4.1" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" + ]; + }) + sources."cosmiconfig-2.2.2" + sources."debug-2.6.9" + (sources."doiuse-2.6.0" // { + dependencies = [ + (sources."postcss-5.2.18" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."source-map-0.5.7" ]; }) + sources."source-map-0.4.4" + sources."yargs-3.32.0" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" + sources."string-width-1.0.2" + ]; + }) + sources."execall-1.0.0" + sources."file-entry-cache-2.0.0" + sources."get-stdin-5.0.1" + sources."globjoin-0.1.4" + sources."html-tags-2.0.0" + sources."ignore-3.3.7" + sources."imurmurhash-0.1.4" + sources."known-css-properties-0.2.0" + sources."log-symbols-1.0.2" + sources."mathml-tag-names-2.0.1" + sources."meow-3.7.0" + sources."micromatch-2.3.11" + sources."normalize-selector-0.2.0" + (sources."postcss-less-0.14.0" // { + dependencies = [ + sources."postcss-5.2.18" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" + ]; + }) + sources."postcss-media-query-parser-0.2.3" + (sources."postcss-reporter-3.0.0" // { + dependencies = [ + sources."postcss-5.2.18" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" + ]; + }) + sources."postcss-resolve-nested-selector-0.1.1" + sources."postcss-selector-parser-2.2.3" + sources."resolve-from-3.0.0" + sources."specificity-0.3.2" + (sources."string-width-2.1.1" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" + ]; + }) + sources."style-search-0.1.0" + (sources."stylehacks-2.3.2" // { + dependencies = [ + sources."postcss-5.2.18" + sources."postcss-reporter-1.4.1" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" + ]; + }) + (sources."sugarss-0.2.0" // { + dependencies = [ + sources."postcss-5.2.18" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."has-flag-1.0.0" + ]; + }) + sources."svg-tags-1.0.0" + (sources."table-4.0.2" // { + dependencies = [ + sources."chalk-2.3.0" + sources."ansi-styles-3.2.0" + sources."supports-color-4.5.0" ]; }) + sources."browserslist-1.7.7" + sources."caniuse-db-1.0.30000784" + sources."normalize-range-0.1.2" + sources."num2fraction-1.2.2" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."color-diff-0.1.7" + sources."pipetteur-2.0.3" + sources."plur-2.1.2" + sources."text-table-0.2.0" + sources."yargs-1.3.3" + sources."onecolor-3.0.5" + (sources."synesthesia-1.0.1" // { + dependencies = [ + sources."css-color-names-0.0.3" + ]; + }) + sources."irregular-plurals-1.4.0" + sources."is-directory-0.3.1" + sources."js-yaml-3.10.0" + sources."os-homedir-1.0.2" + sources."parse-json-2.2.0" + sources."require-from-string-1.2.1" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" + sources."error-ex-1.3.1" + sources."is-arrayish-0.2.1" + sources."ms-2.0.0" + sources."css-rule-stream-1.1.0" + sources."duplexer2-0.0.2" + sources."jsonfilter-1.1.2" + sources."ldjson-stream-1.2.1" + sources."multimatch-2.1.0" + (sources."through2-0.6.5" // { + dependencies = [ + sources."readable-stream-1.0.34" + ]; + }) + sources."css-tokenize-1.0.1" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."JSONStream-0.8.4" + sources."stream-combiner-0.2.2" + sources."jsonparse-0.0.5" + sources."through-2.3.8" + sources."duplexer-0.1.1" + sources."split2-0.2.1" + sources."array-differ-1.0.0" + sources."arrify-1.0.1" + sources."amdefine-1.0.1" + sources."xtend-4.0.1" + sources."camelcase-2.1.1" + (sources."cliui-3.2.0" // { + dependencies = [ + sources."string-width-1.0.2" + ]; + }) + sources."decamelize-1.2.0" + sources."os-locale-1.4.0" + sources."window-size-0.1.4" + sources."y18n-3.2.1" + (sources."wrap-ansi-2.1.0" // { + dependencies = [ + sources."string-width-1.0.2" + ]; + }) + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."lcid-1.0.0" + sources."invert-kv-1.0.0" + sources."clone-regexp-1.0.0" + sources."is-regexp-1.0.0" + sources."is-supported-regexp-flag-1.0.0" + sources."flat-cache-1.3.0" + sources."circular-json-0.3.3" + (sources."del-2.2.2" // { + dependencies = [ + sources."globby-5.0.0" + ]; + }) + sources."graceful-fs-4.1.11" + sources."write-0.2.1" + sources."is-path-cwd-1.0.0" + sources."is-path-in-cwd-1.0.0" + sources."rimraf-2.6.2" + sources."is-path-inside-1.0.1" + sources."path-is-inside-1.0.2" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."camelcase-keys-2.1.0" + sources."loud-rejection-1.6.0" + sources."map-obj-1.0.1" + sources."normalize-package-data-2.4.0" + sources."read-pkg-up-1.0.1" + sources."redent-1.0.0" + sources."trim-newlines-1.0.0" + sources."currently-unhandled-0.4.1" + sources."signal-exit-3.0.2" + sources."array-find-index-1.0.2" + sources."hosted-git-info-2.5.0" + sources."is-builtin-module-1.0.0" + sources."validate-npm-package-license-3.0.1" + sources."builtin-modules-1.1.1" + sources."spdx-correct-1.0.2" + sources."spdx-expression-parse-1.0.4" + sources."spdx-license-ids-1.2.2" + sources."find-up-1.1.2" + sources."read-pkg-1.1.0" + sources."path-exists-2.1.0" + sources."load-json-file-1.1.0" + sources."path-type-1.1.0" + sources."strip-bom-2.0.0" + sources."is-utf8-0.2.1" + sources."indent-string-2.1.0" + (sources."strip-indent-1.0.1" // { + dependencies = [ + sources."get-stdin-4.0.1" + ]; + }) + sources."repeating-2.0.1" + sources."is-finite-1.0.2" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."is-glob-2.0.1" + sources."kind-of-3.2.2" + sources."normalize-path-2.1.1" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + (sources."isobject-2.1.0" // { + dependencies = [ + sources."isarray-1.0.0" + ]; + }) + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" + ]; + }) + sources."repeat-string-1.6.1" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."remove-trailing-separator-1.1.0" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."glob-parent-2.0.0" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."read-file-stdin-0.2.1" + sources."write-file-stdout-0.0.2" + sources."gather-stream-1.0.0" + sources."ajv-5.5.2" + sources."ajv-keywords-2.1.1" + (sources."slice-ansi-1.0.0" // { + dependencies = [ + sources."is-fullwidth-code-point-2.0.0" + ]; + }) + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" ]; buildInputs = globalBuildInputs; meta = { @@ -104648,66 +63091,39 @@ in sha1 = "64c83e0438a68c9edf449e8c552a7d9ab6009b0b"; }; dependencies = [ - (sources."browserslist-1.7.7" // { - dependencies = [ - sources."caniuse-db-1.0.30000701" - sources."electron-to-chromium-1.3.15" - ]; - }) - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) + sources."browserslist-1.7.7" + sources."chalk-1.1.3" sources."log-symbols-1.0.2" sources."minimist-1.2.0" - (sources."plur-2.1.2" // { - dependencies = [ - sources."irregular-plurals-1.3.0" - ]; - }) - (sources."postcss-5.2.17" // { - dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-reporter-1.4.1" // { + sources."plur-2.1.2" + (sources."postcss-5.2.18" // { dependencies = [ - sources."lodash-4.17.4" - ]; - }) - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) - (sources."read-file-stdin-0.2.1" // { - dependencies = [ - sources."gather-stream-1.0.0" + sources."supports-color-3.2.3" ]; }) + sources."postcss-reporter-1.4.1" + sources."postcss-selector-parser-2.2.3" + sources."read-file-stdin-0.2.1" sources."text-table-0.2.0" sources."write-file-stdout-0.0.2" + sources."caniuse-db-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."irregular-plurals-1.4.0" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" + sources."lodash-4.17.4" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" + sources."gather-stream-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -104726,41 +63142,25 @@ in sha1 = "c95a350a2555782a116ae21aa2ef898f2441cc02"; }; dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - (sources."postcss-selector-parser-1.3.3" // { + sources."postcss-5.2.18" + sources."postcss-selector-parser-1.3.3" + (sources."chalk-1.1.3" // { dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."flatten-1.0.2" + sources."indexes-of-1.0.1" + sources."uniq-1.0.1" ]; buildInputs = globalBuildInputs; meta = { @@ -104779,34 +63179,21 @@ in sha1 = "415352ede141a5660565086b3abf7043c9fcd82c"; }; dependencies = [ - (sources."postcss-5.2.17" // { + sources."postcss-5.2.18" + (sources."chalk-1.1.3" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -104819,15 +63206,31 @@ in "system.css" = nodeEnv.buildNodePackage { name = "system.css"; packageName = "system.css"; - version = "0.3.0"; + version = "0.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/system.css/-/system.css-0.3.0.tgz"; - sha1 = "8f9620838239fbf3afe904ed3cf101d7b6b54db0"; + url = "https://registry.npmjs.org/system.css/-/system.css-0.5.1.tgz"; + sha1 = "9f96d5faa85296242cf5a808a7c037844742ac8b"; }; + dependencies = [ + sources."postcss-normalize-4.0.0" + sources."browserslist-2.10.0" + sources."postcss-6.0.14" + sources."caniuse-lite-1.0.30000784" + sources."electron-to-chromium-1.3.30" + sources."electron-releases-2.1.0" + sources."chalk-2.3.0" + sources."source-map-0.6.1" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + sources."escape-string-regexp-1.0.5" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" + ]; buildInputs = globalBuildInputs; meta = { - description = "Deprecated. Check postcss-structure."; - homepage = https://github.com/francoisromain/system.css; + description = "A minimal CSS boilerplate based on PostCSS, cssnext and postcss-grid-system, postcss-grid-fluid, postcss-typescale, postcss-button"; + homepage = "https://github.com/francoisromain/system.css#readme"; license = "MIT"; }; production = true; @@ -104841,480 +63244,214 @@ in sha1 = "05eb8471c0a67e32f090cdfb6dc586dc88c220e5"; }; dependencies = [ - (sources."chalk-1.1.3" // { + sources."chalk-1.1.3" + sources."chokidar-1.7.0" + sources."diff-3.4.0" + sources."globby-6.1.0" + sources."minimist-1.2.0" + (sources."postcss-6.0.14" // { dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" + sources."chalk-2.3.0" + sources."supports-color-4.5.0" + sources."ansi-styles-3.2.0" + ]; + }) + sources."postcss-scss-1.0.2" + sources."stdin-0.0.1" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."anymatch-1.3.2" + sources."async-each-1.0.1" + sources."glob-parent-2.0.0" + sources."inherits-2.0.3" + sources."is-binary-path-1.0.1" + sources."is-glob-2.0.1" + sources."path-is-absolute-1.0.1" + sources."readdirp-2.1.0" + sources."fsevents-1.1.3" + sources."micromatch-2.3.11" + sources."normalize-path-2.1.1" + sources."arr-diff-2.0.0" + sources."array-unique-0.2.1" + sources."braces-1.8.5" + sources."expand-brackets-0.1.5" + sources."extglob-0.3.2" + sources."filename-regex-2.0.1" + sources."is-extglob-1.0.0" + sources."kind-of-3.2.2" + sources."object.omit-2.0.1" + sources."parse-glob-3.0.4" + sources."regex-cache-0.4.4" + sources."arr-flatten-1.1.0" + sources."expand-range-1.8.2" + sources."preserve-0.2.0" + sources."repeat-element-1.1.2" + sources."fill-range-2.2.3" + sources."is-number-2.1.0" + sources."isobject-2.1.0" + (sources."randomatic-1.1.7" // { + dependencies = [ + (sources."is-number-3.0.0" // { + dependencies = [ + sources."kind-of-3.2.2" + ]; + }) + sources."kind-of-4.0.0" ]; }) - (sources."chokidar-1.7.0" // { + sources."repeat-string-1.6.1" + sources."isarray-1.0.0" + sources."is-buffer-1.1.6" + sources."is-posix-bracket-0.1.1" + sources."for-own-0.1.5" + sources."is-extendable-0.1.1" + sources."for-in-1.0.2" + sources."glob-base-0.3.0" + sources."is-dotfile-1.0.3" + sources."is-equal-shallow-0.1.3" + sources."is-primitive-2.0.0" + sources."remove-trailing-separator-1.1.0" + sources."binary-extensions-1.11.0" + sources."graceful-fs-4.1.11" + sources."minimatch-3.0.4" + sources."readable-stream-2.3.3" + sources."set-immediate-shim-1.0.1" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."core-util-is-1.0.2" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."nan-2.8.0" + sources."node-pre-gyp-0.6.39" + (sources."mkdirp-0.5.1" // { dependencies = [ - (sources."anymatch-1.3.0" // { - dependencies = [ - sources."arrify-1.0.1" - (sources."micromatch-2.3.11" // { - dependencies = [ - (sources."arr-diff-2.0.0" // { - dependencies = [ - sources."arr-flatten-1.1.0" - ]; - }) - sources."array-unique-0.2.1" - (sources."braces-1.8.5" // { - dependencies = [ - (sources."expand-range-1.8.2" // { - dependencies = [ - (sources."fill-range-2.2.3" // { - dependencies = [ - sources."is-number-2.1.0" - (sources."isobject-2.1.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."randomatic-1.1.7" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - (sources."kind-of-4.0.0" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - ]; - }) - sources."repeat-string-1.6.1" - ]; - }) - ]; - }) - sources."preserve-0.2.0" - sources."repeat-element-1.1.2" - ]; - }) - (sources."expand-brackets-0.1.5" // { - dependencies = [ - sources."is-posix-bracket-0.1.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."is-extglob-1.0.0" - (sources."kind-of-3.2.2" // { - dependencies = [ - sources."is-buffer-1.1.5" - ]; - }) - (sources."normalize-path-2.1.1" // { - dependencies = [ - sources."remove-trailing-separator-1.0.2" - ]; - }) - (sources."object.omit-2.0.1" // { - dependencies = [ - (sources."for-own-0.1.5" // { - dependencies = [ - sources."for-in-1.0.2" - ]; - }) - sources."is-extendable-0.1.1" - ]; - }) - (sources."parse-glob-3.0.4" // { - dependencies = [ - sources."glob-base-0.3.0" - sources."is-dotfile-1.0.3" - ]; - }) - (sources."regex-cache-0.4.3" // { - dependencies = [ - sources."is-equal-shallow-0.1.3" - sources."is-primitive-2.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."async-each-1.0.1" - sources."glob-parent-2.0.0" - sources."inherits-2.0.3" - (sources."is-binary-path-1.0.1" // { - dependencies = [ - sources."binary-extensions-1.8.0" - ]; - }) - (sources."is-glob-2.0.1" // { - dependencies = [ - sources."is-extglob-1.0.0" - ]; - }) - sources."path-is-absolute-1.0.1" - (sources."readdirp-2.1.0" // { - dependencies = [ - sources."graceful-fs-4.1.11" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."set-immediate-shim-1.0.1" - ]; - }) - (sources."fsevents-1.1.2" // { - dependencies = [ - sources."nan-2.6.2" - (sources."node-pre-gyp-0.6.36" // { - dependencies = [ - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."nopt-4.0.1" // { - dependencies = [ - sources."abbrev-1.1.0" - (sources."osenv-0.1.4" // { - dependencies = [ - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - ]; - }) - ]; - }) - (sources."npmlog-4.1.2" // { - dependencies = [ - (sources."are-we-there-yet-1.1.4" // { - dependencies = [ - sources."delegates-1.0.0" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - sources."console-control-strings-1.1.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."aproba-1.1.2" - sources."has-unicode-2.0.1" - sources."object-assign-4.1.1" - sources."signal-exit-3.0.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."wide-align-1.1.2" - ]; - }) - sources."set-blocking-2.0.0" - ]; - }) - (sources."rc-1.2.1" // { - dependencies = [ - sources."deep-extend-0.4.2" - sources."ini-1.3.4" - sources."strip-json-comments-2.0.1" - ]; - }) - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - (sources."rimraf-2.6.1" // { - dependencies = [ - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - ]; - }) - sources."semver-5.3.0" - (sources."tar-2.2.1" // { - dependencies = [ - sources."block-stream-0.0.9" - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - ]; - }) - (sources."tar-pack-3.4.0" // { - dependencies = [ - (sources."debug-2.6.8" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."fstream-1.0.11" // { - dependencies = [ - sources."graceful-fs-4.1.11" - ]; - }) - (sources."fstream-ignore-1.0.5" // { - dependencies = [ - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - sources."uid-number-0.0.6" - ]; - }) - ]; - }) - ]; - }) + sources."minimist-0.0.8" ]; }) - sources."diff-3.3.0" - (sources."globby-6.1.0" // { + sources."nopt-4.0.1" + sources."npmlog-4.1.2" + sources."rc-1.2.2" + sources."request-2.81.0" + sources."hawk-3.1.3" + sources."rimraf-2.6.2" + sources."semver-5.4.1" + sources."detect-libc-1.0.3" + sources."tar-2.2.1" + sources."tar-pack-3.4.1" + sources."abbrev-1.1.1" + sources."osenv-0.1.4" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."are-we-there-yet-1.1.4" + sources."console-control-strings-1.1.0" + sources."gauge-2.7.4" + sources."set-blocking-2.0.0" + sources."delegates-1.0.0" + sources."aproba-1.2.0" + sources."has-unicode-2.0.1" + sources."object-assign-4.1.1" + sources."signal-exit-3.0.2" + sources."string-width-1.0.2" + sources."wide-align-1.1.2" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."number-is-nan-1.0.1" + sources."deep-extend-0.4.2" + sources."ini-1.3.5" + sources."strip-json-comments-2.0.1" + sources."aws-sign2-0.6.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.1.4" + sources."har-validator-4.2.1" + sources."http-signature-1.1.1" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-0.2.0" + sources."qs-6.4.0" + sources."stringstream-0.0.5" + sources."tough-cookie-2.3.3" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-4.11.8" + sources."har-schema-1.0.5" + sources."co-4.6.0" + sources."json-stable-stringify-1.0.1" + sources."jsonify-0.0.0" + sources."assert-plus-0.2.0" + (sources."jsprim-1.4.1" // { dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."minimist-1.2.0" - (sources."postcss-6.0.6" // { + (sources."sshpk-1.13.1" // { dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) + sources."assert-plus-1.0.0" ]; }) - sources."postcss-scss-1.0.2" - sources."stdin-0.0.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + (sources."verror-1.10.0" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."asn1-0.2.3" + (sources."dashdash-1.14.1" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + (sources."getpass-0.1.7" // { + dependencies = [ + sources."assert-plus-1.0.0" + ]; + }) + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."hoek-2.16.3" + sources."boom-2.10.1" + sources."cryptiles-2.0.5" + sources."sntp-1.0.9" + sources."glob-7.1.2" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."block-stream-0.0.9" + sources."fstream-1.0.11" + sources."debug-2.6.9" + sources."fstream-ignore-1.0.5" + sources."uid-number-0.0.6" + sources."ms-2.0.0" + sources."array-union-1.0.2" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."pinkie-2.0.4" + sources."source-map-0.6.1" + sources."color-convert-1.9.1" + sources."color-name-1.1.3" + sources."has-flag-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -105333,266 +63470,163 @@ in }; dependencies = [ sources."angular-expressions-0.3.0" - (sources."angular-templatecache-extract-1.0.2" // { + sources."angular-templatecache-extract-1.0.2" + sources."bluebird-3.5.1" + sources."cheerio-0.20.0" + sources."is-regex-1.0.4" + (sources."multi-glob-1.0.1" // { dependencies = [ - sources."esprima-2.7.3" - (sources."esquery-0.4.0" // { - dependencies = [ - sources."estraverse-4.2.0" - ]; - }) - (sources."static-eval-0.2.4" // { - dependencies = [ - (sources."escodegen-0.0.28" // { - dependencies = [ - sources."esprima-1.0.4" - sources."estraverse-1.3.2" - sources."source-map-0.5.6" - ]; - }) - ]; - }) + sources."lodash-3.10.1" ]; }) - sources."bluebird-3.5.0" - (sources."cheerio-0.20.0" // { + sources."node-noop-1.0.0" + (sources."postcss-5.2.18" // { dependencies = [ - (sources."css-select-1.2.0" // { - dependencies = [ - sources."css-what-2.1.0" - (sources."domutils-1.5.1" // { - dependencies = [ - sources."domelementtype-1.3.0" - ]; - }) - sources."boolbase-1.0.0" - sources."nth-check-1.0.1" - ]; - }) - sources."entities-1.1.1" - (sources."htmlparser2-3.8.3" // { - dependencies = [ - sources."domhandler-2.3.0" - sources."domutils-1.5.1" - sources."domelementtype-1.3.0" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-0.0.1" - sources."string_decoder-0.10.31" - sources."inherits-2.0.3" - ]; - }) - sources."entities-1.0.0" - ]; - }) - (sources."dom-serializer-0.1.0" // { - dependencies = [ - sources."domelementtype-1.1.3" - ]; - }) - sources."lodash-4.17.4" - (sources."jsdom-7.2.2" // { - dependencies = [ - sources."abab-1.0.3" - sources."acorn-2.7.0" - sources."acorn-globals-1.0.9" - sources."cssom-0.3.2" - sources."cssstyle-0.2.37" - (sources."escodegen-1.8.1" // { - dependencies = [ - sources."estraverse-1.9.3" - sources."esutils-2.0.2" - sources."esprima-2.7.3" - (sources."optionator-0.8.2" // { - dependencies = [ - sources."prelude-ls-1.1.2" - sources."deep-is-0.1.3" - sources."wordwrap-1.0.0" - sources."type-check-0.3.2" - sources."levn-0.3.0" - sources."fast-levenshtein-2.0.6" - ]; - }) - (sources."source-map-0.2.0" // { - dependencies = [ - sources."amdefine-1.0.1" - ]; - }) - ]; - }) - sources."nwmatcher-1.4.1" - sources."parse5-1.5.1" - (sources."request-2.81.0" // { - dependencies = [ - sources."aws-sign2-0.6.0" - sources."aws4-1.6.0" - sources."caseless-0.12.0" - (sources."combined-stream-1.0.5" // { - dependencies = [ - sources."delayed-stream-1.0.0" - ]; - }) - sources."extend-3.0.1" - sources."forever-agent-0.6.1" - (sources."form-data-2.1.4" // { - dependencies = [ - sources."asynckit-0.4.0" - ]; - }) - (sources."har-validator-4.2.1" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - ]; - }) - sources."har-schema-1.0.5" - ]; - }) - (sources."hawk-3.1.3" // { - dependencies = [ - sources."hoek-2.16.3" - sources."boom-2.10.1" - sources."cryptiles-2.0.5" - sources."sntp-1.0.9" - ]; - }) - (sources."http-signature-1.1.1" // { - dependencies = [ - sources."assert-plus-0.2.0" - (sources."jsprim-1.4.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."extsprintf-1.0.2" - sources."json-schema-0.2.3" - sources."verror-1.3.6" - ]; - }) - (sources."sshpk-1.13.1" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."dashdash-1.14.1" - sources."getpass-0.1.7" - sources."jsbn-0.1.1" - sources."tweetnacl-0.14.5" - sources."ecc-jsbn-0.1.1" - sources."bcrypt-pbkdf-1.0.1" - ]; - }) - ]; - }) - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."json-stringify-safe-5.0.1" - (sources."mime-types-2.1.15" // { - dependencies = [ - sources."mime-db-1.27.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."qs-6.4.0" - sources."safe-buffer-5.1.1" - sources."stringstream-0.0.5" - sources."tunnel-agent-0.6.0" - sources."uuid-3.1.0" - ]; - }) - sources."sax-1.2.4" - sources."symbol-tree-3.2.2" - (sources."tough-cookie-2.3.2" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."webidl-conversions-2.0.1" - (sources."whatwg-url-compat-0.6.5" // { - dependencies = [ - sources."tr46-0.0.3" - ]; - }) - sources."xml-name-validator-2.0.1" - ]; - }) + sources."source-map-0.5.7" ]; }) - (sources."is-regex-1.0.4" // { + sources."esprima-2.7.3" + sources."esquery-0.4.0" + sources."static-eval-0.2.4" + sources."estraverse-4.2.0" + (sources."escodegen-0.0.28" // { dependencies = [ - (sources."has-1.0.1" // { - dependencies = [ - sources."function-bind-1.1.0" - ]; - }) + sources."esprima-1.0.4" + sources."estraverse-1.3.2" ]; }) - (sources."multi-glob-1.0.1" // { + sources."source-map-0.6.1" + sources."css-select-1.2.0" + sources."entities-1.1.1" + (sources."htmlparser2-3.8.3" // { dependencies = [ - (sources."glob-5.0.15" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."async-1.5.2" - sources."lodash-3.10.1" + sources."entities-1.0.0" ]; }) - sources."node-noop-1.0.0" - (sources."postcss-5.2.17" // { + (sources."dom-serializer-0.1.0" // { dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."domelementtype-1.1.3" + ]; + }) + sources."lodash-4.17.4" + (sources."jsdom-7.2.2" // { + dependencies = [ + sources."escodegen-1.9.0" + sources."esprima-3.1.3" + sources."source-map-0.5.7" + ]; + }) + sources."css-what-2.1.0" + sources."domutils-1.5.1" + sources."boolbase-1.0.0" + sources."nth-check-1.0.1" + sources."domelementtype-1.3.0" + sources."domhandler-2.3.0" + sources."readable-stream-1.1.14" + sources."core-util-is-1.0.2" + sources."isarray-0.0.1" + sources."string_decoder-0.10.31" + sources."inherits-2.0.3" + sources."abab-1.0.4" + sources."acorn-2.7.0" + sources."acorn-globals-1.0.9" + sources."cssom-0.3.2" + sources."cssstyle-0.2.37" + sources."nwmatcher-1.4.3" + sources."parse5-1.5.1" + sources."request-2.83.0" + sources."sax-1.2.4" + sources."symbol-tree-3.2.2" + sources."tough-cookie-2.3.3" + sources."webidl-conversions-2.0.1" + sources."whatwg-url-compat-0.6.5" + sources."xml-name-validator-2.0.1" + sources."esutils-2.0.2" + sources."optionator-0.8.2" + sources."prelude-ls-1.1.2" + sources."deep-is-0.1.3" + sources."wordwrap-1.0.0" + sources."type-check-0.3.2" + sources."levn-0.3.0" + sources."fast-levenshtein-2.0.6" + sources."aws-sign2-0.7.0" + sources."aws4-1.6.0" + sources."caseless-0.12.0" + sources."combined-stream-1.0.5" + sources."extend-3.0.1" + sources."forever-agent-0.6.1" + sources."form-data-2.3.1" + sources."har-validator-5.0.3" + sources."hawk-6.0.2" + sources."http-signature-1.2.0" + sources."is-typedarray-1.0.0" + sources."isstream-0.1.2" + sources."json-stringify-safe-5.0.1" + sources."mime-types-2.1.17" + sources."oauth-sign-0.8.2" + sources."performance-now-2.1.0" + sources."qs-6.5.1" + sources."safe-buffer-5.1.1" + sources."stringstream-0.0.5" + sources."tunnel-agent-0.6.0" + sources."uuid-3.1.0" + sources."delayed-stream-1.0.0" + sources."asynckit-0.4.0" + sources."ajv-5.5.2" + sources."har-schema-2.0.0" + sources."co-4.6.0" + sources."fast-deep-equal-1.0.0" + sources."fast-json-stable-stringify-2.0.0" + sources."json-schema-traverse-0.3.1" + sources."hoek-4.2.0" + sources."boom-4.3.1" + (sources."cryptiles-3.1.2" // { + dependencies = [ + sources."boom-5.2.0" + ]; + }) + sources."sntp-2.1.0" + sources."assert-plus-1.0.0" + sources."jsprim-1.4.1" + sources."sshpk-1.13.1" + sources."extsprintf-1.3.0" + sources."json-schema-0.2.3" + sources."verror-1.10.0" + sources."asn1-0.2.3" + sources."dashdash-1.14.1" + sources."getpass-0.1.7" + sources."jsbn-0.1.1" + sources."tweetnacl-0.14.5" + sources."ecc-jsbn-0.1.1" + sources."bcrypt-pbkdf-1.0.1" + sources."mime-db-1.30.0" + sources."punycode-1.4.1" + sources."tr46-0.0.3" + sources."has-1.0.1" + sources."function-bind-1.1.1" + sources."glob-5.0.15" + sources."async-1.5.2" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + (sources."chalk-1.1.3" // { + dependencies = [ + sources."supports-color-2.0.0" ]; }) + sources."js-base64-2.4.0" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -105611,60 +63645,31 @@ in sha1 = "568993b61a7e47afa5be0e83763485801b956563"; }; dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."glob-6.0.4" // { - dependencies = [ - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - (sources."postcss-5.2.17" // { + sources."chalk-1.1.3" + sources."glob-6.0.4" + (sources."postcss-5.2.18" // { dependencies = [ - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) + sources."supports-color-3.2.3" ]; }) + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."has-flag-1.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -105677,294 +63682,101 @@ in ycss = nodeEnv.buildNodePackage { name = "ycss"; packageName = "ycss"; - version = "1.1.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/ycss/-/ycss-1.1.0.tgz"; - sha1 = "51d6c071bcbd611f94d81e5eea6bca28a1250f8c"; + url = "https://registry.npmjs.org/ycss/-/ycss-1.3.1.tgz"; + sha1 = "fecc210ee260191f65525c9f7f9cf97d6a9d18a5"; }; dependencies = [ - (sources."postcss-6.0.6" // { - dependencies = [ - (sources."chalk-2.0.1" // { - dependencies = [ - (sources."ansi-styles-3.1.0" // { - dependencies = [ - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."escape-string-regexp-1.0.5" - ]; - }) - sources."source-map-0.5.6" - (sources."supports-color-4.2.0" // { - dependencies = [ - sources."has-flag-2.0.0" - ]; - }) - ]; - }) - (sources."postcss-advanced-variables-1.2.2" // { - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-atroot-0.1.3" // { - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-color-function-4.0.0" // { - dependencies = [ - (sources."css-color-function-1.3.0" // { - dependencies = [ - sources."balanced-match-0.1.0" - (sources."color-0.11.4" // { - dependencies = [ - sources."clone-1.0.2" - (sources."color-convert-1.9.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - (sources."color-string-0.3.0" // { - dependencies = [ - sources."color-name-1.1.3" - ]; - }) - ]; - }) - sources."debug-0.7.4" - sources."rgb-0.1.0" - ]; - }) - sources."postcss-message-helpers-2.0.0" - sources."postcss-value-parser-3.3.0" - ]; - }) - sources."postcss-custom-media-6.0.0" - (sources."postcss-custom-properties-6.1.0" // { - dependencies = [ - sources."balanced-match-1.0.0" - ]; - }) - sources."postcss-custom-selectors-4.0.1" - (sources."postcss-extend-1.0.5" // { - dependencies = [ - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - ]; - }) - (sources."postcss-import-10.0.0" // { + sources."postcss-5.2.18" + sources."postcss-advanced-variables-1.2.2" + sources."postcss-atroot-0.1.3" + sources."postcss-color-function-3.0.0" + sources."postcss-custom-media-5.0.1" + (sources."postcss-custom-properties-5.0.2" // { dependencies = [ - sources."object-assign-4.1.1" - sources."postcss-value-parser-3.3.0" - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."resolve-1.3.3" // { - dependencies = [ - sources."path-parse-1.0.5" - ]; - }) + sources."balanced-match-0.4.2" ]; }) - sources."postcss-media-minmax-3.0.0" - (sources."postcss-mixins-6.0.1" // { + (sources."postcss-custom-selectors-3.0.0" // { dependencies = [ - (sources."globby-6.1.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."path-is-absolute-1.0.1" - ]; - }) - sources."object-assign-4.1.1" - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - ]; - }) - (sources."postcss-js-1.0.0" // { - dependencies = [ - sources."camelcase-css-1.0.1" - ]; - }) - sources."postcss-simple-vars-4.0.0" - sources."sugarss-1.0.0" + sources."balanced-match-0.2.1" ]; }) - (sources."postcss-nested-2.0.4" // { + sources."postcss-extend-1.0.5" + sources."postcss-import-9.1.0" + sources."postcss-media-minmax-2.1.2" + sources."postcss-mixins-5.4.1" + sources."postcss-nested-1.0.1" + sources."postcss-nesting-2.3.1" + sources."postcss-property-lookup-1.2.1" + (sources."postcss-selector-matches-2.0.5" // { dependencies = [ - (sources."postcss-selector-parser-2.2.3" // { - dependencies = [ - sources."flatten-1.0.2" - sources."indexes-of-1.0.1" - sources."uniq-1.0.1" - ]; - }) + sources."balanced-match-0.4.2" ]; }) - sources."postcss-nesting-4.0.1" - (sources."postcss-property-lookup-1.2.1" // { + (sources."postcss-selector-not-2.0.0" // { dependencies = [ - sources."object-assign-4.1.1" - (sources."postcss-5.2.17" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - sources."js-base64-2.1.9" - sources."source-map-0.5.6" - (sources."supports-color-3.2.3" // { - dependencies = [ - sources."has-flag-1.0.0" - ]; - }) - ]; - }) - sources."tcomb-2.7.0" + sources."balanced-match-0.2.1" ]; }) - (sources."postcss-selector-matches-3.0.1" // { + (sources."chalk-1.1.3" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."supports-color-2.0.0" ]; }) - (sources."postcss-selector-not-3.0.1" // { + sources."js-base64-2.4.0" + sources."source-map-0.5.7" + sources."supports-color-3.2.3" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."ansi-regex-2.1.1" + sources."has-flag-1.0.0" + sources."css-color-function-1.3.3" + sources."postcss-message-helpers-2.0.0" + sources."postcss-value-parser-3.3.0" + sources."balanced-match-0.1.0" + sources."color-0.11.4" + sources."debug-3.1.0" + sources."rgb-0.1.0" + sources."clone-1.0.3" + sources."color-convert-1.9.1" + sources."color-string-0.3.0" + sources."color-name-1.1.3" + sources."ms-2.0.0" + sources."object-assign-4.1.1" + sources."promise-each-2.2.0" + sources."read-cache-1.0.0" + sources."resolve-1.5.0" + sources."any-promise-0.1.0" + sources."pify-2.3.0" + sources."path-parse-1.0.5" + sources."globby-6.1.0" + sources."postcss-js-0.2.0" + sources."postcss-simple-vars-3.1.0" + sources."sugarss-0.2.0" + sources."array-union-1.0.2" + sources."glob-7.1.2" + sources."pinkie-promise-2.0.1" + sources."array-uniq-1.0.3" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."inherits-2.0.3" + sources."minimatch-3.0.4" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."wrappy-1.0.2" + (sources."brace-expansion-1.1.8" // { dependencies = [ - sources."balanced-match-0.4.2" + sources."balanced-match-1.0.0" ]; }) + sources."concat-map-0.0.1" + sources."pinkie-2.0.4" + sources."camelcase-css-1.0.1" + sources."tcomb-2.7.0" ]; buildInputs = globalBuildInputs; meta = { @@ -105974,4 +63786,4 @@ in }; production = true; }; -} \ No newline at end of file +} diff --git a/modules/pkgs/sass-lint/generate.sh b/modules/pkgs/sass-lint/generate.sh index 15a5c13..dbfef37 100755 --- a/modules/pkgs/sass-lint/generate.sh +++ b/modules/pkgs/sass-lint/generate.sh @@ -1,4 +1,4 @@ #!/bin/sh -node2nix -i main.json -c main.nix +node2nix --flatten -i main.json -c main.nix diff --git a/modules/pkgs/sass-lint/node-packages.nix b/modules/pkgs/sass-lint/node-packages.nix index 3d06cb8..8629900 100644 --- a/modules/pkgs/sass-lint/node-packages.nix +++ b/modules/pkgs/sass-lint/node-packages.nix @@ -4,13 +4,13 @@ let sources = { - "commander-2.12.1" = { + "commander-2.12.2" = { name = "commander"; packageName = "commander"; - version = "2.12.1"; + version = "2.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.12.1.tgz"; - sha1 = "468635c4168d06145b9323356d1da84d14ac4a7a"; + url = "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz"; + sha1 = "0f5946c427ed9ec0d91a46bb9def53e54650e555"; }; }; "eslint-2.13.1" = { @@ -256,22 +256,22 @@ let sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e"; }; }; - "is-my-json-valid-2.16.1" = { + "is-my-json-valid-2.17.1" = { name = "is-my-json-valid"; packageName = "is-my-json-valid"; - version = "2.16.1"; + version = "2.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz"; - sha1 = "5a846777e2c2620d1e69104e5d3a03b1f6088f11"; + url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz"; + sha1 = "3da98914a70a22f0a8563ef1511a246c6fc55471"; }; }; - "is-resolvable-1.0.0" = { + "is-resolvable-1.0.1" = { name = "is-resolvable"; packageName = "is-resolvable"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz"; - sha1 = "8df57c61ea2e3c501408d100fb013cf8d6e0cc62"; + url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.1.tgz"; + sha1 = "acca1cd36dbe44b974b924321555a70ba03b1cf4"; }; }; "json-stable-stringify-1.0.1" = { @@ -778,13 +778,13 @@ let sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; }; }; - "is-path-inside-1.0.0" = { + "is-path-inside-1.0.1" = { name = "is-path-inside"; packageName = "is-path-inside"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz"; - sha1 = "fc06e5a1683fbda13de667aff717bbc10a48f37f"; + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz"; + sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"; }; }; "pinkie-2.0.4" = { @@ -1003,15 +1003,6 @@ let sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; }; }; - "tryit-1.0.3" = { - name = "tryit"; - packageName = "tryit"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tryit/-/tryit-1.0.3.tgz"; - sha1 = "393be730a9446fd1ead6da59a014308f36c289cb"; - }; - }; "jsonify-0.0.0" = { name = "jsonify"; packageName = "jsonify"; @@ -1312,340 +1303,18 @@ in sha1 = "630f69c216aa206b8232fb2aa907bdf3336b6d83"; }; dependencies = [ - sources."commander-2.12.1" - (sources."eslint-2.13.1" // { - dependencies = [ - (sources."chalk-1.1.3" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."escape-string-regexp-1.0.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - (sources."strip-ansi-3.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) - sources."supports-color-2.0.0" - ]; - }) - (sources."concat-stream-1.6.0" // { - dependencies = [ - sources."inherits-2.0.3" - sources."typedarray-0.0.6" - (sources."readable-stream-2.3.3" // { - dependencies = [ - sources."core-util-is-1.0.2" - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."safe-buffer-5.1.1" - sources."string_decoder-1.0.3" - sources."util-deprecate-1.0.2" - ]; - }) - ]; - }) - (sources."debug-2.6.9" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - (sources."doctrine-1.5.0" // { - dependencies = [ - sources."isarray-1.0.0" - ]; - }) - (sources."es6-map-0.1.5" // { - dependencies = [ - sources."d-1.0.0" - sources."es5-ext-0.10.37" - sources."es6-iterator-2.0.3" - sources."es6-set-0.1.5" - sources."es6-symbol-3.1.1" - sources."event-emitter-0.3.5" - ]; - }) - (sources."escope-3.6.0" // { - dependencies = [ - (sources."es6-weak-map-2.0.2" // { - dependencies = [ - sources."d-1.0.0" - sources."es5-ext-0.10.37" - sources."es6-iterator-2.0.3" - sources."es6-symbol-3.1.1" - ]; - }) - (sources."esrecurse-4.2.0" // { - dependencies = [ - sources."object-assign-4.1.1" - ]; - }) - ]; - }) - (sources."espree-3.5.2" // { - dependencies = [ - sources."acorn-5.2.1" - (sources."acorn-jsx-3.0.1" // { - dependencies = [ - sources."acorn-3.3.0" - ]; - }) - ]; - }) - sources."estraverse-4.2.0" - sources."esutils-2.0.2" - (sources."file-entry-cache-1.3.1" // { - dependencies = [ - (sources."flat-cache-1.3.0" // { - dependencies = [ - sources."circular-json-0.3.3" - (sources."del-2.2.2" // { - dependencies = [ - (sources."globby-5.0.0" // { - dependencies = [ - (sources."array-union-1.0.2" // { - dependencies = [ - sources."array-uniq-1.0.3" - ]; - }) - sources."arrify-1.0.1" - ]; - }) - sources."is-path-cwd-1.0.0" - (sources."is-path-in-cwd-1.0.0" // { - dependencies = [ - sources."is-path-inside-1.0.0" - ]; - }) - sources."pify-2.3.0" - (sources."pinkie-promise-2.0.1" // { - dependencies = [ - sources."pinkie-2.0.4" - ]; - }) - sources."rimraf-2.6.2" - ]; - }) - sources."graceful-fs-4.1.11" - sources."write-0.2.1" - ]; - }) - sources."object-assign-4.1.1" - ]; - }) - sources."globals-9.18.0" - sources."ignore-3.3.7" - sources."imurmurhash-0.1.4" - (sources."inquirer-0.12.0" // { - dependencies = [ - sources."ansi-escapes-1.4.0" - sources."ansi-regex-2.1.1" - (sources."cli-cursor-1.0.2" // { - dependencies = [ - (sources."restore-cursor-1.0.1" // { - dependencies = [ - sources."exit-hook-1.1.1" - sources."onetime-1.1.0" - ]; - }) - ]; - }) - sources."cli-width-2.2.0" - (sources."figures-1.7.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - sources."object-assign-4.1.1" - ]; - }) - (sources."readline2-1.0.1" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - sources."mute-stream-0.0.5" - ]; - }) - (sources."run-async-0.1.0" // { - dependencies = [ - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - sources."rx-lite-3.1.2" - (sources."string-width-1.0.2" // { - dependencies = [ - sources."code-point-at-1.1.0" - (sources."is-fullwidth-code-point-1.0.0" // { - dependencies = [ - sources."number-is-nan-1.0.1" - ]; - }) - ]; - }) - sources."strip-ansi-3.0.1" - sources."through-2.3.8" - ]; - }) - (sources."is-my-json-valid-2.16.1" // { - dependencies = [ - sources."generate-function-2.0.0" - (sources."generate-object-property-1.2.0" // { - dependencies = [ - sources."is-property-1.0.2" - ]; - }) - sources."jsonpointer-4.0.1" - sources."xtend-4.0.1" - ]; - }) - (sources."is-resolvable-1.0.0" // { - dependencies = [ - sources."tryit-1.0.3" - ]; - }) - (sources."json-stable-stringify-1.0.1" // { - dependencies = [ - sources."jsonify-0.0.0" - ]; - }) - (sources."levn-0.3.0" // { - dependencies = [ - sources."prelude-ls-1.1.2" - sources."type-check-0.3.2" - ]; - }) - sources."lodash-4.17.4" - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - (sources."optionator-0.8.2" // { - dependencies = [ - sources."prelude-ls-1.1.2" - sources."deep-is-0.1.3" - sources."wordwrap-1.0.0" - sources."type-check-0.3.2" - sources."fast-levenshtein-2.0.6" - ]; - }) - sources."path-is-inside-1.0.2" - sources."pluralize-1.2.1" - sources."progress-1.1.8" - (sources."require-uncached-1.0.3" // { - dependencies = [ - (sources."caller-path-0.1.0" // { - dependencies = [ - sources."callsites-0.2.0" - ]; - }) - sources."resolve-from-1.0.1" - ]; - }) - sources."shelljs-0.6.1" - sources."strip-json-comments-1.0.4" - (sources."table-3.8.3" // { - dependencies = [ - (sources."ajv-4.11.8" // { - dependencies = [ - sources."co-4.6.0" - ]; - }) - sources."ajv-keywords-1.5.1" - sources."slice-ansi-0.0.4" - (sources."string-width-2.1.1" // { - dependencies = [ - sources."is-fullwidth-code-point-2.0.0" - (sources."strip-ansi-4.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.0" - ]; - }) - ]; - }) - ]; - }) - sources."text-table-0.2.0" - (sources."user-home-2.0.0" // { - dependencies = [ - sources."os-homedir-1.0.2" - ]; - }) - ]; - }) + sources."commander-2.12.2" + sources."eslint-2.13.1" sources."front-matter-2.1.2" - (sources."fs-extra-3.0.1" // { - dependencies = [ - sources."graceful-fs-4.1.11" - sources."jsonfile-3.0.1" - sources."universalify-0.1.1" - ]; - }) - (sources."glob-7.1.2" // { - dependencies = [ - sources."fs.realpath-1.0.0" - (sources."inflight-1.0.6" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - sources."inherits-2.0.3" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - (sources."once-1.4.0" // { - dependencies = [ - sources."wrappy-1.0.2" - ]; - }) - ]; - }) - (sources."globule-1.2.0" // { - dependencies = [ - sources."lodash-4.17.4" - (sources."minimatch-3.0.4" // { - dependencies = [ - (sources."brace-expansion-1.1.8" // { - dependencies = [ - sources."balanced-match-1.0.0" - sources."concat-map-0.0.1" - ]; - }) - ]; - }) - ]; - }) + sources."fs-extra-3.0.1" + sources."glob-7.1.2" + sources."globule-1.2.0" (sources."gonzales-pe-sl-4.2.3" // { dependencies = [ sources."minimist-1.1.3" ]; }) - (sources."js-yaml-3.10.0" // { - dependencies = [ - (sources."argparse-1.0.9" // { - dependencies = [ - sources."sprintf-js-1.0.3" - ]; - }) - sources."esprima-4.0.0" - ]; - }) + sources."js-yaml-3.10.0" sources."known-css-properties-0.3.0" sources."lodash.capitalize-4.2.1" sources."lodash.kebabcase-4.1.1" @@ -1656,6 +1325,139 @@ in sources."inherits-2.0.1" ]; }) + sources."chalk-1.1.3" + sources."concat-stream-1.6.0" + sources."debug-2.6.9" + sources."doctrine-1.5.0" + sources."es6-map-0.1.5" + sources."escope-3.6.0" + sources."espree-3.5.2" + sources."estraverse-4.2.0" + sources."esutils-2.0.2" + sources."file-entry-cache-1.3.1" + sources."globals-9.18.0" + sources."ignore-3.3.7" + sources."imurmurhash-0.1.4" + sources."inquirer-0.12.0" + sources."is-my-json-valid-2.17.1" + sources."is-resolvable-1.0.1" + sources."json-stable-stringify-1.0.1" + sources."levn-0.3.0" + sources."lodash-4.17.4" + sources."mkdirp-0.5.1" + sources."optionator-0.8.2" + sources."path-is-inside-1.0.2" + sources."pluralize-1.2.1" + sources."progress-1.1.8" + sources."require-uncached-1.0.3" + sources."shelljs-0.6.1" + sources."strip-json-comments-1.0.4" + (sources."table-3.8.3" // { + dependencies = [ + sources."string-width-2.1.1" + sources."is-fullwidth-code-point-2.0.0" + sources."strip-ansi-4.0.0" + sources."ansi-regex-3.0.0" + ]; + }) + sources."text-table-0.2.0" + sources."user-home-2.0.0" + sources."ansi-styles-2.2.1" + sources."escape-string-regexp-1.0.5" + sources."has-ansi-2.0.0" + sources."strip-ansi-3.0.1" + sources."supports-color-2.0.0" + sources."ansi-regex-2.1.1" + sources."inherits-2.0.3" + sources."typedarray-0.0.6" + sources."readable-stream-2.3.3" + sources."core-util-is-1.0.2" + sources."isarray-1.0.0" + sources."process-nextick-args-1.0.7" + sources."safe-buffer-5.1.1" + sources."string_decoder-1.0.3" + sources."util-deprecate-1.0.2" + sources."ms-2.0.0" + sources."d-1.0.0" + sources."es5-ext-0.10.37" + sources."es6-iterator-2.0.3" + sources."es6-set-0.1.5" + sources."es6-symbol-3.1.1" + sources."event-emitter-0.3.5" + sources."es6-weak-map-2.0.2" + sources."esrecurse-4.2.0" + sources."object-assign-4.1.1" + sources."acorn-5.2.1" + (sources."acorn-jsx-3.0.1" // { + dependencies = [ + sources."acorn-3.3.0" + ]; + }) + sources."flat-cache-1.3.0" + sources."circular-json-0.3.3" + sources."del-2.2.2" + sources."graceful-fs-4.1.11" + sources."write-0.2.1" + sources."globby-5.0.0" + sources."is-path-cwd-1.0.0" + sources."is-path-in-cwd-1.0.0" + sources."pify-2.3.0" + sources."pinkie-promise-2.0.1" + sources."rimraf-2.6.2" + sources."array-union-1.0.2" + sources."arrify-1.0.1" + sources."array-uniq-1.0.3" + sources."is-path-inside-1.0.1" + sources."pinkie-2.0.4" + sources."ansi-escapes-1.4.0" + sources."cli-cursor-1.0.2" + sources."cli-width-2.2.0" + sources."figures-1.7.0" + sources."readline2-1.0.1" + sources."run-async-0.1.0" + sources."rx-lite-3.1.2" + sources."string-width-1.0.2" + sources."through-2.3.8" + sources."restore-cursor-1.0.1" + sources."exit-hook-1.1.1" + sources."onetime-1.1.0" + sources."code-point-at-1.1.0" + sources."is-fullwidth-code-point-1.0.0" + sources."mute-stream-0.0.5" + sources."number-is-nan-1.0.1" + sources."once-1.4.0" + sources."wrappy-1.0.2" + sources."generate-function-2.0.0" + sources."generate-object-property-1.2.0" + sources."jsonpointer-4.0.1" + sources."xtend-4.0.1" + sources."is-property-1.0.2" + sources."jsonify-0.0.0" + sources."prelude-ls-1.1.2" + sources."type-check-0.3.2" + sources."minimist-0.0.8" + sources."deep-is-0.1.3" + sources."wordwrap-1.0.0" + sources."fast-levenshtein-2.0.6" + sources."caller-path-0.1.0" + sources."resolve-from-1.0.1" + sources."callsites-0.2.0" + sources."ajv-4.11.8" + sources."ajv-keywords-1.5.1" + sources."slice-ansi-0.0.4" + sources."co-4.6.0" + sources."os-homedir-1.0.2" + sources."jsonfile-3.0.1" + sources."universalify-0.1.1" + sources."fs.realpath-1.0.0" + sources."inflight-1.0.6" + sources."minimatch-3.0.4" + sources."brace-expansion-1.1.8" + sources."balanced-match-1.0.0" + sources."concat-map-0.0.1" + sources."argparse-1.0.9" + sources."esprima-4.0.0" + sources."sprintf-js-1.0.3" ]; buildInputs = globalBuildInputs; meta = { -- cgit v1.2.3