{"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"dist-tags":{"latest":"3.7.0"},"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","readme":"# esri-loader\n\n[![Travis](https://img.shields.io/travis/Esri/esri-loader.svg)](https://travis-ci.org/Esri/esri-loader/builds/) [![npm](https://img.shields.io/npm/v/esri-loader.svg)](https://github.com/Esri/esri-loader/releases) [![npm](https://img.shields.io/npm/dw/esri-loader.svg)](https://www.npmjs.com/package/esri-loader) [![npm](https://img.shields.io/npm/l/esri-loader.svg)](https://github.com/Esri/esri-loader/blob/master/LICENSE) [![GitHub stars](https://img.shields.io/github/stars/esri/esri-loader.svg?style=social&label=Stars)](https://github.com/Esri/esri-loader/stargazers)\n\nA tiny library to help you use the [ArcGIS API for JavaScript](https://developers.arcgis.com/javascript/) in applications built with popular JavaScript frameworks and bundlers.\n\n![ArcGIS logo, mended broken heart, Angular logo, Ember logo, React logo, Vue logo](https://docs.google.com/drawings/d/e/2PACX-1vSUEfgaupMLz6FXBX65X-nm7cqA0r9ed3rJ_KNISeqzwDDkd8LsubLhQ_hCWwO3zjS41cD5eG7QUBHl/pub?w=888&h=222)\n\nReady to jump in? Follow the [Install](#install) and [Usage](#usage) instructions below to get started. Then see more in depth instructions on how to [configure esri-loader](#configuring-esri-loader) and use it with [React](#react), [Vue.js](#vuejs), [Angular](#angular), [Ember](#ember), or the [ArcGIS Types](#arcgis-types).\n\nWant to learn more? Read below about [why this library is needed](#why-is-this-needed) and how it can help [improve application load performance](#lazy-loading-the-arcgis-api-for-javascript) and allow you to [use the ArcGIS API in server side rendered applications](#server-side-rendering).\n\nWant to be inspired? See the [Examples](#examples) section below for links to applications that use this library in over a dozen different frameworks.\n\n## Table of Contents\n\n- [Install](#install)\n- [Usage](#usage)\n  - [Loading Modules from the ArcGIS API for JavaScript](#loading-modules-from-the-arcgis-api-for-javascript)\n  - [Lazy Loading the ArcGIS API for JavaScript](#lazy-loading-the-arcgis-api-for-javascript)\n  - [Loading Styles](#loading-styles)\n- [Why is this needed?](#why-is-this-needed)\n- [Examples](#examples)\n  - [Angular](#angular)\n  - [Ember](#ember)\n  - [React](#react)\n  - [Vue.js](#vuejs)\n- [Advanced Usage](#advanced-usage)\n  - [ArcGIS Types](#arcgis-types)\n  - [Configuring esri-loader](#configuring-esri-loader)\n  - [Configuring Dojo](#configuring-dojo)\n  - [Overriding ArcGIS Styles](#overriding-arcgis-styles)\n  - [Pre-loading the ArcGIS API for JavaScript](#pre-loading-the-arcgis-api-for-javascript)\n  - [Using your own script tag](#using-your-own-script-tag)\n  - [Without a module bundler](#without-a-module-bundler)\n    - [Using a module script tag](#using-a-module-script-tag)\n    - [Using the esriLoader Global](#using-the-esriloader-global)\n- [Pro Tips](#pro-tips)\n  - [Using Classes Synchronously](#using-classes-synchronously)\n  - [Server Side Rendering](#server-side-rendering)\n  - [FAQs](#faqs)\n- [Updating from previous versions](#updating-from-previous-versions)\n  - [From &lt; v1.5](#from--v15)\n  - [From angular-esri-loader](#from-angular-esri-loader)\n- [Dependencies](#dependencies)\n  - [Browsers](#browsers)\n  - [Promises](#promises)\n- [Issues](#issues)\n- [Contributing](#contributing)\n- [Licensing](#licensing)\n\n## Install\n\n```bash\nnpm install --save esri-loader\n```\n\nor\n\n```bash\nyarn add esri-loader\n```\n\n## Usage\n\nThe code snippets below show how to load the ArcGIS API and its modules and then use them to create a map. Where you would place similar code in your application will depend on which application framework you are using. See below for examples that are specific to [React](#react), [Vue.js](#vuejs), [Angular](#angular), [Ember](#ember), and [example applications](#examples) written in over a dozen frameworks.\n\n### Loading Modules from the ArcGIS API for JavaScript\n\n#### From the Latest Version\n\nHere's an example of how you could load and use the `WebMap` and `MapView` classes from the latest 4.x release to create a map (based on [this sample](https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=webmap-basic)):\n\n```js\nimport { loadModules } from 'esri-loader';\n\n// this will lazy load the ArcGIS API\n// and then use Dojo's loader to require the classes\nloadModules(['esri/views/MapView', 'esri/WebMap'])\n  .then(([MapView, WebMap]) => {\n    // then we load a web map from an id\n    var webmap = new WebMap({\n      portalItem: { // autocasts as new PortalItem()\n        id: 'f2e9b762544945f390ca4ac3671cfa72'\n      }\n    });\n    // and we show that map in a container w/ id #viewDiv\n    var view = new MapView({\n      map: webmap,\n      container: 'viewDiv'\n    });\n  })\n  .catch(err => {\n    // handle any errors\n    console.error(err);\n  });\n```\n\n#### From a Specific Version\n\nBy default esri-loader will load modules from the [latest 4.x release of the API from the CDN](https://developers.arcgis.com/javascript/latest/guide/get-api/#cdn), but you can [configure the default behavior](#configuring-esri-loader) by calling `setDefaultOptions()` once _before_ making any calls to `loadModules()`.\n\nFor example, the snippet below configures esri-loader to use the [latest 3.x release of the API from the CDN](https://developers.arcgis.com/javascript/3/jshelp/intro_accessapi.html#cdn) by setting the default `version` option during application start up.\n\n```js\n// app.js\nimport { setDefaultOptions } from 'esri-loader';\n\n// configure esri-loader to use version 3.32 from the ArcGIS CDN\n// NOTE: make sure this is called once before any calls to loadModules()\nsetDefaultOptions({ version: '3.32' })\n```\n\nThen later, for example after a map component has mounted, you would use `loadModules()` as normal, except in this case you'd be using the [3.x `Map` class](https://developers.arcgis.com/javascript/3/jsapi/map-amd.html) instead of the 4.x classes.\n\n```js\n// component.js\nimport { loadModules } from 'esri-loader';\n\n// this will lazy load the ArcGIS API\n// and then use Dojo's loader to require the map class\nloadModules(['esri/map'])\n  .then(([Map]) => {\n    // create map with the given options at a DOM node w/ id 'mapNode'\n    let map = new Map('mapNode', {\n      center: [-118, 34.5],\n      zoom: 8,\n      basemap: 'dark-gray'\n    });\n  })\n  .catch(err => {\n    // handle any script or module loading errors\n    console.error(err);\n  });\n```\n\nYou can load the [\"next\" version of the ArcGIS API](https://github.com/Esri/feedback-js-api-next#esri-loader) by passing `version: 'next'`.\n\n#### From a Specific URL\n\nIf you want to load modules from a build that you host on your own server (i.e. that you've [downloaded](https://developers.arcgis.com/javascript/latest/guide/get-api/#download-api) or [built with Dojo](https://developers.arcgis.com/javascript/latest/guide/using-npm/)), you would set the default `url` option instead:\n\n```js\n// app.js\nimport { setDefaultOptions } from 'esri-loader';\n\n// configure esri-loader to use version from a locally hosted build of the API\n// NOTE: make sure this is called once before any calls to loadModules()\nsetDefaultOptions({ url: `http://server/path/to/esri` });\n```\n\nSee [Configuring esri-loader](#configuring-esri-loader) for all available configuration options.\n\n### Lazy Loading the ArcGIS API for JavaScript\n\nLazy loading the ArcGIS API can dramatically improve the initial load performance of your mapping application, especially if your users may never end up visiting any routes that need to show a map or 3D scene. That is why it is the default behavior of esri-loader. In the above snippets, the first time `loadModules()` is called, it will lazy load the ArcGIS API by injecting a `<script>` tag in the page. That call and any subsequent calls to `loadModules()` will wait for the script to load before resolving with the modules.\n\nIf you have some reason why you do not want to lazy load the ArcGIS API, you can [use a static script tag](#using-your-own-script-tag) instead.\n\n### Loading Styles\n\nBefore you can use the ArcGIS API in your app, you _must_ load the styles that correspond to the version you are using. Just like the ArcGIS API modules, you'll probably want to [lazy load](#lazy-loading-the-arcgis-api-for-javascript) the styles only once they are needed by the application.\n\n#### When you load the script\n\nThe easiest way to do that is to pass the `css` option to `setDefaultOptions()`:\n\n```js\nimport { setDefaultOptions, loadModules } from 'esri-loader';\n\n// before loading the modules for the first time,\n// also lazy load the CSS for the version of\n// the script that you're loading from the CDN\nsetDefaultOptions({ css: true });\n\nloadModules(['esri/views/MapView', 'esri/WebMap'])\n  .then(([MapView, WebMap]) => {\n    // the styles, script, and modules have all been loaded (in that order)\n  });\n```\n\nPassing `css: true` does **not** work when loading the script using the `url` option. In that case you'll need to pass the URL to the styles like: `css: 'http://server/path/to/esri/css/main.css'`. See [Configuring esri-loader](#configuring-esri-loader) for all available configuration options.\n\n#### Using loadCss()\n\nAlternatively, you can use the provided `loadCss()` function to load the ArcGIS styles at any point in your application's life cycle. For example:\n\n```js\nimport { loadCss } from 'esri-loader';\n\n// by default loadCss() loads styles for the latest 4.x version\nloadCss();\n\n// or for a specific CDN version\nloadCss('3.32');\n\n// or a from specific URL, like a locally hosted version\nloadCss('http://server/path/to/esri/css/main.css');\n```\n\nSee below for information on how to [override ArcGIS styles](#overriding-arcgis-styles) that you've lazy loaded with `loadModules()` or `loadCss()`.\n\n#### Using traditional means\n\nOf course, you don't need to use esri-loader to load the styles. See the [ArcGIS API for JavaScript documentation](https://developers.arcgis.com/javascript/latest/guide/get-api/index.html) for more information on how to load the ArcGIS styles by more traditional means such as adding `<link>` tags to your HTML, or `@import` statements to your CSS.\n\n## Why is this needed?\n\nUnfortunately, you can't simply `npm install` the ArcGIS API and then `import` 'esri' modules in a non-Dojo application. The only reliable way to load ArcGIS API for JavaScript modules is using Dojo's AMD loader. However, when using the ArcGIS API in an application built with another framework, you typically want to use the tools and conventions of that framework rather than the Dojo build system.\n\nThere are a few ways to [integrate the ArcGIS API for JavaScript with other frameworks and their tools](https://developers.arcgis.com/javascript/latest/guide/using-frameworks/), but esri-loader is the most versatile since it works in applications that:\n- are built with _any_ loader/bundler, such as [webpack](https://webpack.js.org/), [rollup.js](https://rollupjs.org/), or [Parcel](https://parceljs.org)\n- use [framework tools](https://developers.arcgis.com/javascript/latest/guide/using-frameworks/#framework-tools) that discourage or prevent you from manually editing the webpack configuration\n- use either version [4.x](https://developers.arcgis.com/javascript/) _or_ [3.x](https://developers.arcgis.com/javascript/3/) of the ArcGIS API for JavaScript\n\nIf you are using webpack, you may be able to use the [@arcgis/webpack-plugin](https://github.com/Esri/arcgis-webpack-plugin) instead of esri-loader. Learn more about [which is the right solution for your application](https://developers.arcgis.com/javascript/latest/guide/using-frameworks/#when-to-use-the-webpack-plugin-vs-esri-loader).\n\n## Examples\n\nHere are some applications and framework-specific wrapper libraries that use this library. We don't guarantee that these examples are current, so check the version of esri-loader and their commit history before using them as a reference. They are presented by framework in alphabetical order - not picking any favorites here :stuck_out_tongue_winking_eye::\n\n### [Angular](https://angular.io/)\n\n> See the ArcGIS API guides for up to date examples of how to [use the ArcGIS API for JavaScript with Angular](https://developers.arcgis.com/javascript/latest/guide/angular/).\n\n#### Reusable libraries for Angular\n\n- [angular-esri-components](https://github.com/TheKeithStewart/angular-esri-components) - A set of Angular components to work with ArcGIS API for JavaScript v4.3\n\n#### Example Angular applications\n\n- [angular-cli-esri-map](https://github.com/Esri/angular-cli-esri-map) - Example of how to build a simple mapping component using Angular CLI.\n\n**NOTE**: If you want to use the ArcGIS API in an [AngularJS (1.x)](https://angularjs.org/) application, see [angular-esri-map](https://github.com/Esri/angular-esri-map), which is actually where the code in this library was originally extracted from.\n\n### [CanJS](https://canjs.com/)\n\n- [can-arcgis](https://github.com/roemhildtg/can-arcgis) - CanJS configurable mapping app (inspired by [cmv-app](https://github.com/cmv/cmv-app)) and components built for the ArcGIS JS API 4.x, bundled with [StealJS](https://stealjs.com/)\n\n### [Choo](https://choo.io/)\n\n- [esri-choo-example](https://github.com/jwasilgeo/esri-choo-example) - An example Choo application that shows how to use esri-loader to create a custom map view.\n\n### [Dojo 2+](https://dojo.io)\n\n- [dojo-esri-loader](https://github.com/odoe/dojo-esri-loader) - Dojo 5 app with esri-loader ([blog post](https://odoe.net/blog/dojo-framework-with-arcgis-api-for-javascript/))\n\n- [esri-dojo](https://github.com/jamesmilneruk/esri-dojo) - An example of how to use Esri Loader with Dojo 2+. This example is a simple map that allows you to place markers on it.\n\n### [Electron](https://electron.atom.io/)\n\n- [ng-cli-electron-esri](https://github.com/TheKeithStewart/ng-cli-electron-esri) - This project is meant to demonstrate how to run a mapping application using the ArcGIS API for JavaScript inside of Electron\n\n### [Ember](https://www.emberjs.com/)\n\n> See the ArcGIS API guides for up to date examples of how to [use the ArcGIS API for JavaScript with Ember](https://developers.arcgis.com/javascript/latest/guide/ember/).\n\n#### Reusable libraries for Ember\n\n- [ember-esri-loader](https://github.com/Esri/ember-esri-loader) - An Ember addon that wraps this library\n\n#### Example Ember applications\n\nSee the [examples over at ember-esri-loader](https://github.com/Esri/ember-esri-loader/#examples)\n\n### [Glimmer.js](https://glimmerjs.com/)\n\n- [esri-glimmer-example](https://github.com/tomwayson/esri-glimmer-example) - An example of how to use the ArcGIS API for JavaScript in a https://glimmerjs.com/ application\n\n### [Hyperapp](https://hyperapp.js.org/)\n\n- [esri-hyperapp-example](https://github.com/jwasilgeo/esri-hyperapp-example) - An example Hyperapp application that shows how to use esri-loader to create a custom map view and component.\n\n### [Ionic](https://ionicframework.com/)\n\n- [ionic2-esri-map](https://github.com/andygup/ionic2-esri-map) - Prototype app demonstrating how to use Ionic 3+ with the ArcGIS API for JavaScript\n\n### [Preact](https://github.com/developit/preact)\n\n- [esri-preact-pwa](https://github.com/tomwayson/esri-preact-pwa) - An example progressive web app (PWA) using the ArcGIS API for JavaScript built with Preact\n\n### [React](https://facebook.github.io/react/)\n\n> See the ArcGIS API guides for up to date examples of how to [use the ArcGIS API for JavaScript with React](https://developers.arcgis.com/javascript/latest/guide/react/).\n\n#### Reusable libraries for React\n\n- [react-arcgis](https://github.com/Esri/react-arcgis) - A few components to help you get started using esri-loader with React\n- [esri-loader-react](https://github.com/davetimmins/esri-loader-react) - A React component wrapper around esri-loader ([blog post](https://davetimmins.github.io/2017/07/19/esri-loader-react/))\n- [arcgis-react-redux-legend](https://github.com/davetimmins/arcgis-react-redux-legend) - Legend control for ArcGIS JS v4 using React and Redux\n\n#### Example React applications\n- [create-arcgis-app](https://github.com/tomwayson/create-arcgis-app/) - An example of how to use the ArcGIS platform in an application created with Create React App and React Router.\n- [next-arcgis-app](https://github.com/tomwayson/next-arcgis-app/) - An example of how to use the ArcGIS platform in an application built with Next.js\n- [esri-loader-react-starter-kit](https://github.com/tomwayson/esri-loader-react-starter-kit) - A fork of the [react-starter-kit](https://github.com/kriasoft/react-starter-kit) showing how to use esri-loader in an isomorphic/universal React application\n- [create-react-app-esri-loader](https://github.com/davetimmins/create-react-app-esri-loader/) - An example create-react-app application that uses [esri-loader-react](https://github.com/davetimmins/esri-loader-react) to load the ArcGIS API\n- [React-Typescript-App-with-ArcGIS-JSAPI](https://github.com/guzhongren/React-Typescript-App-with-ArcGIS-JSAPI) - An example create-react-app application that uses [esri-loader](https://github.com/Esri/esri-loader), [esri-loader-react](https://github.com/davetimmins/esri-loader-react), [Typescript](https://www.typescriptlang.org/), [Webpack3](https://webpack.js.org/) to create MapView\n\n### [Riot](https://riot.js.org/)\n\n- [esri-riot-example](https://github.com/jwasilgeo/esri-riot-example) - An example Riot application that shows how to use esri-loader to create a custom `<esri-map-view>` component.\n\n### [Stencil](https://stenciljs.com/)\n\n- [esri-stencil-example](https://github.com/Dzeneralen/esri-stencil-example) - An example Stencil application that shows how to use esri-loader to create a custom map view component and implement some basic routing controlling the map state\n\n### [Svelte](https://svelte.dev/)\n\n- [esri-svelte-example](https://github.com/gavinr/esri-svelte-example) - An example Svelte application that shows how to use esri-loader to load a map.\n- [esri-svelte-basemaps-example](https://github.com/jwasilgeo/esri-svelte-basemaps-example) - An example Svelte application that shows how to use esri-loader to create a custom `<EsriMapView>` component and explore various basemaps.\n\n### [Vue.js](https://vuejs.org/)\n\n> See the ArcGIS API guides for up to date examples of how to [use the ArcGIS API for JavaScript with Vue](https://developers.arcgis.com/javascript/latest/guide/vue/).\n\n- [CreateMap](https://github.com/oppoudel/CreateMap) - Create Map: City of Baltimore - https://gis.baltimorecity.gov/createmap/#/\n- [City of Baltimore: Map Gallery](https://github.com/oppoudel/MapGallery_Vue) - Map Gallery built with Vue.js that uses this library to load the ArcGIS API\n- [vue-jsapi4](https://github.com/odoe/vue-jsapi4) - An example of how to use the [ArcGIS API for Javascript](https://developers.arcgis.com/javascript/) in a [NUXT](https://nuxtjs.org/) application ([blog post](https://odoe.net/blog/arcgis-api-4-for-js-with-vue-cli-and-nuxt/), [video](https://youtu.be/hqJzzgM8seo))\n- [esri-vue-cli-example](https://github.com/tomwayson/esri-vue-cli-example) - An example of how to use the [ArcGIS API for JavaScript 3.x](https://developers.arcgis.com/javascript/3/) in a [vue-cli](https://github.com/vuejs/vue-cli) application\n\n## Advanced Usage\n\n### ArcGIS Types\n\nThis library doesn't make any assumptions about which version of the ArcGIS API you are using, so you will have to install the appropriate types. Furthermore, because you don't `import` esri modules directly with esri-loader, you'll have to follow the instructions below to use the types in your application.\n\n#### 4.x Types\n\nFollow [these instructions](https://github.com/Esri/jsapi-resources/tree/master/4.x/typescript) to install the 4.x types.\n\nAfter installing the 4.x types, you can use the `__esri` namespace for the types as seen in [this example](https://github.com/kgs916/angular2-esri4-components/blob/68861b286fd3a4814c495c2bd723e336e917ced2/src/lib/esri4-map/esri4-map.component.ts#L20-L26).\n\n#### 3.x Types\n\nYou can use [these instructions](https://github.com/Esri/jsapi-resources/tree/master/3.x/typescript) to install the 3.x types.\n\nThe `__esri` namespace is not defined for 3.x types, but you can `import * as esri from 'esri';` to use the types [as shown here](https://github.com/Esri/angular-cli-esri-map/issues/17#issue-360490589).\n\n#### TypeScript import()\n\nTypeScript 2.9 added a way to `import()` types which allows types to be imported without importing the module. For more information on import types see [this post](https://davidea.st/articles/typescript-2-9-import-types). You can use this as an alternative to the 4.x `_esri` namespace or `import * as esri from 'esri'` for 3.x.\n\nAfter you've installed the [4.x](#4x-types) or [3.x](#3x-types) types as described above, you can then use TypeScript's `import()` like:\n\n```ts\n// define a type that is an array of the 4.x types you are using\n// and indicate that loadModules() will resolve with that type\ntype MapModules = [typeof import(\"esri/WebMap\"), typeof import(\"esri/views/MapView\")];\nconst [WebMap, MapView] = await (loadModules([\"esri/WebMap\", \"esri/views/MapView\"]) as Promise<MapModules>);\n// the returned objects now have type\nconst webmap = new WebMap({portalItem: {id: this.webmapid}});\n```\n\nA more complete 4.x sample can be [seen here](https://codesandbox.io/s/xv8mw2890w?fontsize=14&module=%2Fsrc%2Fmapping.ts).\n\nThis also works with the 3.x types:\n\n```ts\n// define a type that is an array of the 3.x types you are using\n// and indicate that loadModules() will resolve with that type\ntype MapModules = [typeof import(\"esri/map\"), typeof import(\"esri/geometry/Extent\")];\nconst [Map, Extent] = await (loadModules([\"esri/map\", \"esri/geometry/Extent\"]) as Promise<MapModules>);\n// the returned objects now have type\nlet map = new Map(\"viewDiv\"...\n```\nA more complete 3.x sample can be [seen here](https://codesandbox.io/s/rj6jloy4nm?fontsize=14&module=%2Fsrc%2Fmapping.ts).\n\n#### Types in Angular CLI Applications\n\nFor Angular CLI applications, you will also need to add \"arcgis-js-api\" to `compilerOptions.types` in src/tsconfig.app.json and src/tsconfig.spec.json [as shown here](https://gist.github.com/tomwayson/e6260adfd56c2529313936528b8adacd#adding-the-arcgis-api-for-javascript-types).\n\n### Configuring esri-loader\n\nAs mentioned above, you can call `setDefaultOptions()` to configure [how esri-loader loads ArcGIS API modules](#from-a-specific-version) and [CSS](#when-you-load-the-script). Here are all the options you can set:\n\n| Name | Type | Default Value | Description |\n| -- | -- | -- | -- |\n| `version` | `string` | `'4.15'` | The version of the ArcGIS API hosted on Esri's CDN to use. |\n| `url` | `string` | `undefined` | The URL to a hosted build of the ArcGIS API to use. If both `version` and `url` are passed, `url` will be used. |\n| `css` | `string` or `boolean` | `undefined` | If a `string` is passed it is assumed to be the URL of a CSS file to load. Use `css: true` to load the `version`'s CSS from the CDN. |\n| `insertCssBefore` | `string` | `undefined` | When using `css`, the `<link>` to the stylesheet will be inserted before the first element that matches this [CSS Selector](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors). See [Overriding ArcGIS Styles](#overriding-arcgis-styles). |\n| `dojoConfig` | `Object` | `undefined` | See [Configuring Dojo](#configuring-dojo). |\n\nAll of the above are optional.\n\n#### Without `setDefaultOptions()`\n\nIf your application only has a single call to `loadModules()`, you do not need `setDefaultOptions()`. Instead you can just pass the `options` as a second argument to `loadModules()`:\n\n```js\nimport { loadModules } from 'esri-loader';\n\n// configure esri-loader to use version 3.32\n// and the CSS for that version from the ArcGIS CDN\nconst options = { version: '3.32', css: true };\n\nloadModules(['esri/map'], options)\n  .then(([Map]) => {\n    // create map with the given options at a DOM node w/ id 'mapNode'\n    let map = new Map('mapNode', {\n      center: [-118, 34.5],\n      zoom: 8,\n      basemap: 'dark-gray'\n    });\n  })\n  .catch(err => {\n    // handle any script or module loading errors\n    console.error(err);\n  });\n```\n\n### Configuring Dojo\n\nYou can pass a [`dojoConfig`](https://dojotoolkit.org/documentation/tutorials/1.10/dojo_config/) option to `loadModules()` to configure Dojo before the script tag is loaded. This is useful if you want to use esri-loader to load Dojo packages that are not included in the ArcGIS API for JavaScript such as [FlareClusterLayer](https://github.com/nickcam/FlareClusterLayer).\n\n```js\nimport { loadModules } from 'esri-loader';\n\n// in this case options are only needed so we can configure Dojo before loading the API\nconst options = {\n  // tell Dojo where to load other packages\n  dojoConfig: {\n    async: true,\n    packages: [\n      {\n        location: '/path/to/fcl',\n        name: 'fcl'\n      }\n    ]\n  }\n};\n\nloadModules(['esri/map', 'fcl/FlareClusterLayer_v3'], options)\n  .then(([Map, FlareClusterLayer]) => {\n    // you can now create a new FlareClusterLayer and add it to a new Map\n  })\n  .catch(err => {\n    // handle any errors\n    console.error(err);\n  });\n```\n\n### Overriding ArcGIS Styles\n\nIf you want to override ArcGIS styles that you have [lazy loaded using `loadModules()` or `loadCss()`](#loading-styles), you may need to insert the ArcGIS styles into the document _above_ your custom styles in order to ensure the [rules of CSS precedence](https://css-tricks.com/precedence-css-order-css-matters/) are applied correctly. For this reason, `loadCss()` accepts a [selector](https://developer.mozilla.org/en-US/docs/Web/API/Document_object_model/Locating_DOM_elements_using_selectors#Selectors) (string) as optional second argument that it uses to query the DOM node (i.e. `<link>` or `<script>`) that contains your custom styles and then insert the ArcGIS styles above that node. You can also pass that selector as the `insertCssBefore` option to `loadModules()`:\n\n```js\nimport { loadModules } from 'esri-loader';\n\n// lazy load the CSS before loading the modules\nconst options = {\n  css: true,\n  // insert the stylesheet link above the first <style> tag on the page\n  insertCssBefore: 'style'\n};\n\n// before loading the modules, this will call:\n// loadCss('https://js.arcgis.com/4.12/themes/light/main.css', 'style')\nloadModules(['esri/views/MapView', 'esri/WebMap'], options);\n```\n\nAlternatively you could insert it before the first `<link>` tag w/ `insertCssBefore: 'link[rel=\"stylesheet\"]'`,  etc.\n\n### Pre-loading the ArcGIS API for JavaScript\n\nUnder the hood, `loadModules()` calls esri-loader's `loadScript()` function to lazy load the ArcGIS API by injecting a `<script>` tag into the page.\n\nIf `loadModules()` hasn't yet been called, but you have good reason to believe that the user is going take an action that will call it (i.e. transition to a route that shows a map), you can call `loadScript()` ahead of time to start loading ArcGIS API. For example:\n\n```js\nimport { loadScript, loadModules } from 'esri-loader';\n\n// preload the ArcGIS API\n// NOTE: in this case, we're not passing any options to loadScript()\n// so it will default to loading the latest 4.x version of the API from the CDN\nloadScript();\n\n// later, for example after transitioning to a route with a map\n// you can now load the map modules and create the map\nconst [MapView, WebMap] = await loadModules(['esri/views/MapView', 'esri/WebMap']);\n```\nSee [Configuring esri-loader](#configuring-esri-loader) for all available configuration options you can pass to `loadScript()`.\n\n**NOTE**: `loadScript()` does **not** use [`rel=\"preload\"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content#Scripting_and_preloads), so it will fetch, parse, and execute the script. In practice, it can be tricky to find a point in your application where you can call `loadScript()` without blocking rendering. In most cases, it's best to just use `loadModules()` to lazy load the script.\n\n### Using your own script tag\n\nIt is possible to use this library only to load modules (i.e. not to lazy load or pre-load the ArcGIS API). In this case you will need to add a `data-esri-loader` attribute to the script tag you use to load the ArcGIS API for JavaScript. Example:\n\n```html\n<!-- index.html -->\n<script src=\"https://js.arcgis.com/4.15/\" data-esri-loader=\"loaded\"></script>\n```\n\n### Without a module bundler\n\nTypically you would [install the esri-loader package](#install) and then use a module loader/bundler to `import` the functions you need as part of your application's build. However, ES5 builds of esri-loader are also distributed on [UNPKG](https://unpkg.com/) both as ES modules and as a [UMD](http://jargon.js.org/_glossary/UMD.md) bundle that exposes the `esriLoader` global.\n\nThis is an _excellent_ way to prototype how you will use the ArcGIS API for JavaScript, or to isolate any problems that you are having with the API. Before we can help you with any issue related to the behavior of a map, scene, or widgets, we will **require** you to reproduce it _outside_ your application. A great place to start is one of the codepens linked below.\n\n#### Using a module script tag\n\nYou can load the esri-loader [ES modules directly in modern browsers](https://caniuse.com/#feat=es6-module) using `<script type=\"module\">`. The advantage of this approach is that [browsers that support `type=\"module\"` also support ES2015 and many later features like `async`/`await`](https://philipwalton.com/articles/deploying-es2015-code-in-production-today/). This means you can safely write modern JavaScript in your script, which will make it easier to copy/paste to/from your application's source code.\n\n```html\n<script type=\"module\">\n  // to use a specific version of esri-loader, include the @version in the URL for example:\n  // https://unpkg.com/esri-loader@2.13.0/dist/esm/esri-loader.js\n  import { loadModules } from \"https://unpkg.com/esri-loader/dist/esm/esri-loader.js\";\n\n  const main = async () => {\n    const [MapView, WebMap] = await loadModules(['esri/views/MapView', 'esri/WebMap']);\n    // use MapView and WebMap classes as shown above\n  }\n  main();\n</script>\n```\n\nYou can fork [this codepen](https://codepen.io/gavinr/pen/wvavjwp) to try this out yourself.\n\nA disadvantage of this approach is that the ES module build of esri-loader is not bundled. This means your browser will make multiple requests for a few (tiny) JS files, which may not be suitable for a production application.\n\n#### Using the esriLoader Global\n\nIf you need to run the script in an older browser, you can load the UMD build and then use the `esriLoader` global.\n\n```html\n<!--\n  to use a specific version of esri-loader, include the @version in the URL for example:\n  https://unpkg.com/esri-loader@2.13.0\n-->\n<script src=\"https://unpkg.com/esri-loader\"></script>\n<script>\n  esriLoader.loadModules(['esri/views/MapView', 'esri/WebMap'])\n  .then(function ([MapView, WebMap]) {\n    // use MapView and WebMap classes as shown above\n  });\n</script>\n```\n\nYou can fork [this codepen](https://codepen.io/tomwayson/pen/PoqwZYm) to try this out yourself.\n\n## Pro Tips\n\n### Using Classes Synchronously\n\nLet's say you need to create a map in one component, and then later in another component add a graphic to that map. Unlike creating a map, creating a graphic and adding it to a map is ordinarily a synchronous operation, so it can be inconvenient to have to wait for `loadModules()` just to load the `Graphic` class. One way to handle this is have the function that creates the map _also_ load the `Graphic` class before its needed. You can then hold onto that class for later use to be exposed by a function like  `addGraphicToMap(view, graphicJson)`:\n\n```javascript\n// utils/map.js\nimport { loadModules } from 'esri-loader';\n\n// NOTE: module, not global scope\nlet _Graphic;\n\n// this will be called by the map component\nexport function loadMap(element, mapOptions) {\n  return loadModules(['esri/Map', 'esri/views/MapView', 'esri/Graphic'])\n  .then(([Map, MapView, Graphic]) => {\n    // hold onto the graphic class for later use\n    _Graphic = Graphic;\n    // create the Map\n    const map = new Map(mapOptions);\n    // return a view showing the map at the element\n    return new MapView({\n      map,\n      container: element\n    });\n  });\n}\n\n// this will be called by the component that needs to add the graphic to the map\nexport function addGraphicToMap(view, graphicJson) {\n  // make sure that the graphic class has already been loaded\n  if (!_Graphic) {\n    throw new Error('You must load a map before creating new graphics');\n  }\n  view.graphics.add(new _Graphic(graphicJson));\n}\n```\n\nYou can [see this pattern in use in a real-world application](https://github.com/tomwayson/create-arcgis-app/blob/master/src/utils/map.js).\n\nSee [#124 (comment)](https://github.com/Esri/esri-loader/issues/124#issuecomment-408482410) and [#71 (comment)](https://github.com/Esri/esri-loader/issues/71#issuecomment-381356848) for more background on this pattern.\n\n### Server Side Rendering\n\n<a id=\"isomorphicuniversal-applications\"></a>This library also allows you to use the ArcGIS API in [applications that are rendered on the server](https://medium.com/@baphemot/whats-server-side-rendering-and-do-i-need-it-cb42dc059b38). There's really no difference in how you invoke the functions exposed by this library, however you should avoid trying to call them from any code that runs on the server. The easiest way to do this is to call `loadModules()` in component lifecyle hooks that are only invoked in a browser, for example, React's [useEffect](https://reactjs.org/docs/hooks-effect.html) or [componentDidMount](https://reactjs.org/docs/react-component.html#componentdidmount), or Vue's [mounted](https://vuejs.org/v2/api/#mounted).\n\nAlternatively, you could use checks like the following to prevent calling esri-loader functions on the server:\n\n```js\nimport { loadCss } from 'esri-loader';\n\nif (typeof window !== 'undefined') {\n  // this is running in a browser, so go ahead and load the CSS\n  loadCss();\n}\n```\n\nSee [next-arcgis-app](https://github.com/tomwayson/next-arcgis-app/) or [esri-loader-react-starter-kit](https://github.com/tomwayson/esri-loader-react-starter-kit/) for examples of how to use esri-loader in server side rendered (SSR) applications.\n\n### FAQs\n\nIn addition to the pro tips above, you might want to check out some [frequently asked questions](https://github.com/Esri/esri-loader/issues?utf8=%E2%9C%93&q=label%3AFAQ+sort%3Aupdated-desc).\n\n## Updating from previous versions\n\n### From &lt; v1.5\n\nIf you have an application using a version that is less than v1.5, [this commit](https://github.com/odoe/vue-jsapi4/pull/1/commits/4cb6413c0ea31fdd09e94f3a0ce0d1669a9fd5ad) shows the kinds of changes you'll need to make. In most cases, you should be able to replace a series of calls to `isLoaded()`, `bootstrap()`, and `dojoRequire()` with a single call to `loadModules()`.\n\n### From angular-esri-loader\n\nThe angular-esri-loader wrapper library is no longer needed and has been deprecated in favor of using esri-loader directly. See [this issue](https://github.com/Esri/esri-loader/issues/75) for suggestions on how to replace angular-esri-loader with the latest version of esri-loader.\n\n## Dependencies\n\n### Browsers\n\nThis library doesn't have any external dependencies, but the functions it exposes to load the ArcGIS API and its modules expect to be run in a browser. This library officially supports [the same browsers that are supported by the latest version of the ArcGIS API for JavaScript](https://developers.arcgis.com/javascript/latest/guide/system-requirements/index.html#supported-browsers). Since this library also works with [v3.x of the ArcGIS API](https://developers.arcgis.com/javascript/3/), the community [has made some effort](https://github.com/Esri/esri-loader/pull/67) to get it to work with [some of the older browsers supported by 3.x](https://developers.arcgis.com/javascript/3/jshelp/supported_browsers.html) like IE < 11.\n\nYou cannot run the ArcGIS API for JavaScript in [Node.js](https://nodejs.org/), but you _can_ use this library in [server side rendered applications](#server-side-rendering) as well as [Electron](#electron). If you need to execute requests to ArcGIS REST services from something like a Node.js CLI application, see [arcgis-rest-js](https://github.com/Esri/arcgis-rest-js).\n\n### Promises\n\nSince v1.5 asynchronous functions like `loadModules()` and `loadScript()` return [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)s, so if your application has to support [browsers that don't support Promise (i.e. IE)](https://caniuse.com/#search=promise) you have a few options.\n\nIf there's already a Promise implementation loaded on the page you can configure esri-loader to use that implementation. For example, in [ember-esri-loader](https://github.com/Esri/ember-esri-loader), we configure esri-loader to use the RSVP Promise implementation included with Ember.js.\n\n```js\nimport { utils } from  'esri-loader';\n\ninit () {\n  this._super(...arguments);\n  // have esriLoader use Ember's RSVP promise\n  utils.Promise = Ember.RSVP.Promise;\n},\n```\n\nOtherwise, you should consider using a [Promise polyfill](https://www.google.com/search?q=promise+polyfill), ideally [only when needed](https://philipwalton.com/articles/loading-polyfills-only-when-needed/).\n\n## Issues\n\nFind a bug or want to request a new feature?  Please let us know by [submitting an issue](https://github.com/Esri/esri-loader/issues/).\n\n## Contributing\n\nEsri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing).\n\n## Licensing\n\nCopyright &copy; 2016-2019 Esri\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttps://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\nA copy of the license is available in the repository's [LICENSE]( ./LICENSE) file.\n","repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"users":{"pyhazard":true},"bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"license":"Apache-2.0","versions":{"0.1.0":{"name":"esri-loader","version":"0.1.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/index.js","types":"dist/index.d.ts","scripts":{"test":"tsc","build":"tsc","prepublish":"npm run build","start":"tsc -w"},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"typescript":"^2.0.10"},"gitHead":"361990a02c074da37542ede9df2e2ece088ec68a","_id":"esri-loader@0.1.0","_shasum":"14ea9dce638f9c008901624d88745a3e6ba80883","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"14ea9dce638f9c008901624d88745a3e6ba80883","size":8094,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-0.1.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/esri-loader-0.1.0.tgz_1479458580959_0.38337475270964205"},"directories":{},"publish_time":1479458581184,"_cnpm_publish_time":1479458581184,"_hasShrinkwrap":false},"0.1.1":{"name":"esri-loader","version":"0.1.1","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"esri-loader.js","types":"esri-loader.d.ts","scripts":{"test":"tsc","build":"tsc","prepublish":"npm run build","start":"tsc -w"},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"typescript":"^2.0.10"},"gitHead":"e1422906a895529844a2146b943114afecf8006f","_id":"esri-loader@0.1.1","_shasum":"dc2e0004665e2494ead288362c26845fdaca2c76","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"dc2e0004665e2494ead288362c26845fdaca2c76","size":7828,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-0.1.1.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/esri-loader-0.1.1.tgz_1479839057708_0.3785277628339827"},"directories":{},"publish_time":1479839057944,"_cnpm_publish_time":1479839057944,"_hasShrinkwrap":false},"0.1.2":{"name":"esri-loader","version":"0.1.2","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"index.js","types":"index.d.ts","scripts":{"test":"tsc","build":"tsc","prepublish":"npm run build","start":"tsc -w"},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"typescript":"^2.0.10"},"gitHead":"90f47b1ec902cf472b9b78dd5a050784d447deb9","_id":"esri-loader@0.1.2","_shasum":"85415a8d8cb93fb1ce6a5ae1d69ebaa076e95194","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"85415a8d8cb93fb1ce6a5ae1d69ebaa076e95194","size":8194,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-0.1.2.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/esri-loader-0.1.2.tgz_1479878387158_0.09192228340543807"},"directories":{},"publish_time":1479878387731,"_cnpm_publish_time":1479878387731,"_hasShrinkwrap":false},"0.1.3":{"name":"esri-loader","version":"0.1.3","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"index.js","types":"index.d.ts","scripts":{"test":"tsc","build":"tsc","prepublish":"npm run build","start":"tsc -w"},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"typescript":"^2.0.10"},"gitHead":"72ee30cfacdd879d1448df002d11ef5e42dfd733","_id":"esri-loader@0.1.3","_shasum":"c2dc736c072a852f7dc3f71f6cae13acfbf3b51c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"c2dc736c072a852f7dc3f71f6cae13acfbf3b51c","size":8491,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-0.1.3.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/esri-loader-0.1.3.tgz_1480998073611_0.16755857272073627"},"directories":{},"publish_time":1480998075502,"_cnpm_publish_time":1480998075502,"_hasShrinkwrap":false},"0.2.0":{"name":"esri-loader","version":"0.2.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"index.js","types":"index.d.ts","scripts":{"test":"tsc","build":"tsc","prepublish":"npm run build","start":"tsc -w"},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"typescript":"^2.0.10"},"gitHead":"ca75c60913dc15b2137d3d05c585a69faba743eb","_id":"esri-loader@0.2.0","_shasum":"8aacd44822fbf7f818a07b12b0a3f3b6427ad3ff","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"8aacd44822fbf7f818a07b12b0a3f3b6427ad3ff","size":9046,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-0.2.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/esri-loader-0.2.0.tgz_1491107979258_0.5624110945500433"},"directories":{},"publish_time":1491107979884,"_hasShrinkwrap":false,"_cnpm_publish_time":1491107979884},"0.3.0":{"name":"esri-loader","version":"0.3.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"test":"tsc","build":"tsc && rollup -c","prepublish":"npm run build","start":"tsc -w"},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"rollup":"^0.41.6","typescript":"^2.0.10"},"gitHead":"79da3c5ab8c96a364698f7303a799556bf9559b5","_id":"esri-loader@0.3.0","_shasum":"61fb5400730ab65e6df21cdf6ca9d732eedc5199","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"61fb5400730ab65e6df21cdf6ca9d732eedc5199","size":10755,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-0.3.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/esri-loader-0.3.0.tgz_1491567546179_0.21652509458363056"},"directories":{},"publish_time":1491567548059,"_hasShrinkwrap":false,"_cnpm_publish_time":1491567548059},"0.3.1":{"name":"esri-loader","version":"0.3.1","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"test":"npm run build:release && karma start --single-run=true","build":"tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.6.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","onchange":"^3.2.1","rollup":"^0.41.6","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"dbb1ec9354f64269de10d426ee3f8b959e7c669c","_id":"esri-loader@0.3.1","_shasum":"3539099ca8a6f7013eece83880ab24cf02910393","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"3539099ca8a6f7013eece83880ab24cf02910393","size":15676,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-0.3.1.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/esri-loader-0.3.1.tgz_1491803166411_0.15839040954597294"},"directories":{},"publish_time":1491803167104,"_cnpm_publish_time":1491803167104,"_hasShrinkwrap":false},"1.0.0":{"name":"esri-loader","version":"1.0.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"test":"npm run build:release && karma start --single-run=true","build":"tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/tomwayson/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/tomwayson/esri-loader/issues"},"homepage":"https://github.com/tomwayson/esri-loader#readme","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.6.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","onchange":"^3.2.1","rollup":"^0.41.6","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"d939de08bacbbbc6f9b278af03fe7b598e39942c","_id":"esri-loader@1.0.0","_shasum":"7abf56e4f5089b69285d58bde5cfe2fa86b07ed7","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"7abf56e4f5089b69285d58bde5cfe2fa86b07ed7","size":16942,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.0.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/esri-loader-1.0.0.tgz_1493480380931_0.8995070387609303"},"directories":{},"publish_time":1493480381640,"_cnpm_publish_time":1493480381640,"_hasShrinkwrap":false},"1.1.0":{"name":"esri-loader","version":"1.1.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"test":"npm run build:release && karma start --single-run=true","build":"tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.6.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","onchange":"^3.2.1","rollup":"^0.41.6","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"0d1309fbebdbe627e4cfc0d4332ee1cc8470db4d","_id":"esri-loader@1.1.0","_shasum":"5957f39a3708108a8b42b5c42928c127e39abed8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"5957f39a3708108a8b42b5c42928c127e39abed8","size":17599,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.1.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.1.0.tgz_1500929964148_0.41178327542729676"},"directories":{},"publish_time":1500929964251,"_hasShrinkwrap":false,"_cnpm_publish_time":1500929964251},"1.2.0":{"name":"esri-loader","version":"1.2.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"lint":"tslint -c tslint.json 'src/esri-loader.ts'","test":"npm run build:release && karma start --single-run=true","build":"npm run lint && tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.6.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","onchange":"^3.2.1","rollup":"^0.41.6","tslint":"^5.7.0","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"4b8fd66f1265490f720393a0786abbf8c0aec9c6","_id":"esri-loader@1.2.0","_shasum":"95d8304a4ea80045a8de3b14e872a8c8ed369d56","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"95d8304a4ea80045a8de3b14e872a8c8ed369d56","size":19377,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.2.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.2.0.tgz_1509199831275_0.871449685189873"},"directories":{},"publish_time":1509199831793,"_cnpm_publish_time":1509199831793,"_hasShrinkwrap":false},"1.2.1":{"name":"esri-loader","version":"1.2.1","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"lint":"tslint -c tslint.json 'src/esri-loader.ts'","test":"npm run build:release && karma start --single-run=true","build":"npm run lint && tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.6.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","onchange":"^3.2.1","rollup":"^0.41.6","tslint":"^5.7.0","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"2da3a53479fe9f5678cac0a8c524427d88326d16","_id":"esri-loader@1.2.1","_shasum":"5d97a1f27c621e8cbc5ccca77798f8a420e7a10d","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"5d97a1f27c621e8cbc5ccca77798f8a420e7a10d","size":19420,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.2.1.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.2.1.tgz_1510029649021_0.3472194503992796"},"directories":{},"publish_time":1510029649136,"_hasShrinkwrap":false,"_cnpm_publish_time":1510029649136},"1.3.0":{"name":"esri-loader","version":"1.3.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"lint":"tslint -c tslint.json 'src/esri-loader.ts'","test":"npm run build:release && karma start --single-run=true","build":"npm run lint && tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.6.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","tslint":"^5.7.0","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"16c6d9783fee385f83ea98ef53a19058f27cc348","_id":"esri-loader@1.3.0","_shasum":"cbc20105466bb414d1d84dcfe2248d5758462681","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"cbc20105466bb414d1d84dcfe2248d5758462681","size":20399,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.3.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.3.0.tgz_1510073147670_0.27661880711093545"},"directories":{},"publish_time":1510073148923,"_cnpm_publish_time":1510073148923,"_hasShrinkwrap":false},"1.4.0":{"name":"esri-loader","version":"1.4.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"lint":"tslint -c tslint.json 'src/esri-loader.ts'","test":"npm run build:release && karma start --single-run=true","build":"npm run lint && tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.6.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","tslint":"^5.7.0","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"6c27b5dd99c5f02c37b5266492d4058270616081","_id":"esri-loader@1.4.0","_shasum":"b8b8aff81c5b96f9fdd0887a2b951767e1add80f","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"b8b8aff81c5b96f9fdd0887a2b951767e1add80f","size":21123,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.4.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.4.0.tgz_1510085234748_0.5009390360210091"},"directories":{},"publish_time":1510085234815,"_hasShrinkwrap":false,"_cnpm_publish_time":1510085234815},"1.5.0":{"name":"esri-loader","version":"1.5.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/esri-loader.js","module":"src/esri-loader.js","types":"src/esri-loader.d.ts","scripts":{"lint":"tslint -c tslint.json 'src/esri-loader.ts'","test":"npm run build:release && karma start --single-run=true","build":"npm run lint && tsc && rollup -c","uglify":"uglifyjs ./dist/esri-loader.js -m -c -o ./dist/esri-loader.min.js --source-map ./dist/esri-loader.min.js.map","build:release":"npm run build && npm run uglify","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\""},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","tslint":"^5.7.0","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"21e7323c643a7cba85471edc635b58c940b577c2","_id":"esri-loader@1.5.0","_shasum":"b0eee3f2b0bf3d4cf24748d538103c4653d05086","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"b0eee3f2b0bf3d4cf24748d538103c4653d05086","size":29598,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.5.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.5.0.tgz_1510293789551_0.6247620314825326"},"directories":{},"publish_time":1510293790678,"_cnpm_publish_time":1510293790678,"_hasShrinkwrap":false,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"1.5.1":{"name":"esri-loader","version":"1.5.1","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"tsc && rollup -c","build:release":"npm run clean && npm run build && rollup -c && npm run uglify","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true","uglify":"uglifyjs ./dist/umd/esri-loader.js -m -c -o ./dist/umd/esri-loader.min.js --source-map ./dist/umd/esri-loader.min.js.map"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","tslint":"^5.7.0","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"1537d3e17536d70da3d5c079b3cd9dcdc3bfc18b","_id":"esri-loader@1.5.1","_shasum":"5e81bc6258b128347c48808f3fe5cde6fd0e62b2","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"5e81bc6258b128347c48808f3fe5cde6fd0e62b2","size":23712,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.5.1.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.5.1.tgz_1510990412442_0.6109364344738424"},"directories":{},"publish_time":1510990412512,"_hasShrinkwrap":false,"_cnpm_publish_time":1510990412512,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"1.5.2":{"name":"esri-loader","version":"1.5.2","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"tsc && rollup -c","build:release":"npm run clean && npm run build && rollup -c && npm run uglify","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true","uglify":"uglifyjs ./dist/umd/esri-loader.js -m -c -o ./dist/umd/esri-loader.min.js --source-map ./dist/umd/esri-loader.min.js.map --source-map-url=esri-loader.min.js.map"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","tslint":"^5.7.0","typescript":"^2.0.10","uglify-js":"^2.8.22"},"gitHead":"c5f26da79dfe749fc01f7841655bfd99f0d24d77","_id":"esri-loader@1.5.2","_shasum":"b413300750699891c76a842c8c23cb78d8f50d6b","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"b413300750699891c76a842c8c23cb78d8f50d6b","size":23708,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.5.2.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.5.2.tgz_1510996845543_0.7498031437862664"},"directories":{},"publish_time":1510996846664,"_cnpm_publish_time":1510996846664,"_hasShrinkwrap":false,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"1.5.3":{"name":"esri-loader","version":"1.5.3","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","postbuild:release":"npm run bundle -- --o dist/esri-loader.js && npm run bundle -- profiles/prod.config.js --o dist/esri-loader.min.js","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"29fa6375a683fc80b0fbf7dbc67496305d9312a6","_id":"esri-loader@1.5.3","_shasum":"a5a8edcfcc9282fc7a0016308ae37dfd235d5a2f","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"a5a8edcfcc9282fc7a0016308ae37dfd235d5a2f","size":26792,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.5.3.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.5.3.tgz_1511224646184_0.14360357983969152"},"directories":{},"publish_time":1511224647193,"_cnpm_publish_time":1511224647193,"_hasShrinkwrap":false,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"1.6.0":{"name":"esri-loader","version":"1.6.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","postbuild:release":"npm run bundle -- --o dist/esri-loader.js && npm run bundle -- profiles/prod.config.js --o dist/esri-loader.min.js","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"f0d047ab54065e8f57fae5cbfa8c1d771a3731cd","_id":"esri-loader@1.6.0","_shasum":"37acc09fbb6e69aa09b9767f237cb24cd3f6c5ad","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"37acc09fbb6e69aa09b9767f237cb24cd3f6c5ad","size":27556,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.6.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.6.0.tgz_1514740550347_0.13230395945720375"},"directories":{},"publish_time":1514740550492,"_hasShrinkwrap":false,"_cnpm_publish_time":1514740550492,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"1.6.1":{"name":"esri-loader","version":"1.6.1","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","postbuild:release":"npm run bundle -- --o dist/esri-loader.js && npm run bundle -- profiles/prod.config.js --o dist/esri-loader.min.js","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"9426e2b20f2abcb6fb59adf755c10253df53022b","_id":"esri-loader@1.6.1","_shasum":"3f451c934ebc8183c841abc469ece4e5f1ef9e16","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"3f451c934ebc8183c841abc469ece4e5f1ef9e16","size":28318,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.6.1.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.6.1.tgz_1514875433258_0.8194554606452584"},"directories":{},"publish_time":1514875434391,"_hasShrinkwrap":false,"_cnpm_publish_time":1514875434391,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"1.6.2":{"name":"esri-loader","version":"1.6.2","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","postbuild:release":"npm run bundle -- --o dist/esri-loader.js && npm run bundle -- profiles/prod.config.js --o dist/esri-loader.min.js","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"a8308b6ec5f16a6322421f40886d3e4c2c089c06","_id":"esri-loader@1.6.2","_shasum":"71e900fa5e20fce0e9b5087c5e6782acdcf52b69","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"71e900fa5e20fce0e9b5087c5e6782acdcf52b69","size":28925,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.6.2.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.6.2.tgz_1514907290232_0.22556624910794199"},"directories":{},"publish_time":1514907290356,"_hasShrinkwrap":false,"_cnpm_publish_time":1514907290356,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"1.7.0":{"name":"esri-loader","version":"1.7.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","postbuild:release":"npm run bundle -- --o dist/esri-loader.js && npm run bundle -- profiles/prod.config.js --o dist/esri-loader.min.js","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"d5e9e89e6d68f8196bffebcfbc8ed1a36d5b7443","_id":"esri-loader@1.7.0","_shasum":"940f2e5abc4fa33c1fd7f862845a734551799d13","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"940f2e5abc4fa33c1fd7f862845a734551799d13","size":29147,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-1.7.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-1.7.0.tgz_1515003233775_0.4398449193686247"},"directories":{},"publish_time":1515003233852,"_hasShrinkwrap":false,"_cnpm_publish_time":1515003233852,"deprecated":"esri-loader@^2.0.0 removes legacy APIs and reduces file size"},"2.0.0":{"name":"esri-loader","version":"2.0.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rm -rf dist && mkdir -p dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","onchange":"^3.2.1","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"617c077fa622d45259115f19bda382badb7da446","_id":"esri-loader@2.0.0","_shasum":"91fdf91c8820df07f0433c6b60f7ff7fcdbd397a","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"91fdf91c8820df07f0433c6b60f7ff7fcdbd397a","size":20685,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.0.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader-2.0.0.tgz_1515077897938_0.9356042421422899"},"directories":{},"publish_time":1515077898119,"_hasShrinkwrap":false,"_cnpm_publish_time":1515077898119},"2.1.0":{"name":"esri-loader","version":"2.1.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"1f4c86d52d36870157def39f71a0cc3c4c5a288e","_id":"esri-loader@2.1.0","_shasum":"7f775a04af017d86aeb6bcf01726e561ffb92a94","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"7f775a04af017d86aeb6bcf01726e561ffb92a94","size":22806,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.1.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.1.0_1517982344310_0.6452968842292399"},"_hasShrinkwrap":false,"publish_time":1517982344581,"_cnpm_publish_time":1517982344581},"2.2.0":{"name":"esri-loader","version":"2.2.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist","src"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"a2bb5eec28144653d4bc0b467f2ef21c0cbda4a7","_id":"esri-loader@2.2.0","_shasum":"fcba0235de64129b7f3d4b512d099374fe137ff4","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.3.0","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"fcba0235de64129b7f3d4b512d099374fe137ff4","size":23083,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.2.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.2.0_1518064180968_0.9226360361059995"},"_hasShrinkwrap":false,"publish_time":1518064181416,"_cnpm_publish_time":1518064181416},"2.3.0":{"name":"esri-loader","version":"2.3.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"2e40deb49af903ac2f501702f044cd6831d3f6bf","_id":"esri-loader@2.3.0","_shasum":"0d4b6af4bd17a4f57224e1aad50ae7f0fa473111","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.9.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"0d4b6af4bd17a4f57224e1aad50ae7f0fa473111","size":22587,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.3.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.3.0_1524545627738_0.2478146674605215"},"_hasShrinkwrap":false,"publish_time":1524545627956,"_cnpm_publish_time":1524545627956},"2.4.0":{"name":"esri-loader","version":"2.4.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","files":["dist"],"main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"741ba5f10ef42373e7ac6308e2875eb0261b0002","_id":"esri-loader@2.4.0","_shasum":"69c7dba674c18d3a261e022a015b50174fddd597","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.9.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"69c7dba674c18d3a261e022a015b50174fddd597","size":22695,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.4.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.4.0_1531777022596_0.12911151031468293"},"_hasShrinkwrap":false,"publish_time":1531777022700,"_cnpm_publish_time":1531777022700},"2.5.0":{"name":"esri-loader","version":"2.5.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^1.7.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.1","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"18677245c039ec37988dbd760a7d8e1236e8ddac","_id":"esri-loader@2.5.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"2f3c366a99672ac5f1c89aa62038b3ec36bbb4f8","size":20587,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.5.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.5.0_1538276711282_0.14559066672354137"},"_hasShrinkwrap":false,"publish_time":1538276711432,"_cnpm_publish_time":1538276711432},"2.6.0":{"name":"esri-loader","version":"2.6.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/esri-loader.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^3.1.3","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"c562683f7999ae77cb1014ef6dd45e766acde4e5","_id":"esri-loader@2.6.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"fc44cc8888161937e48346c4eb069433686fddc3","size":20884,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.6.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.6.0_1545062487875_0.10334494075561462"},"_hasShrinkwrap":false,"publish_time":1545062488103,"_cnpm_publish_time":1545062488103},"2.7.0":{"name":"esri-loader","version":"2.7.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"npm run clean && npm run build && concurrently \"onchange 'src/**/*.ts' -- npm run build\" \"karma start\"","test":"npm run build:release && karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"concurrently":"^3.4.0","jasmine-core":"^2.5.2","karma":"^3.1.3","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^2.0.10"},"gitHead":"34450182df6642608f42ef07dad498a73ae7d0a8","_id":"esri-loader@2.7.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"f2a923cf379eb2481630fbf2762b8386860d1c9f","size":22135,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.7.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.7.0_1553639422346_0.7444293041125876"},"_hasShrinkwrap":false,"publish_time":1553639422484,"_cnpm_publish_time":1553639422484},"2.8.0":{"name":"esri-loader","version":"2.8.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"b3764653bd68b7bbb9e25e797f37fea5bdec86d2","_id":"esri-loader@2.8.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"1b1001c4253e5a2ce9c3c4975494d705086aa1cd","size":24594,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.8.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.8.0_1553728386858_0.9565370793615782"},"_hasShrinkwrap":false,"publish_time":1553728386950,"_cnpm_publish_time":1553728386950},"2.9.0":{"name":"esri-loader","version":"2.9.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"cb5e529ba06fe1e6a6cd17fb6341572adf8454be","_id":"esri-loader@2.9.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"ccb6caa4733ef18310ed0cfa9833a675b4185792","size":25108,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.9.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.9.0_1553890863784_0.1096577386575599"},"_hasShrinkwrap":false,"publish_time":1553890863899,"_cnpm_publish_time":1553890863899},"2.9.1":{"name":"esri-loader","version":"2.9.1","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"2aa761470767371f280202778f343338f301dba4","_id":"esri-loader@2.9.1","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"47e53a23be457195b33bb465f59bd17b933005c8","size":25150,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.9.1.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.9.1_1554088130979_0.9984682558768263"},"_hasShrinkwrap":false,"publish_time":1554088131246,"_cnpm_publish_time":1554088131246},"2.9.2":{"name":"esri-loader","version":"2.9.2","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"2392d80ab146c162fce6c4eb93b962e538082796","_id":"esri-loader@2.9.2","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"78e0b5f21139cd94bebed9991ca41a6681e786ac","size":25222,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.9.2.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.9.2_1555607197838_0.6397463678125044"},"_hasShrinkwrap":false,"publish_time":1555607198000,"_cnpm_publish_time":1555607198000},"2.10.0":{"name":"esri-loader","version":"2.10.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"ef2f25de5926a6ab0b05ad43d2458aa1f2295170","_id":"esri-loader@2.10.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.4","_npmUser":{"name":"tomwayson","email":"tom@tomwayson.com"},"dist":{"shasum":"4f50e8cf25576399c333a855a6a25f9148a01b48","size":25247,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.10.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.10.0_1562220842274_0.8886107992528254"},"_hasShrinkwrap":false,"publish_time":1562220842453,"_cnpm_publish_time":1562220842453},"2.10.1":{"name":"esri-loader","version":"2.10.1","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"946a87a52ab0c966ff22b921a2267ad4fd792fd6","_id":"esri-loader@2.10.1","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"shasum":"d451bad53d916a973ec8879374287b34a3c54943","size":25284,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.10.1.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.10.1_1569627703344_0.8760800671757176"},"_hasShrinkwrap":false,"publish_time":1569627703520,"_cnpm_publish_time":1569627703520},"2.10.2":{"name":"esri-loader","version":"2.10.2","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"72b427b680d5c8b5db3080e3d4cc394650e935b6","_id":"esri-loader@2.10.2","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"shasum":"3a6ad6f5515f0c7900ec256ed82252d8b1b0b52b","size":26117,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.10.2.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.10.2_1570897057873_0.577152472944489"},"_hasShrinkwrap":false,"publish_time":1570897058026,"_cnpm_publish_time":1570897058026},"2.11.0":{"name":"esri-loader","version":"2.11.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"f9a986b016fcc697e13be2e08903cb2e0c761021","_id":"esri-loader@2.11.0","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"shasum":"0d2c76b66fc9354e0bf39b19fa50c4f1b90f867c","size":26585,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.11.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.11.0_1571107458311_0.19937663265558303"},"_hasShrinkwrap":false,"publish_time":1571107458455,"_cnpm_publish_time":1571107458455},"2.12.0":{"name":"esri-loader","version":"2.12.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"1f398aa6603dfb075577a3f546743a6d19c2bd17","_id":"esri-loader@2.12.0","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"shasum":"da69bf50a2d04f0187db227d38aae10e41401e4c","size":28153,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.12.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.12.0_1571942703228_0.49435882355987415"},"_hasShrinkwrap":false,"publish_time":1571942703383,"_cnpm_publish_time":1571942703383},"2.13.0":{"name":"esri-loader","version":"2.13.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"3fdc612d174b7ddb840172bf04bcec2ea13de303","_id":"esri-loader@2.13.0","_nodeVersion":"10.16.3","_npmVersion":"6.9.0","dist":{"shasum":"2faea3dc21f34b2ecc1421c29420829f871577a8","size":28387,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.13.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmUser":{"name":"gavinr","email":"gavin@gavinr.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.13.0_1577375602262_0.8014923270318306"},"_hasShrinkwrap":false,"publish_time":1577375602358,"_cnpm_publish_time":1577375602358},"2.14.0":{"name":"esri-loader","version":"2.14.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"b4772f83030cc032e1f29d799fa93656d377a2de","_id":"esri-loader@2.14.0","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"shasum":"2a7e6dc1226945f88f1a92ee4b9dcadb256f406c","size":28913,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.14.0.tgz"},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.14.0_1586462411551_0.16127169482860415"},"_hasShrinkwrap":false,"publish_time":1586462411754,"_cnpm_publish_time":1586462411754},"2.15.0":{"name":"esri-loader","version":"2.15.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"5191eab1b201093fc81c7f70f0e29704109e7050","_id":"esri-loader@2.15.0","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-n5LtVQaLURxhQMK0dc/GSfpnC//h3OhV9YkPAqHc3mO3aYkmJ+t8pVkboI2dDTWGKuCbp8MYmR400cZVkuyHmw==","shasum":"c1b47082075c172b2f564ac933448834c2e8703a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.15.0.tgz","fileCount":20,"unpackedSize":124468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfCIbOCRA9TVsSAnZWagAA4HAP/0NY6o9H64t9oW6/pyMN\nsSCS/TF5F4Zfy5Fl3hKifOdilc+2ZtAhlej78qISH0Qdbz+6h7oGELJ/bzIB\nnRhGlqzXZOq2lBLYoPL6oXgqzAKfsqmy2xYjhxCrLBwa4RCBTj4m3zutTC38\naR8sCdjz4QNfY7Makl/f/xfRCF85P6jo4hgbY6DMMZ0h5DF7onR1E+eNfpAZ\npQkEoONxBSypu5SRNcYiymLt7yqVnkAdiR/fdFw8xLycB7Zyw38m/BNmig2p\nJ54iC7VJwxtqgRmscL62WUgYTSjotV/r5kZNLULS4Qpd/Z0KnBB970NbLJ94\nBzll13Eq5b3sQ30bPp26zoPBqYemKbmL8N9M8bcFou6RsQgS2z33kMOA1J6q\nMva1mNjYZGccka1hcZOrUEYVriws0P46n5WWi0N/062f4pINpxB2ze6kLDli\n/yzF2rUCFZSqq/KYjK8a3EyzeLzFN3pB17OfSIRE7D4ys0VMwZGnS6+Rwv46\nx0ZsS8p6TQLF++SzxFN1Bs6C1Cd4NUCQGePAHEgB4CPkMpae9Xa66WMeS6VH\n4x29nvUU/o8SoXl4G20gvH3KMtUycmhxpYGRmzWjGXhA6m68EVdFkq3232Eq\nKNQGzN8Mejk06s4zUH45MheYEnmOJgGHDpDiadeu7oAa0CMf5enZU/lIlV1E\nvnRV\r\n=SqKL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQBAjQUh7LBN/GbxmYU1xDw5/wNaRhr51GtQXweklyCgIgIeTUdQRTMuEXWzbMKGKrWzlBGJ1MzH8Vf9i9WHcBKkk="}]},"maintainers":[{"name":"tomwayson","email":"tom@tomwayson.com"}],"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.15.0_1594394317519_0.16526546388050778"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"2.16.0":{"name":"esri-loader","version":"2.16.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"6a3b3e50c535f140a28f11402e0d3763f68da2f7","_id":"esri-loader@2.16.0","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-0lneVO6aizdRFt1mbrOsRgbF/F1v4LBUwKg+kfiBmoGJPf2ATFI/OimBlfeDI6J1rEQiWHi1PsALFCF4yRf2mw==","shasum":"995c83f2ae93bdae0e64b36bb821d29dc56c039d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-2.16.0.tgz","fileCount":20,"unpackedSize":124652,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhhqBCRA9TVsSAnZWagAAU9cP/3voqYBBbuGfMQmTZL5Y\nzm6QUUsYeotdFQXNG/bnOGtKnawUV9f9GZNaGFOWZCK4WE0+waWkjf1r53lA\nnzS8yEpkTsaUCdXxWrcGOgBWOgHs0n9DjyDu6TfAo+91R14woVLVuW9C8tt2\nMCnDxD338/basYI312jRwOWwmCNGGft4bPPcm9J2qikSt2NgLbFsbpyqITyO\nfLoSSZD1mZ6XXYpSRMr18D5YofE/hqnzgY29eBhhjdrlOUzatvOlv8twCfW7\nNBClMCsFl9nN1G2Oi98db18e6m/AP5N2A8D39LgUNCIYUamjYJFIhno/Coqi\n+D+6sbpCp84wLKaBlRNf90gfedzqTBoTurA4BolGehPtQJyzVb+6rtEvdjZ7\nV8ZaV1uziFP3javExAL8oQ4uFWPIRhOlyagT+YrpsMgvNf5RXQ0IRg6uI0tY\ndHdDd0Jk5DT/sfD269GYyoLEGyL787amVtELsfkIuCStyNVU8rkI8x0F+YCm\nji0Zq7S1TrR92GUvfsnvw8aW2izl+lsNG6XF5nJenrCcvOt2Mm8Av56esi3B\nWz2v+8liM7l9oR3vFBKYLAOeGe+yzFaxUsUdYMQuF2rRQRLGe4y1kWBQHS/V\nbuJ64TO2pmaV8nvRWi1z1HK9kxpaVxhNlNuQ5SZecvrO/93Yxiz/GHh8F+XI\nYiXX\r\n=TmQn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEajmW6ydzAV/H6yRaVUS0cKvYmYu0Oa7o+Qcj32yoGbAiBBYn4OhewWSotR0Wx2lkYfWC83T940mq57tAS88B3AEw=="}]},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_2.16.0_1602624128534_0.4997634683282739"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.0.0":{"name":"esri-loader","version":"3.0.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"08fa05336f661cebacb7b24815ac6945311ccb25","_id":"esri-loader@3.0.0","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-JvNL1agqzJz13uMaAfjktO66iIpJLYjmHabS73tEc910ZCAXMl5i7mWXQxbCdYCIWwRtL3SEhXBXRxSFfX6MBQ==","shasum":"4ff9008cf3223aa284507ec19d575a8cee7a6e6e","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.0.0.tgz","fileCount":20,"unpackedSize":120899,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7fFMCRA9TVsSAnZWagAA23AP/1nYu/VWlBaVlJ+fEY8q\n7KAYTuxcJyPjfBW4eOkkxmWAbOkyA4rauy3uy+H8KwmDMBgdGtlvG/qzxwaT\nfaaT/GT3Jzxc8Fd2iLnPQn1yv7HNCGvWJCoOxsCCOmFwVITCNyDQmEjRjcn1\np0OwTCO5EEtiEgMTpkPmuS3O3fUPdBfGl/koKZC7TB4wMYsSk6MW2Iz8hTds\nGSwlODSD09U+YMu4mILKK6QIRRlNHS0vQw70BNM3SzUlcJIaeuSdnVgmHx3T\nMssIPs5BW+e6uSm7LbHLJ6e9XOHUUEbcZ9oB07Q5k+lUTJcf8mZGM8jJ2b70\nTMy4S6htgkUy+j6cBC492Vf8s9RM1nkawBGJGY7m7KEs2taW87U1Crgtef8L\nsBq8PRdIMQGXEl4n2BZ7U1grpZTXWfu995qtAV8Ig7kSyAT1e6e0WsoRQfoo\ncyltcG3Qj13oZdN1aS4lkOreolI6rh0toLg7kxsgN1K2bhdv9ePIbHd6I6TE\nGS+AgukzAOdyMFpTEhXyFDdC4Doi1lwL2Iv1ekKD62Ou2EaCfEy8WxNzgJ5A\n71aar9F0Wg4XMcEJ2RMc7yzpEiy6bMVo/QUcXcENe1oLpLeboZzxvZ/L7CV+\nS/iF0jJYEwCqwujyKPh3ntH3uGWcOu+Fvk3dxrkqhaF5XAHeBYW9Nsb6qn2D\nuBw9\r\n=Eu0q\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICfTw4nVI4z8K8tyIPXJSpBvblK+PDrc9qlLt2GpmU/1AiB4oAndYayHKrKQ+9MGvojES7W3VHa7GT4DiwKyjKyjKQ=="}]},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.0.0_1609429324313_0.5391274957281185"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.1.0":{"name":"esri-loader","version":"3.1.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"a8072e64ba4bc59416a7906b0067b6d5cc3b9a40","_id":"esri-loader@3.1.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-TwC9hDZxDWScXPt0nAz90aFJ10+X4Jh+cJTB2tbtWEzqibEEO50xLDkcQ0N+EHv9aRWRRxrSQssH+meqgM9sBg==","shasum":"0903879a5a31044638380aa67441224add42d14e","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.1.0.tgz","fileCount":20,"unpackedSize":122129,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgguavCRA9TVsSAnZWagAA70QP/j90biNAGJlGQcS6I/vY\n98ibW7yiZdx27e1ZGsmMmWCNQ9NHlBnKG4cKS71zUp28nlKkC1ymegluh44b\nrkCavkYKmHuRvHLjf1pMBw49LuM2eEdJU0DtqblAyb7zvjdXu7T01BWHfPLb\nu1ZEPBTP3/1V/ZlPmSWemxnkVWsVQDluQ4gUFR3cwX7VuOqqJCR1CDKPmLQy\n0eiaWSnED6VpKQIMlRpm2lf8+w6W8HPHENYSGxGZtOaoi+NA/3RIwXBx5amU\n1tGNqJuy+fxmH7ntciNYRcbryXCNkQtLIs+K0ewstc1Wi4O2u1sov2zu3P1d\npumLpDhmu5LqQ2/3Ro4k3lPBVnNy1XRs2RXME9v/L2AuBirKXmAw4MROpLfa\nMi0OJKGmWJLNaM8xYgGPgWx20u0et1xF1z92MOUrs1VopPEQvNa2ewPy2QTK\ndBGzKoXMAwddcXXVfrpl4P4AkxYE3X8J9Uutwi2mALe9v0c3jSHrbwmwguug\ndjKWf/WEceFQVhQUcElPbX1gBnYjTYZ10LmXhNHwGquJ8eNXZaM83cJGA2eP\n/QAaio4PSaQbWdGd8xOXlMvsY8BzjZIHNthlwjOcg5ID8mfIGTEUq8q8yfgG\nLEuyQfnsapRetjLKIpFKmPxFM65qHL+zsoQo54d1U4+kuWBLDQFsITdSXBl6\nbFHa\r\n=xY6K\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEoafgkw4wH7kpSUwvd7qlgCkxwnaF2XJ4Dk7DW+28kmAiBEtYj8NcwQQpiYYhN9YnfTyyi1yb2w//nUENcVGUPsNQ=="}]},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.1.0_1619191470556_0.5039404015490909"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.2.0":{"name":"esri-loader","version":"3.2.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"fe9a64951afbaab1be252e545421a26c8eca278e","_id":"esri-loader@3.2.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-9UANUR5603YvKkjOxo+LLGtmiZBXvdJOb7MEGpKAmgsKEStleQW28xqyQolvQVXGgPJu2XLMzrPf6Xu8n1QOAQ==","shasum":"7aabafe6cee08ab01ce5cdab7b3877433f6b2a76","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.2.0.tgz","fileCount":20,"unpackedSize":122306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5d/6CRA9TVsSAnZWagAAX7wP/1RPImQro0hGnL0svQi8\nKbZ3edi0b0q+pFfNHmsK0PrAeCh2Hynsz/z+lyETcW2aVDMvyIqDqScUFqpL\nObdt3MarSjxppeTizJzM8Z6JXZSMSDtCRA1xDfcfd9lsb68/0Y081ii9pcyx\nfBEoLKaxpnRtGlejr//HjGl7BsPQvuBuR5mcOMPWtIxvu4HDRN06/XfPD3iq\ny28I0WNu0Z6fYzvGPo7Yr104vAkpkhSHVJwPjl+xe1QKzRCznUzZm9d07AsO\nki2p6HulRnhX6WAS7G234GJKrdnqcX/2SELQ4K0YhVfxrzUKgANbzar/D2xY\nw4XB1DnXvQA5/IKiU2McF4mCQRPKls7HXaDf2FlNnEUgOrUUe2wxrwKKDtmH\nouVBGaCiZoieqi1Xt24un9j4PQd/zs3M+f295lUVpZQoBL5S1KxaY/qh5ErZ\nZVyhzQ4288BIA3Y3Gv/yDfMN7PRiogGm7RCjRuNLrkj51yWqVUH4bTn46ERb\nd6vGA8tbWuVVmb7lCIasonq7k6k8AmGgT/oRmTBlmTcoe8Ygm84YdO1SOPd8\nyhlPhos08K3hsKTNczsQ/4n6V2KwRGiWLScAVyq+jf16VNFpRRiXa2GHBQNs\nju+XAU5+G0p4W0BPgm5zI8O0P7dM/x6JT3JtdLzQ0vMl2CSM5TZDRaqojjC7\n91I9\r\n=Zc00\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBgqHpgCu3dZ57dXDdL6wDijQ35JJ4vU5bfFNE+i5uqKAiEAxBhjY5DbiiU127UF/OQcYqAU/sIe8epXfUm6dYtfyuc="}]},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.2.0_1625677818003_0.23945927402851397"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.3.0":{"name":"esri-loader","version":"3.3.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"b2ff973f40c0474ee3cdacb2eb4299f2650a93e3","_id":"esri-loader@3.3.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-ptg11ANOVFJ/VPSQWNBHRo62Gkq82Z7c6Wu0ZFDxplm4lAs97kQ+6GRkLQPnWXE6jpHK2XEIW3Pq1iMBPMsdgg==","shasum":"e2bc245a72d8d887a71cebc445c6d211d1befdd4","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.3.0.tgz","fileCount":20,"unpackedSize":122400,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2qSECRA9TVsSAnZWagAAREcQAJORCvBYRx61Fg7zxoMy\nHK9X8127TdCIVvDvOvK5WJKqZOp5LCBl8RhxzS+Ea6HWzFkdwxeE+rsXpguG\nS+DnrLrjmnXwrpWrPnit4HqsqJQ9TFPHFYavFlJcs+7+14mExJRg2ugcTpI0\nV+mQqrn1zYxdZ0432J/QQ6XOroPxUniucHQ+ma3SRWsG4sqSEbOSJKjgfIxf\n/nf7VVHrj+U1aZZtmDm5sS8DJRh2U0yX3uOhIEMt4Vd7E4iDO3FlHpJx1Ez8\nBa8d5vLs9CNOK8R6KmD4BXdp8GcopwZug8FPbdiUdKFSaMU3jCAtHNOW1g1Z\nSxoDwVqyEzqOhxRHUrBuXBxi8nhGqepBIRswWOwTdLxanr9cctr/aUWiBge2\nxFd+UPmr9Anax2YR6baQFud6qHkLd87PnHi0ix7jSoIrxaZHpkI0MpPmMmhM\nABgSgdYAgpmqthCdQzJRX4RR/XTA+/WFfOx7N5EaUmZi1vZg30q3kU9h686b\nXw7dYt/Yow9/Xg4HBM1ZO03/ugRz5HCDIWHb69VFUIxywkK9F3/BESz9j+jy\n3ir60Y8ApejmJRMkMJTieUJmTjv6++ZlCNx5GKwwREkoxc7iYiCSTnhXWi4o\nOw69b9PtBFXxeiWrMW5CnXnshqV5iDBaXUxnfT7U1IwLeutrAu0+hsl4RT2U\nTLDy\r\n=aQfS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIExdeqoxY9RWj5XUJmsVbSAqmZYb2F2SbjexaeCeujWHAiEA8gcyIzzFOVa03vyPvVqSLCfPgVxIHabWeek+MTmMPcY="}]},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.3.0_1632356851634_0.3576409942999763"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.4.0":{"name":"esri-loader","version":"3.4.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^4.0.1","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"e312966ee3b0df1930d767684ea7fcbf32bea822","_id":"esri-loader@3.4.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-iS3SbBmrnr4TlUdAjyyVZD2yCud8AMZkyJcmYEVzTiE5wVUtdN8d9USp7XYtilgwkJe/eWR2f2G1+S58ESqLuQ==","shasum":"86a56bc6cf5d56209b09e32382e49f889944fab6","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.4.0.tgz","fileCount":20,"unpackedSize":123655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4d0CCRA9TVsSAnZWagAA4moP/2cytQnsLcPOnK8zPa+c\njKUnnhCZuSbY0rYWiJDHWHDHZhMl+IHH648c0fbRreiqdsdw4j6VYmd6/cms\nMhiuUp1SCeujascEAlJWghZ17PKYga5q8v4Vx8A/8mhLi/43/7mRQz6FGEj3\ne91Co3ITxDOZJhxaeaOtQxJMECcFfNmTlJWgrZP0VOFZ+RXmAnUnMS+T+x7P\nVzA24CKzw/B73k17k9LQnh5qYgQZYK0ow8g/6nlbBT6xnQVABxrrSmCeqmty\nV7j50j8mAKqeF97a2WOA4qVAk/O7d1ttGiFaDZDPIcdMTWBDouWc3OdsGSii\nc2VEWgJ77lzUM6xdfZpRQb5dvOvLHFH42yzOxw81WZEERYWWOP01+7gRBrhH\nNZfggy6NnE1LOGnysZSxnnN5I2lPaR0wq/xhZlX1SP/aSwfaAMLgB108Zq9h\nmPrHx4u1WVCxCFM0R0upP9xlJZR3it6G/HPtvtoe7us7+3VeIJ+KAVbs+LyU\nUH8BtKMqlNjnWp7kM7THMwJqusnuwZ1froy816KzTGLlWdcX/2VFaEwM0Jyt\nSVgXeHmBjhs5IAIa1q2OHP+rB4B8/MoeWcw4rF4x6F2y8U+wpOXKTMjmtee+\nq6Cb4AZJcLOz92Pe6+eJ5jzYxjugAIYFs6V8MGxmasho7EenH78H7XhzvPrc\nalhd\r\n=jEzh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDLOdNcMas9ufnPGhgc5z9p6CC1+NALqI+39i33oht9OAIgdqxJVDx8hrvNMoqKeMwyfqg7mJV21aeBiUjS0t2SpW8="}]},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.4.0_1642192130724_0.32786742644144296"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.5.0":{"name":"esri-loader","version":"3.5.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^6.3.16","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^4.0.0","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^3.3.4000"},"gitHead":"766081f96d03b9735cb2f7147e78374bf78075e0","_id":"esri-loader@3.5.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-rIXyT51x/co86DPORKBMMldJrdLjghDepJ3WjDVTr2yZXBbghMbGgNA8yIQ9Pd/Gw6/fMgF9YHZU+wjRHRCDoA==","shasum":"f536cbaaf676d54f6b05a706e51ececd9303ce05","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.5.0.tgz","fileCount":20,"unpackedSize":123869,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQzV7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp3CQ//fZwzYNc+Z+v1u/8ZWk1Dx/CqtDtiMNadTeSkWacYNSpF/ral\r\nLOCDvT2L/u4YJ/0+416yJv8b+5IPBu+D/mm/xhMUSX0sooylZV1g6m8a+XKn\r\nDIA3GI3wvkB8GOaRcYw/XjKX1celx2jM99i2l4EK3oMJZjP9qUuM8ZwoAC/o\r\nhFv/bQO41R17RArT9uos2dRRGTXQpMzxNtjGHzCaJ2wS/rxovVmavtNFXzY/\r\nax84CCMyF2YSmLuuiu/YBN0pvnqAqd4cDjMbj2Di7nvrjOfQxVxl+HNoI47m\r\nN/VvPllsEpg7R4e9Ayogo8sTQAGTZkqbqz12OTaDyyHoW2nQEdV+1j44jESk\r\nOq826TH3ejI1Zjs8Z32dsTzTMAjRj1z1clZPxN5T5t8TNU520h/D5qRVCI48\r\nHC/qoq8LU4GDHJ2DyF0oYu7+6QdXggd3nM28Tj7y/4ws7pMbJCh89JQyzZy7\r\n6ZctNILmBQB8fsc3mlmrXDzVls9R49mmupV/lYwok2RUHZ8tnlvkjYm+I4uc\r\nZ3agHk1ltIvY70lslQUrDqPKCTKn4cU4kKxwQUi1bx/RZAsXMBANFj/UjLgb\r\n70jX3yB4euuyWo66+UwiFEiXJiREEnDDAIyQkhGxHGx5E2mdAwobo4mfrTeb\r\nLfH0l+OLzONFdC1XH32AXZx08e474RSDZGU=\r\n=CsOW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICBhXO9iMS7yk9CEuqJjUJ5yqvxQKg6muBgU+tp/Mk69AiEAj6GbSwot18/7ul+I7Neosacg6s7AFU58WnzxQnnJyT8="}]},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.5.0_1648571771288_0.42183819625971175"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.6.0":{"name":"esri-loader","version":"3.6.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","ci":"karma start --single-run=true --browsers FirefoxHeadless","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Chrome,Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^6.3.16","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^5.5.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^4.6.3"},"gitHead":"0d394f1facbed63e7870df04e398c36e4a45a9c1","_id":"esri-loader@3.6.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-hvFnBLcHDVcymOXTg2IxptPAxDKq1lOQjO1bFlaJTZxmruvGR+41HjW12BgemPhiEBrH782q2nFuUytwWPVAMg==","shasum":"5373a977fb43f5ab7a3171a3c7353fe932f33b41","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.6.0.tgz","fileCount":20,"unpackedSize":124491,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDEsRva81EBEkQxUDAcRYTheFdbB6U4+TRVcd7H82CwDAiAahP9G9GOFTBZQNEJYOXCMZSe+SeWgS37vh/eV2LukoA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixv2gACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoTUg//YsQsIZS6LCvwrnF3W6mp4PCcDYIEZoDQjgjNjSb6Qazz5jN7\r\nh8kRgZpoJTVo8nmfNYsjWCCEU4t4NNpBD9hQvHyT5W3OMPlJ+0eMtfMY0w+Z\r\nVc/ZfoJFq3uc3z5CHm+vcibIR2bQnEohfBHr097RdRxTU3YA2FrWYEbzAOFG\r\nv9b5C8vPKSnDBpIE8io5EgBmyqxsNlfphAY8fyUHYstMQtsTvVGBjmGhI6r/\r\noGqlNh69kGfyJMuh/Cd9l7yOlmgRVB1QJ+93f2LaDEy8DxGNZdJ6jlQ8wiSo\r\nLZyMDfJ3+LdT1vENFJobqBSCs1k9SVoAL6DDi54M3AhYZ+ePzc/aPsRmj83O\r\nPfrsc9QTH+DOcUFg2ZGfIh4/spOlMZ3gJcF9MsqvPF/WpphA6Pbl7XKW895e\r\ntVUuyd4R86L3tLJEZthWhGAD4FRHsO9AXJCUgLKZDZNqfB4926gIDfpms/lk\r\nZ2d945WSAJJV/uxTLKfSoTc2mECEYoDMBc4taQ68PPEcehHdVsPsT0Cqixa2\r\ndx+iWqWutBUpFKsq4oyoo+Q8boAIq/Lokn/yEKmZ1WYmI1/vWJl81IOTD4ZY\r\n+jOGhunzMAmWOszxQA/pqAJGaWxiGPwWkT0MA16LENJQezPPN8wVTGYy/2cl\r\nGKHK/RTkYjE/yuAgTX8IX2xMhYKTcG00FhA=\r\n=yoQ6\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.6.0_1657208224592_0.47517544863366123"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."},"3.7.0":{"name":"esri-loader","version":"3.7.0","description":"A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications","main":"dist/umd/esri-loader.js","browser":"dist/umd/esri-loader.js","module":"dist/esm/esri-loader.js","js:next":"dist/esm/esri-loader.js","types":"dist/esm/esri-loader.d.ts","scripts":{"build":"npm run compile && npm run bundle","bundle":"rollup -c","build:release":"npm run build && npm run bundle -- profiles/prod.config.js","compile":"tsc","ci":"karma start --single-run=true --browsers FirefoxHeadless","clean":"rimraf dist && mkdirp dist","lint":"tslint -c tslint.json 'src/esri-loader.ts'","prebuild:release":"npm run clean","precompile":"npm run lint","prepublish":"npm run build:release","preversion":"npm run test && git add README.md CHANGELOG.md","start":"karma start","test":"karma start --single-run=true --browsers Chrome,Firefox"},"repository":{"type":"git","url":"git+https://github.com/Esri/esri-loader.git"},"keywords":["Esri","ArcGIS","JavaScript","module","loader","Dojo"],"author":{"name":"Tom Wayson","email":"tom@tomwayson.com","url":"https://tomwayson.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Esri/esri-loader/issues"},"homepage":"https://github.com/Esri/esri-loader","devDependencies":{"@types/jasmine":"^2.8.11","concurrently":"^3.4.0","jasmine-core":"^2.8.0","karma":"^6.3.16","karma-chrome-launcher":"^2.0.0","karma-coverage":"^1.1.2","karma-firefox-launcher":"^1.1.0","karma-jasmine":"^1.1.0","karma-mocha-reporter":"^2.2.3","karma-typescript":"^5.5.3","mkdirp":"^0.5.1","onchange":"^3.2.1","rimraf":"^2.6.2","rollup":"^0.41.6","rollup-plugin-uglify":"^2.0.1","tslint":"^5.7.0","typescript":"^4.6.3"},"gitHead":"241b95052008d87fef761c440c10ccddbeea2b2e","_id":"esri-loader@3.7.0","_nodeVersion":"16.18.0","_npmVersion":"8.19.2","dist":{"integrity":"sha512-cB1Sw9EQjtW4mtT7eFBjn/6VaaIWNTjmTd2asnnEyuZk1xVSFRMCfLZSBSjZM7ZarDcVu5WIjOP0t0MYVu4hVQ==","shasum":"be2432664f53d4878b34ab903499248bbca3e087","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/esri-loader/-/esri-loader-3.7.0.tgz","fileCount":19,"unpackedSize":104071,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBe79pnL+An9ymBF8S3zJCZBS6Jb4eOYM06f5Fs7hT2cAiAT+/DkFHVF8bRFzb3N0ThSm6fhoxkhxQDUI5nKPtGYVA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdUsqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp/shAAn9/j05D3ktKe11JsOH3S7pDgKQGKppPB8kOgTUaHCgfDEMB9\r\nStDF0P7eofgrd4zDdJmwE/WurUMNEu1ciFxZBL63F8dhNCBJyFNeMK961i/4\r\nran6xEzJMnfEnnnktaY9QFYzi/oeRNcULHgCvBhe9obOz0R2U6wVPlkrCtKZ\r\nWzaMXdbbMjVi4/VH66f7d+xfmdbHukcynCnIyIxKNtFhJ/fuvGNOwpDkiQy5\r\nvktaQd0Pa4e/Rhu/rcpT6e3V1g/IPKxXHrwnGnx/RJ+woshdhmnuFkU0wUWL\r\n5xnR0cbZZdv3YlrTjWmbR1TNOZ6GEsCktIz/vEJM/Z+EXiCSPmlb9xPAUS8K\r\nKXLL2Yhjti9ClXJ56pzwwA9lTWXhzQdwvaG5Jf3UExxHdDeQyG1uAM6KnTqm\r\nThslOKxxTK0Im9pG2UajWDBSE+y+KIhxlcoVpIBTDhbcvhcI983l/Uh1wsFJ\r\n1pRQIZ2N5hkP3DoY/6BEp0+HGlGtB35w796EOeKdu+4u7zboY3COfx8OWx6P\r\nm0FwAPnpz0Lm2iS0faTjgBDy4bX8w/q492qQr7A+HOQkBdZn73271OTONqpm\r\ngwhzjp7vAXoUJu6T4c5RhNuz4tHmxVEvz5VK9jHUC2nGpzd3l7llY+SbINqU\r\ngQJ71GFeqyjknveo3MSsoxMSB/YksQyAf9Y=\r\n=xuK7\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"tomwayson","email":"twayson@esri.com"},"directories":{},"maintainers":[{"name":"gavinr","email":"gavin@gavinr.com"},{"name":"tomwayson","email":"twayson@esri.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/esri-loader_3.7.0_1668631337879_0.05547293657086638"},"_hasShrinkwrap":false,"deprecated":"Use @arcgis/core instead."}},"name":"esri-loader","time":{"modified":"2020-06-10T14:45:19.488Z","created":"2016-11-18T08:43:01.184Z","0.1.0":"2016-11-18T08:43:01.184Z","0.1.1":"2016-11-22T18:24:17.944Z","0.1.2":"2016-11-23T05:19:47.731Z","0.1.3":"2016-12-06T04:21:15.502Z","0.2.0":"2017-04-02T04:39:39.884Z","0.3.0":"2017-04-07T12:19:08.059Z","0.3.1":"2017-04-10T05:46:07.104Z","1.0.0":"2017-04-29T15:39:41.640Z","1.1.0":"2017-07-24T20:59:24.251Z","1.2.0":"2017-10-28T14:10:31.793Z","1.2.1":"2017-11-07T04:40:49.136Z","1.3.0":"2017-11-07T16:45:48.923Z","1.4.0":"2017-11-07T20:07:14.815Z","1.5.0":"2017-11-10T06:03:10.678Z","1.5.1":"2017-11-18T07:33:32.512Z","1.5.2":"2017-11-18T09:20:46.664Z","1.5.3":"2017-11-21T00:37:27.193Z","1.6.0":"2017-12-31T17:15:50.492Z","1.6.1":"2018-01-02T06:43:54.391Z","1.6.2":"2018-01-02T15:34:50.356Z","1.7.0":"2018-01-03T18:13:53.852Z","2.0.0":"2018-01-04T14:58:18.119Z","2.1.0":"2018-02-07T05:45:44.581Z","2.2.0":"2018-02-08T04:29:41.416Z","2.3.0":"2018-04-24T04:53:47.956Z","2.4.0":"2018-07-16T21:37:02.700Z","2.5.0":"2018-09-30T03:05:11.432Z","2.6.0":"2018-12-17T16:01:28.103Z","2.7.0":"2019-03-26T22:30:22.484Z","2.8.0":"2019-03-27T23:13:06.950Z","2.9.0":"2019-03-29T20:21:03.899Z","2.9.1":"2019-04-01T03:08:51.246Z","2.9.2":"2019-04-18T17:06:38.000Z","2.10.0":"2019-07-04T06:14:02.453Z","2.10.1":"2019-09-27T23:41:43.520Z","2.10.2":"2019-10-12T16:17:38.026Z","2.11.0":"2019-10-15T02:44:18.455Z","2.12.0":"2019-10-24T18:45:03.383Z","2.13.0":"2019-12-26T15:53:22.358Z","2.14.0":"2020-04-09T20:00:11.754Z","2.15.0":"2020-07-10T15:18:37.706Z","2.16.0":"2020-10-13T21:22:09.404Z","3.0.0":"2020-12-31T15:42:04.552Z","3.1.0":"2021-04-23T15:24:30.689Z","3.2.0":"2021-07-07T17:10:18.147Z","3.3.0":"2021-09-23T00:27:31.820Z","3.4.0":"2022-01-14T20:28:50.921Z","3.5.0":"2022-03-29T16:36:11.414Z","3.6.0":"2022-07-07T15:37:04.839Z","3.7.0":"2022-11-16T20:42:18.110Z"},"readmeFilename":"README.md","homepage":"https://github.com/Esri/esri-loader"}