├── .babelrc ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Dockerfile.au ├── Dockerfile.uk ├── Dockerfile.us ├── README.md ├── files ├── acng.conf ├── acng.conf.au ├── acng.conf.uk ├── acng.conf.us ├── apache_mirrors ├── backends_apache.au ├── backends_apache.uk ├── backends_apache.us ├── backends_centos.au ├── backends_centos.uk ├── backends_centos.us ├── backends_debian ├── backends_epel.au ├── backends_epel.uk ├── backends_epel.us ├── backends_fedora.au ├── backends_fedora.uk ├── backends_fedora.us ├── backends_ubuntu.au ├── backends_ubuntu.uk ├── backends_ubuntu.us ├── centos_mirrors ├── epel_mirrors ├── fedora_mirrors └── mirrors_alpine ├── make.sh ├── package.json ├── src ├── fetch-mirrors.es2017 └── fetch-mirrors.js ├── test ├── fixture │ └── mocha_setup.js ├── functional_aptcacherng.coffee └── mocha.opts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ "env", { "targets": { "node": "6" } } ] 4 | ], 5 | "plugins": [ 6 | [ 7 | "transform-async-to-module-method", 8 | { 9 | "module": "bluebird", 10 | "method": "coroutine" 11 | } 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:9 2 | 3 | RUN set -uex; \ 4 | apt-get update -y; \ 5 | apt-get install apt-cacher-ng -y; \ 6 | mv /etc/apt-cacher-ng/acng.conf /etc/apt-cacher-ng/acng.conf.original; \ 7 | ln -sf /dev/stdout /var/log/apt-cacher-ng/apt-cacher.log; \ 8 | ln -sf /dev/stderr /var/log/apt-cacher-ng/apt-cacher.err; \ 9 | apt-get clean all; \ 10 | rm -rf /var/lib/apt/lists/*; 11 | 12 | COPY files/* /etc/apt-cacher-ng/ 13 | 14 | LABEL org.label-schema.name="deployable/apt-cacher-ng" \ 15 | org.label-schema.version="1.6.0" \ 16 | org.label-schema.vendor="Deployable" \ 17 | org.label-schema.docker.cmd="docker run --restart always -d -v apt-cacher-ng-vol:/var/cache/apt-cacher-ng:rw -p 3142:3142 deployable/apt-cacher-ng" \ 18 | org.label-schema.url="https://github.com/deployable/docker-apt-cacher-ng" \ 19 | org.label-schema.vcs-url="https://github.com/deployable/docker-apt-cacher-ng.git" \ 20 | org.label-schema.schema-version="1.0" 21 | 22 | EXPOSE 3142 23 | VOLUME ["/var/cache/apt-cacher-ng"] 24 | 25 | ENTRYPOINT ["/usr/sbin/apt-cacher-ng"] 26 | CMD ["-c","/etc/apt-cacher-ng"] 27 | 28 | -------------------------------------------------------------------------------- /Dockerfile.au: -------------------------------------------------------------------------------- 1 | FROM deployable/acng:latest 2 | 3 | ENV ACNG_LOCALE="au" 4 | 5 | RUN set -uex; \ 6 | if [ -n "$ACNG_LOCALE" ]; then \ 7 | cp /etc/apt-cacher-ng/acng.conf.$ACNG_LOCALE /etc/apt-cacher-ng/acng.conf; \ 8 | fi; \ 9 | -------------------------------------------------------------------------------- /Dockerfile.uk: -------------------------------------------------------------------------------- 1 | FROM deployable/acng:latest 2 | 3 | ENV ACNG_LOCALE="uk" 4 | 5 | RUN set -uex; \ 6 | if [ -n "$ACNG_LOCALE" ]; then \ 7 | cp /etc/apt-cacher-ng/acng.conf.$ACNG_LOCALE /etc/apt-cacher-ng/acng.conf; \ 8 | fi; \ 9 | -------------------------------------------------------------------------------- /Dockerfile.us: -------------------------------------------------------------------------------- 1 | FROM deployable/acng:latest 2 | 3 | ENV ACNG_LOCALE="us" 4 | 5 | RUN set -uex; \ 6 | if [ -n "$ACNG_LOCALE" ]; then \ 7 | cp /etc/apt-cacher-ng/acng.conf.$ACNG_LOCALE /etc/apt-cacher-ng/acng.conf; \ 8 | fi; \ 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # apt-cacher-ng docker image 2 | 3 | [`deployable/acng`](https://hub.docker.com/r/deployable/acng/) 4 | 5 | Apt-Cacher NG is a caching proxy for linux distribution packages, primarily Debian. https://www.unix-ag.uni-kl.de/~bloch/acng/ 6 | 7 | This image for apt-cacher-ng config adds support for: 8 | 9 | - Alpine Linux packages from http://dl-cdn.alpinelinux.org 10 | - Centos mirrors from https://mirrors.centos.org/ 11 | - Fedora mirrors from https://admin.fedoraproject.org/mirrormanager/mirrors/Fedora 12 | - Epel mirrors from https://admin.fedoraproject.org/mirrormanager/mirrors/EPEL 13 | - Apache releases from https://www.apache.org/mirrors/dist.html 14 | - NPM packages from https://registry.yarnpkg.com and https://registry.npmjs.org (proxied CONNECT only) 15 | - Downloads from http://nodejs.org 16 | 17 | The `au`, `uk` and `us` images configure local mirror backends when geo mirrors are not available. 18 | 19 | ## Docker Registry Images 20 | 21 | The [`deployable/acng` repository is available on Docker hub](https://hub.docker.com/r/deployable/acng/). 22 | 23 | The image tags available to install are: 24 | ``` 25 | deployable/acng 26 | deployable/acng:latest-au 27 | deployable/acng:latest-uk 28 | deployable/acng:latest-us 29 | ``` 30 | 31 | ## Run 32 | 33 | ``` 34 | docker run \ 35 | --restart always \ 36 | --detach \ 37 | --volume apt-cacher-ng-vol:/var/cache/apt-cacher-ng:rw \ 38 | --publish 3142:3142 \ 39 | deployable/acng 40 | ``` 41 | 42 | 43 | ## Build 44 | 45 | Build the image 46 | 47 | ./make.sh build 48 | 49 | Run the image 50 | 51 | ./make.sh run 52 | 53 | Run a localised image (au, uk, us) 54 | 55 | ./make.sh run:us 56 | 57 | Rebuild and run 58 | 59 | ./make.sh rebuild 60 | 61 | Build a locale image with local backends configured (`au`, `uk`, `us`) 62 | 63 | ./make.sh build 64 | ./make.sh build:au 65 | 66 | 67 | ## Mirror and Backend lists 68 | 69 | The latest mirrors can be fetched with `src/fetch-mirrors.js`. This script Requires Node.js 8+ 70 | 71 | It will download and parse the latest Centos, Fedora, Epel and Apache mirror lists into `files/*_mirrors` files for acng. 72 | 73 | Configure your selected backends from those mirrors lists in `files/backends_{name}`. 74 | There are packaged au, uk and us backends 75 | 76 | The default acng config in the `deployable/acng:latest` tag has no opinion on backends 77 | `deployable/acng:latest-au` includes the AU backends, `:latest-uk` and `:latest-us` tags are built as well. 78 | 79 | 80 | ## About 81 | 82 | Docker Hub: https://hub.docker.com/r/deployable/acng/ 83 | GitHub: https://github.com/deployable/docker-apt-cacher-ng 84 | 85 | Matt Hoyle - code atat deployable.co 86 | 87 | -------------------------------------------------------------------------------- /files/acng.conf: -------------------------------------------------------------------------------- 1 | # This is a configuration file for apt-cacher-ng, a smart caching proxy for 2 | CacheDir: /var/cache/apt-cacher-ng 3 | LogDir: /var/log/apt-cacher-ng 4 | Port: 3142 5 | # BindAddress: localhost 192.168.7.254 publicNameOnMainInterface 6 | Remap-debrep: file:deb_mirror*.gz /debian ; file:backends_debian # Debian Archives 7 | Remap-uburep: file:ubuntu_mirrors /ubuntu # Ubuntu Archives 8 | Remap-cygwin: file:cygwin_mirrors /cygwin # ; file:backends_cygwin # incomplete, please create this file or specify preferred mirrors here 9 | Remap-alxrep: file:archlx_mirrors /archlinux # ; file:backend_archlx # Arch Linux 10 | Remap-centosmirrorlist: mirrorlist.centos.org 11 | Remap-centos: file:centos_mirrors # Fedora Linux 12 | Remap-fedora: file:fedora_mirrors # Fedora Linux 13 | Remap-epel: file:epel_mirrors # Fedora EPEL 14 | Remap-slrep: file:sl_mirrors # Scientific Linux 15 | Remap-gentoo: file:gentoo_mirrors.gz /gentoo ; file:backends_gentoo # Gentoo Archives 16 | #Remap-alpine: file:alpine_mirrors /alpine #; dl-cdn.alpinelinux.org # Alpine Archives 17 | Remap-alpine: dl-cdn.alpinelinux.org 18 | Remap-yarn: registry.yarnpkg.com 19 | Remap-npm: registry.npmjs.org 20 | Remap-docker: yum.dockerproject.org 21 | Remap-node: nodejs.org 22 | Remap-apache: file:apache_mirrors #; file:backends_apache 23 | # Remap-secdeb: security.debian.org 24 | ReportPage: acng-report.html 25 | # SocketPath:/var/run/apt-cacher-ng/socket 26 | UnbufferLogs: 1 27 | VerboseLog: 2 28 | ForeGround: 1 29 | # PidFile: /var/run/apt-cacher-ng/pid 30 | # Offlinemode: 0 31 | # ForceManaged: 0 32 | ExTreshold: 8 33 | # ExAbortOnProblems: 1 34 | # ExSuppressAdminNotification: 1 35 | # StupidFs: 0 36 | # ForwardBtsSoap: 1 37 | # DnsCacheSeconds: 1800 38 | # MaxStandbyConThreads: 8 39 | MaxConThreads: 120 40 | # 41 | # - static data that doesn't change silently ont he server (PFilePattern) 42 | # - volatile data that can be changed like every hour (VFilePattern) 43 | # - special static data that shared some file names with volatile data, 44 | # and in doubt should be identified as static (SPfilePattern) 45 | # - a "whitelist pattern" with hints for the regular expiration job telling 46 | # to keep the files even if they are not referenced by others, like crypto 47 | # signatures with which clients begin their downloads (WfilePattern) 48 | # 49 | VfilePatternEx: (metalink\?repo=[0-9a-zA-Z-]+&arch=[0-9a-zA-Z_-]+|/\?release=[0-9]+&arch=|repodata/.*\.(xml|sqlite)\.(gz|bz2)|APKINDEX.tar.gz|filelists\.xml\.gz|filelists\.sqlite\.bz2|repomd\.xml|packages\.[a-zA-Z][a-zA-Z]\.gz) 50 | PfilePatternEx: (/dists/.*/by-hash/.*|\.tgz|\.tar|\.xz|\.bz2|\.rpm|\.apk)$ 51 | # WfilePatternEx: 52 | # SPfilePatternEx: 53 | 54 | Debug:1 55 | # ExposeOrigin: 0 56 | # LogSubmittedOrigin: 0 57 | # UserAgent: Yet Another HTTP Client/1.2.3p4 58 | # RecompBz2: 0 59 | # NetworkTimeout: 60 60 | 61 | # DontCacheRequested: linux-.*_10\...\.Custo._i386 62 | # DontCacheRequested: 192.168.0 ^10\..* 172.30 63 | # DontCacheResolved: ubuntumirror.local.net 64 | DontCache: mirrorlist.centos.org 65 | 66 | # DirPerms: 00755 67 | # FilePerms: 00664 68 | 69 | LocalDirs: acng-doc /usr/share/doc/apt-cacher-ng 70 | # PrecacheFor: debrep/dists/unstable/*/source/Sources* debrep/dists/unstable/*/binary-amd64/Packages* 71 | # RequestAppendix: X-Tracking-Choice: do-not-track\r\n 72 | # ConnectProto: v6 v4 73 | # KeepExtraVersions: 0 74 | # UseWrap: 0 75 | FreshIndexMaxAge: 300 76 | # AllowUserPorts: 80 77 | RedirMax: 6 78 | # VfileUseRangeOps is set for fedora volatile files on mirrors that dont to range 79 | VfileUseRangeOps: 0 80 | # PassThroughPattern: private-ppa\.launchpad\.net:443$ 81 | # PassThroughPattern: .* # this would allow CONNECT to everything 82 | PassThroughPattern: (yum\.dockerproject\.org:443|download\.docker\.com:443|registry\.npmjs\.org:443|registry\.yarnpkg\.com:443)$ # yarn/npm pkg, cant to http :/ 83 | # ResponseFreezeDetectTime: 500 84 | # ReuseConnections: 1 85 | # PipelineDepth: 255 86 | # CApath: /etc/ssl/certs 87 | # CAfile: 88 | # OptProxyTimeout: -1 89 | # MaxDlSpeed: 500 90 | # MaxInresponsiveDlSize: 64000 91 | # BadRedirDetectMime: text/html 92 | -------------------------------------------------------------------------------- /files/acng.conf.au: -------------------------------------------------------------------------------- 1 | # This is a configuration file for apt-cacher-ng, a smart caching proxy for 2 | CacheDir: /var/cache/apt-cacher-ng 3 | LogDir: /var/log/apt-cacher-ng 4 | Port: 3142 5 | # BindAddress: localhost 192.168.7.254 publicNameOnMainInterface 6 | Remap-debrep: file:deb_mirror*.gz /debian ; file:backends_debian # Debian Archives 7 | Remap-uburep: file:ubuntu_mirrors /ubuntu ; file:backends_ubuntu.au # Ubuntu Archives 8 | Remap-cygwin: file:cygwin_mirrors /cygwin # ; file:backends_cygwin # incomplete, please create this file or specify preferred mirrors here 9 | Remap-alxrep: file:archlx_mirrors /archlinux # ; file:backend_archlx # Arch Linux 10 | Remap-centosmirrorlist: mirrorlist.centos.org 11 | Remap-centos: file:centos_mirrors ; file:backends_centos.au # Fedora Linux 12 | Remap-fedora: file:fedora_mirrors ; file:backends_fedora.au # Fedora Linux 13 | Remap-epel: file:epel_mirrors ; file:backends_epel.au # Fedora EPEL 14 | Remap-slrep: file:sl_mirrors # Scientific Linux 15 | Remap-gentoo: file:gentoo_mirrors.gz /gentoo ; file:backends_gentoo # Gentoo Archives 16 | #Remap-alpine: file:alpine_mirrors /alpine #; dl-cdn.alpinelinux.org # Alpine Archives 17 | Remap-alpine: dl-cdn.alpinelinux.org 18 | Remap-yarn: registry.yarnpkg.com 19 | Remap-npm: registry.npmjs.org 20 | Remap-node: nodejs.org 21 | Remap-apache: file:apache_mirrors ; file:backends_apache.au 22 | # Remap-secdeb: security.debian.org 23 | ReportPage: acng-report.html 24 | # SocketPath:/var/run/apt-cacher-ng/socket 25 | UnbufferLogs: 1 26 | VerboseLog: 2 27 | ForeGround: 1 28 | # PidFile: /var/run/apt-cacher-ng/pid 29 | # Offlinemode: 0 30 | # ForceManaged: 0 31 | ExTreshold: 8 32 | # ExAbortOnProblems: 1 33 | # ExSuppressAdminNotification: 1 34 | # StupidFs: 0 35 | # ForwardBtsSoap: 1 36 | # DnsCacheSeconds: 1800 37 | # MaxStandbyConThreads: 8 38 | MaxConThreads: 120 39 | # 40 | # - static data that doesn't change silently ont he server (PFilePattern) 41 | # - volatile data that can be changed like every hour (VFilePattern) 42 | # - special static data that shared some file names with volatile data, 43 | # and in doubt should be identified as static (SPfilePattern) 44 | # - a "whitelist pattern" with hints for the regular expiration job telling 45 | # to keep the files even if they are not referenced by others, like crypto 46 | # signatures with which clients begin their downloads (WfilePattern) 47 | # 48 | VfilePatternEx: (metalink\?repo=[0-9a-zA-Z-]+&arch=[0-9a-zA-Z_-]+|/\?release=[0-9]+&arch=|repodata/.*\.(xml|sqlite)\.(gz|bz2)|APKINDEX.tar.gz|filelists\.xml\.gz|filelists\.sqlite\.bz2|repomd\.xml|packages\.[a-zA-Z][a-zA-Z]\.gz) 49 | PfilePatternEx: (/dists/.*/by-hash/.*|\.tgz|\.tar|\.xz|\.bz2|\.rpm|\.apk)$ 50 | # WfilePatternEx: 51 | # SPfilePatternEx: 52 | 53 | Debug:1 54 | # ExposeOrigin: 0 55 | # LogSubmittedOrigin: 0 56 | # UserAgent: Yet Another HTTP Client/1.2.3p4 57 | # RecompBz2: 0 58 | # NetworkTimeout: 60 59 | 60 | # DontCacheRequested: linux-.*_10\...\.Custo._i386 61 | # DontCacheRequested: 192.168.0 ^10\..* 172.30 62 | # DontCacheResolved: ubuntumirror.local.net 63 | DontCache: mirrorlist.centos.org 64 | 65 | # DirPerms: 00755 66 | # FilePerms: 00664 67 | 68 | LocalDirs: acng-doc /usr/share/doc/apt-cacher-ng 69 | # PrecacheFor: debrep/dists/unstable/*/source/Sources* debrep/dists/unstable/*/binary-amd64/Packages* 70 | # RequestAppendix: X-Tracking-Choice: do-not-track\r\n 71 | # ConnectProto: v6 v4 72 | # KeepExtraVersions: 0 73 | # UseWrap: 0 74 | FreshIndexMaxAge: 300 75 | # AllowUserPorts: 80 76 | RedirMax: 6 77 | # VfileUseRangeOps is set for fedora volatile files on mirrors that dont to range 78 | VfileUseRangeOps: 0 79 | # PassThroughPattern: private-ppa\.launchpad\.net:443$ 80 | # PassThroughPattern: .* # this would allow CONNECT to everything 81 | PassThroughPattern: (yum\.dockerproject\.org:443|download\.docker\.com:443|registry\.npmjs\.org:443|registry\.yarnpkg\.com:443)$ # yarn/npm pkg, cant to http :/ 82 | # ResponseFreezeDetectTime: 500 83 | # ReuseConnections: 1 84 | # PipelineDepth: 255 85 | # CApath: /etc/ssl/certs 86 | # CAfile: 87 | # OptProxyTimeout: -1 88 | # MaxDlSpeed: 500 89 | # MaxInresponsiveDlSize: 64000 90 | # BadRedirDetectMime: text/html 91 | -------------------------------------------------------------------------------- /files/acng.conf.uk: -------------------------------------------------------------------------------- 1 | # This is a configuration file for apt-cacher-ng, a smart caching proxy for 2 | CacheDir: /var/cache/apt-cacher-ng 3 | LogDir: /var/log/apt-cacher-ng 4 | Port: 3142 5 | # BindAddress: localhost 192.168.7.254 publicNameOnMainInterface 6 | Remap-debrep: file:deb_mirror*.gz /debian ; file:backends_debian # Debian Archives 7 | Remap-uburep: file:ubuntu_mirrors /ubuntu ; file:backends_ubuntu.uk # Ubuntu Archives 8 | Remap-cygwin: file:cygwin_mirrors /cygwin # ; file:backends_cygwin # incomplete, please create this file or specify preferred mirrors here 9 | Remap-alxrep: file:archlx_mirrors /archlinux # ; file:backend_archlx # Arch Linux 10 | Remap-centosmirrorlist: mirrorlist.centos.org 11 | Remap-centos: file:centos_mirrors ; file:backends_centos.uk # Fedora Linux 12 | Remap-fedora: file:fedora_mirrors ; file:backends_fedora.uk # Fedora Linux 13 | Remap-epel: file:epel_mirrors ; file:backends_epel.uk # Fedora EPEL 14 | Remap-slrep: file:sl_mirrors # Scientific Linux 15 | Remap-gentoo: file:gentoo_mirrors.gz /gentoo ; file:backends_gentoo # Gentoo Archives 16 | #Remap-alpine: file:alpine_mirrors /alpine #; dl-cdn.alpinelinux.org # Alpine Archives 17 | Remap-alpine: dl-cdn.alpinelinux.org 18 | Remap-yarn: registry.yarnpkg.com 19 | Remap-npm: registry.npmjs.org 20 | Remap-node: nodejs.org 21 | Remap-apache: file:apache_mirrors ; file:backends_apache.uk 22 | # Remap-secdeb: security.debian.org 23 | ReportPage: acng-report.html 24 | # SocketPath:/var/run/apt-cacher-ng/socket 25 | UnbufferLogs: 1 26 | VerboseLog: 2 27 | ForeGround: 1 28 | # PidFile: /var/run/apt-cacher-ng/pid 29 | # Offlinemode: 0 30 | # ForceManaged: 0 31 | ExTreshold: 8 32 | # ExAbortOnProblems: 1 33 | # ExSuppressAdminNotification: 1 34 | # StupidFs: 0 35 | # ForwardBtsSoap: 1 36 | # DnsCacheSeconds: 1800 37 | # MaxStandbyConThreads: 8 38 | MaxConThreads: 120 39 | # 40 | # - static data that doesn't change silently ont he server (PFilePattern) 41 | # - volatile data that can be changed like every hour (VFilePattern) 42 | # - special static data that shared some file names with volatile data, 43 | # and in doubt should be identified as static (SPfilePattern) 44 | # - a "whitelist pattern" with hints for the regular expiration job telling 45 | # to keep the files even if they are not referenced by others, like crypto 46 | # signatures with which clients begin their downloads (WfilePattern) 47 | # 48 | VfilePatternEx: (metalink\?repo=[0-9a-zA-Z-]+&arch=[0-9a-zA-Z_-]+|/\?release=[0-9]+&arch=|repodata/.*\.(xml|sqlite)\.(gz|bz2)|APKINDEX.tar.gz|filelists\.xml\.gz|filelists\.sqlite\.bz2|repomd\.xml|packages\.[a-zA-Z][a-zA-Z]\.gz) 49 | PfilePatternEx: (/dists/.*/by-hash/.*|\.tgz|\.tar|\.xz|\.bz2|\.rpm|\.apk)$ 50 | # WfilePatternEx: 51 | # SPfilePatternEx: 52 | 53 | Debug:1 54 | # ExposeOrigin: 0 55 | # LogSubmittedOrigin: 0 56 | # UserAgent: Yet Another HTTP Client/1.2.3p4 57 | # RecompBz2: 0 58 | # NetworkTimeout: 60 59 | 60 | # DontCacheRequested: linux-.*_10\...\.Custo._i386 61 | # DontCacheRequested: 192.168.0 ^10\..* 172.30 62 | # DontCacheResolved: ubuntumirror.local.net 63 | DontCache: mirrorlist.centos.org 64 | 65 | # DirPerms: 00755 66 | # FilePerms: 00664 67 | 68 | LocalDirs: acng-doc /usr/share/doc/apt-cacher-ng 69 | # PrecacheFor: debrep/dists/unstable/*/source/Sources* debrep/dists/unstable/*/binary-amd64/Packages* 70 | # RequestAppendix: X-Tracking-Choice: do-not-track\r\n 71 | # ConnectProto: v6 v4 72 | # KeepExtraVersions: 0 73 | # UseWrap: 0 74 | FreshIndexMaxAge: 300 75 | # AllowUserPorts: 80 76 | RedirMax: 6 77 | # VfileUseRangeOps is set for fedora volatile files on mirrors that dont to range 78 | VfileUseRangeOps: 0 79 | # PassThroughPattern: private-ppa\.launchpad\.net:443$ 80 | # PassThroughPattern: .* # this would allow CONNECT to everything 81 | PassThroughPattern: (yum\.dockerproject\.org:443|download\.docker\.com:443|registry\.npmjs\.org:443|registry\.yarnpkg\.com:443)$ # yarn/npm pkg, cant to http :/ 82 | # ResponseFreezeDetectTime: 500 83 | # ReuseConnections: 1 84 | # PipelineDepth: 255 85 | # CApath: /etc/ssl/certs 86 | # CAfile: 87 | # OptProxyTimeout: -1 88 | # MaxDlSpeed: 500 89 | # MaxInresponsiveDlSize: 64000 90 | # BadRedirDetectMime: text/html 91 | -------------------------------------------------------------------------------- /files/acng.conf.us: -------------------------------------------------------------------------------- 1 | # This is a configuration file for apt-cacher-ng, a smart caching proxy for 2 | CacheDir: /var/cache/apt-cacher-ng 3 | LogDir: /var/log/apt-cacher-ng 4 | Port: 3142 5 | # BindAddress: localhost 192.168.7.254 publicNameOnMainInterface 6 | Remap-debrep: file:deb_mirror*.gz /debian ; file:backends_debian # Debian Archives 7 | Remap-uburep: file:ubuntu_mirrors /ubuntu ; file:backends_ubuntu.us # Ubuntu Archives 8 | Remap-cygwin: file:cygwin_mirrors /cygwin # ; file:backends_cygwin # incomplete, please create this file or specify preferred mirrors here 9 | Remap-alxrep: file:archlx_mirrors /archlinux # ; file:backend_archlx # Arch Linux 10 | Remap-centosmirrorlist: mirrorlist.centos.org 11 | Remap-centos: file:centos_mirrors ; file:backends_centos.us # Fedora Linux 12 | Remap-fedora: file:fedora_mirrors ; file:backends_fedora.us # Fedora Linux 13 | Remap-epel: file:epel_mirrors ; file:backends_epel.us # Fedora EPEL 14 | Remap-slrep: file:sl_mirrors # Scientific Linux 15 | Remap-gentoo: file:gentoo_mirrors.gz /gentoo ; file:backends_gentoo # Gentoo Archives 16 | #Remap-alpine: file:alpine_mirrors /alpine #; dl-cdn.alpinelinux.org # Alpine Archives 17 | Remap-alpine: dl-cdn.alpinelinux.org 18 | Remap-yarn: registry.yarnpkg.com 19 | Remap-npm: registry.npmjs.org 20 | Remap-node: nodejs.org 21 | Remap-apache: file:apache_mirrors ; file:backends_apache.us 22 | # Remap-secdeb: security.debian.org 23 | ReportPage: acng-report.html 24 | # SocketPath:/var/run/apt-cacher-ng/socket 25 | UnbufferLogs: 1 26 | VerboseLog: 2 27 | ForeGround: 1 28 | # PidFile: /var/run/apt-cacher-ng/pid 29 | # Offlinemode: 0 30 | # ForceManaged: 0 31 | ExTreshold: 8 32 | # ExAbortOnProblems: 1 33 | # ExSuppressAdminNotification: 1 34 | # StupidFs: 0 35 | # ForwardBtsSoap: 1 36 | # DnsCacheSeconds: 1800 37 | # MaxStandbyConThreads: 8 38 | MaxConThreads: 120 39 | # 40 | # - static data that doesn't change silently ont he server (PFilePattern) 41 | # - volatile data that can be changed like every hour (VFilePattern) 42 | # - special static data that shared some file names with volatile data, 43 | # and in doubt should be identified as static (SPfilePattern) 44 | # - a "whitelist pattern" with hints for the regular expiration job telling 45 | # to keep the files even if they are not referenced by others, like crypto 46 | # signatures with which clients begin their downloads (WfilePattern) 47 | # 48 | VfilePatternEx: (metalink\?repo=[0-9a-zA-Z-]+&arch=[0-9a-zA-Z_-]+|/\?release=[0-9]+&arch=|repodata/.*\.(xml|sqlite)\.(gz|bz2)|APKINDEX.tar.gz|filelists\.xml\.gz|filelists\.sqlite\.bz2|repomd\.xml|packages\.[a-zA-Z][a-zA-Z]\.gz) 49 | PfilePatternEx: (/dists/.*/by-hash/.*|\.tgz|\.tar|\.xz|\.bz2|\.rpm|\.apk)$ 50 | # WfilePatternEx: 51 | # SPfilePatternEx: 52 | 53 | Debug:1 54 | # ExposeOrigin: 0 55 | # LogSubmittedOrigin: 0 56 | # UserAgent: Yet Another HTTP Client/1.2.3p4 57 | # RecompBz2: 0 58 | # NetworkTimeout: 60 59 | 60 | # DontCacheRequested: linux-.*_10\...\.Custo._i386 61 | # DontCacheRequested: 192.168.0 ^10\..* 172.30 62 | # DontCacheResolved: ubuntumirror.local.net 63 | DontCache: mirrorlist.centos.org 64 | 65 | # DirPerms: 00755 66 | # FilePerms: 00664 67 | 68 | LocalDirs: acng-doc /usr/share/doc/apt-cacher-ng 69 | # PrecacheFor: debrep/dists/unstable/*/source/Sources* debrep/dists/unstable/*/binary-amd64/Packages* 70 | # RequestAppendix: X-Tracking-Choice: do-not-track\r\n 71 | # ConnectProto: v6 v4 72 | # KeepExtraVersions: 0 73 | # UseWrap: 0 74 | FreshIndexMaxAge: 300 75 | # AllowUserPorts: 80 76 | RedirMax: 6 77 | # VfileUseRangeOps is set for fedora volatile files on mirrors that dont to range 78 | VfileUseRangeOps: 0 79 | # PassThroughPattern: private-ppa\.launchpad\.net:443$ 80 | # PassThroughPattern: .* # this would allow CONNECT to everything 81 | PassThroughPattern: (yum\.dockerproject\.org:443|download\.docker\.com:443|registry\.npmjs\.org:443|registry\.yarnpkg\.com:443)$ # yarn/npm pkg, cant to http :/ 82 | # ResponseFreezeDetectTime: 500 83 | # ReuseConnections: 1 84 | # PipelineDepth: 255 85 | # CApath: /etc/ssl/certs 86 | # CAfile: 87 | # OptProxyTimeout: -1 88 | # MaxDlSpeed: 500 89 | # MaxInresponsiveDlSize: 64000 90 | # BadRedirDetectMime: text/html 91 | -------------------------------------------------------------------------------- /files/apache_mirrors: -------------------------------------------------------------------------------- 1 | http://www-eu.apache.org/dist/ 2 | http://www-us.apache.org/dist/ 3 | http://apache.mirror.amaze.com.au/ 4 | http://apache.mirror.digitalpacific.com.au/ 5 | http://mirror.intergrid.com.au/apache/ 6 | http://apache.mirror.serversaustralia.com.au/ 7 | http://mirror.ventraip.net.au/apache/ 8 | http://apache.melbourneitmirror.net/ 9 | http://mirror.klaus-uwe.me/apache/ 10 | http://apache.belnet.be/ 11 | http://apache.cu.be/ 12 | http://apache.mirror.ba/ 13 | http://mirror.nbtelecom.com.br/apache/ 14 | http://ftp.unicamp.br/pub/apache/ 15 | http://apache.cbox.biz/ 16 | http://apache.oshte.net/ 17 | http://mirror.its.dal.ca/apache/ 18 | http://apache.mirror.iweb.ca/ 19 | http://muug.ca/mirror/apache-dist/ 20 | http://apache.mirror.rafal.ca/ 21 | http://mirror.dsrg.utoronto.ca/apache/ 22 | http://mirror.csclub.uwaterloo.ca/apache/ 23 | http://apache.mirror.vexxhost.com/ 24 | http://apache.mirror.colo-serv.net/ 25 | http://apache.mirror.gtcomm.net/ 26 | http://httpd-mirror.sergal.org/apache/ 27 | http://apache.forsale.plus/ 28 | http://apache.mirror.globo.tech/ 29 | http://mirror.bit.edu.cn/apache/ 30 | http://mirrors.hust.edu.cn/apache/ 31 | http://mirrors.shu.edu.cn/apache/ 32 | http://mirrors.tuna.tsinghua.edu.cn/apache/ 33 | http://apache.uniminuto.edu/ 34 | http://mirrors.ucr.ac.cr/apache/ 35 | http://ftp.carnet.hr/misc/apache/ 36 | http://mirror.dkm.cz/apache/ 37 | http://mirror.hosting90.cz/apache/ 38 | http://apache.miloslavbrada.cz/ 39 | http://mirrors.rackhosting.com/apache/ 40 | http://ftp.download-by.net/apache/ 41 | http://mirrors.dotsrc.org/apache/ 42 | http://mirror.netinch.com/pub/apache/ 43 | http://www.nic.funet.fi/pub/mirrors/apache.org/ 44 | http://apache.mindstudios.com/ 45 | http://wwwftp.ciril.fr/pub/apache/ 46 | http://mirror.ibcp.fr/pub/apache/ 47 | http://mirrors.ircam.fr/pub/apache/ 48 | http://apache.mirrors.ovh.net/ftp.apache.org/dist/ 49 | http://apache.mediamirrors.org/ 50 | http://apache.lauf-forum.at/ 51 | http://mirror.softaculous.com/apache/ 52 | http://mirror.yannic-bonenberger.com/apache/ 53 | http://mirror.23media.de/apache/ 54 | http://mirrors.ae-online.de/apache/ 55 | http://mirror.dkd.de/apache/ 56 | http://ftp.fau.de/apache/ 57 | http://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.apache.org/dist/ 58 | http://mirror.netcologne.de/apache.org/ 59 | http://ftp.heikorichter.name/apache/ 60 | http://apache.mirror.iphh.net/ 61 | http://artfiles.org/apache.org/ 62 | http://www.gutscheine.org/mirror/apache/ 63 | http://mirrors.myaegean.gr/apache/ 64 | http://apache.otenet.gr/dist/ 65 | http://ftp.cc.uoc.gr/mirrors/apache/ 66 | http://apache.01link.hk/ 67 | http://ftp.cuhk.edu.hk/pub/packages/apache.org/ 68 | http://apache.communilink.net/ 69 | http://apache.website-solution.net/ 70 | http://xenia.sote.hu/ftp/mirrors/www.apache.org/ 71 | http://redrockdigimark.com/apachemirror/ 72 | http://ftp.heanet.ie/mirrors/www.apache.org/dist/ 73 | http://apache.spd.co.il/ 74 | http://apache.mivzakim.net/ 75 | http://apache.panu.it/ 76 | http://ftp.jaist.ac.jp/pub/apache/ 77 | http://ftp.yz.yamagata-u.ac.jp/pub/network/apache/ 78 | http://ftp.tsukuba.wide.ad.jp/software/apache/ 79 | http://ftp.kddilabs.jp/infosystems/apache/ 80 | http://ftp.riken.jp/net/apache/ 81 | http://apache.mirror.cdnetworks.com/ 82 | http://mirror.navercorp.com/apache/ 83 | http://apache.tt.co.kr/ 84 | http://mirror.apache-kr.org/ 85 | http://apache.mirror.serveriai.lt/ 86 | http://apache.mirror.vu.lt/apache/ 87 | http://apache.mirror1.spango.com/ 88 | http://www.hjsnetworks.net/apache/ 89 | http://mirror.koddos.net/apache/ 90 | http://mirror.novg.net/apache/ 91 | http://mirrors.supportex.net/apache/ 92 | http://apache.40b.nl/ 93 | http://ftp.nluug.nl/internet/apache/ 94 | http://apache.proserve.nl/ 95 | http://apache.redkiwi.nl/ 96 | http://apache.mirror.triple-it.nl/ 97 | http://ftp.tudelft.nl/apache/ 98 | http://apache.cs.uu.nl/ 99 | http://mirror.lagoon.nc/pub/apache/ 100 | http://mirror.rise.ph/apache/ 101 | http://ftp.man.poznan.pl/apache/ 102 | http://ftp.ps.pl/pub/apache/ 103 | http://mirrors.up.pt/pub/apache/ 104 | http://mirror.evowise.com/apache/ 105 | http://apache.javapipe.com/ 106 | http://mirrors.hostingromania.ro/apache.org/ 107 | http://mirrors.m247.ro/apache/ 108 | http://mirrors.nav.ro/apache/ 109 | http://mirror.linux-ia64.org/apache/ 110 | http://apache-mirror.rbc.ru/pub/apache/ 111 | http://tux.rainside.sk/apache/ 112 | http://www.apache.si/ 113 | http://apache.saix.net/ 114 | http://mirror.za.web4africa.net/apache/ 115 | http://apache.is.co.za/ 116 | http://ftp.cixug.es/apache/ 117 | http://apache.rediris.es/ 118 | http://apache.uvigo.es/ 119 | http://apache.mirrors.spacedump.net/ 120 | http://mirror.easyname.ch/apache/ 121 | http://ftp.twaren.net/Unix/Web/apache/ 122 | http://apache.stu.edu.tw/ 123 | http://ftp.tc.edu.tw/pub/Apache/ 124 | http://ftp.mirror.tw/pub/apache/ 125 | http://apache.volia.net/ 126 | http://apache.cp.if.ua/ 127 | http://apache.ip-connect.vn.ua/ 128 | http://apache.mirror.anlx.net/ 129 | http://mirror.vorboss.net/apache/ 130 | http://www.mirrorservice.org/sites/ftp.apache.org/ 131 | http://mirror.ox.ac.uk/sites/rsync.apache.org/ 132 | http://apache.mirrors.nublue.co.uk/ 133 | http://mirrors.ukfast.co.uk/sites/ftp.apache.org/ 134 | http://apache.mesi.com.ar/ 135 | http://mirrors.advancedhosters.com/apache/ 136 | http://mirror.cogentco.com/pub/apache/ 137 | http://mirrors.gigenet.com/apache/ 138 | http://apache.mirrors.hoobly.com/ 139 | http://mirror.jax.hugeserver.com/apache/ 140 | http://mirrors.koehn.com/apache/ 141 | http://download.nextag.com/apache/ 142 | http://apache.mirrors.pair.com/ 143 | http://mirrors.sorengard.com/apache/ 144 | http://apache.spinellicreations.com/ 145 | http://supergsego.com/apache/ 146 | http://www.trieuvan.com/apache/ 147 | http://mirrors.ocf.berkeley.edu/apache/ 148 | http://mirror.cc.columbia.edu/pub/software/apache/ 149 | http://www.gtlib.gatech.edu/pub/apache/ 150 | http://apache.cs.utah.edu/ 151 | http://ftp.wayne.edu/apache/ 152 | http://apache.mirrors.lucidnetworks.net/ 153 | http://mirror.metrocast.net/apache/ 154 | http://mirror.olnevhost.net/pub/apache/ 155 | http://mirrors.sonic.net/apache/ 156 | http://apache.mirrors.tds.net/ 157 | http://apache.claz.org/ 158 | http://mirrors.ibiblio.org/apache/ 159 | http://apache.mirrors.ionfish.org/ 160 | http://apache.osuosl.org/ 161 | http://mirror.stjschools.org/public/apache/ 162 | http://mirror.downloadvn.com/apache/ 163 | http://mirrors.viethosting.com/apache/ -------------------------------------------------------------------------------- /files/backends_apache.au: -------------------------------------------------------------------------------- 1 | http://apache.mirror.amaze.com.au/ 2 | http://apache.mirror.digitalpacific.com.au/ 3 | http://mirror.intergrid.com.au/apache/ 4 | http://apache.mirror.serversaustralia.com.au/ 5 | http://mirror.ventraip.net.au/apache/ 6 | http://apache.melbourneitmirror.net/ 7 | -------------------------------------------------------------------------------- /files/backends_apache.uk: -------------------------------------------------------------------------------- 1 | apache.mirror.anlx.net 2 | mirror.vorboss.net 3 | www.mirrorservice.org 4 | mirror.ox.ac.uk 5 | apache.mirrors.nublue.co.uk 6 | mirrors.ukfast.co.uk 7 | -------------------------------------------------------------------------------- /files/backends_apache.us: -------------------------------------------------------------------------------- 1 | http://mirror.cogentco.com/pub/apache/ 2 | http://mirrors.gigenet.com/apache/ 3 | http://mirrors.koehn.com/apache/ 4 | http://download.nextag.com/apache/ 5 | http://apache.mirrors.pair.com/ 6 | http://mirrors.sorengard.com/apache/ 7 | http://mirrors.ocf.berkeley.edu/apache/ 8 | http://mirror.cc.columbia.edu/pub/software/apache/ 9 | http://apache.mirrors.lucidnetworks.net/ 10 | http://mirror.metrocast.net/apache/ 11 | http://mirror.olnevhost.net/pub/apache/ 12 | http://mirrors.sonic.net/apache/ 13 | http://apache.mirrors.tds.net/ 14 | http://apache.claz.org/ 15 | http://mirrors.ibiblio.org/apache/ 16 | http://apache.mirrors.ionfish.org/ 17 | http://apache.osuosl.org/ 18 | http://mirror.stjschools.org/public/apache/ 19 | -------------------------------------------------------------------------------- /files/backends_centos.au: -------------------------------------------------------------------------------- 1 | http://centos.mirror.serversaustralia.com.au/ 2 | http://mirror.aarnet.edu.au/pub/centos/ 3 | http://mirror.optus.net/centos/ 4 | http://mirror.colocity.com/centos/ 5 | -------------------------------------------------------------------------------- /files/backends_centos.uk: -------------------------------------------------------------------------------- 1 | http://centos.mirror.serversaustralia.com.au/ 2 | http://mirror.aarnet.edu.au/pub/centos/ 3 | http://mirror.optus.net/centos/ 4 | http://mirror.colocity.com/centos/ 5 | -------------------------------------------------------------------------------- /files/backends_centos.us: -------------------------------------------------------------------------------- 1 | http://centos.mirror.serversaustralia.com.au/ 2 | http://mirror.aarnet.edu.au/pub/centos/ 3 | http://mirror.optus.net/centos/ 4 | http://mirror.colocity.com/centos/ 5 | -------------------------------------------------------------------------------- /files/backends_debian: -------------------------------------------------------------------------------- 1 | http://cdn-fastly.deb.debian.org/debian 2 | http://cdn-aws.deb.debian.org/debian 3 | -------------------------------------------------------------------------------- /files/backends_epel.au: -------------------------------------------------------------------------------- 1 | http://fedora.melbourneitmirror.net/epel 2 | http://mirror.aarnet.edu.au/pub/epel 3 | -------------------------------------------------------------------------------- /files/backends_epel.uk: -------------------------------------------------------------------------------- 1 | http://mirror.sax.uk.as61049.net/epel 2 | http://mirror.bytemark.co.uk/fedora/epel 3 | http://mirror.freethought-internet.co.uk/epel 4 | http://mirrors.coreix.net/fedora-epel 5 | http://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel 6 | http://mirrors.ukfast.co.uk/sites/dl.fedoraproject.org/pub/epel 7 | http://mirror.vorboss.net/fedora/epel 8 | http://uk-mirrors.evowise.com/epel 9 | -------------------------------------------------------------------------------- /files/backends_epel.us: -------------------------------------------------------------------------------- 1 | http://mirrors.colocall.net/epel 2 | http://archive.linux.duke.edu/pub/epel 3 | http://download-ib01.fedoraproject.org/pub/epel 4 | http://download-ib01.fedoraproject.org/pub/alt 5 | http://epel.mirror.constant.com 6 | http://fedora-epel.mirrors.tds.net/fedora-epel 7 | http://fedora-epel.mirror.lstn.net 8 | http://fedora.mirrors.pair.com/epel 9 | http://ftp.cse.buffalo.edu/pub/epel 10 | http://ftp.linux.ncsu.edu/pub/epel 11 | http://mirror.utexas.edu/epel 12 | http://kdeforge2.unl.edu/mirrors/epel 13 | http://la-mirrors.evowise.com/epel 14 | http://linux.mirrors.es.net/fedora-epel 15 | http://mirror.beyondhosting.net/epel 16 | http://mirror.chpc.utah.edu/pub/epel 17 | http://mirror.coastal.edu/epel 18 | http://mirror.cogentco.com/pub/linux/epel 19 | http://mirror.compevo.com/epel 20 | http://mirror.cs.pitt.edu/epel 21 | http://mirror.cs.princeton.edu/pub/mirrors/fedora-epel 22 | http://mirror.math.princeton.edu/pub/epel 23 | http://mirror.hmc.edu/epel 24 | http://mirror.metrocast.net/fedora/epel 25 | http://mirror.nodesdirect.com/epel 26 | http://mirror.oss.ou.edu/epel 27 | http://mirror.pnl.gov/epel 28 | http://mirror.rnet.missouri.edu/epel 29 | http://mirrors.cat.pdx.edu/epel 30 | http://mirror.sfo12.us.leaseweb.net/epel 31 | http://mirror.sjc02.svwh.net/fedora-epel 32 | http://mirrors.liquidweb.com/fedora-epel 33 | http://mirrors.lug.mtu.edu/epel 34 | http://mirrors.mit.edu/epel 35 | http://mirrors.develooper.com/epel 36 | http://mirrors.sonic.net/epel 37 | http://mirrors.syringanetworks.net/fedora-epel 38 | http://mirror.steadfast.net/epel 39 | http://mirrors.tummy.com/pub/fedora.redhat.com/epel 40 | http://mirrors.tummy.com/pub/fedora.redhat.com/secondary 41 | http://mirrors.kernel.org/fedora-epel 42 | http://mirrors.kernel.org/fedora-secondary 43 | http://mirrors.kernel.org/fedora-alt 44 | http://mirrors.xmission.com/fedora-epel 45 | http://mirror.uic.edu/EPEL 46 | http://mirror.umd.edu/fedora/epel 47 | http://mirror.us.leaseweb.net/epel 48 | http://mirror.us-midwest-1.nexcess.net/epel 49 | http://mirror.vcu.edu/pub/gnu+linux/epel 50 | http://ny-mirrors.evowise.com/epel 51 | http://pubmirror2.math.uh.edu/fedora-buffet/epel 52 | http://reflector.westga.edu/repos/Fedora-EPEL 53 | http://mirrors.rit.edu/fedora/epel 54 | http://mirrors.rit.edu/fedora/archive 55 | -------------------------------------------------------------------------------- /files/backends_fedora.au: -------------------------------------------------------------------------------- 1 | http://fedora.melbourneitmirror.net/fedora/linux 2 | http://mirror.aarnet.edu.au/pub/fedora/linux 3 | -------------------------------------------------------------------------------- /files/backends_fedora.uk: -------------------------------------------------------------------------------- 1 | http://mirror.bytemark.co.uk/fedora/linux 2 | http://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux 3 | http://mirror.sucs.org/pub/linux/fedora 4 | http://mirror.vorboss.net/fedora/linux 5 | -------------------------------------------------------------------------------- /files/backends_fedora.us: -------------------------------------------------------------------------------- 1 | http://archive.linux.duke.edu/pub/fedora/linux 2 | http://download-ib01.fedoraproject.org/pub/fedora/linux 3 | http://download-ib01.fedoraproject.org/pub/fedora-secondary 4 | http://fedora.mirror.constant.com/fedora/linux 5 | http://fedora.mirror.lstn.net 6 | http://fedora.mirrors.pair.com/linux 7 | http://ftp.cse.buffalo.edu/pub/fedora/linux 8 | http://ftp.linux.ncsu.edu/pub/fedora/linux 9 | http://ftp.usf.edu/pub/fedora/linux 10 | http://ftp.ussg.iu.edu/linux/fedora/linux 11 | http://mirror.utexas.edu/fedora/linux 12 | http://kdeforge2.unl.edu/mirrors/fedora/linux 13 | http://la-mirrors.evowise.com/fedora 14 | http://linux.mirrors.es.net/fedora 15 | http://mirror.cc.vt.edu/pub/fedora/linux 16 | http://mirror.chpc.utah.edu/pub/fedora/linux 17 | http://mirror.chpc.utah.edu/pub/fedora-secondary 18 | http://mirror.clarkson.edu/fedora/linux 19 | http://mirror.cogentco.com/pub/linux/fedora/linux 20 | http://mirror.cs.pitt.edu/fedora/linux 21 | http://mirror.cs.princeton.edu/pub/mirrors/fedora/linux 22 | http://mirror.math.princeton.edu/pub/fedora/linux 23 | http://mirror.hmc.edu/fedora/linux 24 | http://mirror.liberty.edu/mirror/fedora/linux 25 | http://mirror.metrocast.net/fedora/linux 26 | http://mirror.nodesdirect.com/fedora 27 | http://mirror.oss.ou.edu/fedora 28 | http://mirror.pnl.gov/fedora/linux 29 | http://mirror.rnet.missouri.edu/fedora/linux 30 | http://mirrors.cat.pdx.edu/fedora/linux 31 | http://mirror.sfo12.us.leaseweb.net/fedora/linux 32 | http://mirror.sjc02.svwh.net/fedora 33 | http://mirror.sjc02.svwh.net/fedora-secondary 34 | http://mirrors.liquidweb.com/fedora 35 | http://mirrors.lug.mtu.edu/fedora/linux 36 | http://mirrors.mit.edu/fedora/linux 37 | http://mirrors.oit.uci.edu/fedora/linux 38 | http://mirrors.syringanetworks.net/fedora/linux 39 | http://mirror.steadfast.net/fedora 40 | http://mirrors.tummy.com/pub/fedora.redhat.com/fedora/linux 41 | http://mirrors.kernel.org/fedora 42 | http://mirrors.xmission.com/fedora/linux 43 | http://mirror.umd.edu/fedora/linux 44 | http://mirror.uoregon.edu/fedora/linux 45 | http://mirror.us.leaseweb.net/fedora/linux 46 | http://mirror.us-midwest-1.nexcess.net/fedora 47 | http://mirror.vcu.edu/pub/gnu+linux/fedora 48 | http://mirror.web-ster.com/fedora 49 | http://ny-mirrors.evowise.com/fedora 50 | http://pubmirror1.math.uh.edu/fedora-buffet/fedora/linux 51 | http://pubmirror2.math.uh.edu/fedora-buffet/fedora/linux 52 | http://pubmirror2.math.uh.edu/fedora-buffet/fedora-secondary 53 | -------------------------------------------------------------------------------- /files/backends_ubuntu.au: -------------------------------------------------------------------------------- 1 | http://au.archive.ubuntu.com/ubuntu/ 2 | http://mirror.aarnet.edu.au/pub/ubuntu/ 3 | -------------------------------------------------------------------------------- /files/backends_ubuntu.uk: -------------------------------------------------------------------------------- 1 | http://uk.archive.ubuntu.com/ubuntu/ 2 | -------------------------------------------------------------------------------- /files/backends_ubuntu.us: -------------------------------------------------------------------------------- 1 | http://us.archive.ubuntu.com/ubuntu/ 2 | -------------------------------------------------------------------------------- /files/centos_mirrors: -------------------------------------------------------------------------------- 1 | http://mirror.centos.org/ 2 | http://mirror.retentionrange.co.bw/centOS/ 3 | http://mirror.liquidtelecom.com/centos/ 4 | http://repos-jnb.psychz.net/centos/ 5 | http://mirror.za.web4africa.net/centos/ 6 | http://mirror.bitco.co.za/centos/ 7 | http://ftp.is.co.za/mirror/centos/ 8 | http://dl.za.jsdaav.net/mirror/CentOS/ 9 | http://www.ftp.saix.net/pub/linux/distributions/centos/ 10 | http://centos.mirror.ac.za/ 11 | http://mirror.ufs.ac.za/centos/ 12 | http://mirror.wbs.co.za/centos/ 13 | http://mirror.aptus.co.tz/pub/centos/ 14 | http://fedora.mirror.tn/pub/centos/ 15 | http://mirror.ucu.ac.ug/centos/ 16 | http://mirror.zol.co.zw/centos/ 17 | http://centos.myfahim.com/centos/ 18 | http://mirror.dhakacom.com/centos/ 19 | http://mirror.xeonbd.com/centos/ 20 | http://mirrors.aliyun.com/centos/ 21 | http://mirror.bit.edu.cn/centos/ 22 | http://mirrors.btte.net/centos/ 23 | http://mirrors.cqu.edu.cn/CentOS/ 24 | http://mirrors.cn99.com/centos/ 25 | http://mirrors.neusoft.edu.cn/centos/ 26 | http://mirrors.huaweicloud.com/repository/centos/ 27 | http://mirror.lzu.edu.cn/centos/ 28 | http://mirrors.nju.edu.cn/centos/ 29 | http://mirrors.njupt.edu.cn/centos/ 30 | http://mirrors.163.com/centos/ 31 | http://ftp.sjtu.edu.cn/centos/ 32 | http://mirrors.shu.edu.cn/centos/ 33 | http://mirrors.sohu.com/centos/ 34 | http://mirrors.tuna.tsinghua.edu.cn/centos/ 35 | http://centos.ustc.edu.cn/centos/ 36 | http://mirrors.zju.edu.cn/centos/ 37 | http://mirror.vpshosting.com.hk/pub/linux/centos/ 38 | http://centos.communilink.net/ 39 | http://centos.nethub.com.hk/ 40 | http://mirror.sunnyvision.com/centos/ 41 | http://ftp.cuhk.edu.hk/pub/Linux/centos/ 42 | http://repo.virtualhosting.hk/centos/ 43 | http://mirror.xtom.com.hk/centos/ 44 | http://centos.excellmedia.net/ 45 | http://del-mirrors.extreme-ix.org/centos/ 46 | http://ftp.iitm.ac.in/centos/ 47 | http://mirror.nbrc.ac.in/centos/ 48 | http://centos.mirror.snu.edu.in/centos/ 49 | http://mirror.vbctv.in/centos/ 50 | http://kartolo.sby.datautama.net.id/Centos/ 51 | http://centos.merahciptamedia.co.id/ 52 | http://repo.apiknet.co.id/centos/ 53 | http://centos.mirror.angkasa.id/centos/ 54 | http://mirror.axarva.id/centos/ 55 | http://mirror.dionipe.net/Centos/ 56 | http://mirror.poliwangi.ac.id/centos/ 57 | http://ftp.iij.ad.jp/pub/linux/centos/ 58 | http://ftp.jaist.ac.jp/pub/Linux/CentOS/ 59 | http://www.ftp.ne.jp/Linux/packages/CentOS/ 60 | http://ftp.riken.jp/Linux/centos/ 61 | http://ftp.tsukuba.wide.ad.jp/Linux/centos/ 62 | http://ftp.yz.yamagata-u.ac.jp/pub/linux/centos/ 63 | http://mirror.megahost.kz/centos/ 64 | http://mirror.neolabs.kz/centos/ 65 | http://centos.exabytes.com.my/main/ 66 | http://centos.ipserverone.com/centos/ 67 | http://mirror.myren.net.my/centos/ 68 | http://centos.mirror.myduniahost.com/centos/ 69 | http://centos.netonboard.com/centos/ 70 | http://centos.shinjiru.com/centos/ 71 | http://mirror.upsi.edu.my/centos/ 72 | http://ossm.utm.my/centos/ 73 | http://mirror.datacenter.mn/centos/ 74 | http://mirrors.ges.net.pk/centos/ 75 | http://repo.inara.pk/centos/ 76 | http://mirror.pregi.net/centos/ 77 | http://mirror.rise.ph/centos/ 78 | http://download.nus.edu.sg/mirror/centos/ 79 | http://mirror.0x.sg/centos/ 80 | http://mirror.nus.edu.sg/centos/ 81 | http://mirror.qoxy.com/centos/ 82 | http://centos.usonyx.net/main/ 83 | http://mirror.vodien.com/centos/ 84 | http://data.nicehosting.co.kr/os/CentOS/ 85 | http://ftp.kaist.ac.kr/CentOS/ 86 | http://mirror.kakao.com/centos/ 87 | http://ftp.stu.edu.tw/Linux/CentOS/ 88 | http://ftp.yzu.edu.tw/Linux/CentOS/ 89 | http://ftp.isu.edu.tw/pub/Linux/CentOS/ 90 | http://ftp.ksu.edu.tw/pub/CentOS/ 91 | http://free.nchc.org.tw/centos/ 92 | http://linux.cs.nctu.edu.tw/CentOS/ 93 | http://ftp.tc.edu.tw/Linux/CentOS/ 94 | http://mirrors.nipa.cloud/centos/ 95 | http://mirrors.bangmodhosting.com/centos/ 96 | http://mirrors.bestthaihost.com/centos/ 97 | http://mirrors.hosting.in.th/centos/ 98 | http://mirror1.ku.ac.th/centos/ 99 | http://mirror.kku.ac.th/centos/ 100 | http://mirrors.psu.ac.th/pub/centos/ 101 | http://mirrors.thzhost.com/centos/ 102 | http://mirror2.totbb.net/centos/ 103 | http://mirror.comnet.uz/centos/ 104 | http://centos-hcm.viettelidc.com.vn/ 105 | http://mirrors.digipower.vn/centos/ 106 | http://mirror.ehost.vn/centos/ 107 | http://mirrors.nhanhoa.com/centos/ 108 | http://mirrors.vhost.vn/centos/ 109 | http://mirrors.viethosting.com/centos/ 110 | http://centos-hn.viettelidc.com.vn/ 111 | http://mirrors.vinahost.vn/centos/ 112 | http://mirror.esecuredata.com/centos/ 113 | http://centos.ca-west.mirror.fullhost.io/centos/ 114 | http://mirror.its.sfu.ca/mirror/CentOS/ 115 | http://mirror.it.ubc.ca/centos/ 116 | http://centos.les.net/ 117 | http://muug.ca/mirror/centos/ 118 | http://centos.westmancom.com/ 119 | http://mirror.layeronline.com/centos/ 120 | http://mirror.netflash.net/centos/ 121 | http://mirror.csclub.uwaterloo.ca/centos/ 122 | http://rep-centos-ca.upress.io/ 123 | http://centos.mirror.colo-serv.net/ 124 | http://mirror.gpmidi.net/centos/ 125 | http://centos.mirror.iweb.ca/ 126 | http://centos.mirror.netelligent.ca/centos/ 127 | http://centos.bhs.mirrors.ovh.net/ftp.centos.org/ 128 | http://centos.mirror.ca.planethoster.net/ 129 | http://centos.mirror.vexxhost.com/ 130 | http://centos.zswap.net/ 131 | http://centos.mirrors.arminco.com/ 132 | http://mirror.digitalnova.at/CentOS/ 133 | http://mirror.easyname.at/centos/ 134 | http://centos.mirroraustria.at/ 135 | http://mirror.nextlayer.at/centos/ 136 | http://ftp.tugraz.at/mirror/centos/ 137 | http://mirror.inode.at/data/centos/ 138 | http://ftp.byfly.by/pub/CentOS/ 139 | http://ftp.belnet.be/mirror/ftp.centos.org/ 140 | http://centos.mirror.connexeon.net/ 141 | http://centos.cu.be/ 142 | http://mirror.kinamo.be/centos/ 143 | http://centos.be.mymirror.online/ 144 | http://centos.mirror.nucleus.be/ 145 | http://mirror.unix-solutions.be/centos/ 146 | http://centos.mirror.ba/ 147 | http://mirror.host.ag/centos/ 148 | http://mirrors.neterra.net/centos/ 149 | http://mirrors.netix.net/centos/ 150 | http://centos.uni-sofia.bg/centos/ 151 | http://centos.telecoms.bg/ 152 | http://mirrors.uni-ruse.bg/centos/ 153 | http://mirror.centos.plus.hr/centos/ 154 | http://mirror.cs.ucy.ac.cy/centos/ 155 | http://ftp.sh.cvut.cz/centos/ 156 | http://merlin.fit.vutbr.cz/mirrors/centos/ 157 | http://ftp.cvut.cz/centos/ 158 | http://ftp.fi.muni.cz/pub/linux/centos/ 159 | http://mirror.hosting90.cz/centos/ 160 | http://mirror.it4i.cz/centos/ 161 | http://mirror.karneval.cz/pub/centos/ 162 | http://mirror.slu.cz/centos/ 163 | http://mirrors.dotsrc.org/centos/ 164 | http://mirror.iodc.dk/centos/ 165 | http://ftp.klid.dk/ftp/centos/ 166 | http://mirror.netsite.dk/centos/ 167 | http://mirror.one.com/centos/ 168 | http://mirror.fysik.dtu.dk/linux/centos/ 169 | http://ftp.estpak.ee/pub/centos/ 170 | http://ftp.funet.fi/pub/mirrors/centos.org/ 171 | http://centos.mirror.far.fi/ 172 | http://ftp.pasteur.fr/mirrors/CentOS/ 173 | http://mirrors.atosworldline.com/public/centos/ 174 | http://centos.mirrors.benatherton.com/ 175 | http://mirror.in2p3.fr/linux/CentOS/ 176 | http://distrib-coffee.ipsl.jussieu.fr/pub/linux/centos/ 177 | http://mirrors.ircam.fr/pub/CentOS/ 178 | http://miroir.univ-lorraine.fr/centos/ 179 | http://centos.mirrors.ovh.net/ftp.centos.org/ 180 | http://centos.mirror.fr.planethoster.net/ 181 | http://mirror.plusserver.com/centos/ 182 | http://centos.crazyfrogs.org/ 183 | http://fr2.rpmfind.net/linux/centos/ 184 | http://mirrors.standaloneinstaller.com/centos/ 185 | http://mir01.syntis.net/CentOS/ 186 | http://centos.quelquesmots.fr/ 187 | http://centos.grena.ge/ 188 | http://centos.mirror.srv.magticom.ge/ 189 | http://mirror.centos.ge/ 190 | http://mirror.fra10.de.leaseweb.net/centos/ 191 | http://mirror.eu.oneandone.net/linux/distributions/centos/ 192 | http://mirror.23media.de/centos/ 193 | http://centos.alpha-labs.net/ 194 | http://mirror.alpix.eu/centos/ 195 | http://artfiles.org/centos.org/ 196 | http://centos.mirrors.as250.net/ 197 | http://mirror.checkdomain.de/centos/ 198 | http://centos.copahost.com/ 199 | http://mirror.cuegee.de/centos/ 200 | http://mirror.euserv.net/linux/centos/ 201 | http://mirror.maeh.org/centos/ 202 | http://ftp.fau.de/centos/ 203 | http://ftp.rz.uni-frankfurt.de/pub/mirrors/centos/ 204 | http://ftp.hosteurope.de/mirror/centos.org/ 205 | http://mirror.imt-systems.com/centos/ 206 | http://mirror.infonline.de/centos/ 207 | http://centos.intergenia.de/ 208 | http://centos.mirror.iphh.net/CentOS/ 209 | http://ftp.rrzn.uni-hannover.de/centos/ 210 | http://centos.bio.lmu.de/ 211 | http://ftp.antilo.de/pub/linux/centos/ 212 | http://centos.mirror.net-d-sign.de/ 213 | http://mirror.netcologne.de/centos/ 214 | http://centosmirror.netcup.net/centos/ 215 | http://ftp.plusline.de/centos/ 216 | http://centos.mirrors.psw.services/centos/ 217 | http://mirror.ratiokontakt.de/mirror/centos/ 218 | http://ftp.halifax.rwth-aachen.de/centos/ 219 | http://mirror.wiuwiu.de/centos/ 220 | http://mirror.softaculous.com/centos/ 221 | http://wftp.tu-chemnitz.de/pub/linux/centos/ 222 | http://mirror2.hs-esslingen.de/centos/ 223 | http://mirror1.hs-esslingen.de/pub/Mirrors/centos/ 224 | http://mirror.informatik.hs-fulda.de/centos/ 225 | http://ftp.wrz.de/pub/CentOS/ 226 | http://mirror.yannic-bonenberger.com/centos/ 227 | http://ftp.cc.uoc.gr/CentOS/ 228 | http://ftp.otenet.gr/linux/centos/ 229 | http://ftp.ntua.gr/pub/linux/centos/ 230 | http://ftp.bme.hu/centos/ 231 | http://ftp.freepark.org/pub/linux/distributions/centos/ 232 | http://mirror.met.hu/centos/ 233 | http://centos.lonyai.com/ 234 | http://centos.hysing.is/ 235 | http://centos.nyherji.is/ 236 | http://www.fedora.is/CentOS/ 237 | http://ftp.heanet.ie/pub/centos/ 238 | http://mirror.strencom.net/centos/ 239 | http://ct.mirror.garr.it/mirrors/CentOS/ 240 | http://ba.mirror.garr.it/mirrors/CentOS/ 241 | http://it.centos.contactlab.it/ 242 | http://mirror.crazynetwork.it/centos/ 243 | http://mi.mirror.garr.it/mirrors/CentOS/ 244 | http://mirrors.prometeus.net/centos/ 245 | http://centos.koyanet.lv/centos/ 246 | http://centos.linux.edu.lv/ 247 | http://mirror.bacloud.com/centos/ 248 | http://mirror.duomenucentras.lt/centos/ 249 | http://centos.mirror.serveriai.lt/ 250 | http://mirror.vpsnet.com/centos/ 251 | http://mirror.dclux.com/centos/ 252 | http://centos.mirror.root.lu/ 253 | http://mirror.t-home.mk/centos/ 254 | http://repo.fedora.md/centos/ 255 | http://mirrors.mivocloud.com/centos/ 256 | http://mirror.as43289.net/centos/ 257 | http://ams.edge.kernel.org/centos/ 258 | http://mirror.ams1.nl.leaseweb.net/centos/ 259 | http://mirror.1000mbps.com/centos/ 260 | http://mirror.amsiohosting.net/centos.org/ 261 | http://mirror.cj2.nl/centos/ 262 | http://mirror.colocenter.nl/pub/centos/ 263 | http://mirror.dataone.nl/centos/ 264 | http://mirror.nl.datapacket.com/centos/ 265 | http://ftp.tudelft.nl/centos.org/ 266 | http://mirror.denit.net/centos/ 267 | http://mirror.i3d.net/pub/centos/ 268 | http://mirror.ipserv.nl/centos/ 269 | http://mirror.serverbeheren.nl/centos/ 270 | http://mirror.neostrada.nl/centos/ 271 | http://mirror.netrouting.net/centos/ 272 | http://mirror.nforce.com/pub/linux/CentOS/ 273 | http://ftp.nluug.nl/ftp/pub/os/Linux/distr/CentOS/ 274 | http://mirror.oxilion.nl/centos/ 275 | http://mirror.previder.nl/centos/ 276 | http://mirror.prolocation.net/centos/ 277 | http://mirror.proserve.nl/centos/ 278 | http://mirror.schoemaker.systems/centos/ 279 | http://mirror.seedvps.com/CentOS/ 280 | http://mirror.serverius.net/centos/ 281 | http://mirror.sitbv.nl/centos/ 282 | http://centos.mirror1.spango.com/ 283 | http://mirrors.supportex.net/centos/ 284 | http://centos.mirror.transip.nl/ 285 | http://centos.mirror.triple-it.nl/ 286 | http://linux.cs.uu.nl/centos/ 287 | http://mirror.vimexx.nl/centos/ 288 | http://mirror.webruimtehosting.nl/centos/ 289 | http://mirror.ehv.weppel.nl/centos/ 290 | http://mirror.widexs.nl/ftp/pub/os/Linux/distr/centos/ 291 | http://mirror.yourwebhoster.eu/centos/ 292 | http://centos.uib.no/ 293 | http://ftp.uninett.no/centos/ 294 | http://centos2.hti.pl/ 295 | http://ftp.agh.edu.pl/centos/ 296 | http://mirror.onet.pl/pub/mirrors/centos/ 297 | http://centos.hitme.net.pl/ 298 | http://ftp.icm.edu.pl/pub/Linux/distributions/centos/ 299 | http://mirror-pl.kielcetechnologypark.net/centos/ 300 | http://centos.slaskdatacenter.com/ 301 | http://centos.po.opole.pl/ 302 | http://ftp.pbone.net/pub/centos/ 303 | http://ftp.man.poznan.pl/pub/centos/ 304 | http://ftp.prz.edu.pl/centos/ 305 | http://ftp.ps.pl/pub/Linux/CentOS/ 306 | http://ftp.vectranet.pl/centos/ 307 | http://ftp.wcss.pl/pub/linux/centos/ 308 | http://mirror.fccn.pt/repos/pub/CentOS/ 309 | http://mirror.isec.pt/CentOS/ 310 | http://centos.mirror.ptisp.pt/centos/ 311 | http://ftp.dei.uc.pt/pub/linux/CentOS/ 312 | http://mirrors.up.pt/pub/centos/ 313 | http://ro-bucharest-repo.bigstepcloud.com/centos/ 314 | http://mirror.evowise.com/centos/ 315 | http://mirrors.ch-center.com/centos/ 316 | http://mirrors.dds.ro/centos/ 317 | http://mirrors.hostingromania.ro/CentOS/ 318 | http://mirrors.leadhosts.com/centos/ 319 | http://mirrors.m247.ro/centos/ 320 | http://mirrors.nav.ro/centos/ 321 | http://mirrors.nxthost.com/centos/ 322 | http://mirrors.pidginhost.com/centos/ 323 | http://ftp.ines.lug.ro/centos/ 324 | http://centos.mirrors.telekom.ro/ 325 | http://mirrors.uav.ro/centos/ 326 | http://ftp.upcnet.ro/distros/centos/ 327 | http://mirrors.xservers.ro/centos/ 328 | http://mirror.awanti.com/centos/ 329 | http://mirror.corbina.net/pub/Linux/centos/ 330 | http://dedic.sh/centos/ 331 | http://ftp.nsc.ru/pub/centos/ 332 | http://mirror.logol.ru/centos/ 333 | http://mirrors.powernet.com.ru/centos/ 334 | http://mirror.reconn.ru/centos/ 335 | http://centos-mirror.rbc.ru/pub/centos/ 336 | http://mirror.sale-dedic.com/centos/ 337 | http://mirror.truenetwork.ru/centos/ 338 | http://mirror.tversu.ru/centos/ 339 | http://mirror.yandex.ru/centos/ 340 | http://mirror.etf.bg.ac.rs/centos/ 341 | http://ftp.energotel.sk/pub/linux/centos/ 342 | http://tux.rainside.sk/centos/ 343 | http://ftp.upjs.sk/pub/centos/ 344 | http://ftp.arnes.si/pub/mirrors/centos.org/ 345 | http://mirror.lihnidos.org/CentOS/ 346 | http://centos.t-2.net/ 347 | http://mirrors.xgroup.si/CentOS/ 348 | http://ftp.cica.es/CentOS/ 349 | http://mirror.tedra.es/CentOS/ 350 | http://mirror.uv.es/mirror/CentOS/ 351 | http://ftp.cixug.es/CentOS/ 352 | http://ftp.rediris.es/mirror/CentOS/ 353 | http://ftp.uma.es/mirror/CentOS/ 354 | http://centos.uvigo.es/ 355 | http://nervion.us.es/centos/ 356 | http://ftp.ember.se/centos/ 357 | http://mirrors.glesys.net/CentOS/ 358 | http://mirror.hh.se/centos/ 359 | http://ftp.lysator.liu.se/pub/CentOS/ 360 | http://mirror.nsc.liu.se/CentOS/ 361 | http://mirror.zetup.net/CentOS/ 362 | http://pkg.adfinis-sygroup.ch/centos/ 363 | http://linuxsoft.cern.ch/centos/ 364 | http://centos.digitalsuisse.com/ 365 | http://mirror.spreitzer.ch/centos/ 366 | http://mirror.switch.ch/ftp/mirror/centos/ 367 | http://mirror.alastyr.com/centos/ 368 | http://repo.boun.edu.tr/centos/ 369 | http://mirror.dgn.net.tr/centos/ 370 | http://mirror.fibersunucu.com.tr/centos/ 371 | http://mirror.idealhosting.net.tr/centos/ 372 | http://ftp.itu.edu.tr/Mirror/CentOS/ 373 | http://mirror.muvhost.com/centos/ 374 | http://mirror.ni.net.tr/centos/ 375 | http://mirror.radoreservers.com/centos/ 376 | http://mirror.saglayici.com/centos/ 377 | http://mirror.teknoboss.com.tr/centos/ 378 | http://centos.turhost.com/ 379 | http://ftp.linux.org.tr/centos/ 380 | http://centos.vargonen.com/centos/ 381 | http://mirror.rackdc.com/CentOS/ 382 | http://mirror.besthosting.ua/ 383 | http://mirrors.bytes.ua/centos/ 384 | http://centos.colocall.net/ 385 | http://centos.itt-consulting.com/ 386 | http://mirror.mirohost.net/centos/ 387 | http://mirror.omnilance.com/centos/ 388 | http://centos.ip-connect.vn.ua/ 389 | http://mirror.as29550.net/mirror.centos.org/ 390 | http://repo.uk.bigstepcloud.com/centos/ 391 | http://mirror.bytemark.co.uk/centos/ 392 | http://mirrors.clouvider.net/CentOS/ 393 | http://mirrors.coreix.net/centos/ 394 | http://mirror.cwcs.co.uk/centos/ 395 | http://mirror.econdc.com/centos/ 396 | http://mirror.sax.uk.as61049.net/centos/ 397 | http://mirror.freethought-internet.co.uk/centos/ 398 | http://mirror.sov.uk.goscomb.net/centos/ 399 | http://mozart.ee.ic.ac.uk/CentOS/ 400 | http://mirrors.melbourne.co.uk/sites/ftp.centos.org/centos/ 401 | http://mirror.netweaver.uk/centos/ 402 | http://centos.mirrors.nublue.co.uk/ 403 | http://mirror.ox.ac.uk/sites/mirror.centos.org/ 404 | http://centos.mirroring.pulsant.co.uk/ 405 | http://centos.serverspace.co.uk/centos/ 406 | http://www.mirrorservice.org/sites/mirror.centos.org/ 407 | http://mirrors.ukfast.co.uk/sites/ftp.centos.org/ 408 | http://mirrors.vooservers.com/centos/ 409 | http://mirror.vorboss.net/centos/ 410 | http://anorien.csc.warwick.ac.uk/mirrors/centos/ 411 | http://mirror.mhd.uk.as44574.net/mirror.centos.org/ 412 | http://mirror.greennet.gl/centos/ 413 | http://mirror.centos.jt.iq/ 414 | http://mirror.scopesky.iq/ 415 | http://centos.interhost.net.il/ 416 | http://mirror.isoc.org.il/pub/centos/ 417 | http://mirror.nonstop.co.il/centos/ 418 | http://centos.spd.co.il/ 419 | http://centos.kw.zain.com/ 420 | http://mirrors.securehost.com/centos/ 421 | http://mirror.cenac.ipn.mx/centos/ 422 | http://mirrors.upr.edu/centos/ 423 | http://mirrors.uprm.edu/centos/ 424 | http://mirror.optus.net/centos/ 425 | http://mirror.aarnet.edu.au/pub/centos/ 426 | http://centos.mirror.ausnetservers.net.au/ 427 | http://mirror.overthewire.com.au/pub/centos/ 428 | http://centos.mirror.serversaustralia.com.au/ 429 | http://ftp.swin.edu.au/centos/ 430 | http://mirror.ventraip.net.au/CentOS/ 431 | http://ftp.wicks.co.nz/pub/linux/dist/centos/ 432 | http://mirror.xnet.co.nz/pub/centos/ 433 | http://centos.xfree.com.ar/ 434 | http://centos.brisanet.com.br/ 435 | http://centos.brnet.net.br/centos/ 436 | http://mirror.facom.ufms.br/centos/ 437 | http://mirror.globo.com/centos/ 438 | http://mirror.ci.ifes.edu.br/centos/ 439 | http://mirror.nbtelecom.com.br/centos/ 440 | http://ftp.unicamp.br/pub/centos/ 441 | http://mirror.ufscar.br/centos/ 442 | http://mirror.ufam.edu.br/centos/ 443 | http://centos.ufes.br/ 444 | http://mirror.gtdinternet.com/ 445 | http://mirror.netglobalis.net/centos/ 446 | http://mirror.orbyta.com/ 447 | http://mirror.edatel.net.co/centos/ 448 | http://mirror.unimagdalena.edu.co/centos/ 449 | http://centos.uniminuto.edu/ 450 | http://mirror.upb.edu.co/centos/ 451 | http://mirrors.ucr.ac.cr/centos/ 452 | http://mirror.cedia.org.ec/centos/ 453 | http://mirror.epn.edu.ec/centos/ 454 | http://mirror.espoch.edu.ec/centos/ 455 | http://mirror.uce.edu.ec/centos/ 456 | http://mirror.uta.edu.ec/centos/ 457 | http://mirror.wayscom.com/centos/ 458 | http://ftp.osuosl.org/pub/centos/ 459 | http://mirror.rackspace.com/CentOS/ 460 | http://mirror.millry.co/CentOS/ 461 | http://mirror.teklinks.com/centos/ 462 | http://centos-distro.1gservers.com/ 463 | http://centos-distro.cavecreek.net/centos/ 464 | http://mirror.sfo12.us.leaseweb.net/centos/ 465 | http://linux.mirrors.es.net/centos/ 466 | http://mirror.scalabledns.com/centos/ 467 | http://mirror.san.fastserv.com/pub/linux/centos/ 468 | http://mirror.fileplanet.com/centos/ 469 | http://mirror.hmc.edu/centos/ 470 | http://mirror.hostduplex.com/centos/ 471 | http://mirror.keystealth.org/centos/ 472 | http://mirrors.kernel.org/centos/ 473 | http://centos.mirror.ndchost.com/ 474 | http://mirrors.ocf.berkeley.edu/centos/ 475 | http://sjc.edge.kernel.org/centos/ 476 | http://repos-lax.psychz.net/centos/ 477 | http://repos.lax.quadranet.com/centos/ 478 | http://mirror.sjc02.svwh.net/centos/ 479 | http://mirrors.sonic.net/centos/ 480 | http://centos.sonn.com/ 481 | http://mirror.linuxfix.com/centos/ 482 | http://mirrors.oit.uci.edu/centos/ 483 | http://centos.den.host-engine.com/ 484 | http://centos.host-engine.com/ 485 | http://mirror.den1.denvercolo.net/CentOS/ 486 | http://mirrordenver.fdcservers.net/centos/ 487 | http://repos.forethought.net/centos/ 488 | http://centos.gbeservers.com/ 489 | http://mirrors.tummy.com/mirrors/CentOS/ 490 | http://mirror.wdc1.us.leaseweb.net/centos/ 491 | http://centos.servint.com/ 492 | http://mirror.lug.udel.edu/pub/centos/ 493 | http://repos.mia.quadranet.com/centos/ 494 | http://mirror.atlantic.net/centos/ 495 | http://mirror.jax.hugeserver.com/centos/ 496 | http://mirror.cloud-bricks.net/centos/ 497 | http://mirror.mojohost.com/centos/ 498 | http://mirror.nodesdirect.com/centos/ 499 | http://ftp.usf.edu/pub/centos/ 500 | http://www.gtlib.gatech.edu/pub/centos/ 501 | http://reflector.westga.edu/repos/CentOS/ 502 | http://centos.vwtonline.net/centos/ 503 | http://mirrors.syringanetworks.net/centos/ 504 | http://repo.us.bigstepcloud.com/centos/ 505 | http://mirror.genesisadaptive.com/centos/ 506 | http://mirrors.gigenet.com/centos/ 507 | http://mirror.sesp.northwestern.edu/centos/ 508 | http://mirror.steadfast.net/centos/ 509 | http://mirror.team-cymru.com/CentOS/ 510 | http://mirror.tzulo.com/centos/ 511 | http://mirror.grid.uchicago.edu/pub/linux/centos/ 512 | http://bay.uchicago.edu/centos/ 513 | http://ftpmirror.your.org/pub/centos/ 514 | http://mirrors.seas.harvard.edu/centos/ 515 | http://mirrors.mit.edu/centos/ 516 | http://mirrors.tripadvisor.com/centos/ 517 | http://mirror.umd.edu/centos/ 518 | http://mirrors.maine.edu/CentOS/ 519 | http://mirror.riverfrontnetworks.com/CentOS/ 520 | http://mirrors.cmich.edu/centos/ 521 | http://mirrors.liquidweb.com/CentOS/ 522 | http://mirror.us-midwest-1.nexcess.net/CentOS/ 523 | http://mirrors.umflint.edu/CentOS/ 524 | http://mirrors.usinternet.com/centos/ 525 | http://mirrors.thaidns.co.th/centos/ 526 | http://mirror.compevo.com/centos/ 527 | http://packages.oit.ncsu.edu/centos/ 528 | http://mirror.linux.duke.edu/pub/centos/ 529 | http://distro.ibiblio.org/centos/ 530 | http://ftp.linux.ncsu.edu/pub/CentOS/ 531 | http://mirror.metrocast.net/centos/ 532 | http://ewr.edge.kernel.org/centos/ 533 | http://centos.mirror.constant.com/ 534 | http://mirror.trouble-free.net/centos/ 535 | http://mirror.math.princeton.edu/pub/centos/ 536 | http://mirror.sigmanet.com/centos/ 537 | http://mirror.atlanticmetro.net/centos/ 538 | http://mirror.clarkson.edu/centos/ 539 | http://mirror.cc.columbia.edu/pub/linux/centos/ 540 | http://mirrors.evowise.com/centos/ 541 | http://mirror.es.its.nyu.edu/centos/ 542 | http://mirrors.rit.edu/centos/ 543 | http://mirror.siena.edu/centos/ 544 | http://mirrors.sorengard.com/centos/ 545 | http://centos.spinellicreations.com/ 546 | http://mirrors.lga7.us.voxel.net/centos/ 547 | http://mirror.cisp.com/CentOS/ 548 | http://mirror.oss.ou.edu/centos/ 549 | http://mirror.web-ster.com/centos/ 550 | http://mirrors.cat.pdx.edu/centos/ 551 | http://mirror.tocici.com/centos/ 552 | http://mirror.us.oneandone.net/linux/distributions/centos/ 553 | http://mirror.datto.com/CentOS/ 554 | http://mirror.cs.pitt.edu/centos/ 555 | http://linux.cc.lehigh.edu/centos/ 556 | http://repo1.dal.innoscale.net/centos/ 557 | http://mirror.dal10.us.leaseweb.net/centos/ 558 | http://repos-tx.psychz.net/centos/ 559 | http://repos.dfw.quadranet.com/centos/ 560 | http://yum.tamu.edu/centos/ 561 | http://pubmirrors.dal.corespace.com/centos/ 562 | http://mirror.hackingand.coffee/centos/ 563 | http://centos.mirror.lstn.net/ 564 | http://mirror.raystedman.net/centos/ 565 | http://dallas.tx.mirror.xygenhosting.com/CentOS/ 566 | http://mirrors.unifiedlayer.com/centos/ 567 | http://mirror.chpc.utah.edu/pub/centos/ 568 | http://mirrors.xmission.com/centos/ 569 | http://repos-va.psychz.net/centos/ 570 | http://mirror.ash.fastserv.com/centos/ 571 | http://centos2.zswap.net/ 572 | http://mirrors.advancedhosters.com/centos/ 573 | http://centos.aol.com/ 574 | http://mirror.cogentco.com/pub/linux/centos/ 575 | http://repo1.ash.innoscale.net/centos/ 576 | http://mirror.cs.vt.edu/pub/CentOS/ 577 | http://mirror.vtti.vt.edu/centos/ 578 | http://mirror.yellowfiber.net/centos/ 579 | http://mirrors.greenmountainaccess.net/centos/ 580 | http://repo1.sea.innoscale.net/centos/ 581 | http://mirror.jaleco.com/centos/ 582 | http://centos.s.uw.edu/centos/ 583 | http://centos.eecs.wsu.edu/ 584 | http://centos.mirrors.tds.net/pub/linux/centos/ 585 | http://mirror.cs.uwp.edu/pub/centos/ 586 | -------------------------------------------------------------------------------- /files/epel_mirrors: -------------------------------------------------------------------------------- 1 | http://epel.mirrors.arminco.com 2 | http://fedora.aau.at/epel 3 | http://mirror.inode.at/epel 4 | http://mirror.nextlayer.at/epel 5 | http://epel.mirror.digitalpacific.com.au 6 | http://fedora.melbourneitmirror.net/epel 7 | http://fedora.mirror.serversaustralia.com.au/epel 8 | http://epel.mirror.web24.net.au 9 | http://mirror.aarnet.edu.au/pub/epel 10 | http://mirror.as24220.net/pub/epel 11 | http://mirror.intergrid.com.au/epel 12 | http://mirror.nsw.coloau.com.au/epel 13 | http://mirror.optus.net/epel 14 | http://mirror.overthewire.com.au/pub/epel 15 | http://mirror.xeonbd.com/fedora-epel 16 | http://epel.mirror.nucleus.be 17 | http://fedora.cu.be/epel 18 | http://mirror.kinamo.be/epel 19 | http://mirror.host.ag/epel 20 | http://mirrors.neterra.net/epel 21 | http://mirrors.netix.net/epel 22 | http://mirrors.uni-ruse.bg/epel 23 | http://mirror.datacenter.by/pub/fedoraproject.org/epel 24 | http://fedora-epel.mirror.iweb.com 25 | http://fedora.westmancom.com/epel 26 | http://mirror.csclub.uwaterloo.ca/fedora/epel 27 | http://mirror.its.dal.ca/pub/epel 28 | http://muug.ca/mirror/fedora-epel 29 | http://mirror.spreitzer.ch/epel 30 | http://mirror.switch.ch/ftp/mirror/epel 31 | http://pkg.adfinis-sygroup.ch/epel 32 | http://epel.gtdinternet.com 33 | http://mirrors.aliyun.com/epel 34 | http://mirrors.yun-idc.com/epel 35 | http://mirror.lzu.edu.cn/epel 36 | http://mirrors.sohu.com/fedora-epel 37 | http://mirrors.tongji.edu.cn/epel 38 | http://mirrors.tuna.tsinghua.edu.cn/epel 39 | http://mirrors.tuna.tsinghua.edu.cn/fedora-altarch 40 | http://mirrors.ustc.edu.cn/epel 41 | http://mirrors.ustc.edu.cn/fedora-altarch 42 | http://mirror.upb.edu.co/epel 43 | http://mirrors.ucr.ac.cr/epel 44 | http://ftp.fi.muni.cz/pub/linux/fedora/epel 45 | http://mirror.hosting90.cz/epel 46 | http://mirror.karneval.cz/pub/linux/fedora/epel 47 | http://mirror.slu.cz/epel 48 | http://mirrors.nic.cz/epel 49 | http://mirror.vutbr.cz/epel 50 | http://fedora.tu-chemnitz.de/pub/linux/fedora-epel 51 | http://ftp.fau.de/epel 52 | http://ftp-stud.hs-esslingen.de/pub/epel 53 | http://ftp.uni-bayreuth.de/linux/fedora-epel 54 | http://ftp.uni-kl.de/pub/linux/fedora-epel 55 | http://ftp.uni-stuttgart.de/epel 56 | http://ftp.wrz.de/pub/fedora-epel 57 | http://mirror.23media.de/epel 58 | http://mirror.de.leaseweb.net/epel 59 | http://mirror.euserv.net/linux/fedora-epel 60 | http://mirror.imt-systems.com/epel 61 | http://mirror.infonline.de/epel 62 | http://mirror.netcologne.de/fedora-epel 63 | http://mirrors.n-ix.net/fedora-epel 64 | http://mirror.wiuwiu.de/epel 65 | http://scientificlinux.physik.uni-muenchen.de/mirror/epel 66 | http://vesta.informatik.rwth-aachen.de/ftp/pub/Linux/fedora-epel 67 | http://ftp.crc.dk/fedora-epel 68 | http://mirror.netsite.dk/epel 69 | http://mirrors.dotsrc.org/fedora-epel 70 | http://mirror.cedia.org.ec/epel 71 | http://mirror.epn.edu.ec/epel 72 | http://mirror.espoch.edu.ec/epel 73 | http://mirror.uta.edu.ec/epel 74 | http://ftp.uma.es/mirror/epel 75 | http://es-mirrors.evowise.com/epel 76 | http://ftp.cica.es/epel 77 | http://ftp.rediris.es/mirror/fedora-epel 78 | http://mirror.airenetworks.es/epel 79 | http://mirror.uv.es/mirror/fedora-epel 80 | http://www.nic.funet.fi/pub/mirrors/fedora.redhat.com/pub/epel 81 | http://epel.mirror.far.fi 82 | http://epel.mirrors.ovh.net/epel 83 | http://fr2.rpmfind.net/linux/epel 84 | http://mir01.syntis.net/epel 85 | http://mirror.ibcp.fr/pub/epel 86 | http://mirror.in2p3.fr/pub/epel 87 | http://mirrors.ircam.fr/pub/fedora/epel 88 | http://anorien.csc.warwick.ac.uk/mirrors/epel 89 | http://mirror.sax.uk.as61049.net/epel 90 | http://mirror.bytemark.co.uk/fedora/epel 91 | http://mirror.freethought-internet.co.uk/epel 92 | http://mirror.netweaver.uk/epel 93 | http://mirrors.coreix.net/fedora-epel 94 | http://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel 95 | http://mirrors.ukfast.co.uk/sites/dl.fedoraproject.org/pub/epel 96 | http://mirror.vorboss.net/fedora/epel 97 | http://uk-mirrors.evowise.com/epel 98 | http://epel.grena.ge 99 | http://epel.mirror.srv.magticom.ge 100 | http://ftp.cc.uoc.gr/pub/linux/epel 101 | http://ftp.ntua.gr/pub/linux/fedora-epel 102 | http://ftp.cuhk.edu.hk/pub/linux/fedora-epel 103 | http://ftp.cuhk.edu.hk/pub/linux/fedora-archive 104 | http://mirror.miletic.net/pub/fedoraproject/epel 105 | http://buaya.klas.or.id/epel 106 | http://kartolo.sby.datautama.net.id/EPEL 107 | http://mirror.nes.co.id/epel 108 | http://mirror.poliwangi.ac.id/epel 109 | http://mirror.smartmedia.net.id/epel 110 | http://repo.ugm.ac.id/epel 111 | http://mirror.nonstop.co.il/epel 112 | http://del-mirrors.extreme-ix.org/epel 113 | http://epel.excellmedia.net 114 | http://mirrors.piconets.webwerks.in/fedora-mirror/epel 115 | http://mirror.vbctv.in/epel 116 | http://epel.scopesky.iq 117 | http://mirror.earthlink.iq/pub/epel 118 | http://www.fedora.is/fedora/epel 119 | http://fedora.nyherji.is/epel 120 | http://ftp.iij.ad.jp/pub/linux/Fedora/epel 121 | http://ftp.jaist.ac.jp/pub/Linux/Fedora/epel 122 | http://ftp.kddilabs.jp/Linux/packages/fedora/epel 123 | http://ftp.kddilabs.jp/Linux/packages/fedora/archive 124 | http://ftp.riken.jp/Linux/fedora/epel 125 | http://ftp.tsukuba.wide.ad.jp/Linux/fedora/epel 126 | http://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora-projects/epel 127 | http://mirror.dmmlabs.jp/linux/fedora/epel 128 | http://www.ftp.ne.jp/Linux/distributions/fedora/epel 129 | http://mirror.liquidtelecom.com/fedora/epel 130 | http://mirror.premi.st/epel 131 | http://mirror.bacloud.com/epel 132 | http://mirror.duomenucentras.lt/epel 133 | http://mirror.vpsnet.com/epel 134 | http://mirrors.mivocloud.com/epel 135 | http://repo.fedora.md/mirrors/epel 136 | http://mirror.t-home.mk/epel 137 | http://epel.blizoo.mk/epel 138 | http://download.polytechnic.edu.na/pub/fedora/epel 139 | http://mirror.lagoon.nc/pub/epel 140 | http://epel.mirror.wearetriple.com 141 | http://ftp.nluug.nl/pub/os/Linux/distr/fedora-epel 142 | http://mirror.1000mbps.com/epel 143 | http://mirror.ehv.weppel.nl/epel 144 | http://mirror.i3d.net/pub/fedora-epel 145 | http://mirror.neostrada.nl/epel 146 | http://mirror.nl.leaseweb.net/epel 147 | http://mirror.serverbeheren.nl/epel 148 | http://mirror.xnet.co.nz/pub/epel 149 | http://ucmirror.canterbury.ac.nz/linux/fedora/fedora-epel 150 | http://mirror.pregi.net/pub/Linux/Fedora/epel 151 | http://mirror.pregi.net/epel 152 | http://mirror.rise.ph/fedora-epel 153 | http://mirrors.nayatel.com/epel 154 | http://ftp.icm.edu.pl/pub/Linux/fedora/linux/epel 155 | http://ftp.pbone.net/pub/fedora/epel 156 | http://ftp.pbone.net/mirror/archive.fedoraproject.org 157 | http://ftp.wcss.pl/pub/linux/epel 158 | http://mirror.onet.pl/pub/mirrors/fedora/linux/epel 159 | http://mirrors.upr.edu/epel 160 | http://mirrors.up.pt/fedora-epel 161 | http://fedora.mirrors.telekom.ro/pub/epel 162 | http://ftp.ines.lug.ro/fedora/epel 163 | http://ftp.upcnet.ro/mirrors/fedora/pub/epel 164 | http://mirrors.nav.ro/epel 165 | http://mirrors.nxthost.com/fedora-epel 166 | http://mirror.etf.bg.ac.rs/epel 167 | http://mirror.pmf.kg.ac.rs/fedora/epel 168 | http://fedora-mirror01.rbc.ru/pub/epel 169 | http://mirror.awanti.com/epel 170 | http://mirror.linux-ia64.org/epel 171 | http://mirror.logol.ru/epel 172 | http://mirrors.powernet.com.ru/fedora/epel 173 | http://mirror.yandex.ru/epel 174 | http://mirror.yandex.ru/fedora-secondary 175 | http://mirrors.isu.net.sa/pub/fedora/fedora-epel 176 | http://ftp.acc.umu.se/mirror/fedora/epel 177 | http://ftp.lysator.liu.se/pub/epel 178 | http://mirror.nsc.liu.se/fedora-epel 179 | http://mirrors.glesys.net/fedora/epel 180 | http://mirror.zetup.net/fedora-epel 181 | http://ftp.arnes.si/mirrors/epel 182 | http://ftp.upjs.sk/pub/mirrors/epel 183 | http://mirror.digmia.com/epel 184 | http://mirror.ynet.sk/epel 185 | http://mirrors.nipa.cloud/epel 186 | http://mirror1.ku.ac.th/fedora/epel 187 | http://mirror2.totbb.net/epel 188 | http://mirrors.bangmodhosting.com/epel 189 | http://mirrors.bestthaihost.com/epel 190 | http://mirrors.thzhost.com/epel 191 | http://fedora.mirror.tn/pub/epel 192 | http://ftp.linux.org.tr/epel 193 | http://mirror.dgn.net.tr/epel 194 | http://mirror.veriteknik.net.tr/epel 195 | http://repo.boun.edu.tr/epel 196 | http://ftp.yzu.edu.tw/Linux/Fedora-EPEL 197 | http://mirror01.idc.hinet.net/EPEL 198 | http://epel.besthosting.ua 199 | http://epel.ip-connect.vn.ua 200 | http://ftp.colocall.net/pub/epel 201 | http://mirror.omnilance.com/epel 202 | http://mirrors.colocall.net/epel 203 | http://archive.linux.duke.edu/pub/epel 204 | http://download-ib01.fedoraproject.org/pub/epel 205 | http://download-ib01.fedoraproject.org/pub/alt 206 | http://epel.mirror.constant.com 207 | http://fedora-epel.mirrors.tds.net/fedora-epel 208 | http://fedora-epel.mirror.lstn.net 209 | http://fedora.mirrors.pair.com/epel 210 | http://ftp.cse.buffalo.edu/pub/epel 211 | http://mirror.utexas.edu/epel 212 | http://kdeforge2.unl.edu/mirrors/epel 213 | http://la-mirrors.evowise.com/epel 214 | http://linux.mirrors.es.net/fedora-epel 215 | http://mirror.ancl.hawaii.edu/linux/epel 216 | http://mirror.beyondhosting.net/epel 217 | http://mirror.chpc.utah.edu/pub/epel 218 | http://mirror.clarkson.edu/fedora-epel 219 | http://mirror.coastal.edu/epel 220 | http://mirror.cogentco.com/pub/linux/epel 221 | http://mirror.compevo.com/epel 222 | http://mirror.cs.pitt.edu/epel 223 | http://mirror.cs.princeton.edu/pub/mirrors/epel 224 | http://mirror.datto.com/fedora/epel 225 | http://mirror.math.princeton.edu/pub/epel 226 | http://mirror.grid.uchicago.edu/pub/linux/epel 227 | http://mirror.hmc.edu/epel 228 | http://mirror.metrocast.net/fedora/epel 229 | http://mirror.mrjester.net/fedora/epel 230 | http://mirror.nodesdirect.com/epel 231 | http://mirror.oss.ou.edu/epel 232 | http://mirror.pnl.gov/epel 233 | http://mirror.prgmr.com/pub/epel 234 | http://mirror.redsox.cc/fedora-epel 235 | http://mirror.rnet.missouri.edu/epel 236 | http://mirrors.cat.pdx.edu/epel 237 | http://mirror.seas.harvard.edu/epel 238 | http://mirror.sfo12.us.leaseweb.net/epel 239 | http://mirror.sjc02.svwh.net/fedora-epel 240 | http://mirrors.liquidweb.com/fedora-epel 241 | http://mirrors.lug.mtu.edu/epel 242 | http://mirrors.mit.edu/epel 243 | http://mirror.solarvps.com/epel 244 | http://mirrors.develooper.com/epel 245 | http://mirrors.sonic.net/epel 246 | http://mirrors.syringanetworks.net/fedora-epel 247 | http://mirror.steadfast.net/epel 248 | http://mirrors.tummy.com/pub/fedora.redhat.com/epel 249 | http://mirrors.tummy.com/pub/fedora.redhat.com/secondary 250 | http://mirrors.kernel.org/fedora-epel 251 | http://mirrors.xmission.com/fedora-epel 252 | http://mirror.team-cymru.com/epel 253 | http://mirror.texas3006.com/epel 254 | http://mirror.uic.edu/EPEL 255 | http://mirror.umd.edu/fedora/epel 256 | http://mirror.us.leaseweb.net/epel 257 | http://mirror.us-midwest-1.nexcess.net/epel 258 | http://mirror.vcu.edu/pub/gnu+linux/epel 259 | http://ny-mirrors.evowise.com/epel 260 | http://pubmirror1.math.uh.edu/fedora-buffet/epel 261 | http://pubmirror1.math.uh.edu/fedora-buffet/fedora-secondary 262 | http://pubmirror1.math.uh.edu/fedora-buffet/alt 263 | http://pubmirror1.math.uh.edu/fedora-buffet/archive 264 | http://pubmirror2.math.uh.edu/fedora-buffet/epel 265 | http://reflector.westga.edu/repos/Fedora-EPEL 266 | http://mirrors.rit.edu/fedora/epel 267 | http://mirrors.rit.edu/fedora/archive 268 | http://mirror.ehost.vn/epel 269 | http://mirror.vinahost.vn/epel 270 | http://fedora.is.co.za/epel 271 | http://fedora.mirror.ac.za/epel 272 | http://mirror.wbs.co.za/fedora-epel -------------------------------------------------------------------------------- /files/fedora_mirrors: -------------------------------------------------------------------------------- 1 | http://fedora.aau.at/linux 2 | http://fedora.inode.at 3 | http://fedora.melbourneitmirror.net/fedora/linux 4 | http://mirror.crucial.com.au/fedora/linux 5 | http://fedora.mirror.digitalpacific.com.au/linux 6 | http://ftp.iinet.net.au/pub/fedora/linux 7 | http://ftp.swin.edu.au/fedora 8 | http://mirror.aarnet.edu.au/pub/fedora/linux 9 | http://mirror.as24220.net/pub/fedora 10 | http://mirror.as24220.net/pub/fedora-alt 11 | http://mirror.optus.net/fedora/linux 12 | http://mirror.dhakacom.com/fedora/linux 13 | http://fedora.linuxman.biz/linux 14 | http://mirror.host.ag/fedora 15 | http://mirrors.netix.net/fedora/linux 16 | http://mirrors.uni-ruse.bg/fedora/linux 17 | http://fedora.c3sl.ufpr.br/linux 18 | http://ftp.byfly.by/pub/fedoraproject.org/linux 19 | http://mirror.datacenter.by/pub/fedoraproject.org/linux 20 | http://mirror.datacenter.by/pub/fedoraproject.org/alt 21 | http://fedora.bhs.mirrors.ovh.net/linux 22 | http://fedora.mirror.iweb.com/linux 23 | http://mirror.csclub.uwaterloo.ca/fedora/linux 24 | http://mirror.its.dal.ca/pub/fedora/linux 25 | http://mirror.its.sfu.ca/mirror/fedora/linux 26 | http://muug.ca/mirror/fedora/linux 27 | http://mirror.cpsc.ucalgary.ca/mirror/fedora/linux 28 | http://mirror.switch.ch/ftp/mirror/fedora/linux 29 | http://fedora.gtdinternet.com 30 | http://mirrors.yun-idc.com/fedora 31 | http://mirrors.163.com/fedora 32 | http://mirrors.njupt.edu.cn/fedora 33 | http://mirrors.sohu.com/fedora 34 | http://mirrors.tuna.tsinghua.edu.cn/fedora 35 | http://mirrors.ustc.edu.cn/fedora 36 | http://mirror.upb.edu.co/fedora/linux 37 | http://mirrors.ucr.ac.cr/fedora 38 | http://mirror.library.ucy.ac.cy/linux/fedora/linux 39 | http://ftp.fi.muni.cz/pub/linux/fedora/linux 40 | http://mirror.karneval.cz/pub/linux/fedora/linux 41 | http://mirror.slu.cz/fedora/linux 42 | http://mirrors.nic.cz/fedora/linux 43 | http://mirror.vutbr.cz/fedora 44 | http://fedora.tu-chemnitz.de/pub/linux/fedora/linux 45 | http://ftp.fau.de/fedora/linux 46 | http://ftp.halifax.rwth-aachen.de/fedora/linux 47 | http://ftp.informatik.uni-frankfurt.de/fedora 48 | http://ftp-stud.hs-esslingen.de/pub/fedora/linux 49 | http://ftp-stud.hs-esslingen.de/pub/fedora-secondary 50 | http://ftp.uni-bayreuth.de/linux/fedora/linux 51 | http://ftp.uni-kl.de/pub/linux/fedora/linux 52 | http://mirror.23media.de/fedora/linux 53 | http://mirror2.hs-esslingen.de/fedora/linux 54 | http://mirror.de.leaseweb.net/fedora/linux 55 | http://mirror.euserv.net/linux/fedora/linux 56 | http://mirror.infonline.de/fedora/linux 57 | http://mirror.netcologne.de/fedora/linux 58 | http://mirrors.n-ix.net/fedora/linux 59 | http://vesta.informatik.rwth-aachen.de/ftp/pub/Linux/fedora/linux 60 | http://ftp.klid.dk/ftp/fedora 61 | http://mirror.easyspeedy.com/fedora 62 | http://mirror.netsite.dk/fedora/linux 63 | http://mirrors.dotsrc.org/fedora/linux 64 | http://mirror.cedia.org.ec/fedora/linux 65 | http://mirror.epn.edu.ec/fedora/linux 66 | http://mirror.uta.edu.ec/fedora/linux 67 | http://ftp.uma.es/mirror/fedora/linux 68 | http://es-mirrors.evowise.com/fedora 69 | http://ftp.cica.es/fedora/linux 70 | http://ftp.udl.es/pub/fedora/linux 71 | http://mirror.uv.es/mirror/fedora/linux 72 | http://www.nic.funet.fi/pub/mirrors/fedora.redhat.com/pub/fedora/linux 73 | http://distrib-coffee.ipsl.jussieu.fr/pub/linux/fedora/linux 74 | http://fedora.mirrors.ovh.net/linux 75 | http://fr2.rpmfind.net/linux/fedora/linux 76 | http://ftp.ciril.fr/pub/linux/fedora/linux 77 | http://ftp.lip6.fr/ftp/pub/linux/distributions/fedora 78 | http://mirror.in2p3.fr/pub/fedora/linux 79 | http://mirrors.ircam.fr/pub/fedora/linux 80 | http://mirror.bytemark.co.uk/fedora/linux 81 | http://mirror.ox.ac.uk/sites/download.fedora.redhat.com/pub/fedora/linux 82 | http://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/fedora/linux 83 | http://mirror.sucs.org/pub/linux/fedora 84 | http://mirror.vorboss.net/fedora/linux 85 | http://uk-mirrors.evowise.com/fedora 86 | http://ftp.cc.uoc.gr/pub/linux/fedora/linux 87 | http://ftp.ntua.gr/pub/linux/fedora/linux 88 | http://ftp.otenet.gr/linux/fedora/linux 89 | http://ftp.cuhk.edu.hk/pub/linux/fedora 90 | http://ftp.cuhk.edu.hk/pub/Linux/fedora 91 | http://mirror.miletic.net/pub/fedoraproject/fedora/linux 92 | http://ftp.freepark.org/pub/linux/distributions/fedora/linux 93 | http://ftp.fsn.hu/pub/linux/distributions/fedora/linux 94 | http://fedora.dionipe.id 95 | http://kambing.ui.edu/fedora 96 | http://kartolo.sby.datautama.net.id/fedora 97 | http://mirror.dionipe.net/fedora 98 | http://mirror.smartmedia.net.id/fedora/linux 99 | http://repo.ugm.ac.id/fedora 100 | http://mirror.isoc.org.il/pub/fedora 101 | http://mirror.nonstop.co.il/fedora/linux 102 | http://fedora.excellmedia.net 103 | http://fedora.iitm.ac.in 104 | http://mirrors.piconets.webwerks.in/fedora-mirror/fedora/linux 105 | http://mirror.cse.iitk.ac.in/fedora/linux 106 | http://www.fedora.is/fedora 107 | http://fedora.mirror.garr.it/mirrors/fedora/linux 108 | http://ftp.iij.ad.jp/pub/linux/Fedora/fedora/linux 109 | http://ftp.jaist.ac.jp/pub/Linux/Fedora 110 | http://ftp.kddilabs.jp/Linux/packages/fedora 111 | http://ftp.riken.jp/Linux/fedora 112 | http://ftp.tsukuba.wide.ad.jp/Linux/fedora/linux 113 | http://ftp.yz.yamagata-u.ac.jp/pub/linux/fedora-projects/fedora/linux 114 | http://mirror.dmmlabs.jp/linux/fedora 115 | http://www.ftp.ne.jp/Linux/distributions/fedora 116 | http://mirror.liquidtelecom.com/fedora/fedora/linux 117 | http://mirror.liquidtelecom.com/fedora/archive 118 | http://ftp.kaist.ac.kr/fedora 119 | http://mirror.vpsnet.com/fedora/linux 120 | http://fedora.mirror.root.lu 121 | http://repo.fedora.md/fedora/linux 122 | http://fedora.blizoo.mk/fedora/linux 123 | http://download.polytechnic.edu.na/pub/fedora/linux 124 | http://ftp.polytechnic.edu.na/pub/fedora/linux 125 | http://mirror.lagoon.nc/pub/fedora/linux 126 | http://fedora.mirror.wearetriple.com/linux 127 | http://ftp.nluug.nl/pub/os/Linux/distr/fedora/linux 128 | http://ftp.nluug.nl/os/Linux/distr/fedora-secondary 129 | http://ftp.tudelft.nl/download.fedora.redhat.com/linux 130 | http://mirror.1000mbps.com/fedora/linux 131 | http://mirror.i3d.net/pub/fedora/linux 132 | http://mirror.nl.leaseweb.net/fedora/linux 133 | http://ftp.wicks.co.nz/pub/linux/dist/fedora 134 | http://ucmirror.canterbury.ac.nz/linux/fedora/linux 135 | http://mirror.pregi.net/fedora 136 | http://mirror.rise.ph/fedora/linux 137 | http://mirrors.nayatel.com/fedora 138 | http://ftp.icm.edu.pl/pub/Linux/fedora/linux 139 | http://ftp.icm.edu.pl/pub/Linux/dist/fedora-secondary 140 | http://ftp.man.poznan.pl/pub/linux/fedora 141 | http://ftp.pbone.net/pub/fedora/linux 142 | http://ftp.wsisiz.edu.pl/pub/linux/fedora/linux 143 | http://mirror.onet.pl/pub/mirrors/fedora/linux 144 | http://fedora.dcc.fc.up.pt/linux 145 | http://ftp.dei.uc.pt/pub/linux/fedora 146 | http://mirrors.up.pt/fedora 147 | http://fedora.mirrors.telekom.ro/pub/fedora/linux 148 | http://ftp.ines.lug.ro/fedora/linux 149 | http://ftp.upcnet.ro/mirrors/fedora/pub/fedora/linux 150 | http://mirrors.nav.ro/fedora/linux 151 | http://mirrors.nxthost.com/fedora-enchilada 152 | http://mirror.etf.bg.ac.rs/fedora 153 | http://mirror.pmf.kg.ac.rs/fedora/linux 154 | http://fedora-mirror01.rbc.ru/pub/fedora/linux 155 | http://fedora-mirror01.rbc.ru/pub/fedora-archive 156 | http://ftp.neva.ru/Linux-Distrib/Fedora/linux 157 | http://mirror.linux-ia64.org/fedora/linux 158 | http://mirror.yandex.ru/fedora/linux 159 | http://ftp.acc.umu.se/mirror/fedora/linux 160 | http://mirror.zetup.net/fedora-enchilada 161 | http://mirror.0x.sg/fedora/linux 162 | http://ftp.upjs.sk/pub/fedora/linux 163 | http://mirror.digmia.com/fedora 164 | http://mirrors.nipa.cloud/fedora 165 | http://mirror1.ku.ac.th/fedora 166 | http://mirror2.totbb.net/fedora/linux 167 | http://fedora.mirror.tn/pub/fedora/linux 168 | http://ftp.itu.edu.tr/Mirror/Fedora/linux 169 | http://ftp.linux.org.tr/fedora 170 | http://linus.iyte.edu.tr/linux/fedora/linux 171 | http://mirror.dgn.net.tr/fedora 172 | http://mirror.veriteknik.net.tr/fedora/linux 173 | http://ftp.isu.edu.tw/pub/Linux/Fedora/linux 174 | http://ftp.ncnu.edu.tw/Linux/Fedora/linux 175 | http://ftp.stu.edu.tw/Linux/Fedora/linux 176 | http://ftp.yzu.edu.tw/Linux/Fedora/linux 177 | http://fedora.ip-connect.vn.ua/linux 178 | http://ftp.colocall.net/pub/fedora/linux 179 | http://archive.linux.duke.edu/pub/fedora/linux 180 | http://download-ib01.fedoraproject.org/pub/fedora/linux 181 | http://download-ib01.fedoraproject.org/pub/fedora-secondary 182 | http://fedora.mirror.constant.com/fedora/linux 183 | http://fedora.mirror.lstn.net 184 | http://fedora.mirrors.pair.com/linux 185 | http://ftp.cse.buffalo.edu/pub/fedora/linux 186 | http://ftp.usf.edu/pub/fedora/linux 187 | http://ftp.ussg.iu.edu/linux/fedora/linux 188 | http://mirror.utexas.edu/fedora/linux 189 | http://kdeforge2.unl.edu/mirrors/fedora/linux 190 | http://la-mirrors.evowise.com/fedora 191 | http://linux.mirrors.es.net/fedora 192 | http://mirror.ancl.hawaii.edu/linux/fedora 193 | http://mirror.cc.vt.edu/pub/fedora/linux 194 | http://mirror.chpc.utah.edu/pub/fedora/linux 195 | http://mirror.chpc.utah.edu/pub/fedora-secondary 196 | http://mirror.clarkson.edu/fedora/linux 197 | http://mirror.cogentco.com/pub/linux/fedora/linux 198 | http://mirror.cs.pitt.edu/fedora/linux 199 | http://mirror.cs.princeton.edu/pub/mirrors/fedora/linux 200 | http://mirror.datto.com/fedora/primary 201 | http://mirror.math.princeton.edu/pub/fedora/linux 202 | http://mirror.hmc.edu/fedora/linux 203 | http://mirror.liberty.edu/mirror/fedora/linux 204 | http://mirror.metrocast.net/fedora/linux 205 | http://mirror.mrjester.net/fedora/linux 206 | http://mirror.nodesdirect.com/fedora 207 | http://mirror.oss.ou.edu/fedora 208 | http://mirror.pnl.gov/fedora/linux 209 | http://mirror.prgmr.com/pub/fedora/linux 210 | http://mirror.redsox.cc/fedora/linux 211 | http://mirror.rnet.missouri.edu/fedora/linux 212 | http://mirrors.cat.pdx.edu/fedora/linux 213 | http://mirror.seas.harvard.edu/fedora/linux 214 | http://mirror.sfo12.us.leaseweb.net/fedora/linux 215 | http://mirror.sjc02.svwh.net/fedora 216 | http://mirror.sjc02.svwh.net/fedora-secondary 217 | http://mirrors.liquidweb.com/fedora 218 | http://mirrors.lug.mtu.edu/fedora/linux 219 | http://mirrors.mit.edu/fedora/linux 220 | http://mirrors.oit.uci.edu/fedora/linux 221 | http://mirrors.rit.edu/fedora/fedora/linux 222 | http://mirrors.rit.edu/fedora/alt 223 | http://mirrors.rit.edu/fedora/fedora-secondary 224 | http://mirrors.syringanetworks.net/fedora/linux 225 | http://mirror.steadfast.net/fedora 226 | http://mirrors.tummy.com/pub/fedora.redhat.com/fedora/linux 227 | http://mirrors.kernel.org/fedora 228 | http://mirrors.kernel.org/fedora-secondary 229 | http://mirrors.kernel.org/fedora-alt 230 | http://mirrors.kernel.org/fedora-buffet/archive 231 | http://mirrors.xmission.com/fedora/linux 232 | http://mirror.umd.edu/fedora/linux 233 | http://mirror.uoregon.edu/fedora/linux 234 | http://mirror.us.leaseweb.net/fedora/linux 235 | http://mirror.us-midwest-1.nexcess.net/fedora 236 | http://mirror.vcu.edu/pub/gnu+linux/fedora 237 | http://mirror.web-ster.com/fedora 238 | http://ny-mirrors.evowise.com/fedora 239 | http://pubmirror1.math.uh.edu/fedora-buffet/fedora/linux 240 | http://pubmirror2.math.uh.edu/fedora-buffet/fedora/linux 241 | http://pubmirror2.math.uh.edu/fedora-buffet/fedora-secondary 242 | http://repo.atlantic.net/fedora/linux 243 | http://mirror.digistar.vn/fedora/linux 244 | http://fedora.is.co.za/linux 245 | http://ftp.sun.ac.za/ftp/pub/mirrors/fedora 246 | http://www.ftp.saix.net/linux/distributions/fedora/linux 247 | http://mirror.wbs.co.za/fedora-enchilada -------------------------------------------------------------------------------- /files/mirrors_alpine: -------------------------------------------------------------------------------- 1 | http://dl-cdn.alpinelinux.org/alpine/ 2 | -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -uexo pipefail 4 | 5 | which greadlink >/dev/null 2>/dev/null && readlink=greadlink || readlink=readlink 6 | rundir=$($readlink -f "${0%/*}") 7 | cd "$rundir" 8 | 9 | NAME="acng" 10 | SCOPE="deployable" 11 | SCOPE_NAME="${SCOPE}/${NAME}" 12 | CONTAINER_NAME="${NAME}" 13 | 14 | cmd=${1:-build} 15 | shift 16 | 17 | #### 18 | 19 | run_release(){ 20 | git tag $(date +%Y%m%d) 21 | git push 22 | git push --tags 23 | } 24 | 25 | run_build(){ 26 | docker pull debian:9 27 | run_build_mirrors 28 | run_build_plain 29 | run_build_au 30 | run_build_uk 31 | run_build_us 32 | } 33 | run_build_plain(){ 34 | local tag=${1:-latest} 35 | docker build -t ${SCOPE_NAME}:latest . 36 | } 37 | run_build_au(){ 38 | local tag=${1:-latest-au} 39 | docker build -f Dockerfile.au -t ${SCOPE_NAME}:$tag . 40 | } 41 | run_build_uk(){ 42 | local tag=${1:-latest-uk} 43 | docker build -f Dockerfile.uk -t ${SCOPE_NAME}:$tag . 44 | } 45 | run_build_us(){ 46 | local tag=${1:-latest-us} 47 | docker build -f Dockerfile.us -t ${SCOPE_NAME}:$tag . 48 | } 49 | 50 | run_build_mirrors(){ 51 | node src/fetch-mirrors.js 52 | } 53 | run_build_mirrors_build(){ 54 | babel src/fetch-mirrors.es2017 > src/fetch-mirrors.js 55 | } 56 | 57 | 58 | run_run(){ 59 | run_run_tag=${1:-latest} 60 | run_run_image=${SCOPE_NAME} 61 | if [ -n "$run_run_tag" ]; then 62 | run_run_image="${run_run_image}:$run_run_tag" 63 | fi 64 | docker run --restart always -d -v apt-cacher-ng-vol:/var/cache/apt-cacher-ng:rw --name ${CONTAINER_NAME} -p 3142:3142 ${run_run_image} 65 | } 66 | 67 | run_run_au(){ 68 | run_run latest-au 69 | } 70 | run_run_uk(){ 71 | run_run latest-uk 72 | } 73 | run_run_us(){ 74 | run_run latest-us 75 | } 76 | 77 | run_stop(){ 78 | if docker inspect ${CONTAINER_NAME} >/dev/null; then 79 | docker stop ${CONTAINER_NAME}; 80 | fi 81 | } 82 | 83 | run_rm(){ 84 | if docker inspect ${CONTAINER_NAME} >/dev/null; then 85 | docker rm ${CONTAINER_NAME} 86 | fi 87 | } 88 | 89 | run_logs(){ 90 | docker logs -f ${CONTAINER_NAME} 91 | } 92 | 93 | run_rebuild(){ 94 | run_build 95 | run_stop 96 | run_rm 97 | run_run 98 | } 99 | 100 | label_vcsref(){ 101 | git_revision=$(git rev-parse --verify HEAD) 102 | perl -i -pane 's!org\.label-schema\.vcs-ref.*!org.label-schema.vcs-ref = "'$git_revision'" \\!g;' Dockerfile 103 | } 104 | 105 | git_tag(){ 106 | git tag -f $(date +%Y%m%d) && git push -f --tags 107 | } 108 | 109 | #### 110 | 111 | run_help(){ 112 | echo "Commands:" 113 | awk '/ ".*"/{ print " "substr($1,2,length($1)-3) }' make.sh 114 | } 115 | 116 | set -x 117 | 118 | case $cmd in 119 | "release") run_release "$@";; 120 | "build") run_build "$@";; 121 | "build:plain") run_build_plain "$@";; 122 | "build:au") run_build_au "$@";; 123 | "build:us") run_build_us "$@";; 124 | "build:uk") run_build_uk "$@";; 125 | "build:mirrors") run_build_mirrors "$@";; 126 | "build:mirrors:src") run_build_mirrors_build "$@";; 127 | "rebuild") run_rebuild "$@";; 128 | "template") run_template "$@";; 129 | "start") run_run "$@";; 130 | "run") run_run "$@";; 131 | "run:au") run_run_au "$@";; 132 | "run:uk") run_run_uk "$@";; 133 | "run:us") run_run_us "$@";; 134 | "stop") run_stop "$@";; 135 | "rm") run_rm "$@";; 136 | "logs") run_logs "$@";; 137 | '-h'|'--help'|'h'|'help') run_help;; 138 | esac 139 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docker-apt-cacher-ng", 3 | "version": "1.5.0", 4 | "description": "tests for docker ", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "mocha test/*.coffee" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/deployable/docker-apt-cacher-ng.git" 12 | }, 13 | "keywords": [ 14 | "docker", 15 | "apt-cacher-ng", 16 | "proxy", 17 | "cache", 18 | "package" 19 | ], 20 | "author": "Matt Hoyle", 21 | "license": "ISC", 22 | "bugs": { 23 | "url": "https://github.com/deployable/docker-apt-cacher-ng/issues" 24 | }, 25 | "homepage": "https://github.com/deployable/docker-apt-cacher-ng#readme", 26 | "devDependencies": { 27 | "babel-cli": "^6.26.0", 28 | "babel-plugin-transform-async-to-module-method": "^6.24.1", 29 | "babel-preset-env": "^1.6.1", 30 | "chai": "^3.5.0", 31 | "cheerio": "^1.0.0-rc.2", 32 | "coffeescript": "^1.12.4", 33 | "mocha": "^3.2.0" 34 | }, 35 | "dependencies": { 36 | "bluebird": "^3.5.1", 37 | "debug": "^3.1.0", 38 | "needle": "^2.1.0" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/fetch-mirrors.es2017: -------------------------------------------------------------------------------- 1 | const Promise = require('bluebird') 2 | Promise.config({ longStackTraces: true, warnings: true }) 3 | const cheerio = require('cheerio') 4 | const needle = require('needle') 5 | const debug = require('debug')('mh:docker:kind:mirrors') 6 | const fs = Promise.promisifyAll(require('fs')) 7 | const readline = require('readline') 8 | const path = require('path') 9 | 10 | 11 | class Fetch { 12 | 13 | // Fetch a url and load it into cheerio for querying 14 | static async fetchAndCheerio(url){ 15 | debug('retriving url: %s', url) 16 | let response = await needle('get', url) 17 | debug('retrieved response:', response.body) 18 | return cheerio.load(response.body) 19 | } 20 | 21 | static /*async*/ fetchCentos(){ 22 | return new Promise((resolve,reject) => { 23 | let response = needle.get('https://www.centos.org/download/full-mirrorlist.csv') 24 | const line_reader = require('readline').createInterface({ 25 | input: response 26 | }) 27 | 28 | const mirrors = ['http://mirror.centos.org/'] 29 | 30 | line_reader.on('line', line => { 31 | // poor mans csv parsing, remove leading and trailing `"`s 32 | // then split the string on `","`. 33 | // Only works when every field is quoted with `"` 34 | line.replace(/^"/,'').replace(/"$/,'') 35 | let fields = line.split(/","/) 36 | if ( fields.length > 4 && fields[4] && fields[4] !== 'http mirror link' ) { 37 | debug('fields', fields) 38 | mirrors.push(fields[4]) 39 | } 40 | else { 41 | if ( 42 | fields.length === 1 || 43 | ( fields[5] && fields[5].includes('ftp') ) || 44 | fields[4] === 'http mirror link' 45 | ) return 46 | console.error('centos - bad line', line) 47 | } 48 | }) 49 | 50 | line_reader.on('close', ()=>{ 51 | debug('centos mirrors', mirrors.join("\n")) 52 | resolve(mirrors) 53 | }) 54 | 55 | line_reader.on('error', ()=> reject(error)) 56 | }) 57 | } 58 | 59 | static async fetchEpel(){ 60 | let $ = await this.fetchAndCheerio('https://admin.fedoraproject.org/mirrormanager/mirrors/EPEL') 61 | let $rows = $('.container table').first().find('tr') 62 | let mirrors = [] 63 | 64 | $rows.each((row,el) => { 65 | let mirror_info = $(el).children('td').slice(3,4).contents() 66 | let mode = null 67 | mirror_info.each((mirror_data, el) => { 68 | if ( el.type === 'text' ) { 69 | if ( /Fedora EPEL/.exec(el.data) ) mode = 'epel' 70 | if ( /Fedora Linux/.exec(el.data) ) mode = 'fedora' 71 | } 72 | if ( mode === 'epel' && el.type === 'tag' && el.name === 'a' && $(el).text() === 'http' ) { 73 | mirrors.push($(el).attr('href')) 74 | } 75 | }) 76 | }) 77 | debug('epel mirrors', mirrors.join('\n')) 78 | return mirrors 79 | } 80 | 81 | static async fetchFedora(){ 82 | let $ = await this.fetchAndCheerio('https://admin.fedoraproject.org/mirrormanager/mirrors/Fedora') 83 | let $rows = $('.container table').first().find('tr') 84 | let mirrors = [] 85 | /* 86 | $rows.map((row,el) => { 87 | return $(el).children('td').slice(3,4).find('a').each((linki, el)=> { 88 | if ( $(el).text() === 'http' ) mirrors.push($(el).attr('href')) 89 | }) 90 | }) 91 | */ 92 | $rows.each((row,el) => { 93 | let mirror_info = $(el).children('td').slice(3,4).contents() 94 | let mode = null 95 | mirror_info.each((mirror_data, el) => { 96 | if ( el.type === 'text' ) { 97 | if ( /Fedora EPEL/.exec(el.data) ) mode = 'epel' 98 | if ( /Fedora Linux/.exec(el.data) ) mode = 'fedora' 99 | } 100 | if ( mode === 'fedora' && el.type === 'tag' && el.name === 'a' && $(el).text() === 'http' ) { 101 | mirrors.push($(el).attr('href')) 102 | } 103 | }) 104 | }) 105 | debug('fedora mirrors', mirrors.join('\n')) 106 | return mirrors 107 | } 108 | 109 | static async fetchApache(){ 110 | let $ = await this.fetchAndCheerio('https://www.apache.org/mirrors/dist.html') 111 | let $rows = $('table tr') 112 | let mirrors = [] 113 | 114 | $rows.each((rowi, el) => { 115 | let $el = $(el) 116 | let cols = $el.find('td') 117 | debug('apache row %s: size %s: ', rowi, cols.length, $(cols).text()) 118 | if ( cols.length === 5 ) { 119 | let $mirror_col = $( $(cols).get(0) ) 120 | let $scheme_col = $( $(cols).get(1) ) 121 | let is_http = $scheme_col.text().includes('http') 122 | let mirror_link = $mirror_col.find('a').first().attr('href') 123 | debug('is_https: %s mirror: %s', is_http, mirror_link) 124 | if ( is_http === true ) mirrors.push(mirror_link) 125 | } 126 | }) 127 | return mirrors 128 | } 129 | 130 | // Write out the result of a promise to file. 131 | // promise result should be an array of http mirrors 132 | static async writeMirror( file, mirror_promise ){ 133 | let file_path = path.resolve( __dirname, '..', 'files', file ) 134 | if ( typeof mirror_promise === 'function' ) mirror_promise = mirror_promise() 135 | let mirror_data = await mirror_promise 136 | debug('writeMirror has got the mirror data for file "%s"', file) 137 | return fs.writeFileAsync(file_path, mirror_data.join('\n')) 138 | } 139 | 140 | static async go(){ 141 | try { 142 | await this.writeMirror('centos_mirrors', ()=>this.fetchCentos()) 143 | await this.writeMirror('fedora_mirrors', ()=>this.fetchFedora()) 144 | await this.writeMirror('epel_mirrors', ()=>this.fetchEpel()) 145 | await this.writeMirror('apache_mirrors', ()=>this.fetchApache()) 146 | } 147 | catch (error) { 148 | console.log(error) 149 | } 150 | } 151 | 152 | } 153 | 154 | Fetch.go() 155 | -------------------------------------------------------------------------------- /src/fetch-mirrors.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var _bluebird = require('bluebird'); 4 | 5 | const Promise = require('bluebird'); 6 | Promise.config({ longStackTraces: true, warnings: true }); 7 | const cheerio = require('cheerio'); 8 | const needle = require('needle'); 9 | const debug = require('debug')('mh:docker:kind:mirrors'); 10 | const fs = Promise.promisifyAll(require('fs')); 11 | const readline = require('readline'); 12 | const path = require('path'); 13 | 14 | class Fetch { 15 | 16 | // Fetch a url and load it into cheerio for querying 17 | static fetchAndCheerio(url) { 18 | return (0, _bluebird.coroutine)(function* () { 19 | debug('retriving url: %s', url); 20 | let response = yield needle('get', url); 21 | debug('retrieved response:', response.body); 22 | return cheerio.load(response.body); 23 | })(); 24 | } 25 | 26 | static /*async*/fetchCentos() { 27 | return new Promise((resolve, reject) => { 28 | let response = needle.get('https://www.centos.org/download/full-mirrorlist.csv'); 29 | const line_reader = require('readline').createInterface({ 30 | input: response 31 | }); 32 | 33 | const mirrors = ['mirror.centos.org']; 34 | 35 | line_reader.on('line', line => { 36 | // poor mans csv parsing, remove leading and trailing `"`s 37 | // then split the string on `","`. 38 | // Only works when every field is quoted with `"` 39 | line.replace(/^"/, '').replace(/"$/, ''); 40 | let fields = line.split(/","/); 41 | if (fields.length > 4 && fields[4] && fields[4] !== 'http mirror link') { 42 | debug('fields', fields); 43 | mirrors.push(fields[4]); 44 | } else { 45 | if (fields.length === 1 || fields[5] && fields[5].includes('ftp') || fields[4] === 'http mirror link') return; 46 | console.error('centos - bad line', line); 47 | } 48 | }); 49 | 50 | line_reader.on('close', () => { 51 | debug('centos mirrors', mirrors.join("\n")); 52 | resolve(mirrors); 53 | }); 54 | 55 | line_reader.on('error', () => reject(error)); 56 | }); 57 | } 58 | 59 | static fetchEpel() { 60 | var _this = this; 61 | 62 | return (0, _bluebird.coroutine)(function* () { 63 | let $ = yield _this.fetchAndCheerio('https://admin.fedoraproject.org/mirrormanager/mirrors/EPEL'); 64 | let $rows = $('.container table').first().find('tr'); 65 | let mirrors = []; 66 | 67 | $rows.each(function (row, el) { 68 | let mirror_info = $(el).children('td').slice(3, 4).contents(); 69 | let mode = null; 70 | mirror_info.each(function (mirror_data, el) { 71 | if (el.type === 'text') { 72 | if (/Fedora EPEL/.exec(el.data)) mode = 'epel'; 73 | if (/Fedora Linux/.exec(el.data)) mode = 'fedora'; 74 | } 75 | if (mode === 'epel' && el.type === 'tag' && el.name === 'a' && $(el).text() === 'http') { 76 | mirrors.push($(el).attr('href')); 77 | } 78 | }); 79 | }); 80 | debug('epel mirrors', mirrors.join('\n')); 81 | return mirrors; 82 | })(); 83 | } 84 | 85 | static fetchFedora() { 86 | var _this2 = this; 87 | 88 | return (0, _bluebird.coroutine)(function* () { 89 | let $ = yield _this2.fetchAndCheerio('https://admin.fedoraproject.org/mirrormanager/mirrors/Fedora'); 90 | let $rows = $('.container table').first().find('tr'); 91 | let mirrors = []; 92 | /* 93 | $rows.map((row,el) => { 94 | return $(el).children('td').slice(3,4).find('a').each((linki, el)=> { 95 | if ( $(el).text() === 'http' ) mirrors.push($(el).attr('href')) 96 | }) 97 | }) 98 | */ 99 | $rows.each(function (row, el) { 100 | let mirror_info = $(el).children('td').slice(3, 4).contents(); 101 | let mode = null; 102 | mirror_info.each(function (mirror_data, el) { 103 | if (el.type === 'text') { 104 | if (/Fedora EPEL/.exec(el.data)) mode = 'epel'; 105 | if (/Fedora Linux/.exec(el.data)) mode = 'fedora'; 106 | } 107 | if (mode === 'fedora' && el.type === 'tag' && el.name === 'a' && $(el).text() === 'http') { 108 | mirrors.push($(el).attr('href')); 109 | } 110 | }); 111 | }); 112 | debug('fedora mirrors', mirrors.join('\n')); 113 | return mirrors; 114 | })(); 115 | } 116 | 117 | static fetchApache() { 118 | var _this3 = this; 119 | 120 | return (0, _bluebird.coroutine)(function* () { 121 | let $ = yield _this3.fetchAndCheerio('https://www.apache.org/mirrors/dist.html'); 122 | let $rows = $('table tr'); 123 | let mirrors = []; 124 | 125 | $rows.each(function (rowi, el) { 126 | let $el = $(el); 127 | let cols = $el.find('td'); 128 | debug('apache row %s: size %s: ', rowi, cols.length, $(cols).text()); 129 | if (cols.length === 5) { 130 | let $mirror_col = $($(cols).get(0)); 131 | let $scheme_col = $($(cols).get(1)); 132 | let is_http = $scheme_col.text().includes('http'); 133 | let mirror_link = $mirror_col.find('a').first().attr('href'); 134 | debug('is_https: %s mirror: %s', is_http, mirror_link); 135 | if (is_http === true) mirrors.push(mirror_link); 136 | } 137 | }); 138 | return mirrors; 139 | })(); 140 | } 141 | 142 | // Write out the result of a promise to file. 143 | // promise result should be an array of http mirrors 144 | static writeMirror(file, mirror_promise) { 145 | return (0, _bluebird.coroutine)(function* () { 146 | let file_path = path.resolve(__dirname, '..', 'files', file); 147 | if (typeof mirror_promise === 'function') mirror_promise = mirror_promise(); 148 | let mirror_data = yield mirror_promise; 149 | debug('writeMirror has got the mirror data for file "%s"', file); 150 | return fs.writeFileAsync(file_path, mirror_data.join('\n')); 151 | })(); 152 | } 153 | 154 | static go() { 155 | var _this4 = this; 156 | 157 | return (0, _bluebird.coroutine)(function* () { 158 | try { 159 | yield _this4.writeMirror('centos_mirrors', function () { 160 | return _this4.fetchCentos(); 161 | }); 162 | yield _this4.writeMirror('fedora_mirrors', function () { 163 | return _this4.fetchFedora(); 164 | }); 165 | yield _this4.writeMirror('epel_mirrors', function () { 166 | return _this4.fetchEpel(); 167 | }); 168 | yield _this4.writeMirror('apache_mirrors', function () { 169 | return _this4.fetchApache(); 170 | }); 171 | } catch (error) { 172 | console.log(error); 173 | } 174 | })(); 175 | } 176 | 177 | } 178 | 179 | Fetch.go(); 180 | 181 | -------------------------------------------------------------------------------- /test/fixture/mocha_setup.js: -------------------------------------------------------------------------------- 1 | global.chai = require('chai') 2 | global.expect = require('chai').expect 3 | 4 | process.env.NODE_ENV = 'test' 5 | 6 | -------------------------------------------------------------------------------- /test/functional_aptcacherng.coffee: -------------------------------------------------------------------------------- 1 | Promise = require('bluebird') 2 | needle = Promise.promisifyAll(require('needle')) 3 | cheerio = require('cheerio') 4 | debug = require('debug') 'dply:test:func:aptcacherng' 5 | 6 | request_options = 7 | proxy: 'http://127.0.0.1:3142' 8 | 9 | getCacherPage = ( repo_url )-> 10 | needle.getAsync repo_url, request_options 11 | 12 | 13 | describe 'cache requests', -> 14 | 15 | it 'responds with an apt error for a directory', -> 16 | getCacherPage 'http://dl-cdn.alpinelinux.org/alpine/v3.5/', request_options 17 | .then (res) -> 18 | expect( res ).to.be.ok 19 | $ = cheerio.load(res.body) 20 | expect( $('body').text() ).to.match /Apt-Cacher NG/ 21 | 22 | # curl 'http://dl-cdn.alpinelinux.org/alpine/v3.5/main/x86_64/APKINDEX.tar.gz' -H 'Host: dl-cdn.alpinelinux.org' -H 'User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Firefox/45.0' -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' --compressed -H 'Referer: http://dl-cdn.alpinelinux.org/alpine/v3.5/main/x86_64/' -H 'Connection: keep-alive' 23 | 24 | describe 'pulling a file', -> 25 | 26 | file_request_options = request_options 27 | res = null 28 | 29 | before -> 30 | @timeout(5000) 31 | getCacherPage 'http://dl-cdn.alpinelinux.org/alpine/v3.5/main/x86_64/APKINDEX.tar.gz', file_request_options 32 | .then (result) -> 33 | debug(result) 34 | res = result 35 | 36 | it 'sould return a response', -> 37 | expect( res ).to.be.ok 38 | 39 | it 'sould return a buffer for the body', -> 40 | expect( res.body ).to.be.an.instanceof Buffer 41 | 42 | it 'should have headers', -> 43 | expect( res.headers ).to.be.ok 44 | 45 | it 'should have a bzip content type', -> 46 | expect( res.headers['content-type'] ).to.equal 'application/octet-stream' 47 | 48 | it 'should have a statusCode of 200', -> 49 | expect( res.statusCode ).to.equal 200 50 | 51 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require coffeescript/register 2 | --require test/fixture/mocha_setup 3 | --reporter spec 4 | --ui bdd 5 | 6 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/node@*": 6 | version "9.3.0" 7 | resolved "https://registry.npmjs.org/@types/node/-/node-9.3.0.tgz#3a129cda7c4e5df2409702626892cb4b96546dd5" 8 | 9 | abbrev@1: 10 | version "1.1.1" 11 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 12 | 13 | ajv@^4.9.1: 14 | version "4.11.8" 15 | resolved "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 16 | dependencies: 17 | co "^4.6.0" 18 | json-stable-stringify "^1.0.1" 19 | 20 | ansi-regex@^2.0.0: 21 | version "2.1.1" 22 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 23 | 24 | ansi-styles@^2.2.1: 25 | version "2.2.1" 26 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 27 | 28 | anymatch@^1.3.0: 29 | version "1.3.2" 30 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 31 | dependencies: 32 | micromatch "^2.1.5" 33 | normalize-path "^2.0.0" 34 | 35 | aproba@^1.0.3: 36 | version "1.2.0" 37 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 38 | 39 | are-we-there-yet@~1.1.2: 40 | version "1.1.4" 41 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 42 | dependencies: 43 | delegates "^1.0.0" 44 | readable-stream "^2.0.6" 45 | 46 | arr-diff@^2.0.0: 47 | version "2.0.0" 48 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 49 | dependencies: 50 | arr-flatten "^1.0.1" 51 | 52 | arr-flatten@^1.0.1: 53 | version "1.1.0" 54 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 55 | 56 | array-unique@^0.2.1: 57 | version "0.2.1" 58 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 59 | 60 | asn1@~0.2.3: 61 | version "0.2.3" 62 | resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 63 | 64 | assert-plus@1.0.0, assert-plus@^1.0.0: 65 | version "1.0.0" 66 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 67 | 68 | assert-plus@^0.2.0: 69 | version "0.2.0" 70 | resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 71 | 72 | assertion-error@^1.0.1: 73 | version "1.1.0" 74 | resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 75 | 76 | async-each@^1.0.0: 77 | version "1.0.1" 78 | resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 79 | 80 | asynckit@^0.4.0: 81 | version "0.4.0" 82 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 83 | 84 | aws-sign2@~0.6.0: 85 | version "0.6.0" 86 | resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 87 | 88 | aws4@^1.2.1: 89 | version "1.6.0" 90 | resolved "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 91 | 92 | babel-cli@^6.26.0: 93 | version "6.26.0" 94 | resolved "https://registry.npmjs.org/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 95 | dependencies: 96 | babel-core "^6.26.0" 97 | babel-polyfill "^6.26.0" 98 | babel-register "^6.26.0" 99 | babel-runtime "^6.26.0" 100 | commander "^2.11.0" 101 | convert-source-map "^1.5.0" 102 | fs-readdir-recursive "^1.0.0" 103 | glob "^7.1.2" 104 | lodash "^4.17.4" 105 | output-file-sync "^1.1.2" 106 | path-is-absolute "^1.0.1" 107 | slash "^1.0.0" 108 | source-map "^0.5.6" 109 | v8flags "^2.1.1" 110 | optionalDependencies: 111 | chokidar "^1.6.1" 112 | 113 | babel-code-frame@^6.26.0: 114 | version "6.26.0" 115 | resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 116 | dependencies: 117 | chalk "^1.1.3" 118 | esutils "^2.0.2" 119 | js-tokens "^3.0.2" 120 | 121 | babel-core@^6.26.0: 122 | version "6.26.0" 123 | resolved "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 124 | dependencies: 125 | babel-code-frame "^6.26.0" 126 | babel-generator "^6.26.0" 127 | babel-helpers "^6.24.1" 128 | babel-messages "^6.23.0" 129 | babel-register "^6.26.0" 130 | babel-runtime "^6.26.0" 131 | babel-template "^6.26.0" 132 | babel-traverse "^6.26.0" 133 | babel-types "^6.26.0" 134 | babylon "^6.18.0" 135 | convert-source-map "^1.5.0" 136 | debug "^2.6.8" 137 | json5 "^0.5.1" 138 | lodash "^4.17.4" 139 | minimatch "^3.0.4" 140 | path-is-absolute "^1.0.1" 141 | private "^0.1.7" 142 | slash "^1.0.0" 143 | source-map "^0.5.6" 144 | 145 | babel-generator@^6.26.0: 146 | version "6.26.0" 147 | resolved "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 148 | dependencies: 149 | babel-messages "^6.23.0" 150 | babel-runtime "^6.26.0" 151 | babel-types "^6.26.0" 152 | detect-indent "^4.0.0" 153 | jsesc "^1.3.0" 154 | lodash "^4.17.4" 155 | source-map "^0.5.6" 156 | trim-right "^1.0.1" 157 | 158 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 159 | version "6.24.1" 160 | resolved "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 161 | dependencies: 162 | babel-helper-explode-assignable-expression "^6.24.1" 163 | babel-runtime "^6.22.0" 164 | babel-types "^6.24.1" 165 | 166 | babel-helper-call-delegate@^6.24.1: 167 | version "6.24.1" 168 | resolved "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 169 | dependencies: 170 | babel-helper-hoist-variables "^6.24.1" 171 | babel-runtime "^6.22.0" 172 | babel-traverse "^6.24.1" 173 | babel-types "^6.24.1" 174 | 175 | babel-helper-define-map@^6.24.1: 176 | version "6.26.0" 177 | resolved "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 178 | dependencies: 179 | babel-helper-function-name "^6.24.1" 180 | babel-runtime "^6.26.0" 181 | babel-types "^6.26.0" 182 | lodash "^4.17.4" 183 | 184 | babel-helper-explode-assignable-expression@^6.24.1: 185 | version "6.24.1" 186 | resolved "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 187 | dependencies: 188 | babel-runtime "^6.22.0" 189 | babel-traverse "^6.24.1" 190 | babel-types "^6.24.1" 191 | 192 | babel-helper-function-name@^6.24.1: 193 | version "6.24.1" 194 | resolved "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 195 | dependencies: 196 | babel-helper-get-function-arity "^6.24.1" 197 | babel-runtime "^6.22.0" 198 | babel-template "^6.24.1" 199 | babel-traverse "^6.24.1" 200 | babel-types "^6.24.1" 201 | 202 | babel-helper-get-function-arity@^6.24.1: 203 | version "6.24.1" 204 | resolved "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 205 | dependencies: 206 | babel-runtime "^6.22.0" 207 | babel-types "^6.24.1" 208 | 209 | babel-helper-hoist-variables@^6.24.1: 210 | version "6.24.1" 211 | resolved "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 212 | dependencies: 213 | babel-runtime "^6.22.0" 214 | babel-types "^6.24.1" 215 | 216 | babel-helper-optimise-call-expression@^6.24.1: 217 | version "6.24.1" 218 | resolved "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 219 | dependencies: 220 | babel-runtime "^6.22.0" 221 | babel-types "^6.24.1" 222 | 223 | babel-helper-regex@^6.24.1: 224 | version "6.26.0" 225 | resolved "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 226 | dependencies: 227 | babel-runtime "^6.26.0" 228 | babel-types "^6.26.0" 229 | lodash "^4.17.4" 230 | 231 | babel-helper-remap-async-to-generator@^6.24.1: 232 | version "6.24.1" 233 | resolved "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 234 | dependencies: 235 | babel-helper-function-name "^6.24.1" 236 | babel-runtime "^6.22.0" 237 | babel-template "^6.24.1" 238 | babel-traverse "^6.24.1" 239 | babel-types "^6.24.1" 240 | 241 | babel-helper-replace-supers@^6.24.1: 242 | version "6.24.1" 243 | resolved "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 244 | dependencies: 245 | babel-helper-optimise-call-expression "^6.24.1" 246 | babel-messages "^6.23.0" 247 | babel-runtime "^6.22.0" 248 | babel-template "^6.24.1" 249 | babel-traverse "^6.24.1" 250 | babel-types "^6.24.1" 251 | 252 | babel-helpers@^6.24.1: 253 | version "6.24.1" 254 | resolved "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 255 | dependencies: 256 | babel-runtime "^6.22.0" 257 | babel-template "^6.24.1" 258 | 259 | babel-messages@^6.23.0: 260 | version "6.23.0" 261 | resolved "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 262 | dependencies: 263 | babel-runtime "^6.22.0" 264 | 265 | babel-plugin-check-es2015-constants@^6.22.0: 266 | version "6.22.0" 267 | resolved "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 268 | dependencies: 269 | babel-runtime "^6.22.0" 270 | 271 | babel-plugin-syntax-async-functions@^6.8.0: 272 | version "6.13.0" 273 | resolved "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 274 | 275 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 276 | version "6.13.0" 277 | resolved "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 278 | 279 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 280 | version "6.22.0" 281 | resolved "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 282 | 283 | babel-plugin-transform-async-to-generator@^6.22.0: 284 | version "6.24.1" 285 | resolved "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 286 | dependencies: 287 | babel-helper-remap-async-to-generator "^6.24.1" 288 | babel-plugin-syntax-async-functions "^6.8.0" 289 | babel-runtime "^6.22.0" 290 | 291 | babel-plugin-transform-async-to-module-method@^6.24.1: 292 | version "6.24.1" 293 | resolved "https://registry.npmjs.org/babel-plugin-transform-async-to-module-method/-/babel-plugin-transform-async-to-module-method-6.24.1.tgz#9109a08987794b411cb213850ce935ec2f029cdb" 294 | dependencies: 295 | babel-helper-remap-async-to-generator "^6.24.1" 296 | babel-plugin-syntax-async-functions "^6.8.0" 297 | babel-runtime "^6.22.0" 298 | babel-types "^6.24.1" 299 | 300 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 301 | version "6.22.0" 302 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 303 | dependencies: 304 | babel-runtime "^6.22.0" 305 | 306 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 307 | version "6.22.0" 308 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 309 | dependencies: 310 | babel-runtime "^6.22.0" 311 | 312 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 313 | version "6.26.0" 314 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 315 | dependencies: 316 | babel-runtime "^6.26.0" 317 | babel-template "^6.26.0" 318 | babel-traverse "^6.26.0" 319 | babel-types "^6.26.0" 320 | lodash "^4.17.4" 321 | 322 | babel-plugin-transform-es2015-classes@^6.23.0: 323 | version "6.24.1" 324 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 325 | dependencies: 326 | babel-helper-define-map "^6.24.1" 327 | babel-helper-function-name "^6.24.1" 328 | babel-helper-optimise-call-expression "^6.24.1" 329 | babel-helper-replace-supers "^6.24.1" 330 | babel-messages "^6.23.0" 331 | babel-runtime "^6.22.0" 332 | babel-template "^6.24.1" 333 | babel-traverse "^6.24.1" 334 | babel-types "^6.24.1" 335 | 336 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 337 | version "6.24.1" 338 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 339 | dependencies: 340 | babel-runtime "^6.22.0" 341 | babel-template "^6.24.1" 342 | 343 | babel-plugin-transform-es2015-destructuring@^6.23.0: 344 | version "6.23.0" 345 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 346 | dependencies: 347 | babel-runtime "^6.22.0" 348 | 349 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 350 | version "6.24.1" 351 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | babel-types "^6.24.1" 355 | 356 | babel-plugin-transform-es2015-for-of@^6.23.0: 357 | version "6.23.0" 358 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 359 | dependencies: 360 | babel-runtime "^6.22.0" 361 | 362 | babel-plugin-transform-es2015-function-name@^6.22.0: 363 | version "6.24.1" 364 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 365 | dependencies: 366 | babel-helper-function-name "^6.24.1" 367 | babel-runtime "^6.22.0" 368 | babel-types "^6.24.1" 369 | 370 | babel-plugin-transform-es2015-literals@^6.22.0: 371 | version "6.22.0" 372 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 373 | dependencies: 374 | babel-runtime "^6.22.0" 375 | 376 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 377 | version "6.24.1" 378 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 379 | dependencies: 380 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 381 | babel-runtime "^6.22.0" 382 | babel-template "^6.24.1" 383 | 384 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 385 | version "6.26.0" 386 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 387 | dependencies: 388 | babel-plugin-transform-strict-mode "^6.24.1" 389 | babel-runtime "^6.26.0" 390 | babel-template "^6.26.0" 391 | babel-types "^6.26.0" 392 | 393 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 394 | version "6.24.1" 395 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 396 | dependencies: 397 | babel-helper-hoist-variables "^6.24.1" 398 | babel-runtime "^6.22.0" 399 | babel-template "^6.24.1" 400 | 401 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 402 | version "6.24.1" 403 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 404 | dependencies: 405 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 406 | babel-runtime "^6.22.0" 407 | babel-template "^6.24.1" 408 | 409 | babel-plugin-transform-es2015-object-super@^6.22.0: 410 | version "6.24.1" 411 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 412 | dependencies: 413 | babel-helper-replace-supers "^6.24.1" 414 | babel-runtime "^6.22.0" 415 | 416 | babel-plugin-transform-es2015-parameters@^6.23.0: 417 | version "6.24.1" 418 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 419 | dependencies: 420 | babel-helper-call-delegate "^6.24.1" 421 | babel-helper-get-function-arity "^6.24.1" 422 | babel-runtime "^6.22.0" 423 | babel-template "^6.24.1" 424 | babel-traverse "^6.24.1" 425 | babel-types "^6.24.1" 426 | 427 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 428 | version "6.24.1" 429 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 430 | dependencies: 431 | babel-runtime "^6.22.0" 432 | babel-types "^6.24.1" 433 | 434 | babel-plugin-transform-es2015-spread@^6.22.0: 435 | version "6.22.0" 436 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 437 | dependencies: 438 | babel-runtime "^6.22.0" 439 | 440 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 441 | version "6.24.1" 442 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 443 | dependencies: 444 | babel-helper-regex "^6.24.1" 445 | babel-runtime "^6.22.0" 446 | babel-types "^6.24.1" 447 | 448 | babel-plugin-transform-es2015-template-literals@^6.22.0: 449 | version "6.22.0" 450 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 451 | dependencies: 452 | babel-runtime "^6.22.0" 453 | 454 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 455 | version "6.23.0" 456 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 461 | version "6.24.1" 462 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 463 | dependencies: 464 | babel-helper-regex "^6.24.1" 465 | babel-runtime "^6.22.0" 466 | regexpu-core "^2.0.0" 467 | 468 | babel-plugin-transform-exponentiation-operator@^6.22.0: 469 | version "6.24.1" 470 | resolved "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 471 | dependencies: 472 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 473 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 474 | babel-runtime "^6.22.0" 475 | 476 | babel-plugin-transform-regenerator@^6.22.0: 477 | version "6.26.0" 478 | resolved "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 479 | dependencies: 480 | regenerator-transform "^0.10.0" 481 | 482 | babel-plugin-transform-strict-mode@^6.24.1: 483 | version "6.24.1" 484 | resolved "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | babel-types "^6.24.1" 488 | 489 | babel-polyfill@^6.26.0: 490 | version "6.26.0" 491 | resolved "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 492 | dependencies: 493 | babel-runtime "^6.26.0" 494 | core-js "^2.5.0" 495 | regenerator-runtime "^0.10.5" 496 | 497 | babel-preset-env@^1.6.1: 498 | version "1.6.1" 499 | resolved "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" 500 | dependencies: 501 | babel-plugin-check-es2015-constants "^6.22.0" 502 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 503 | babel-plugin-transform-async-to-generator "^6.22.0" 504 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 505 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 506 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 507 | babel-plugin-transform-es2015-classes "^6.23.0" 508 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 509 | babel-plugin-transform-es2015-destructuring "^6.23.0" 510 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 511 | babel-plugin-transform-es2015-for-of "^6.23.0" 512 | babel-plugin-transform-es2015-function-name "^6.22.0" 513 | babel-plugin-transform-es2015-literals "^6.22.0" 514 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 515 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 516 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 517 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 518 | babel-plugin-transform-es2015-object-super "^6.22.0" 519 | babel-plugin-transform-es2015-parameters "^6.23.0" 520 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 521 | babel-plugin-transform-es2015-spread "^6.22.0" 522 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 523 | babel-plugin-transform-es2015-template-literals "^6.22.0" 524 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 525 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 526 | babel-plugin-transform-exponentiation-operator "^6.22.0" 527 | babel-plugin-transform-regenerator "^6.22.0" 528 | browserslist "^2.1.2" 529 | invariant "^2.2.2" 530 | semver "^5.3.0" 531 | 532 | babel-register@^6.26.0: 533 | version "6.26.0" 534 | resolved "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 535 | dependencies: 536 | babel-core "^6.26.0" 537 | babel-runtime "^6.26.0" 538 | core-js "^2.5.0" 539 | home-or-tmp "^2.0.0" 540 | lodash "^4.17.4" 541 | mkdirp "^0.5.1" 542 | source-map-support "^0.4.15" 543 | 544 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 545 | version "6.26.0" 546 | resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 547 | dependencies: 548 | core-js "^2.4.0" 549 | regenerator-runtime "^0.11.0" 550 | 551 | babel-template@^6.24.1, babel-template@^6.26.0: 552 | version "6.26.0" 553 | resolved "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 554 | dependencies: 555 | babel-runtime "^6.26.0" 556 | babel-traverse "^6.26.0" 557 | babel-types "^6.26.0" 558 | babylon "^6.18.0" 559 | lodash "^4.17.4" 560 | 561 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 562 | version "6.26.0" 563 | resolved "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 564 | dependencies: 565 | babel-code-frame "^6.26.0" 566 | babel-messages "^6.23.0" 567 | babel-runtime "^6.26.0" 568 | babel-types "^6.26.0" 569 | babylon "^6.18.0" 570 | debug "^2.6.8" 571 | globals "^9.18.0" 572 | invariant "^2.2.2" 573 | lodash "^4.17.4" 574 | 575 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 576 | version "6.26.0" 577 | resolved "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 578 | dependencies: 579 | babel-runtime "^6.26.0" 580 | esutils "^2.0.2" 581 | lodash "^4.17.4" 582 | to-fast-properties "^1.0.3" 583 | 584 | babylon@^6.18.0: 585 | version "6.18.0" 586 | resolved "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 587 | 588 | balanced-match@^1.0.0: 589 | version "1.0.0" 590 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 591 | 592 | bcrypt-pbkdf@^1.0.0: 593 | version "1.0.1" 594 | resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 595 | dependencies: 596 | tweetnacl "^0.14.3" 597 | 598 | binary-extensions@^1.0.0: 599 | version "1.11.0" 600 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 601 | 602 | block-stream@*: 603 | version "0.0.9" 604 | resolved "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 605 | dependencies: 606 | inherits "~2.0.0" 607 | 608 | bluebird@^3.5.1: 609 | version "3.5.1" 610 | resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 611 | 612 | boolbase@~1.0.0: 613 | version "1.0.0" 614 | resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 615 | 616 | boom@2.x.x: 617 | version "2.10.1" 618 | resolved "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 619 | dependencies: 620 | hoek "2.x.x" 621 | 622 | brace-expansion@^1.1.7: 623 | version "1.1.8" 624 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 625 | dependencies: 626 | balanced-match "^1.0.0" 627 | concat-map "0.0.1" 628 | 629 | braces@^1.8.2: 630 | version "1.8.5" 631 | resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 632 | dependencies: 633 | expand-range "^1.8.1" 634 | preserve "^0.2.0" 635 | repeat-element "^1.1.2" 636 | 637 | browser-stdout@1.3.0: 638 | version "1.3.0" 639 | resolved "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 640 | 641 | browserslist@^2.1.2: 642 | version "2.11.3" 643 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2" 644 | dependencies: 645 | caniuse-lite "^1.0.30000792" 646 | electron-to-chromium "^1.3.30" 647 | 648 | caniuse-lite@^1.0.30000792: 649 | version "1.0.30000792" 650 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000792.tgz#d0cea981f8118f3961471afbb43c9a1e5bbf0332" 651 | 652 | caseless@~0.12.0: 653 | version "0.12.0" 654 | resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 655 | 656 | chai@^3.5.0: 657 | version "3.5.0" 658 | resolved "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 659 | dependencies: 660 | assertion-error "^1.0.1" 661 | deep-eql "^0.1.3" 662 | type-detect "^1.0.0" 663 | 664 | chalk@^1.1.3: 665 | version "1.1.3" 666 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 667 | dependencies: 668 | ansi-styles "^2.2.1" 669 | escape-string-regexp "^1.0.2" 670 | has-ansi "^2.0.0" 671 | strip-ansi "^3.0.0" 672 | supports-color "^2.0.0" 673 | 674 | cheerio@^1.0.0-rc.2: 675 | version "1.0.0-rc.2" 676 | resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz#4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db" 677 | dependencies: 678 | css-select "~1.2.0" 679 | dom-serializer "~0.1.0" 680 | entities "~1.1.1" 681 | htmlparser2 "^3.9.1" 682 | lodash "^4.15.0" 683 | parse5 "^3.0.1" 684 | 685 | chokidar@^1.6.1: 686 | version "1.7.0" 687 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 688 | dependencies: 689 | anymatch "^1.3.0" 690 | async-each "^1.0.0" 691 | glob-parent "^2.0.0" 692 | inherits "^2.0.1" 693 | is-binary-path "^1.0.0" 694 | is-glob "^2.0.0" 695 | path-is-absolute "^1.0.0" 696 | readdirp "^2.0.0" 697 | optionalDependencies: 698 | fsevents "^1.0.0" 699 | 700 | co@^4.6.0: 701 | version "4.6.0" 702 | resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 703 | 704 | code-point-at@^1.0.0: 705 | version "1.1.0" 706 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 707 | 708 | coffeescript@^1.12.4: 709 | version "1.12.7" 710 | resolved "https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.7.tgz#e57ee4c4867cf7f606bfc4a0f2d550c0981ddd27" 711 | 712 | combined-stream@^1.0.5, combined-stream@~1.0.5: 713 | version "1.0.5" 714 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 715 | dependencies: 716 | delayed-stream "~1.0.0" 717 | 718 | commander@2.9.0: 719 | version "2.9.0" 720 | resolved "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 721 | dependencies: 722 | graceful-readlink ">= 1.0.0" 723 | 724 | commander@^2.11.0: 725 | version "2.13.0" 726 | resolved "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" 727 | 728 | concat-map@0.0.1: 729 | version "0.0.1" 730 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 731 | 732 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 733 | version "1.1.0" 734 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 735 | 736 | convert-source-map@^1.5.0: 737 | version "1.5.1" 738 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 739 | 740 | core-js@^2.4.0, core-js@^2.5.0: 741 | version "2.5.3" 742 | resolved "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 743 | 744 | core-util-is@1.0.2, core-util-is@~1.0.0: 745 | version "1.0.2" 746 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 747 | 748 | cryptiles@2.x.x: 749 | version "2.0.5" 750 | resolved "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 751 | dependencies: 752 | boom "2.x.x" 753 | 754 | css-select@~1.2.0: 755 | version "1.2.0" 756 | resolved "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 757 | dependencies: 758 | boolbase "~1.0.0" 759 | css-what "2.1" 760 | domutils "1.5.1" 761 | nth-check "~1.0.1" 762 | 763 | css-what@2.1: 764 | version "2.1.0" 765 | resolved "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 766 | 767 | dashdash@^1.12.0: 768 | version "1.14.1" 769 | resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 770 | dependencies: 771 | assert-plus "^1.0.0" 772 | 773 | debug@2.6.8: 774 | version "2.6.8" 775 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 776 | dependencies: 777 | ms "2.0.0" 778 | 779 | debug@^2.1.2, debug@^2.2.0, debug@^2.6.8: 780 | version "2.6.9" 781 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 782 | dependencies: 783 | ms "2.0.0" 784 | 785 | debug@^3.1.0: 786 | version "3.1.0" 787 | resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 788 | dependencies: 789 | ms "2.0.0" 790 | 791 | deep-eql@^0.1.3: 792 | version "0.1.3" 793 | resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 794 | dependencies: 795 | type-detect "0.1.1" 796 | 797 | deep-extend@~0.4.0: 798 | version "0.4.2" 799 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 800 | 801 | delayed-stream@~1.0.0: 802 | version "1.0.0" 803 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 804 | 805 | delegates@^1.0.0: 806 | version "1.0.0" 807 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 808 | 809 | detect-indent@^4.0.0: 810 | version "4.0.0" 811 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 812 | dependencies: 813 | repeating "^2.0.0" 814 | 815 | detect-libc@^1.0.2: 816 | version "1.0.3" 817 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 818 | 819 | diff@3.2.0: 820 | version "3.2.0" 821 | resolved "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9" 822 | 823 | dom-serializer@0, dom-serializer@~0.1.0: 824 | version "0.1.0" 825 | resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 826 | dependencies: 827 | domelementtype "~1.1.1" 828 | entities "~1.1.1" 829 | 830 | domelementtype@1, domelementtype@^1.3.0: 831 | version "1.3.0" 832 | resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 833 | 834 | domelementtype@~1.1.1: 835 | version "1.1.3" 836 | resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 837 | 838 | domhandler@^2.3.0: 839 | version "2.4.1" 840 | resolved "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 841 | dependencies: 842 | domelementtype "1" 843 | 844 | domutils@1.5.1: 845 | version "1.5.1" 846 | resolved "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 847 | dependencies: 848 | dom-serializer "0" 849 | domelementtype "1" 850 | 851 | domutils@^1.5.1: 852 | version "1.6.2" 853 | resolved "https://registry.npmjs.org/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" 854 | dependencies: 855 | dom-serializer "0" 856 | domelementtype "1" 857 | 858 | ecc-jsbn@~0.1.1: 859 | version "0.1.1" 860 | resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 861 | dependencies: 862 | jsbn "~0.1.0" 863 | 864 | electron-to-chromium@^1.3.30: 865 | version "1.3.31" 866 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.31.tgz#00d832cba9fe2358652b0c48a8816c8e3a037e9f" 867 | 868 | entities@^1.1.1, entities@~1.1.1: 869 | version "1.1.1" 870 | resolved "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 871 | 872 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2: 873 | version "1.0.5" 874 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 875 | 876 | esutils@^2.0.2: 877 | version "2.0.2" 878 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 879 | 880 | expand-brackets@^0.1.4: 881 | version "0.1.5" 882 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 883 | dependencies: 884 | is-posix-bracket "^0.1.0" 885 | 886 | expand-range@^1.8.1: 887 | version "1.8.2" 888 | resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 889 | dependencies: 890 | fill-range "^2.1.0" 891 | 892 | extend@~3.0.0: 893 | version "3.0.1" 894 | resolved "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 895 | 896 | extglob@^0.3.1: 897 | version "0.3.2" 898 | resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 899 | dependencies: 900 | is-extglob "^1.0.0" 901 | 902 | extsprintf@1.3.0: 903 | version "1.3.0" 904 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 905 | 906 | extsprintf@^1.2.0: 907 | version "1.4.0" 908 | resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 909 | 910 | filename-regex@^2.0.0: 911 | version "2.0.1" 912 | resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 913 | 914 | fill-range@^2.1.0: 915 | version "2.2.3" 916 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 917 | dependencies: 918 | is-number "^2.1.0" 919 | isobject "^2.0.0" 920 | randomatic "^1.1.3" 921 | repeat-element "^1.1.2" 922 | repeat-string "^1.5.2" 923 | 924 | for-in@^1.0.1: 925 | version "1.0.2" 926 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 927 | 928 | for-own@^0.1.4: 929 | version "0.1.5" 930 | resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 931 | dependencies: 932 | for-in "^1.0.1" 933 | 934 | forever-agent@~0.6.1: 935 | version "0.6.1" 936 | resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 937 | 938 | form-data@~2.1.1: 939 | version "2.1.4" 940 | resolved "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 941 | dependencies: 942 | asynckit "^0.4.0" 943 | combined-stream "^1.0.5" 944 | mime-types "^2.1.12" 945 | 946 | fs-readdir-recursive@^1.0.0: 947 | version "1.1.0" 948 | resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 949 | 950 | fs.realpath@^1.0.0: 951 | version "1.0.0" 952 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 953 | 954 | fsevents@^1.0.0: 955 | version "1.1.3" 956 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 957 | dependencies: 958 | nan "^2.3.0" 959 | node-pre-gyp "^0.6.39" 960 | 961 | fstream-ignore@^1.0.5: 962 | version "1.0.5" 963 | resolved "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 964 | dependencies: 965 | fstream "^1.0.0" 966 | inherits "2" 967 | minimatch "^3.0.0" 968 | 969 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 970 | version "1.0.11" 971 | resolved "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 972 | dependencies: 973 | graceful-fs "^4.1.2" 974 | inherits "~2.0.0" 975 | mkdirp ">=0.5 0" 976 | rimraf "2" 977 | 978 | gauge@~2.7.3: 979 | version "2.7.4" 980 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 981 | dependencies: 982 | aproba "^1.0.3" 983 | console-control-strings "^1.0.0" 984 | has-unicode "^2.0.0" 985 | object-assign "^4.1.0" 986 | signal-exit "^3.0.0" 987 | string-width "^1.0.1" 988 | strip-ansi "^3.0.1" 989 | wide-align "^1.1.0" 990 | 991 | getpass@^0.1.1: 992 | version "0.1.7" 993 | resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 994 | dependencies: 995 | assert-plus "^1.0.0" 996 | 997 | glob-base@^0.3.0: 998 | version "0.3.0" 999 | resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1000 | dependencies: 1001 | glob-parent "^2.0.0" 1002 | is-glob "^2.0.0" 1003 | 1004 | glob-parent@^2.0.0: 1005 | version "2.0.0" 1006 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1007 | dependencies: 1008 | is-glob "^2.0.0" 1009 | 1010 | glob@7.1.1: 1011 | version "7.1.1" 1012 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1013 | dependencies: 1014 | fs.realpath "^1.0.0" 1015 | inflight "^1.0.4" 1016 | inherits "2" 1017 | minimatch "^3.0.2" 1018 | once "^1.3.0" 1019 | path-is-absolute "^1.0.0" 1020 | 1021 | glob@^7.0.5, glob@^7.1.2: 1022 | version "7.1.2" 1023 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1024 | dependencies: 1025 | fs.realpath "^1.0.0" 1026 | inflight "^1.0.4" 1027 | inherits "2" 1028 | minimatch "^3.0.4" 1029 | once "^1.3.0" 1030 | path-is-absolute "^1.0.0" 1031 | 1032 | globals@^9.18.0: 1033 | version "9.18.0" 1034 | resolved "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1035 | 1036 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1037 | version "4.1.11" 1038 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1039 | 1040 | "graceful-readlink@>= 1.0.0": 1041 | version "1.0.1" 1042 | resolved "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1043 | 1044 | growl@1.9.2: 1045 | version "1.9.2" 1046 | resolved "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1047 | 1048 | har-schema@^1.0.5: 1049 | version "1.0.5" 1050 | resolved "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1051 | 1052 | har-validator@~4.2.1: 1053 | version "4.2.1" 1054 | resolved "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1055 | dependencies: 1056 | ajv "^4.9.1" 1057 | har-schema "^1.0.5" 1058 | 1059 | has-ansi@^2.0.0: 1060 | version "2.0.0" 1061 | resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1062 | dependencies: 1063 | ansi-regex "^2.0.0" 1064 | 1065 | has-flag@^1.0.0: 1066 | version "1.0.0" 1067 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1068 | 1069 | has-unicode@^2.0.0: 1070 | version "2.0.1" 1071 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1072 | 1073 | hawk@3.1.3, hawk@~3.1.3: 1074 | version "3.1.3" 1075 | resolved "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1076 | dependencies: 1077 | boom "2.x.x" 1078 | cryptiles "2.x.x" 1079 | hoek "2.x.x" 1080 | sntp "1.x.x" 1081 | 1082 | he@1.1.1: 1083 | version "1.1.1" 1084 | resolved "https://registry.npmjs.org/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1085 | 1086 | hoek@2.x.x: 1087 | version "2.16.3" 1088 | resolved "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1089 | 1090 | home-or-tmp@^2.0.0: 1091 | version "2.0.0" 1092 | resolved "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1093 | dependencies: 1094 | os-homedir "^1.0.0" 1095 | os-tmpdir "^1.0.1" 1096 | 1097 | htmlparser2@^3.9.1: 1098 | version "3.9.2" 1099 | resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1100 | dependencies: 1101 | domelementtype "^1.3.0" 1102 | domhandler "^2.3.0" 1103 | domutils "^1.5.1" 1104 | entities "^1.1.1" 1105 | inherits "^2.0.1" 1106 | readable-stream "^2.0.2" 1107 | 1108 | http-signature@~1.1.0: 1109 | version "1.1.1" 1110 | resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1111 | dependencies: 1112 | assert-plus "^0.2.0" 1113 | jsprim "^1.2.2" 1114 | sshpk "^1.7.0" 1115 | 1116 | iconv-lite@^0.4.4: 1117 | version "0.4.19" 1118 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1119 | 1120 | inflight@^1.0.4: 1121 | version "1.0.6" 1122 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1123 | dependencies: 1124 | once "^1.3.0" 1125 | wrappy "1" 1126 | 1127 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1128 | version "2.0.3" 1129 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1130 | 1131 | ini@~1.3.0: 1132 | version "1.3.5" 1133 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1134 | 1135 | invariant@^2.2.2: 1136 | version "2.2.2" 1137 | resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1138 | dependencies: 1139 | loose-envify "^1.0.0" 1140 | 1141 | is-binary-path@^1.0.0: 1142 | version "1.0.1" 1143 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1144 | dependencies: 1145 | binary-extensions "^1.0.0" 1146 | 1147 | is-buffer@^1.1.5: 1148 | version "1.1.6" 1149 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1150 | 1151 | is-dotfile@^1.0.0: 1152 | version "1.0.3" 1153 | resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1154 | 1155 | is-equal-shallow@^0.1.3: 1156 | version "0.1.3" 1157 | resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1158 | dependencies: 1159 | is-primitive "^2.0.0" 1160 | 1161 | is-extendable@^0.1.1: 1162 | version "0.1.1" 1163 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1164 | 1165 | is-extglob@^1.0.0: 1166 | version "1.0.0" 1167 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1168 | 1169 | is-finite@^1.0.0: 1170 | version "1.0.2" 1171 | resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1172 | dependencies: 1173 | number-is-nan "^1.0.0" 1174 | 1175 | is-fullwidth-code-point@^1.0.0: 1176 | version "1.0.0" 1177 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1178 | dependencies: 1179 | number-is-nan "^1.0.0" 1180 | 1181 | is-glob@^2.0.0, is-glob@^2.0.1: 1182 | version "2.0.1" 1183 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1184 | dependencies: 1185 | is-extglob "^1.0.0" 1186 | 1187 | is-number@^2.1.0: 1188 | version "2.1.0" 1189 | resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1190 | dependencies: 1191 | kind-of "^3.0.2" 1192 | 1193 | is-number@^3.0.0: 1194 | version "3.0.0" 1195 | resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1196 | dependencies: 1197 | kind-of "^3.0.2" 1198 | 1199 | is-posix-bracket@^0.1.0: 1200 | version "0.1.1" 1201 | resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1202 | 1203 | is-primitive@^2.0.0: 1204 | version "2.0.0" 1205 | resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1206 | 1207 | is-typedarray@~1.0.0: 1208 | version "1.0.0" 1209 | resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1210 | 1211 | isarray@1.0.0, isarray@~1.0.0: 1212 | version "1.0.0" 1213 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1214 | 1215 | isobject@^2.0.0: 1216 | version "2.1.0" 1217 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1218 | dependencies: 1219 | isarray "1.0.0" 1220 | 1221 | isstream@~0.1.2: 1222 | version "0.1.2" 1223 | resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1224 | 1225 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1226 | version "3.0.2" 1227 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1228 | 1229 | jsbn@~0.1.0: 1230 | version "0.1.1" 1231 | resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1232 | 1233 | jsesc@^1.3.0: 1234 | version "1.3.0" 1235 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1236 | 1237 | jsesc@~0.5.0: 1238 | version "0.5.0" 1239 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1240 | 1241 | json-schema@0.2.3: 1242 | version "0.2.3" 1243 | resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1244 | 1245 | json-stable-stringify@^1.0.1: 1246 | version "1.0.1" 1247 | resolved "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1248 | dependencies: 1249 | jsonify "~0.0.0" 1250 | 1251 | json-stringify-safe@~5.0.1: 1252 | version "5.0.1" 1253 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1254 | 1255 | json3@3.3.2: 1256 | version "3.3.2" 1257 | resolved "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 1258 | 1259 | json5@^0.5.1: 1260 | version "0.5.1" 1261 | resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1262 | 1263 | jsonify@~0.0.0: 1264 | version "0.0.0" 1265 | resolved "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1266 | 1267 | jsprim@^1.2.2: 1268 | version "1.4.1" 1269 | resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1270 | dependencies: 1271 | assert-plus "1.0.0" 1272 | extsprintf "1.3.0" 1273 | json-schema "0.2.3" 1274 | verror "1.10.0" 1275 | 1276 | kind-of@^3.0.2: 1277 | version "3.2.2" 1278 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1279 | dependencies: 1280 | is-buffer "^1.1.5" 1281 | 1282 | kind-of@^4.0.0: 1283 | version "4.0.0" 1284 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1285 | dependencies: 1286 | is-buffer "^1.1.5" 1287 | 1288 | lodash._baseassign@^3.0.0: 1289 | version "3.2.0" 1290 | resolved "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" 1291 | dependencies: 1292 | lodash._basecopy "^3.0.0" 1293 | lodash.keys "^3.0.0" 1294 | 1295 | lodash._basecopy@^3.0.0: 1296 | version "3.0.1" 1297 | resolved "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" 1298 | 1299 | lodash._basecreate@^3.0.0: 1300 | version "3.0.3" 1301 | resolved "https://registry.npmjs.org/lodash._basecreate/-/lodash._basecreate-3.0.3.tgz#1bc661614daa7fc311b7d03bf16806a0213cf821" 1302 | 1303 | lodash._getnative@^3.0.0: 1304 | version "3.9.1" 1305 | resolved "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" 1306 | 1307 | lodash._isiterateecall@^3.0.0: 1308 | version "3.0.9" 1309 | resolved "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" 1310 | 1311 | lodash.create@3.1.1: 1312 | version "3.1.1" 1313 | resolved "https://registry.npmjs.org/lodash.create/-/lodash.create-3.1.1.tgz#d7f2849f0dbda7e04682bb8cd72ab022461debe7" 1314 | dependencies: 1315 | lodash._baseassign "^3.0.0" 1316 | lodash._basecreate "^3.0.0" 1317 | lodash._isiterateecall "^3.0.0" 1318 | 1319 | lodash.isarguments@^3.0.0: 1320 | version "3.1.0" 1321 | resolved "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" 1322 | 1323 | lodash.isarray@^3.0.0: 1324 | version "3.0.4" 1325 | resolved "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" 1326 | 1327 | lodash.keys@^3.0.0: 1328 | version "3.1.2" 1329 | resolved "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" 1330 | dependencies: 1331 | lodash._getnative "^3.0.0" 1332 | lodash.isarguments "^3.0.0" 1333 | lodash.isarray "^3.0.0" 1334 | 1335 | lodash@^4.15.0, lodash@^4.17.4: 1336 | version "4.17.4" 1337 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1338 | 1339 | loose-envify@^1.0.0: 1340 | version "1.3.1" 1341 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1342 | dependencies: 1343 | js-tokens "^3.0.0" 1344 | 1345 | micromatch@^2.1.5: 1346 | version "2.3.11" 1347 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1348 | dependencies: 1349 | arr-diff "^2.0.0" 1350 | array-unique "^0.2.1" 1351 | braces "^1.8.2" 1352 | expand-brackets "^0.1.4" 1353 | extglob "^0.3.1" 1354 | filename-regex "^2.0.0" 1355 | is-extglob "^1.0.0" 1356 | is-glob "^2.0.1" 1357 | kind-of "^3.0.2" 1358 | normalize-path "^2.0.1" 1359 | object.omit "^2.0.0" 1360 | parse-glob "^3.0.4" 1361 | regex-cache "^0.4.2" 1362 | 1363 | mime-db@~1.30.0: 1364 | version "1.30.0" 1365 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1366 | 1367 | mime-types@^2.1.12, mime-types@~2.1.7: 1368 | version "2.1.17" 1369 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1370 | dependencies: 1371 | mime-db "~1.30.0" 1372 | 1373 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1374 | version "3.0.4" 1375 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1376 | dependencies: 1377 | brace-expansion "^1.1.7" 1378 | 1379 | minimist@0.0.8: 1380 | version "0.0.8" 1381 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1382 | 1383 | minimist@^1.2.0: 1384 | version "1.2.0" 1385 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1386 | 1387 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1388 | version "0.5.1" 1389 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1390 | dependencies: 1391 | minimist "0.0.8" 1392 | 1393 | mocha@^3.2.0: 1394 | version "3.5.3" 1395 | resolved "https://registry.npmjs.org/mocha/-/mocha-3.5.3.tgz#1e0480fe36d2da5858d1eb6acc38418b26eaa20d" 1396 | dependencies: 1397 | browser-stdout "1.3.0" 1398 | commander "2.9.0" 1399 | debug "2.6.8" 1400 | diff "3.2.0" 1401 | escape-string-regexp "1.0.5" 1402 | glob "7.1.1" 1403 | growl "1.9.2" 1404 | he "1.1.1" 1405 | json3 "3.3.2" 1406 | lodash.create "3.1.1" 1407 | mkdirp "0.5.1" 1408 | supports-color "3.1.2" 1409 | 1410 | ms@2.0.0: 1411 | version "2.0.0" 1412 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1413 | 1414 | nan@^2.3.0: 1415 | version "2.8.0" 1416 | resolved "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 1417 | 1418 | needle@^2.1.0: 1419 | version "2.1.1" 1420 | resolved "https://registry.npmjs.org/needle/-/needle-2.1.1.tgz#f3d501d633e661d34cd9648ca6c42f782a44d071" 1421 | dependencies: 1422 | debug "^2.1.2" 1423 | iconv-lite "^0.4.4" 1424 | 1425 | node-pre-gyp@^0.6.39: 1426 | version "0.6.39" 1427 | resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1428 | dependencies: 1429 | detect-libc "^1.0.2" 1430 | hawk "3.1.3" 1431 | mkdirp "^0.5.1" 1432 | nopt "^4.0.1" 1433 | npmlog "^4.0.2" 1434 | rc "^1.1.7" 1435 | request "2.81.0" 1436 | rimraf "^2.6.1" 1437 | semver "^5.3.0" 1438 | tar "^2.2.1" 1439 | tar-pack "^3.4.0" 1440 | 1441 | nopt@^4.0.1: 1442 | version "4.0.1" 1443 | resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1444 | dependencies: 1445 | abbrev "1" 1446 | osenv "^0.1.4" 1447 | 1448 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1449 | version "2.1.1" 1450 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1451 | dependencies: 1452 | remove-trailing-separator "^1.0.1" 1453 | 1454 | npmlog@^4.0.2: 1455 | version "4.1.2" 1456 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1457 | dependencies: 1458 | are-we-there-yet "~1.1.2" 1459 | console-control-strings "~1.1.0" 1460 | gauge "~2.7.3" 1461 | set-blocking "~2.0.0" 1462 | 1463 | nth-check@~1.0.1: 1464 | version "1.0.1" 1465 | resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 1466 | dependencies: 1467 | boolbase "~1.0.0" 1468 | 1469 | number-is-nan@^1.0.0: 1470 | version "1.0.1" 1471 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1472 | 1473 | oauth-sign@~0.8.1: 1474 | version "0.8.2" 1475 | resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1476 | 1477 | object-assign@^4.1.0: 1478 | version "4.1.1" 1479 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1480 | 1481 | object.omit@^2.0.0: 1482 | version "2.0.1" 1483 | resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1484 | dependencies: 1485 | for-own "^0.1.4" 1486 | is-extendable "^0.1.1" 1487 | 1488 | once@^1.3.0, once@^1.3.3: 1489 | version "1.4.0" 1490 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1491 | dependencies: 1492 | wrappy "1" 1493 | 1494 | os-homedir@^1.0.0: 1495 | version "1.0.2" 1496 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1497 | 1498 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 1499 | version "1.0.2" 1500 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1501 | 1502 | osenv@^0.1.4: 1503 | version "0.1.4" 1504 | resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1505 | dependencies: 1506 | os-homedir "^1.0.0" 1507 | os-tmpdir "^1.0.0" 1508 | 1509 | output-file-sync@^1.1.2: 1510 | version "1.1.2" 1511 | resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 1512 | dependencies: 1513 | graceful-fs "^4.1.4" 1514 | mkdirp "^0.5.1" 1515 | object-assign "^4.1.0" 1516 | 1517 | parse-glob@^3.0.4: 1518 | version "3.0.4" 1519 | resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1520 | dependencies: 1521 | glob-base "^0.3.0" 1522 | is-dotfile "^1.0.0" 1523 | is-extglob "^1.0.0" 1524 | is-glob "^2.0.0" 1525 | 1526 | parse5@^3.0.1: 1527 | version "3.0.3" 1528 | resolved "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" 1529 | dependencies: 1530 | "@types/node" "*" 1531 | 1532 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 1533 | version "1.0.1" 1534 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1535 | 1536 | performance-now@^0.2.0: 1537 | version "0.2.0" 1538 | resolved "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1539 | 1540 | preserve@^0.2.0: 1541 | version "0.2.0" 1542 | resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1543 | 1544 | private@^0.1.6, private@^0.1.7: 1545 | version "0.1.8" 1546 | resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 1547 | 1548 | process-nextick-args@~1.0.6: 1549 | version "1.0.7" 1550 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1551 | 1552 | punycode@^1.4.1: 1553 | version "1.4.1" 1554 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 1555 | 1556 | qs@~6.4.0: 1557 | version "6.4.0" 1558 | resolved "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 1559 | 1560 | randomatic@^1.1.3: 1561 | version "1.1.7" 1562 | resolved "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1563 | dependencies: 1564 | is-number "^3.0.0" 1565 | kind-of "^4.0.0" 1566 | 1567 | rc@^1.1.7: 1568 | version "1.2.4" 1569 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.4.tgz#a0f606caae2a3b862bbd0ef85482c0125b315fa3" 1570 | dependencies: 1571 | deep-extend "~0.4.0" 1572 | ini "~1.3.0" 1573 | minimist "^1.2.0" 1574 | strip-json-comments "~2.0.1" 1575 | 1576 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 1577 | version "2.3.3" 1578 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1579 | dependencies: 1580 | core-util-is "~1.0.0" 1581 | inherits "~2.0.3" 1582 | isarray "~1.0.0" 1583 | process-nextick-args "~1.0.6" 1584 | safe-buffer "~5.1.1" 1585 | string_decoder "~1.0.3" 1586 | util-deprecate "~1.0.1" 1587 | 1588 | readdirp@^2.0.0: 1589 | version "2.1.0" 1590 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 1591 | dependencies: 1592 | graceful-fs "^4.1.2" 1593 | minimatch "^3.0.2" 1594 | readable-stream "^2.0.2" 1595 | set-immediate-shim "^1.0.1" 1596 | 1597 | regenerate@^1.2.1: 1598 | version "1.3.3" 1599 | resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 1600 | 1601 | regenerator-runtime@^0.10.5: 1602 | version "0.10.5" 1603 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 1604 | 1605 | regenerator-runtime@^0.11.0: 1606 | version "0.11.1" 1607 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 1608 | 1609 | regenerator-transform@^0.10.0: 1610 | version "0.10.1" 1611 | resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 1612 | dependencies: 1613 | babel-runtime "^6.18.0" 1614 | babel-types "^6.19.0" 1615 | private "^0.1.6" 1616 | 1617 | regex-cache@^0.4.2: 1618 | version "0.4.4" 1619 | resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1620 | dependencies: 1621 | is-equal-shallow "^0.1.3" 1622 | 1623 | regexpu-core@^2.0.0: 1624 | version "2.0.0" 1625 | resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 1626 | dependencies: 1627 | regenerate "^1.2.1" 1628 | regjsgen "^0.2.0" 1629 | regjsparser "^0.1.4" 1630 | 1631 | regjsgen@^0.2.0: 1632 | version "0.2.0" 1633 | resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 1634 | 1635 | regjsparser@^0.1.4: 1636 | version "0.1.5" 1637 | resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 1638 | dependencies: 1639 | jsesc "~0.5.0" 1640 | 1641 | remove-trailing-separator@^1.0.1: 1642 | version "1.1.0" 1643 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1644 | 1645 | repeat-element@^1.1.2: 1646 | version "1.1.2" 1647 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1648 | 1649 | repeat-string@^1.5.2: 1650 | version "1.6.1" 1651 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1652 | 1653 | repeating@^2.0.0: 1654 | version "2.0.1" 1655 | resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1656 | dependencies: 1657 | is-finite "^1.0.0" 1658 | 1659 | request@2.81.0: 1660 | version "2.81.0" 1661 | resolved "https://registry.npmjs.org/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 1662 | dependencies: 1663 | aws-sign2 "~0.6.0" 1664 | aws4 "^1.2.1" 1665 | caseless "~0.12.0" 1666 | combined-stream "~1.0.5" 1667 | extend "~3.0.0" 1668 | forever-agent "~0.6.1" 1669 | form-data "~2.1.1" 1670 | har-validator "~4.2.1" 1671 | hawk "~3.1.3" 1672 | http-signature "~1.1.0" 1673 | is-typedarray "~1.0.0" 1674 | isstream "~0.1.2" 1675 | json-stringify-safe "~5.0.1" 1676 | mime-types "~2.1.7" 1677 | oauth-sign "~0.8.1" 1678 | performance-now "^0.2.0" 1679 | qs "~6.4.0" 1680 | safe-buffer "^5.0.1" 1681 | stringstream "~0.0.4" 1682 | tough-cookie "~2.3.0" 1683 | tunnel-agent "^0.6.0" 1684 | uuid "^3.0.0" 1685 | 1686 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 1687 | version "2.6.2" 1688 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1689 | dependencies: 1690 | glob "^7.0.5" 1691 | 1692 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1693 | version "5.1.1" 1694 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1695 | 1696 | semver@^5.3.0: 1697 | version "5.5.0" 1698 | resolved "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 1699 | 1700 | set-blocking@~2.0.0: 1701 | version "2.0.0" 1702 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1703 | 1704 | set-immediate-shim@^1.0.1: 1705 | version "1.0.1" 1706 | resolved "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 1707 | 1708 | signal-exit@^3.0.0: 1709 | version "3.0.2" 1710 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1711 | 1712 | slash@^1.0.0: 1713 | version "1.0.0" 1714 | resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 1715 | 1716 | sntp@1.x.x: 1717 | version "1.0.9" 1718 | resolved "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 1719 | dependencies: 1720 | hoek "2.x.x" 1721 | 1722 | source-map-support@^0.4.15: 1723 | version "0.4.18" 1724 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 1725 | dependencies: 1726 | source-map "^0.5.6" 1727 | 1728 | source-map@^0.5.6: 1729 | version "0.5.7" 1730 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1731 | 1732 | sshpk@^1.7.0: 1733 | version "1.13.1" 1734 | resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 1735 | dependencies: 1736 | asn1 "~0.2.3" 1737 | assert-plus "^1.0.0" 1738 | dashdash "^1.12.0" 1739 | getpass "^0.1.1" 1740 | optionalDependencies: 1741 | bcrypt-pbkdf "^1.0.0" 1742 | ecc-jsbn "~0.1.1" 1743 | jsbn "~0.1.0" 1744 | tweetnacl "~0.14.0" 1745 | 1746 | string-width@^1.0.1, string-width@^1.0.2: 1747 | version "1.0.2" 1748 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1749 | dependencies: 1750 | code-point-at "^1.0.0" 1751 | is-fullwidth-code-point "^1.0.0" 1752 | strip-ansi "^3.0.0" 1753 | 1754 | string_decoder@~1.0.3: 1755 | version "1.0.3" 1756 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1757 | dependencies: 1758 | safe-buffer "~5.1.0" 1759 | 1760 | stringstream@~0.0.4: 1761 | version "0.0.5" 1762 | resolved "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 1763 | 1764 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1765 | version "3.0.1" 1766 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1767 | dependencies: 1768 | ansi-regex "^2.0.0" 1769 | 1770 | strip-json-comments@~2.0.1: 1771 | version "2.0.1" 1772 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1773 | 1774 | supports-color@3.1.2: 1775 | version "3.1.2" 1776 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" 1777 | dependencies: 1778 | has-flag "^1.0.0" 1779 | 1780 | supports-color@^2.0.0: 1781 | version "2.0.0" 1782 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1783 | 1784 | tar-pack@^3.4.0: 1785 | version "3.4.1" 1786 | resolved "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 1787 | dependencies: 1788 | debug "^2.2.0" 1789 | fstream "^1.0.10" 1790 | fstream-ignore "^1.0.5" 1791 | once "^1.3.3" 1792 | readable-stream "^2.1.4" 1793 | rimraf "^2.5.1" 1794 | tar "^2.2.1" 1795 | uid-number "^0.0.6" 1796 | 1797 | tar@^2.2.1: 1798 | version "2.2.1" 1799 | resolved "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 1800 | dependencies: 1801 | block-stream "*" 1802 | fstream "^1.0.2" 1803 | inherits "2" 1804 | 1805 | to-fast-properties@^1.0.3: 1806 | version "1.0.3" 1807 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 1808 | 1809 | tough-cookie@~2.3.0: 1810 | version "2.3.3" 1811 | resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 1812 | dependencies: 1813 | punycode "^1.4.1" 1814 | 1815 | trim-right@^1.0.1: 1816 | version "1.0.1" 1817 | resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 1818 | 1819 | tunnel-agent@^0.6.0: 1820 | version "0.6.0" 1821 | resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 1822 | dependencies: 1823 | safe-buffer "^5.0.1" 1824 | 1825 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 1826 | version "0.14.5" 1827 | resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 1828 | 1829 | type-detect@0.1.1: 1830 | version "0.1.1" 1831 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 1832 | 1833 | type-detect@^1.0.0: 1834 | version "1.0.0" 1835 | resolved "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 1836 | 1837 | uid-number@^0.0.6: 1838 | version "0.0.6" 1839 | resolved "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 1840 | 1841 | user-home@^1.1.1: 1842 | version "1.1.1" 1843 | resolved "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 1844 | 1845 | util-deprecate@~1.0.1: 1846 | version "1.0.2" 1847 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1848 | 1849 | uuid@^3.0.0: 1850 | version "3.2.1" 1851 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 1852 | 1853 | v8flags@^2.1.1: 1854 | version "2.1.1" 1855 | resolved "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 1856 | dependencies: 1857 | user-home "^1.1.1" 1858 | 1859 | verror@1.10.0: 1860 | version "1.10.0" 1861 | resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 1862 | dependencies: 1863 | assert-plus "^1.0.0" 1864 | core-util-is "1.0.2" 1865 | extsprintf "^1.2.0" 1866 | 1867 | wide-align@^1.1.0: 1868 | version "1.1.2" 1869 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 1870 | dependencies: 1871 | string-width "^1.0.2" 1872 | 1873 | wrappy@1: 1874 | version "1.0.2" 1875 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1876 | --------------------------------------------------------------------------------