##// END OF EJS Templates
merged new-ui into default
marcink -
r3779:c69b10da merge default
parent child Browse files
Show More

The requested changes are too big and content was truncated. Show full diff

@@ -0,0 +1,28 b''
1 .. _repo-admin-set:
2 .. _permissions-info-add-group-ref:
3
4 Repository Administration
5 =========================
6
7 Repository permissions in |RCE| can be managed in a number of different ways.
8 This overview should give you an insight into how you could adopt particular
9 settings for your needs:
10
11 * Global |repo| permissions: This allows you to set the default permissions
12 for each new |repo| created within |RCE|, see :ref:`repo-default-ref`. All
13 |repos| created will inherit these permissions unless explicitly configured.
14 * Individual |repo| permissions: To set individual |repo| permissions,
15 see :ref:`set-repo-perms`.
16 * Repository Group permissions: This allows you to define the permissions for
17 a group, and all |repos| created within that group will inherit the same
18 permissions.
19
20 .. toctree::
21
22 repo_admin/repo-perm-steps
23 repo_admin/repo-extra-fields
24 repo_admin/repo-hooks
25 repo_admin/repo-issue-tracker
26 repo_admin/repo-vcs
27 repo_admin/restore-deleted-repositories
28 repo_admin/repo-admin-tasks No newline at end of file
@@ -0,0 +1,24 b''
1 .. _repo-admin-tasks:
2
3 Common Admin Tasks for Repositories
4 -----------------------------------
5
6
7 Manually Force Delete Repository
8 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9
10 In case of attached forks or pull-requests repositories should be archived.
11 Here is how to force delete a repository and remove all dependent objects
12
13
14 .. code-block:: bash
15
16 # starts the ishell interactive prompt
17 $ rccontrol ishell enterprise-1
18
19 .. code-block:: python
20
21 In [4]: from rhodecode.model.repo import RepoModel
22 In [3]: repo = Repository.get_by_repo_name('test_repos/repo_with_prs')
23 In [5]: RepoModel().delete(repo, forks='detach', pull_requests='delete')
24 In [6]: Session().commit()
@@ -0,0 +1,35 b''
1 .. _search-methods-ref:
2
3 search methods
4 ==============
5
6 search
7 ------
8
9 .. py:function:: search(apiuser, search_query, search_type, page_limit=<Optional:10>, page=<Optional:1>, search_sort=<Optional:'newfirst'>, repo_name=<Optional:None>, repo_group_name=<Optional:None>)
10
11 Fetch Full Text Search results using API.
12
13 :param apiuser: This is filled automatically from the |authtoken|.
14 :type apiuser: AuthUser
15 :param search_query: Search query.
16 :type search_query: str
17 :param search_type: Search type. The following are valid options:
18 * commit
19 * content
20 * path
21 :type search_type: str
22 :param page_limit: Page item limit, from 1 to 500. Default 10 items.
23 :type page_limit: Optional(int)
24 :param page: Page number. Default first page.
25 :type page: Optional(int)
26 :param search_sort: Search sort order. Default newfirst. The following are valid options:
27 * newfirst
28 * oldfirst
29 :type search_sort: Optional(str)
30 :param repo_name: Filter by one repo. Default is all.
31 :type repo_name: Optional(str)
32 :param repo_group_name: Filter by one repo group. Default is all.
33 :type repo_group_name: Optional(str)
34
35
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100755
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
@@ -1,77 +1,77 b''
1 1 .. _repo-xtra:
2 2
3 3 Repository Extra Fields
4 4 =======================
5 5
6 6 Extra fields attached to a |repo| allow you to configure additional fields for
7 7 each repository. This allows storing custom data per-repository.
8 8
9 9 It can be used in :ref:`integrations-webhook` or in |RCX|.
10 10 To read more about |RCX|, see the :ref:`integrations-rcextensions` section.
11 11
12 12
13 13 Enabling Extra Fields
14 14 ---------------------
15 15
16 16 To enable extra fields on |repos|, use the following steps:
17 17
18 18 1. Go to the :menuselection:`Admin --> Settings --> Visual` page.
19 19 2. Check the :guilabel:`Use repository extra fields` box.
20 20 3. Save your changes.
21 21
22 22
23 23 Configuring Extra Fields
24 24 ------------------------
25 25
26 26 To configure extra fields per repository, use the following steps:
27 27
28 28 1. Go to :menuselection:`Admin --> Repositories` and select :guilabel:`Edit`
29 29 beside the |repo| to which you wish to add extra fields.
30 30 2. On the |repo| settings page, select the :guilabel:`Extra fields` tab.
31 31
32 .. image:: ../images/extra-repo-fields.png
32 .. image:: ../../images/extra-repo-fields.png
33 33
34 34 The most important is the `New field key` variable which under the value will
35 35 be stored. It needs to be unique for each repository. The label and description
36 36 will be generated in repository settings where users can actually save some
37 37 values inside generated extra fields.
38 38
39 39
40 40 Example Usage in extensions
41 41 ---------------------------
42 42
43 43 To use the extra fields in an extension, see the example below. For more
44 44 information and examples, see the :ref:`extensions-hooks-ref` section.
45 45
46 46 .. code-block:: python
47 47
48 48 call = load_extension('http_notify.py')
49 49 if call:
50 50 url = 'http://default.url' # <url for post data>
51 51
52 52 # possibly extract the URL from extra fields
53 53 call = load_extension('extra_fields.py')
54 54 if call:
55 55 repo_extra_fields = call(**kwargs)
56 56 # now update if we have extra fields, they have precedence
57 57 # this way users can store any configuration inside the database per
58 58 # repo
59 59 for key, data in repo_extra_fields.items():
60 60 kwargs[key] = data['field_value']
61 61
62 62 # an endpoint url data will be sent to, fetched from extra fields
63 63 # if exists, or fallback to default
64 64 kwargs['URL'] = kwargs.pop('webhook_url', None) or url
65 65
66 66 # fetch pushed commits, from commit_ids list
67 67 call = load_extension('extract_commits.py')
68 68 extracted_commits = {}
69 69 if call:
70 70 extracted_commits = call(**kwargs)
71 71 # store the commits for the next call chain
72 72 kwargs['COMMITS'] = extracted_commits
73 73
74 74 # set additional keys and values to be sent via POST to given URL
75 75 kwargs['caller_type'] = 'rhodecode'
76 76 kwargs['date'] = time.time() # import time before
77 77 call(**kwargs)
1 NO CONTENT: file renamed from docs/admin/repo-hooks.rst to docs/admin/repo_admin/repo-hooks.rst
1 NO CONTENT: file renamed from docs/admin/repo-issue-tracker.rst to docs/admin/repo_admin/repo-issue-tracker.rst
1 NO CONTENT: file renamed from docs/admin/repo-perm-steps.rst to docs/admin/repo_admin/repo-perm-steps.rst
1 NO CONTENT: file renamed from docs/admin/repo-vcs.rst to docs/admin/repo_admin/repo-vcs.rst
1 NO CONTENT: file renamed from docs/admin/restore-deleted-repositories.rst to docs/admin/repo_admin/restore-deleted-repositories.rst
@@ -1,34 +1,32 b''
1 1 .. _rhodecode-admin-ref:
2 2
3 3 System Administration
4 4 =====================
5 5
6 6 The following are the most common system administration tasks.
7 7
8 8 .. only:: latex
9 9
10 10 * :ref:`vcs-server`
11 11 * :ref:`apache-ws-ref`
12 12 * :ref:`nginx-ws-ref`
13 13 * :ref:`rhodecode-tuning-ref`
14 14 * :ref:`indexing-ref`
15 15 * :ref:`rhodecode-reset-ref`
16 16
17 17 .. toctree::
18 18
19 config-files-overview
20 vcs-server
21 svn-http
22 svn-path-permissions
23 gunicorn-ssl-support
24 apache-config
25 nginx-config
26 backup-restore
27 tuning-rhodecode
28 indexing
29 reset-information
30 enable-debug
31 admin-tricks
32 cleanup-cmds
33 restore-deleted-repositories
34
19 system_admin/config-files-overview
20 system_admin/vcs-server
21 system_admin/svn-http
22 system_admin/svn-path-permissions
23 system_admin/gunicorn-ssl-support
24 system_admin/apache-config
25 system_admin/nginx-config
26 system_admin/backup-restore
27 system_admin/tuning-rhodecode
28 system_admin/indexing
29 system_admin/reset-information
30 system_admin/enable-debug
31 system_admin/admin-tricks
32 system_admin/cleanup-cmds
@@ -1,264 +1,264 b''
1 1 .. _admin-tricks:
2 2
3 3 One-time Admin Tasks
4 4 --------------------
5 5
6 6 * :ref:`web-analytics`
7 7 * :ref:`admin-tricks-license`
8 8 * :ref:`announcements`
9 9 * :ref:`md-rst`
10 10 * :ref:`repo-stats`
11 11 * :ref:`server-side-merge`
12 12 * :ref:`remap-rescan`
13 13 * :ref:`custom-hooks`
14 14 * :ref:`clear-repo-cache`
15 15 * :ref:`set-repo-pub`
16 16 * :ref:`ping`
17 17
18 18 .. _web-analytics:
19 19
20 20 Adding Web Analytics
21 21 ^^^^^^^^^^^^^^^^^^^^
22 22
23 23 If you wish to add a Google Analytics, or any other kind of tracker to your
24 24 |RCE| instance you can add the necessary codes to the header or footer
25 25 section of each instance using the following steps:
26 26
27 27 1. From the |RCE| interface, select
28 28 :menuselection:`Admin --> Settings --> Global`
29 29 2. To add a tracking code to you instance, enter it in the header or footer
30 30 section and select **Save**
31 31
32 32 Use the example templates in the drop-down menu to set up your configuration.
33 33
34 34 .. _admin-tricks-license:
35 35
36 36 Licence Key Management
37 37 ^^^^^^^^^^^^^^^^^^^^^^
38 38
39 39 To manage your license key, go to
40 40 :menuselection:`Admin --> Settings --> License`.
41 41 On this page you can see the license key details. If you need a new license,
42 42 or have questions about your current one, contact support@rhodecode.com
43 43
44 44 .. _announcements:
45 45
46 46 Server-wide Announcements
47 47 ^^^^^^^^^^^^^^^^^^^^^^^^^
48 48
49 49 If you need to make a server-wide announcement to all users,
50 50 you can add a message to be displayed using the following steps:
51 51
52 52 1. From the |RCE| interface, select
53 53 :menuselection:`Admin --> Settings --> Global`
54 54 2. To add a message that will be displayed to all users,
55 55 select :guilabel:`Server Announcement` from the drop-down menu and
56 56 change the ``var message = "TYPE YOUR MESSAGE HERE";`` example line.
57 57 3. Select :guilabel:`Save`, and you will see the message once your page
58 58 refreshes.
59 59
60 .. image:: ../images/server-wide-announcement.png
60 .. image:: ../../images/server-wide-announcement.png
61 61 :alt: Server Wide Announcement
62 62
63 63 .. _md-rst:
64 64
65 65
66 66 Suppress license warnings or errors
67 67 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
68 68
69 69 In case you're running on maximum allowed users, RhodeCode will display a
70 70 warning message on pages that you're close to the license limits.
71 71 It's often not desired to show that all the time. Here's how you can suppress
72 72 the license messages.
73 73
74 74 1. From the |RCE| interface, select
75 75 :menuselection:`Admin --> Settings --> Global`
76 76 2. Select :guilabel:`Flash message filtering` from the drop-down menu.
77 77 3. Select :guilabel:`Save`, and you will no longer see the license message
78 78 once your page refreshes.
79 79
80 80 .. _admin-tricks-suppress-license-messages:
81 81
82 82
83 83 Markdown or RST Rendering
84 84 ^^^^^^^^^^^^^^^^^^^^^^^^^
85 85
86 86 |RCE| can use `Markdown`_ or `reStructured Text`_ in commit message,
87 87 code review messages, and inline comments. To set the default to either,
88 88 select your preference from the drop-down menu on the
89 89 :menuselection:`Admin --> Settings --> Visual` page and select
90 90 :guilabel:`Save settings`.
91 91
92 92 .. _repo-stats:
93 93
94 94 Enabling Repository Statistics
95 95 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
96 96
97 97 To enable |repo| statistics, use the following steps:
98 98
99 99 1. From the |RCE| interface, open
100 100 :menuselection:`Admin --> Repositories` and select
101 101 :guilabel:`Edit` beside the |repo| for which you wish to enable statistics.
102 102 2. Check the :guilabel:`Enable statistics` box, and select :guilabel:`Save`
103 103
104 104 .. _server-side-merge:
105 105
106 106 Enabling Server-side Merging
107 107 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
108 108
109 109 To enable server-side merging, use the following steps:
110 110
111 111 1. From the |RCE| interface, open :menuselection:`Admin --> Settings --> VCS`
112 112 2. Check the :guilabel:`Server-side merge` box, and select
113 113 :guilabel:`Save Settings`
114 114
115 115 If you encounter slow performance with server-side merging enabled, check the
116 116 speed at which your server is performing actions. When server-side merging is
117 117 enabled, the following actions occurs on the server.
118 118
119 119 * A |pr| is created in the database.
120 120 * A shadow |repo| is created as a working environment for the |pr|.
121 121 * On display, |RCE| checks if the |pr| can be merged.
122 122
123 123 To check how fast the shadow |repo| creation is occurring on your server, use
124 124 the following steps:
125 125
126 126 1. Log into your server and create a directory in your |repos| folder.
127 127 2. Clone a |repo| that is showing slow performance and time the action.
128 128
129 129 .. code-block:: bash
130 130
131 131 # One option is to use the time command
132 132 $ time hg clone SOURCE_REPO TARGET
133 133
134 134 .. _remap-rescan:
135 135
136 136 Remap and Rescan Repositories
137 137 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
138 138
139 139 You may want to Remap and rescan the |repos| that |RCE| is managing to ensure
140 140 the system is always up-to-date. This is useful after importing, deleting,
141 141 or carrying out general cleaning up operations. To do this use the
142 142 following steps:
143 143
144 144 1. From the |RCE|, open
145 145 :menuselection:`Admin --> Settings --> Remap and rescan`
146 146 2. Click :guilabel:`Rescan Repositories`
147 147
148 148 Check the additional options if needed:
149 149
150 150 * :guilabel:`Destroy old data`: Useful for purging deleted repository
151 151 information from the database.
152 152 * :guilabel:`Invalidate cache for all repositories`: Use this to completely
153 153 remap all |repos|. Useful when importing or migrating |repos| to ensure all
154 154 new information is picked up.
155 155
156 156 .. _custom-hooks:
157 157
158 158 Adding Custom Hooks
159 159 ^^^^^^^^^^^^^^^^^^^
160 160
161 161 To add custom hooks to your instance, use the following steps:
162 162
163 163 1. Open :menuselection:`Admin --> Settings --> Hooks`
164 164 2. Add your custom hook details, you can use a file path to specify custom
165 165 hook scripts, for example:
166 166 ``pretxnchangegroup.example`` with value ``python:/path/to/custom_hook.py:my_func_name``
167 167 3. Select :guilabel:`Save`
168 168
169 169 Also, see the RhodeCode Extensions section of the :ref:`rc-tools` guide. RhodeCode
170 170 Extensions can be used to add additional hooks to your instance and comes
171 171 with a number of pre-built plugins if you chose to install them.
172 172
173 173 .. _clear-repo-cache:
174 174
175 175 Clearing |repo| cache
176 176 ^^^^^^^^^^^^^^^^^^^^^
177 177
178 178 If you need to clear the cache for a particular |repo|, use the following steps:
179 179
180 180 1. Open :menuselection:`Admin --> Repositories` and select :guilabel:`Edit`
181 181 beside the |repo| whose cache you wish to clear.
182 182 2. On the |repo| settings page, go to the :guilabel:`Caches` tab and select
183 183 :guilabel:`Invalidate repository cache`.
184 184
185 185 .. _set-lang:
186 186
187 187 Changing Default Language
188 188 ^^^^^^^^^^^^^^^^^^^^^^^^^
189 189
190 190 To change the default language of a |RCE| instance, change the language code
191 191 in the :file:`/home/{user}/.rccontrol/{instance-id}/rhodecode.ini` file. To
192 192 do this, use the following steps.
193 193
194 194 1. Open the :file:`rhodecode.ini` file and set the required language code.
195 195
196 196 .. code-block:: ini
197 197
198 198 ## Optional Languages
199 199 ## en(default), de, fr, it, ja, pl, pt, ru, zh
200 200 lang = de
201 201
202 202 2. Restart the |RCE| instance and check that the language has been updated.
203 203
204 204 .. code-block:: bash
205 205
206 206 $ rccontrol restart enterprise-2
207 207 Instance "enterprise-2" successfully stopped.
208 208 Instance "enterprise-2" successfully started.
209 209
210 .. image:: ../images/language.png
210 .. image:: ../../images/language.png
211 211
212 212 .. _set-repo-pub:
213 213
214 214 Setting Repositories to Publish
215 215 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
216 216
217 217 To automatically promote your local |repos| to public after pushing to |RCE|,
218 218 enable the :guilabel:`Set repositories as publishing` option on the
219 219 :menuselection:`Admin --> Settings --> VCS` page.
220 220
221 221 .. note::
222 222
223 223 This option is enabled by default on most |RCE| versions, but if upgrading
224 224 from a 1.7.x version it could be disabled on upgrade due to inheriting
225 225 older default settings.
226 226
227 227 .. _ping:
228 228
229 229 Pinging the |RCE| Server
230 230 ^^^^^^^^^^^^^^^^^^^^^^^^
231 231
232 232 You can check the IP Address of your |RCE| instance using the
233 233 following URL: ``{instance-URL}/_admin/ping``.
234 234
235 235 .. code-block:: bash
236 236
237 237 $ curl https://your.rhodecode.url/_admin/ping
238 238 pong[rce-7880] => 203.0.113.23
239 239
240 240 .. _Markdown: http://daringfireball.net/projects/markdown/
241 241 .. _reStructured Text: http://docutils.sourceforge.net/docs/index.html
242 242
243 243
244 244 Unarchiving a repository
245 245 ^^^^^^^^^^^^^^^^^^^^^^^^^
246 246
247 247 Archive operation for the repository is similar as delete. Archive keeps the data for future references
248 248 but makes the repository read-only. After archiving the repository it shouldn't be modified in any way.
249 249 This is why repository settings are disabled for an archived repository.
250 250
251 251 If there's a need for unarchiving a repository for some reasons, the interactive
252 252 ishell interface should be used.
253 253
254 254 .. code-block:: bash
255 255
256 256 # Open iShell from the terminal
257 257 $ rccontrol ishell enterprise-1/community-1
258 258
259 259 .. code-block:: python
260 260
261 261 # Set repository as un-archived
262 262 In [1]: repo = Repository.get_by_repo_name('SOME_REPO_NAME')
263 263 In [2]: repo.archived = False
264 264 In [3]: Session().add(repo);Session().commit()
@@ -1,14 +1,14 b''
1 1 .. _apache-ws-ref:
2 2
3 3 Apache HTTP Server Configuration
4 4 --------------------------------
5 5
6 6 To set up your Apache Web Server for optimal performance and security, use
7 7 the information in the following sections.
8 8
9 9 .. toctree::
10 10
11 apache-conf-example
12 apache-diffie-hellman
13 apache-subdirectory
14 apache-wsgi-coding
11 apache/apache-conf-example
12 apache/apache-diffie-hellman
13 apache/apache-subdirectory
14 apache/apache-wsgi-coding
1 NO CONTENT: file renamed from docs/admin/apache-conf-example.rst to docs/admin/system_admin/apache/apache-conf-example.rst
1 NO CONTENT: file renamed from docs/admin/apache-diffie-hellman.rst to docs/admin/system_admin/apache/apache-diffie-hellman.rst
1 NO CONTENT: file renamed from docs/admin/apache-subdirectory.rst to docs/admin/system_admin/apache/apache-subdirectory.rst
1 NO CONTENT: file renamed from docs/admin/apache-wsgi-coding.rst to docs/admin/system_admin/apache/apache-wsgi-coding.rst
1 NO CONTENT: file renamed from docs/admin/backup-restore.rst to docs/admin/system_admin/backup-restore.rst
1 NO CONTENT: file renamed from docs/admin/cleanup-cmds.rst to docs/admin/system_admin/cleanup-cmds.rst
1 NO CONTENT: file renamed from docs/admin/config-files-overview.rst to docs/admin/system_admin/config-files-overview.rst
1 NO CONTENT: file renamed from docs/admin/enable-debug.rst to docs/admin/system_admin/enable-debug.rst
1 NO CONTENT: file renamed from docs/admin/gunicorn-ssl-support.rst to docs/admin/system_admin/gunicorn-ssl-support.rst
1 NO CONTENT: file renamed from docs/admin/indexing.rst to docs/admin/system_admin/indexing.rst
@@ -1,14 +1,14 b''
1 1 .. _nginx-ws-ref:
2 2
3 3 Nginx HTTP Server Configuration
4 4 -------------------------------
5 5
6 6 To set up your Nginx Web Server for optimal performance and security, use
7 7 the information in the following sections.
8 8
9 9 .. toctree::
10 10
11 nginx-config-example
12 nginx-diffie-hellman
13 nginx-proxy-conf
14 nginx-url-prefix
11 nginx/nginx-config-example
12 nginx/nginx-diffie-hellman
13 nginx/nginx-proxy-conf
14 nginx/nginx-url-prefix
1 NO CONTENT: file renamed from docs/admin/nginx-config-example.rst to docs/admin/system_admin/nginx/nginx-config-example.rst
1 NO CONTENT: file renamed from docs/admin/nginx-diffie-hellman.rst to docs/admin/system_admin/nginx/nginx-diffie-hellman.rst
1 NO CONTENT: file renamed from docs/admin/nginx-proxy-conf.rst to docs/admin/system_admin/nginx/nginx-proxy-conf.rst
1 NO CONTENT: file renamed from docs/admin/nginx-url-prefix.rst to docs/admin/system_admin/nginx/nginx-url-prefix.rst
1 NO CONTENT: file renamed from docs/admin/reset-information.rst to docs/admin/system_admin/reset-information.rst
1 NO CONTENT: file renamed from docs/admin/svn-http.rst to docs/admin/system_admin/svn-http.rst
1 NO CONTENT: file renamed from docs/admin/svn-path-permissions.rst to docs/admin/system_admin/svn-path-permissions.rst
@@ -1,21 +1,21 b''
1 1 .. _rhodecode-tuning-ref:
2 2
3 3 Tuning |RCE|
4 4 ============
5 5
6 6 To customize your |RCE| |version| installation for maximum performance you
7 7 may find some of the following methods useful.
8 8
9 9 .. toctree::
10 10
11 tuning-gunicorn
12 tuning-vcs-memory-cache
13 tuning-user-sessions-performance
14 tuning-increase-db-performance
15 tuning-scale-horizontally-cluster
16 tuning-mount-cache-memory
17 tuning-change-encoding
18 tuning-change-large-file-dir
19 tuning-change-lfs-dir
20 tuning-hg-auth-loop
11 tuning/tuning-gunicorn
12 tuning/tuning-vcs-memory-cache
13 tuning/tuning-user-sessions-performance
14 tuning/tuning-increase-db-performance
15 tuning/tuning-scale-horizontally-cluster
16 tuning/tuning-mount-cache-memory
17 tuning/tuning-change-encoding
18 tuning/tuning-change-large-file-dir
19 tuning/tuning-change-lfs-dir
20 tuning/tuning-hg-auth-loop
21 21
1 NO CONTENT: file renamed from docs/admin/tuning-change-encoding.rst to docs/admin/system_admin/tuning/tuning-change-encoding.rst
1 NO CONTENT: file renamed from docs/admin/tuning-change-large-file-dir.rst to docs/admin/system_admin/tuning/tuning-change-large-file-dir.rst
1 NO CONTENT: file renamed from docs/admin/tuning-change-lfs-dir.rst to docs/admin/system_admin/tuning/tuning-change-lfs-dir.rst
@@ -1,126 +1,126 b''
1 1 .. _increase-gunicorn:
2 2
3 3 Configure Gunicorn Workers
4 4 --------------------------
5 5
6 6
7 7 |RCE| comes with `Gunicorn`_ which is a Python WSGI HTTP Server for UNIX.
8 8
9 9 To improve |RCE| performance you can increase the number of `Gunicorn`_ workers.
10 10 This allows to handle more connections concurrently, and provide better
11 11 responsiveness and performance.
12 12
13 13 By default during installation |RCC| tries to detect how many CPUs are
14 14 available in the system, and set the number workers based on that information.
15 15 However sometimes it's better to manually set the number of workers.
16 16
17 17 To do this, use the following steps:
18 18
19 19 1. Open the :file:`home/{user}/.rccontrol/{instance-id}/rhodecode.ini` file.
20 20 2. In the ``[server:main]`` section, change the number of Gunicorn
21 21 ``workers`` using the following default formula :math:`(2 * Cores) + 1`.
22 22 We however not recommend using more than 8-12 workers per server. It's better
23 23 to start using the :ref:`scale-horizontal-cluster` in case that performance
24 24 with 8-12 workers is not enough.
25 25
26 26 .. code-block:: ini
27 27
28 28 use = egg:gunicorn#main
29 29 ## Sets the number of process workers. You must set `instance_id = *`
30 30 ## when this option is set to more than one worker, recommended
31 31 ## value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers
32 32 ## The `instance_id = *` must be set in the [app:main] section below
33 33 workers = 4
34 34 ## process name
35 35 proc_name = rhodecode
36 36 ## type of worker class, one of sync, gevent
37 37 ## recommended for bigger setup is using of of other than sync one
38 38 worker_class = sync
39 39 ## The maximum number of simultaneous clients. Valid only for Gevent
40 40 #worker_connections = 10
41 41 ## max number of requests that worker will handle before being gracefully
42 42 ## restarted, could prevent memory leaks
43 43 max_requests = 1000
44 44 max_requests_jitter = 30
45 ## amount of time a worker can spend with handling a request before it
45 ## amount of time a worker can spend with handling a request tuning-change-lfs-dir.before it
46 46 ## gets killed and restarted. Set to 6hrs
47 47 timeout = 21600
48 48
49 49 3. In the ``[app:main]`` section, set the ``instance_id`` property to ``*``.
50 50
51 51 .. code-block:: ini
52 52
53 53 # In the [app:main] section
54 54 [app:main]
55 55 # You must set `instance_id = *`
56 56 instance_id = *
57 57
58 58 4. Change the VCSServer workers too. Open the
59 59 :file:`home/{user}/.rccontrol/{instance-id}/vcsserver.ini` file.
60 60
61 61 5. In the ``[server:main]`` section, increase the number of Gunicorn
62 62 ``workers`` using the following formula :math:`(2 * Cores) + 1`.
63 63
64 64 .. code-block:: ini
65 65
66 66 ## run with gunicorn --log-config vcsserver.ini --paste vcsserver.ini
67 67 use = egg:gunicorn#main
68 68 ## Sets the number of process workers. Recommended
69 69 ## value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers
70 70 workers = 4
71 71 ## process name
72 72 proc_name = rhodecode_vcsserver
73 73 ## type of worker class, currently `sync` is the only option allowed.
74 74 worker_class = sync
75 75 ## The maximum number of simultaneous clients. Valid only for Gevent
76 76 #worker_connections = 10
77 77 ## max number of requests that worker will handle before being gracefully
78 78 ## restarted, could prevent memory leaks
79 79 max_requests = 1000
80 80 max_requests_jitter = 30
81 81 ## amount of time a worker can spend with handling a request before it
82 82 ## gets killed and restarted. Set to 6hrs
83 83 timeout = 21600
84 84
85 85 6. Save your changes.
86 86 7. Restart your |RCE| instances, using the following command:
87 87
88 88 .. code-block:: bash
89 89
90 90 $ rccontrol restart '*'
91 91
92 92
93 93 Gunicorn Gevent Backend
94 94 -----------------------
95 95
96 96 Gevent is an asynchronous worker type for Gunicorn. It allows accepting multiple
97 97 connections on a single `Gunicorn`_ worker. This means you can handle 100s
98 98 of concurrent clones, or API calls using just few workers. A setting called
99 99 `worker_connections` defines on how many connections each worker can
100 100 handle using `Gevent`.
101 101
102 102
103 103 To enable `Gevent` on |RCE| do the following:
104 104
105 105
106 106 1. Open the :file:`home/{user}/.rccontrol/{instance-id}/rhodecode.ini` file.
107 107 2. In the ``[server:main]`` section, change `worker_class` for Gunicorn.
108 108
109 109
110 110 .. code-block:: ini
111 111
112 112 ## type of worker class, one of sync, gevent
113 113 ## recommended for bigger setup is using of of other than sync one
114 114 worker_class = gevent
115 115 ## The maximum number of simultaneous clients. Valid only for Gevent
116 116 worker_connections = 30
117 117
118 118
119 119 .. note::
120 120
121 121 `Gevent` is currently only supported for Enterprise/Community instances.
122 122 VCSServer doesn't yet support gevent.
123 123
124 124
125 125
126 126 .. _Gunicorn: http://gunicorn.org/
1 NO CONTENT: file renamed from docs/admin/tuning-hg-auth-loop.rst to docs/admin/system_admin/tuning/tuning-hg-auth-loop.rst
1 NO CONTENT: file renamed from docs/admin/tuning-increase-db-performance.rst to docs/admin/system_admin/tuning/tuning-increase-db-performance.rst
1 NO CONTENT: file renamed from docs/admin/tuning-mount-cache-memory.rst to docs/admin/system_admin/tuning/tuning-mount-cache-memory.rst
1 NO CONTENT: file renamed from docs/admin/tuning-scale-horizontally-cluster.rst to docs/admin/system_admin/tuning/tuning-scale-horizontally-cluster.rst
1 NO CONTENT: file renamed from docs/admin/tuning-user-sessions-performance.rst to docs/admin/system_admin/tuning/tuning-user-sessions-performance.rst
1 NO CONTENT: file renamed from docs/admin/tuning-vcs-memory-cache.rst to docs/admin/system_admin/tuning/tuning-vcs-memory-cache.rst
1 NO CONTENT: file renamed from docs/admin/vcs-server.rst to docs/admin/system_admin/vcs-server.rst
@@ -1,209 +1,210 b''
1 1 .. _api:
2 2
3 3 API Documentation
4 4 =================
5 5
6 6 The |RCE| API uses a single scheme for calling all API methods. The API is
7 7 implemented with JSON protocol in both directions. To send API requests to
8 8 your instance of |RCE|, use the following URL format
9 9 ``<your_server>/_admin``
10 10
11 11 .. note::
12 12
13 13 To use the API, you should configure the :file:`~/.rhoderc` file with
14 14 access details per instance. For more information, see
15 15 :ref:`config-rhoderc`.
16 16
17 17
18 18 API ACCESS FOR WEB VIEWS
19 19 ------------------------
20 20
21 21 API access can also be turned on for each web view in |RCE| that is
22 22 decorated with a `@LoginRequired` decorator. To enable API access, change
23 23 the standard login decorator to `@LoginRequired(api_access=True)`.
24 24
25 25 From |RCE| version 1.7.0 you can configure a white list
26 26 of views that have API access enabled by default. To enable these,
27 27 edit the |RCE| configuration ``.ini`` file. The default location is:
28 28
29 29 * |RCE| Pre-2.2.7 :file:`root/rhodecode/data/production.ini`
30 30 * |RCE| 3.0 :file:`/home/{user}/.rccontrol/{instance-id}/rhodecode.ini`
31 31
32 32 To configure the white list, edit this section of the file. In this
33 33 configuration example, API access is granted to the patch/diff raw file and
34 34 archive.
35 35
36 36 .. code-block:: ini
37 37
38 38 ## List of controllers (using glob syntax) that AUTH TOKENS could be used for access.
39 39 ## Adding ?auth_token = <token> to the url authenticates this request as if it
40 40 ## came from the the logged in user who own this authentication token.
41 41 ##
42 42 ## Syntax is <ControllerClass>:<function_pattern>.
43 43 ## The list should be "," separated and on a single line.
44 44 ##
45 45 api_access_controllers_whitelist = RepoCommitsView:repo_commit_raw,RepoCommitsView:repo_commit_patch,RepoCommitsView:repo_commit_download
46 46
47 47 After this change, a |RCE| view can be accessed without login by adding a
48 48 GET parameter ``?auth_token=<auth_token>`` to a url. For example to
49 49 access the raw diff.
50 50
51 51 .. code-block:: html
52 52
53 53 http://<server>/<repo>/changeset-diff/<sha>?auth_token=<auth_token>
54 54
55 55 By default this is only enabled on RSS/ATOM feed views. Exposing raw diffs is a
56 56 good way to integrate with 3rd party services like code review, or build farms
57 57 that could download archives.
58 58
59 59 API ACCESS
60 60 ----------
61 61
62 62 All clients are required to send JSON-RPC spec JSON data.
63 63
64 64 .. code-block:: bash
65 65
66 66 {
67 67 "id:"<id>",
68 68 "auth_token":"<auth_token>",
69 69 "method":"<method_name>",
70 70 "args":{"<arg_key>":"<arg_val>"}
71 71 }
72 72
73 73 Example call for auto pulling from remote repositories using curl:
74 74
75 75 .. code-block:: bash
76 76
77 77 curl https://server.com/_admin/api -X POST -H 'content-type:text/plain' --data-binary '{"id":1,
78 78 "auth_token":"xe7cdb2v278e4evbdf5vs04v832v0efvcbcve4a3","method":"pull", "args":{"repoid":"CPython"}}'
79 79
80 80 Provide those parameters:
81 81 - **id** A value of any type, which is used to match the response with the
82 82 request that it is replying to.
83 83 - **auth_token** for access and permission validation.
84 84 - **method** is name of method to call
85 85 - **args** is an ``key:value`` list of arguments to pass to method
86 86
87 87 .. note::
88 88
89 89 To get your |authtoken|, from the |RCE| interface,
90 90 go to:
91 91 :menuselection:`username --> My account --> Auth tokens`
92 92
93 93 For security reasons you should always create a dedicated |authtoken| for
94 94 API use only.
95 95
96 96
97 97 The |RCE| API will always return a JSON-RPC response:
98 98
99 99 .. code-block:: bash
100 100
101 101 {
102 102 "id": <id>, # matching id sent by request
103 103 "result": "<result>"|null, # JSON formatted result, null if any errors
104 104 "error": "null"|<error_message> # JSON formatted error (if any)
105 105 }
106 106
107 107 All responses from API will be with `HTTP/1.0 200 OK` status code.
108 108 If there is an error when calling the API, the *error* key will contain a
109 109 failure description and the *result* will be `null`.
110 110
111 111 API CLIENT
112 112 ----------
113 113
114 114 To install the |RCE| API, see :ref:`install-tools`. To configure the API per
115 115 instance, see the :ref:`rc-tools` section as you need to configure a
116 116 :file:`~/.rhoderc` file with your |authtokens|.
117 117
118 118 Once you have set up your instance API access, use the following examples to
119 119 get started.
120 120
121 121 .. code-block:: bash
122 122
123 123 # Getting the 'rhodecode' repository
124 124 # from a RhodeCode Enterprise instance
125 125 rhodecode-api --instance-name=enterprise-1 get_repo repoid:rhodecode
126 126
127 127 Calling method get_repo => http://127.0.0.1:5000
128 128 Server response
129 129 {
130 130 <json data>
131 131 }
132 132
133 133 # Creating a new mercurial repository called 'brand-new'
134 134 # with a description 'Repo-description'
135 135 rhodecode-api --instance-name=enterprise-1 create_repo repo_name:brand-new repo_type:hg description:Repo-description
136 136 {
137 137 "error": null,
138 138 "id": 1110,
139 139 "result": {
140 140 "msg": "Created new repository `brand-new`",
141 141 "success": true,
142 142 "task": null
143 143 }
144 144 }
145 145
146 146 A broken example, what not to do.
147 147
148 148 .. code-block:: bash
149 149
150 150 # A call missing the required arguments
151 151 # and not specifying the instance
152 152 rhodecode-api get_repo
153 153
154 154 Calling method get_repo => http://127.0.0.1:5000
155 155 Server response
156 156 "Missing non optional `repoid` arg in JSON DATA"
157 157
158 158 You can specify pure JSON using the ``--format`` parameter.
159 159
160 160 .. code-block:: bash
161 161
162 162 rhodecode-api --format=json get_repo repoid:rhodecode
163 163
164 164 In such case only output that this function shows is pure JSON, we can use that
165 165 and pipe output to some json formatter.
166 166
167 167 If output is in pure JSON format, you can pipe output to a JSON formatter.
168 168
169 169 .. code-block:: bash
170 170
171 171 rhodecode-api --instance-name=enterprise-1 --format=json get_repo repoid:rhodecode | python -m json.tool
172 172
173 173 API METHODS
174 174 -----------
175 175
176 176 Each method by default required following arguments.
177 177
178 178 .. code-block:: bash
179 179
180 180 id : "<id_for_response>"
181 181 auth_token : "<auth_token>"
182 182 method : "<method name>"
183 183 args : {}
184 184
185 185 Use each **param** from docs and put it in args, Optional parameters
186 186 are not required in args.
187 187
188 188 .. code-block:: bash
189 189
190 190 args: {"repoid": "rhodecode"}
191 191
192 192 .. Note: From this point on things are generated by the script in
193 193 `scripts/fabfile.py`. To change things below, update the docstrings in the
194 194 ApiController.
195 195
196 196 .. --- API DEFS MARKER ---
197 197 .. toctree::
198 198
199 199 methods/repo-methods
200 200 methods/store-methods
201 201 methods/license-methods
202 202 methods/deprecated-methods
203 203 methods/gist-methods
204 204 methods/pull-request-methods
205 205 methods/repo-methods
206 206 methods/repo-group-methods
207 methods/search-methods
207 208 methods/server-methods
208 209 methods/user-methods
209 210 methods/user-group-methods
@@ -1,1134 +1,1133 b''
1 1 .. _repo-methods-ref:
2 2
3 3 repo methods
4 4 ============
5 5
6 6 add_field_to_repo
7 7 -----------------
8 8
9 9 .. py:function:: add_field_to_repo(apiuser, repoid, key, label=<Optional:''>, description=<Optional:''>)
10 10
11 11 Adds an extra field to a repository.
12 12
13 13 This command can only be run using an |authtoken| with at least
14 14 write permissions to the |repo|.
15 15
16 16 :param apiuser: This is filled automatically from the |authtoken|.
17 17 :type apiuser: AuthUser
18 18 :param repoid: Set the repository name or repository id.
19 19 :type repoid: str or int
20 20 :param key: Create a unique field key for this repository.
21 21 :type key: str
22 22 :param label:
23 23 :type label: Optional(str)
24 24 :param description:
25 25 :type description: Optional(str)
26 26
27 27
28 28 comment_commit
29 29 --------------
30 30
31 31 .. py:function:: comment_commit(apiuser, repoid, commit_id, message, status=<Optional:None>, comment_type=<Optional:u'note'>, resolves_comment_id=<Optional:None>, userid=<Optional:<OptionalAttr:apiuser>>)
32 32
33 33 Set a commit comment, and optionally change the status of the commit.
34 34
35 35 :param apiuser: This is filled automatically from the |authtoken|.
36 36 :type apiuser: AuthUser
37 37 :param repoid: Set the repository name or repository ID.
38 38 :type repoid: str or int
39 39 :param commit_id: Specify the commit_id for which to set a comment.
40 40 :type commit_id: str
41 41 :param message: The comment text.
42 42 :type message: str
43 43 :param status: (**Optional**) status of commit, one of: 'not_reviewed',
44 44 'approved', 'rejected', 'under_review'
45 45 :type status: str
46 46 :param comment_type: Comment type, one of: 'note', 'todo'
47 47 :type comment_type: Optional(str), default: 'note'
48 48 :param userid: Set the user name of the comment creator.
49 49 :type userid: Optional(str or int)
50 50
51 51 Example error output:
52 52
53 53 .. code-block:: bash
54 54
55 55 {
56 56 "id" : <id_given_in_input>,
57 57 "result" : {
58 58 "msg": "Commented on commit `<commit_id>` for repository `<repoid>`",
59 59 "status_change": null or <status>,
60 60 "success": true
61 61 },
62 62 "error" : null
63 63 }
64 64
65 65
66 66 create_repo
67 67 -----------
68 68
69 69 .. py:function:: create_repo(apiuser, repo_name, repo_type, owner=<Optional:<OptionalAttr:apiuser>>, description=<Optional:''>, private=<Optional:False>, clone_uri=<Optional:None>, push_uri=<Optional:None>, landing_rev=<Optional:'rev:tip'>, enable_statistics=<Optional:False>, enable_locking=<Optional:False>, enable_downloads=<Optional:False>, copy_permissions=<Optional:False>)
70 70
71 71 Creates a repository.
72 72
73 73 * If the repository name contains "/", repository will be created inside
74 74 a repository group or nested repository groups
75 75
76 76 For example "foo/bar/repo1" will create |repo| called "repo1" inside
77 77 group "foo/bar". You have to have permissions to access and write to
78 78 the last repository group ("bar" in this example)
79 79
80 80 This command can only be run using an |authtoken| with at least
81 81 permissions to create repositories, or write permissions to
82 82 parent repository groups.
83 83
84 84 :param apiuser: This is filled automatically from the |authtoken|.
85 85 :type apiuser: AuthUser
86 86 :param repo_name: Set the repository name.
87 87 :type repo_name: str
88 88 :param repo_type: Set the repository type; 'hg','git', or 'svn'.
89 89 :type repo_type: str
90 90 :param owner: user_id or username
91 91 :type owner: Optional(str)
92 92 :param description: Set the repository description.
93 93 :type description: Optional(str)
94 94 :param private: set repository as private
95 95 :type private: bool
96 96 :param clone_uri: set clone_uri
97 97 :type clone_uri: str
98 98 :param push_uri: set push_uri
99 99 :type push_uri: str
100 100 :param landing_rev: <rev_type>:<rev>
101 101 :type landing_rev: str
102 102 :param enable_locking:
103 103 :type enable_locking: bool
104 104 :param enable_downloads:
105 105 :type enable_downloads: bool
106 106 :param enable_statistics:
107 107 :type enable_statistics: bool
108 108 :param copy_permissions: Copy permission from group in which the
109 109 repository is being created.
110 110 :type copy_permissions: bool
111 111
112 112
113 113 Example output:
114 114
115 115 .. code-block:: bash
116 116
117 117 id : <id_given_in_input>
118 118 result: {
119 119 "msg": "Created new repository `<reponame>`",
120 120 "success": true,
121 121 "task": "<celery task id or None if done sync>"
122 122 }
123 123 error: null
124 124
125 125
126 126 Example error output:
127 127
128 128 .. code-block:: bash
129 129
130 130 id : <id_given_in_input>
131 131 result : null
132 132 error : {
133 133 'failed to create repository `<repo_name>`'
134 134 }
135 135
136 136
137 137 delete_repo
138 138 -----------
139 139
140 140 .. py:function:: delete_repo(apiuser, repoid, forks=<Optional:''>)
141 141
142 142 Deletes a repository.
143 143
144 144 * When the `forks` parameter is set it's possible to detach or delete
145 145 forks of deleted repository.
146 146
147 147 This command can only be run using an |authtoken| with admin
148 148 permissions on the |repo|.
149 149
150 150 :param apiuser: This is filled automatically from the |authtoken|.
151 151 :type apiuser: AuthUser
152 152 :param repoid: Set the repository name or repository ID.
153 153 :type repoid: str or int
154 154 :param forks: Set to `detach` or `delete` forks from the |repo|.
155 155 :type forks: Optional(str)
156 156
157 157 Example error output:
158 158
159 159 .. code-block:: bash
160 160
161 161 id : <id_given_in_input>
162 162 result: {
163 163 "msg": "Deleted repository `<reponame>`",
164 164 "success": true
165 165 }
166 166 error: null
167 167
168 168
169 169 fork_repo
170 170 ---------
171 171
172 172 .. py:function:: fork_repo(apiuser, repoid, fork_name, owner=<Optional:<OptionalAttr:apiuser>>, description=<Optional:''>, private=<Optional:False>, clone_uri=<Optional:None>, landing_rev=<Optional:'rev:tip'>, copy_permissions=<Optional:False>)
173 173
174 174 Creates a fork of the specified |repo|.
175 175
176 176 * If the fork_name contains "/", fork will be created inside
177 177 a repository group or nested repository groups
178 178
179 179 For example "foo/bar/fork-repo" will create fork called "fork-repo"
180 180 inside group "foo/bar". You have to have permissions to access and
181 181 write to the last repository group ("bar" in this example)
182 182
183 183 This command can only be run using an |authtoken| with minimum
184 184 read permissions of the forked repo, create fork permissions for an user.
185 185
186 186 :param apiuser: This is filled automatically from the |authtoken|.
187 187 :type apiuser: AuthUser
188 188 :param repoid: Set repository name or repository ID.
189 189 :type repoid: str or int
190 190 :param fork_name: Set the fork name, including it's repository group membership.
191 191 :type fork_name: str
192 192 :param owner: Set the fork owner.
193 193 :type owner: str
194 194 :param description: Set the fork description.
195 195 :type description: str
196 196 :param copy_permissions: Copy permissions from parent |repo|. The
197 197 default is False.
198 198 :type copy_permissions: bool
199 199 :param private: Make the fork private. The default is False.
200 200 :type private: bool
201 201 :param landing_rev: Set the landing revision. The default is tip.
202 202
203 203 Example output:
204 204
205 205 .. code-block:: bash
206 206
207 207 id : <id_for_response>
208 208 api_key : "<api_key>"
209 209 args: {
210 210 "repoid" : "<reponame or repo_id>",
211 211 "fork_name": "<forkname>",
212 212 "owner": "<username or user_id = Optional(=apiuser)>",
213 213 "description": "<description>",
214 214 "copy_permissions": "<bool>",
215 215 "private": "<bool>",
216 216 "landing_rev": "<landing_rev>"
217 217 }
218 218
219 219 Example error output:
220 220
221 221 .. code-block:: bash
222 222
223 223 id : <id_given_in_input>
224 224 result: {
225 225 "msg": "Created fork of `<reponame>` as `<forkname>`",
226 226 "success": true,
227 227 "task": "<celery task id or None if done sync>"
228 228 }
229 229 error: null
230 230
231 231
232 232 get_repo
233 233 --------
234 234
235 235 .. py:function:: get_repo(apiuser, repoid, cache=<Optional:True>)
236 236
237 237 Gets an existing repository by its name or repository_id.
238 238
239 239 The members section so the output returns users groups or users
240 240 associated with that repository.
241 241
242 242 This command can only be run using an |authtoken| with admin rights,
243 243 or users with at least read rights to the |repo|.
244 244
245 245 :param apiuser: This is filled automatically from the |authtoken|.
246 246 :type apiuser: AuthUser
247 247 :param repoid: The repository name or repository id.
248 248 :type repoid: str or int
249 249 :param cache: use the cached value for last changeset
250 250 :type: cache: Optional(bool)
251 251
252 252 Example output:
253 253
254 254 .. code-block:: bash
255 255
256 256 {
257 257 "error": null,
258 258 "id": <repo_id>,
259 259 "result": {
260 260 "clone_uri": null,
261 261 "created_on": "timestamp",
262 262 "description": "repo description",
263 263 "enable_downloads": false,
264 264 "enable_locking": false,
265 265 "enable_statistics": false,
266 266 "followers": [
267 267 {
268 268 "active": true,
269 269 "admin": false,
270 270 "api_key": "****************************************",
271 271 "api_keys": [
272 272 "****************************************"
273 273 ],
274 274 "email": "user@example.com",
275 275 "emails": [
276 276 "user@example.com"
277 277 ],
278 278 "extern_name": "rhodecode",
279 279 "extern_type": "rhodecode",
280 280 "firstname": "username",
281 281 "ip_addresses": [],
282 282 "language": null,
283 283 "last_login": "2015-09-16T17:16:35.854",
284 284 "lastname": "surname",
285 285 "user_id": <user_id>,
286 286 "username": "name"
287 287 }
288 288 ],
289 289 "fork_of": "parent-repo",
290 290 "landing_rev": [
291 291 "rev",
292 292 "tip"
293 293 ],
294 294 "last_changeset": {
295 295 "author": "User <user@example.com>",
296 296 "branch": "default",
297 297 "date": "timestamp",
298 298 "message": "last commit message",
299 299 "parents": [
300 300 {
301 301 "raw_id": "commit-id"
302 302 }
303 303 ],
304 304 "raw_id": "commit-id",
305 305 "revision": <revision number>,
306 306 "short_id": "short id"
307 307 },
308 308 "lock_reason": null,
309 309 "locked_by": null,
310 310 "locked_date": null,
311 311 "owner": "owner-name",
312 312 "permissions": [
313 313 {
314 314 "name": "super-admin-name",
315 315 "origin": "super-admin",
316 316 "permission": "repository.admin",
317 317 "type": "user"
318 318 },
319 319 {
320 320 "name": "owner-name",
321 321 "origin": "owner",
322 322 "permission": "repository.admin",
323 323 "type": "user"
324 324 },
325 325 {
326 326 "name": "user-group-name",
327 327 "origin": "permission",
328 328 "permission": "repository.write",
329 329 "type": "user_group"
330 330 }
331 331 ],
332 332 "private": true,
333 333 "repo_id": 676,
334 334 "repo_name": "user-group/repo-name",
335 335 "repo_type": "hg"
336 336 }
337 337 }
338 338
339 339
340 340 get_repo_changeset
341 341 ------------------
342 342
343 343 .. py:function:: get_repo_changeset(apiuser, repoid, revision, details=<Optional:'basic'>)
344 344
345 345 Returns information about a changeset.
346 346
347 347 Additionally parameters define the amount of details returned by
348 348 this function.
349 349
350 350 This command can only be run using an |authtoken| with admin rights,
351 351 or users with at least read rights to the |repo|.
352 352
353 353 :param apiuser: This is filled automatically from the |authtoken|.
354 354 :type apiuser: AuthUser
355 355 :param repoid: The repository name or repository id
356 356 :type repoid: str or int
357 357 :param revision: revision for which listing should be done
358 358 :type revision: str
359 359 :param details: details can be 'basic|extended|full' full gives diff
360 360 info details like the diff itself, and number of changed files etc.
361 361 :type details: Optional(str)
362 362
363 363
364 364 get_repo_changesets
365 365 -------------------
366 366
367 367 .. py:function:: get_repo_changesets(apiuser, repoid, start_rev, limit, details=<Optional:'basic'>)
368 368
369 369 Returns a set of commits limited by the number starting
370 370 from the `start_rev` option.
371 371
372 372 Additional parameters define the amount of details returned by this
373 373 function.
374 374
375 375 This command can only be run using an |authtoken| with admin rights,
376 376 or users with at least read rights to |repos|.
377 377
378 378 :param apiuser: This is filled automatically from the |authtoken|.
379 379 :type apiuser: AuthUser
380 380 :param repoid: The repository name or repository ID.
381 381 :type repoid: str or int
382 382 :param start_rev: The starting revision from where to get changesets.
383 383 :type start_rev: str
384 384 :param limit: Limit the number of commits to this amount
385 385 :type limit: str or int
386 386 :param details: Set the level of detail returned. Valid option are:
387 387 ``basic``, ``extended`` and ``full``.
388 388 :type details: Optional(str)
389 389
390 390 .. note::
391 391
392 392 Setting the parameter `details` to the value ``full`` is extensive
393 393 and returns details like the diff itself, and the number
394 394 of changed files.
395 395
396 396
397 397 get_repo_comments
398 398 -----------------
399 399
400 400 .. py:function:: get_repo_comments(apiuser, repoid, commit_id=<Optional:None>, comment_type=<Optional:None>, userid=<Optional:None>)
401 401
402 402 Get all comments for a repository
403 403
404 404 :param apiuser: This is filled automatically from the |authtoken|.
405 405 :type apiuser: AuthUser
406 406 :param repoid: Set the repository name or repository ID.
407 407 :type repoid: str or int
408 408 :param commit_id: Optionally filter the comments by the commit_id
409 409 :type commit_id: Optional(str), default: None
410 410 :param comment_type: Optionally filter the comments by the comment_type
411 411 one of: 'note', 'todo'
412 412 :type comment_type: Optional(str), default: None
413 413 :param userid: Optionally filter the comments by the author of comment
414 414 :type userid: Optional(str or int), Default: None
415 415
416 416 Example error output:
417 417
418 418 .. code-block:: bash
419 419
420 420 {
421 421 "id" : <id_given_in_input>,
422 422 "result" : [
423 423 {
424 424 "comment_author": <USER_DETAILS>,
425 425 "comment_created_on": "2017-02-01T14:38:16.309",
426 426 "comment_f_path": "file.txt",
427 427 "comment_id": 282,
428 428 "comment_lineno": "n1",
429 429 "comment_resolved_by": null,
430 430 "comment_status": [],
431 431 "comment_text": "This file needs a header",
432 432 "comment_type": "todo"
433 433 }
434 434 ],
435 435 "error" : null
436 436 }
437 437
438 438
439 439 get_repo_file
440 440 -------------
441 441
442 442 .. py:function:: get_repo_file(apiuser, repoid, commit_id, file_path, max_file_bytes=<Optional:None>, details=<Optional:'basic'>, cache=<Optional:True>)
443 443
444 444 Returns a single file from repository at given revision.
445 445
446 446 This command can only be run using an |authtoken| with admin rights,
447 447 or users with at least read rights to |repos|.
448 448
449 449 :param apiuser: This is filled automatically from the |authtoken|.
450 450 :type apiuser: AuthUser
451 451 :param repoid: The repository name or repository ID.
452 452 :type repoid: str or int
453 453 :param commit_id: The revision for which listing should be done.
454 454 :type commit_id: str
455 455 :param file_path: The path from which to start displaying.
456 456 :type file_path: str
457 457 :param details: Returns different set of information about nodes.
458 458 The valid options are ``minimal`` ``basic`` and ``full``.
459 459 :type details: Optional(str)
460 460 :param max_file_bytes: Only return file content under this file size bytes
461 461 :type max_file_bytes: Optional(int)
462 462 :param cache: Use internal caches for fetching files. If disabled fetching
463 463 files is slower but more memory efficient
464 464 :type cache: Optional(bool)
465
465 466 Example output:
466 467
467 468 .. code-block:: bash
468 469
469 470 id : <id_given_in_input>
470 471 result: {
471 472 "binary": false,
472 473 "extension": "py",
473 474 "lines": 35,
474 475 "content": "....",
475 476 "md5": "76318336366b0f17ee249e11b0c99c41",
476 477 "mimetype": "text/x-python",
477 478 "name": "python.py",
478 479 "size": 817,
479 480 "type": "file",
480 481 }
481 482 error: null
482 483
483 484
484 485 get_repo_fts_tree
485 486 -----------------
486 487
487 488 .. py:function:: get_repo_fts_tree(apiuser, repoid, commit_id, root_path)
488 489
489 490 Returns a list of tree nodes for path at given revision. This api is built
490 491 strictly for usage in full text search building, and shouldn't be consumed
491 492
492 493 This command can only be run using an |authtoken| with admin rights,
493 494 or users with at least read rights to |repos|.
494 495
495 496
496 497 get_repo_nodes
497 498 --------------
498 499
499 500 .. py:function:: get_repo_nodes(apiuser, repoid, revision, root_path, ret_type=<Optional:'all'>, details=<Optional:'basic'>, max_file_bytes=<Optional:None>)
500 501
501 502 Returns a list of nodes and children in a flat list for a given
502 503 path at given revision.
503 504
504 505 It's possible to specify ret_type to show only `files` or `dirs`.
505 506
506 507 This command can only be run using an |authtoken| with admin rights,
507 508 or users with at least read rights to |repos|.
508 509
509 510 :param apiuser: This is filled automatically from the |authtoken|.
510 511 :type apiuser: AuthUser
511 512 :param repoid: The repository name or repository ID.
512 513 :type repoid: str or int
513 514 :param revision: The revision for which listing should be done.
514 515 :type revision: str
515 516 :param root_path: The path from which to start displaying.
516 517 :type root_path: str
517 518 :param ret_type: Set the return type. Valid options are
518 519 ``all`` (default), ``files`` and ``dirs``.
519 520 :type ret_type: Optional(str)
520 521 :param details: Returns extended information about nodes, such as
521 522 md5, binary, and or content.
522 523 The valid options are ``basic`` and ``full``.
523 524 :type details: Optional(str)
524 525 :param max_file_bytes: Only return file content under this file size bytes
525 526 :type details: Optional(int)
526 527
527 528 Example output:
528 529
529 530 .. code-block:: bash
530 531
531 532 id : <id_given_in_input>
532 533 result: [
533 534 {
534 535 "binary": false,
535 "content": "File line
536 Line2
537 ",
536 "content": "File line",
538 537 "extension": "md",
539 538 "lines": 2,
540 539 "md5": "059fa5d29b19c0657e384749480f6422",
541 540 "mimetype": "text/x-minidsrc",
542 541 "name": "file.md",
543 542 "size": 580,
544 543 "type": "file"
545 544 },
546 545 ...
547 546 ]
548 547 error: null
549 548
550 549
551 550 get_repo_refs
552 551 -------------
553 552
554 553 .. py:function:: get_repo_refs(apiuser, repoid)
555 554
556 555 Returns a dictionary of current references. It returns
557 556 bookmarks, branches, closed_branches, and tags for given repository
558 557
559 558 It's possible to specify ret_type to show only `files` or `dirs`.
560 559
561 560 This command can only be run using an |authtoken| with admin rights,
562 561 or users with at least read rights to |repos|.
563 562
564 563 :param apiuser: This is filled automatically from the |authtoken|.
565 564 :type apiuser: AuthUser
566 565 :param repoid: The repository name or repository ID.
567 566 :type repoid: str or int
568 567
569 568 Example output:
570 569
571 570 .. code-block:: bash
572 571
573 572 id : <id_given_in_input>
574 573 "result": {
575 574 "bookmarks": {
576 575 "dev": "5611d30200f4040ba2ab4f3d64e5b06408a02188",
577 576 "master": "367f590445081d8ec8c2ea0456e73ae1f1c3d6cf"
578 577 },
579 578 "branches": {
580 579 "default": "5611d30200f4040ba2ab4f3d64e5b06408a02188",
581 580 "stable": "367f590445081d8ec8c2ea0456e73ae1f1c3d6cf"
582 581 },
583 582 "branches_closed": {},
584 583 "tags": {
585 584 "tip": "5611d30200f4040ba2ab4f3d64e5b06408a02188",
586 585 "v4.4.0": "1232313f9e6adac5ce5399c2a891dc1e72b79022",
587 586 "v4.4.1": "cbb9f1d329ae5768379cdec55a62ebdd546c4e27",
588 587 "v4.4.2": "24ffe44a27fcd1c5b6936144e176b9f6dd2f3a17",
589 588 }
590 589 }
591 590 error: null
592 591
593 592
594 593 get_repo_settings
595 594 -----------------
596 595
597 596 .. py:function:: get_repo_settings(apiuser, repoid, key=<Optional:None>)
598 597
599 598 Returns all settings for a repository. If key is given it only returns the
600 599 setting identified by the key or null.
601 600
602 601 :param apiuser: This is filled automatically from the |authtoken|.
603 602 :type apiuser: AuthUser
604 603 :param repoid: The repository name or repository id.
605 604 :type repoid: str or int
606 605 :param key: Key of the setting to return.
607 606 :type: key: Optional(str)
608 607
609 608 Example output:
610 609
611 610 .. code-block:: bash
612 611
613 612 {
614 613 "error": null,
615 614 "id": 237,
616 615 "result": {
617 616 "extensions_largefiles": true,
618 617 "extensions_evolve": true,
619 618 "hooks_changegroup_push_logger": true,
620 619 "hooks_changegroup_repo_size": false,
621 620 "hooks_outgoing_pull_logger": true,
622 621 "phases_publish": "True",
623 622 "rhodecode_hg_use_rebase_for_merging": true,
624 623 "rhodecode_pr_merge_enabled": true,
625 624 "rhodecode_use_outdated_comments": true
626 625 }
627 626 }
628 627
629 628
630 629 get_repos
631 630 ---------
632 631
633 632 .. py:function:: get_repos(apiuser, root=<Optional:None>, traverse=<Optional:True>)
634 633
635 634 Lists all existing repositories.
636 635
637 636 This command can only be run using an |authtoken| with admin rights,
638 637 or users with at least read rights to |repos|.
639 638
640 639 :param apiuser: This is filled automatically from the |authtoken|.
641 640 :type apiuser: AuthUser
642 641 :param root: specify root repository group to fetch repositories.
643 642 filters the returned repositories to be members of given root group.
644 643 :type root: Optional(None)
645 644 :param traverse: traverse given root into subrepositories. With this flag
646 645 set to False, it will only return top-level repositories from `root`.
647 646 if root is empty it will return just top-level repositories.
648 647 :type traverse: Optional(True)
649 648
650 649
651 650 Example output:
652 651
653 652 .. code-block:: bash
654 653
655 654 id : <id_given_in_input>
656 655 result: [
657 656 {
658 657 "repo_id" : "<repo_id>",
659 658 "repo_name" : "<reponame>"
660 659 "repo_type" : "<repo_type>",
661 660 "clone_uri" : "<clone_uri>",
662 661 "private": : "<bool>",
663 662 "created_on" : "<datetimecreated>",
664 663 "description" : "<description>",
665 664 "landing_rev": "<landing_rev>",
666 665 "owner": "<repo_owner>",
667 666 "fork_of": "<name_of_fork_parent>",
668 667 "enable_downloads": "<bool>",
669 668 "enable_locking": "<bool>",
670 669 "enable_statistics": "<bool>",
671 670 },
672 671 ...
673 672 ]
674 673 error: null
675 674
676 675
677 676 grant_user_group_permission
678 677 ---------------------------
679 678
680 679 .. py:function:: grant_user_group_permission(apiuser, repoid, usergroupid, perm)
681 680
682 681 Grant permission for a user group on the specified repository,
683 682 or update existing permissions.
684 683
685 684 This command can only be run using an |authtoken| with admin
686 685 permissions on the |repo|.
687 686
688 687 :param apiuser: This is filled automatically from the |authtoken|.
689 688 :type apiuser: AuthUser
690 689 :param repoid: Set the repository name or repository ID.
691 690 :type repoid: str or int
692 691 :param usergroupid: Specify the ID of the user group.
693 692 :type usergroupid: str or int
694 693 :param perm: Set the user group permissions using the following
695 694 format: (repository.(none|read|write|admin))
696 695 :type perm: str
697 696
698 697 Example output:
699 698
700 699 .. code-block:: bash
701 700
702 701 id : <id_given_in_input>
703 702 result : {
704 703 "msg" : "Granted perm: `<perm>` for group: `<usersgroupname>` in repo: `<reponame>`",
705 704 "success": true
706 705
707 706 }
708 707 error : null
709 708
710 709 Example error output:
711 710
712 711 .. code-block:: bash
713 712
714 713 id : <id_given_in_input>
715 714 result : null
716 715 error : {
717 716 "failed to edit permission for user group: `<usergroup>` in repo `<repo>`'
718 717 }
719 718
720 719
721 720 grant_user_permission
722 721 ---------------------
723 722
724 723 .. py:function:: grant_user_permission(apiuser, repoid, userid, perm)
725 724
726 725 Grant permissions for the specified user on the given repository,
727 726 or update existing permissions if found.
728 727
729 728 This command can only be run using an |authtoken| with admin
730 729 permissions on the |repo|.
731 730
732 731 :param apiuser: This is filled automatically from the |authtoken|.
733 732 :type apiuser: AuthUser
734 733 :param repoid: Set the repository name or repository ID.
735 734 :type repoid: str or int
736 735 :param userid: Set the user name.
737 736 :type userid: str
738 737 :param perm: Set the user permissions, using the following format
739 738 ``(repository.(none|read|write|admin))``
740 739 :type perm: str
741 740
742 741 Example output:
743 742
744 743 .. code-block:: bash
745 744
746 745 id : <id_given_in_input>
747 746 result: {
748 747 "msg" : "Granted perm: `<perm>` for user: `<username>` in repo: `<reponame>`",
749 748 "success": true
750 749 }
751 750 error: null
752 751
753 752
754 753 invalidate_cache
755 754 ----------------
756 755
757 756 .. py:function:: invalidate_cache(apiuser, repoid, delete_keys=<Optional:False>)
758 757
759 758 Invalidates the cache for the specified repository.
760 759
761 760 This command can only be run using an |authtoken| with admin rights to
762 761 the specified repository.
763 762
764 763 This command takes the following options:
765 764
766 765 :param apiuser: This is filled automatically from |authtoken|.
767 766 :type apiuser: AuthUser
768 767 :param repoid: Sets the repository name or repository ID.
769 768 :type repoid: str or int
770 769 :param delete_keys: This deletes the invalidated keys instead of
771 770 just flagging them.
772 771 :type delete_keys: Optional(``True`` | ``False``)
773 772
774 773 Example output:
775 774
776 775 .. code-block:: bash
777 776
778 777 id : <id_given_in_input>
779 778 result : {
780 779 'msg': Cache for repository `<repository name>` was invalidated,
781 780 'repository': <repository name>
782 781 }
783 782 error : null
784 783
785 784 Example error output:
786 785
787 786 .. code-block:: bash
788 787
789 788 id : <id_given_in_input>
790 789 result : null
791 790 error : {
792 791 'Error occurred during cache invalidation action'
793 792 }
794 793
795 794
796 795 lock
797 796 ----
798 797
799 798 .. py:function:: lock(apiuser, repoid, locked=<Optional:None>, userid=<Optional:<OptionalAttr:apiuser>>)
800 799
801 800 Sets the lock state of the specified |repo| by the given user.
802 801 From more information, see :ref:`repo-locking`.
803 802
804 803 * If the ``userid`` option is not set, the repository is locked to the
805 804 user who called the method.
806 805 * If the ``locked`` parameter is not set, the current lock state of the
807 806 repository is displayed.
808 807
809 808 This command can only be run using an |authtoken| with admin rights to
810 809 the specified repository.
811 810
812 811 This command takes the following options:
813 812
814 813 :param apiuser: This is filled automatically from the |authtoken|.
815 814 :type apiuser: AuthUser
816 815 :param repoid: Sets the repository name or repository ID.
817 816 :type repoid: str or int
818 817 :param locked: Sets the lock state.
819 818 :type locked: Optional(``True`` | ``False``)
820 819 :param userid: Set the repository lock to this user.
821 820 :type userid: Optional(str or int)
822 821
823 822 Example error output:
824 823
825 824 .. code-block:: bash
826 825
827 826 id : <id_given_in_input>
828 827 result : {
829 828 'repo': '<reponame>',
830 829 'locked': <bool: lock state>,
831 830 'locked_since': <int: lock timestamp>,
832 831 'locked_by': <username of person who made the lock>,
833 832 'lock_reason': <str: reason for locking>,
834 833 'lock_state_changed': <bool: True if lock state has been changed in this request>,
835 834 'msg': 'Repo `<reponame>` locked by `<username>` on <timestamp>.'
836 835 or
837 836 'msg': 'Repo `<repository name>` not locked.'
838 837 or
839 838 'msg': 'User `<user name>` set lock state for repo `<repository name>` to `<new lock state>`'
840 839 }
841 840 error : null
842 841
843 842 Example error output:
844 843
845 844 .. code-block:: bash
846 845
847 846 id : <id_given_in_input>
848 847 result : null
849 848 error : {
850 849 'Error occurred locking repository `<reponame>`'
851 850 }
852 851
853 852
854 853 maintenance
855 854 -----------
856 855
857 856 .. py:function:: maintenance(apiuser, repoid)
858 857
859 858 Triggers a maintenance on the given repository.
860 859
861 860 This command can only be run using an |authtoken| with admin
862 861 rights to the specified repository. For more information,
863 862 see :ref:`config-token-ref`.
864 863
865 864 This command takes the following options:
866 865
867 866 :param apiuser: This is filled automatically from the |authtoken|.
868 867 :type apiuser: AuthUser
869 868 :param repoid: The repository name or repository ID.
870 869 :type repoid: str or int
871 870
872 871 Example output:
873 872
874 873 .. code-block:: bash
875 874
876 875 id : <id_given_in_input>
877 876 result : {
878 877 "msg": "executed maintenance command",
879 878 "executed_actions": [
880 879 <action_message>, <action_message2>...
881 880 ],
882 881 "repository": "<repository name>"
883 882 }
884 883 error : null
885 884
886 885 Example error output:
887 886
888 887 .. code-block:: bash
889 888
890 889 id : <id_given_in_input>
891 890 result : null
892 891 error : {
893 892 "Unable to execute maintenance on `<reponame>`"
894 893 }
895 894
896 895
897 896 pull
898 897 ----
899 898
900 899 .. py:function:: pull(apiuser, repoid, remote_uri=<Optional:None>)
901 900
902 901 Triggers a pull on the given repository from a remote location. You
903 902 can use this to keep remote repositories up-to-date.
904 903
905 904 This command can only be run using an |authtoken| with admin
906 905 rights to the specified repository. For more information,
907 906 see :ref:`config-token-ref`.
908 907
909 908 This command takes the following options:
910 909
911 910 :param apiuser: This is filled automatically from the |authtoken|.
912 911 :type apiuser: AuthUser
913 912 :param repoid: The repository name or repository ID.
914 913 :type repoid: str or int
915 914 :param remote_uri: Optional remote URI to pass in for pull
916 915 :type remote_uri: str
917 916
918 917 Example output:
919 918
920 919 .. code-block:: bash
921 920
922 921 id : <id_given_in_input>
923 922 result : {
924 923 "msg": "Pulled from url `<remote_url>` on repo `<repository name>`"
925 924 "repository": "<repository name>"
926 925 }
927 926 error : null
928 927
929 928 Example error output:
930 929
931 930 .. code-block:: bash
932 931
933 932 id : <id_given_in_input>
934 933 result : null
935 934 error : {
936 935 "Unable to push changes from `<remote_url>`"
937 936 }
938 937
939 938
940 939 remove_field_from_repo
941 940 ----------------------
942 941
943 942 .. py:function:: remove_field_from_repo(apiuser, repoid, key)
944 943
945 944 Removes an extra field from a repository.
946 945
947 946 This command can only be run using an |authtoken| with at least
948 947 write permissions to the |repo|.
949 948
950 949 :param apiuser: This is filled automatically from the |authtoken|.
951 950 :type apiuser: AuthUser
952 951 :param repoid: Set the repository name or repository ID.
953 952 :type repoid: str or int
954 953 :param key: Set the unique field key for this repository.
955 954 :type key: str
956 955
957 956
958 957 revoke_user_group_permission
959 958 ----------------------------
960 959
961 960 .. py:function:: revoke_user_group_permission(apiuser, repoid, usergroupid)
962 961
963 962 Revoke the permissions of a user group on a given repository.
964 963
965 964 This command can only be run using an |authtoken| with admin
966 965 permissions on the |repo|.
967 966
968 967 :param apiuser: This is filled automatically from the |authtoken|.
969 968 :type apiuser: AuthUser
970 969 :param repoid: Set the repository name or repository ID.
971 970 :type repoid: str or int
972 971 :param usergroupid: Specify the user group ID.
973 972 :type usergroupid: str or int
974 973
975 974 Example output:
976 975
977 976 .. code-block:: bash
978 977
979 978 id : <id_given_in_input>
980 979 result: {
981 980 "msg" : "Revoked perm for group: `<usersgroupname>` in repo: `<reponame>`",
982 981 "success": true
983 982 }
984 983 error: null
985 984
986 985
987 986 revoke_user_permission
988 987 ----------------------
989 988
990 989 .. py:function:: revoke_user_permission(apiuser, repoid, userid)
991 990
992 991 Revoke permission for a user on the specified repository.
993 992
994 993 This command can only be run using an |authtoken| with admin
995 994 permissions on the |repo|.
996 995
997 996 :param apiuser: This is filled automatically from the |authtoken|.
998 997 :type apiuser: AuthUser
999 998 :param repoid: Set the repository name or repository ID.
1000 999 :type repoid: str or int
1001 1000 :param userid: Set the user name of revoked user.
1002 1001 :type userid: str or int
1003 1002
1004 1003 Example error output:
1005 1004
1006 1005 .. code-block:: bash
1007 1006
1008 1007 id : <id_given_in_input>
1009 1008 result: {
1010 1009 "msg" : "Revoked perm for user: `<username>` in repo: `<reponame>`",
1011 1010 "success": true
1012 1011 }
1013 1012 error: null
1014 1013
1015 1014
1016 1015 set_repo_settings
1017 1016 -----------------
1018 1017
1019 1018 .. py:function:: set_repo_settings(apiuser, repoid, settings)
1020 1019
1021 1020 Update repository settings. Returns true on success.
1022 1021
1023 1022 :param apiuser: This is filled automatically from the |authtoken|.
1024 1023 :type apiuser: AuthUser
1025 1024 :param repoid: The repository name or repository id.
1026 1025 :type repoid: str or int
1027 1026 :param settings: The new settings for the repository.
1028 1027 :type: settings: dict
1029 1028
1030 1029 Example output:
1031 1030
1032 1031 .. code-block:: bash
1033 1032
1034 1033 {
1035 1034 "error": null,
1036 1035 "id": 237,
1037 1036 "result": true
1038 1037 }
1039 1038
1040 1039
1041 1040 strip
1042 1041 -----
1043 1042
1044 1043 .. py:function:: strip(apiuser, repoid, revision, branch)
1045 1044
1046 1045 Strips the given revision from the specified repository.
1047 1046
1048 1047 * This will remove the revision and all of its decendants.
1049 1048
1050 1049 This command can only be run using an |authtoken| with admin rights to
1051 1050 the specified repository.
1052 1051
1053 1052 This command takes the following options:
1054 1053
1055 1054 :param apiuser: This is filled automatically from the |authtoken|.
1056 1055 :type apiuser: AuthUser
1057 1056 :param repoid: The repository name or repository ID.
1058 1057 :type repoid: str or int
1059 1058 :param revision: The revision you wish to strip.
1060 1059 :type revision: str
1061 1060 :param branch: The branch from which to strip the revision.
1062 1061 :type branch: str
1063 1062
1064 1063 Example output:
1065 1064
1066 1065 .. code-block:: bash
1067 1066
1068 1067 id : <id_given_in_input>
1069 1068 result : {
1070 1069 "msg": "'Stripped commit <commit_hash> from repo `<repository name>`'"
1071 1070 "repository": "<repository name>"
1072 1071 }
1073 1072 error : null
1074 1073
1075 1074 Example error output:
1076 1075
1077 1076 .. code-block:: bash
1078 1077
1079 1078 id : <id_given_in_input>
1080 1079 result : null
1081 1080 error : {
1082 1081 "Unable to strip commit <commit_hash> from repo `<repository name>`"
1083 1082 }
1084 1083
1085 1084
1086 1085 update_repo
1087 1086 -----------
1088 1087
1089 1088 .. py:function:: update_repo(apiuser, repoid, repo_name=<Optional:None>, owner=<Optional:<OptionalAttr:apiuser>>, description=<Optional:''>, private=<Optional:False>, clone_uri=<Optional:None>, push_uri=<Optional:None>, landing_rev=<Optional:'rev:tip'>, fork_of=<Optional:None>, enable_statistics=<Optional:False>, enable_locking=<Optional:False>, enable_downloads=<Optional:False>, fields=<Optional:''>)
1090 1089
1091 1090 Updates a repository with the given information.
1092 1091
1093 1092 This command can only be run using an |authtoken| with at least
1094 1093 admin permissions to the |repo|.
1095 1094
1096 1095 * If the repository name contains "/", repository will be updated
1097 1096 accordingly with a repository group or nested repository groups
1098 1097
1099 1098 For example repoid=repo-test name="foo/bar/repo-test" will update |repo|
1100 1099 called "repo-test" and place it inside group "foo/bar".
1101 1100 You have to have permissions to access and write to the last repository
1102 1101 group ("bar" in this example)
1103 1102
1104 1103 :param apiuser: This is filled automatically from the |authtoken|.
1105 1104 :type apiuser: AuthUser
1106 1105 :param repoid: repository name or repository ID.
1107 1106 :type repoid: str or int
1108 1107 :param repo_name: Update the |repo| name, including the
1109 1108 repository group it's in.
1110 1109 :type repo_name: str
1111 1110 :param owner: Set the |repo| owner.
1112 1111 :type owner: str
1113 1112 :param fork_of: Set the |repo| as fork of another |repo|.
1114 1113 :type fork_of: str
1115 1114 :param description: Update the |repo| description.
1116 1115 :type description: str
1117 1116 :param private: Set the |repo| as private. (True | False)
1118 1117 :type private: bool
1119 1118 :param clone_uri: Update the |repo| clone URI.
1120 1119 :type clone_uri: str
1121 1120 :param landing_rev: Set the |repo| landing revision. Default is ``rev:tip``.
1122 1121 :type landing_rev: str
1123 1122 :param enable_statistics: Enable statistics on the |repo|, (True | False).
1124 1123 :type enable_statistics: bool
1125 1124 :param enable_locking: Enable |repo| locking.
1126 1125 :type enable_locking: bool
1127 1126 :param enable_downloads: Enable downloads from the |repo|, (True | False).
1128 1127 :type enable_downloads: bool
1129 1128 :param fields: Add extra fields to the |repo|. Use the following
1130 1129 example format: ``field_key=field_val,field_key2=fieldval2``.
1131 1130 Escape ', ' with \,
1132 1131 :type fields: str
1133 1132
1134 1133
@@ -1,87 +1,87 b''
1 1 |RCE|
2 2 =====
3 3
4 4 |RCE| is a high-performance source code management and collaboration system.
5 5 It enables you to develop projects securely behind the firewall while
6 6 providing collaboration tools that work with |git|, |hg|,
7 7 and |svn| |repos|. The user interface allows you to create, edit,
8 8 and commit files and |repos| while managing their security permissions.
9 9
10 10 |RCE| provides the following features:
11 11
12 12 * Source code management.
13 13 * Extended permissions management.
14 14 * Integrated code collaboration tools.
15 15 * Integrated code review and notifications.
16 16 * Scalability provided by multi-node setup.
17 17 * Fully programmable automation API.
18 18 * Web-based hook management.
19 19 * Native |svn| support.
20 20 * Migration from existing databases.
21 21 * |RCE| SDK.
22 22 * Built-in analytics
23 23 * Built in integrations including: Slack, Webhooks (used for Jenkins/TeamCity and other CIs), Jira, Redmine, Hipchat
24 24 * Pluggable authentication system.
25 25 * Support for AD, |LDAP|, Crowd, CAS, PAM.
26 26 * Support for external authentication via Oauth Google, Github, Bitbucket, Twitter.
27 27 * Debug modes of operation.
28 28 * Private and public gists.
29 29 * Gists with limited lifetimes and within instance only sharing.
30 30 * Fully integrated code search function.
31 31 * Always on SSL connectivity.
32 32
33 33 .. only:: html
34 34
35 35 Table of Contents
36 36 -----------------
37 37
38 38 .. toctree::
39 39 :maxdepth: 1
40 40 :caption: Admin Documentation
41 41
42 42 install/quick-start
43 43 install/install-database
44 44 install/install-steps
45 45 admin/system-overview
46 46 nix/default-env
47 47 admin/system-admin
48 48 admin/user-admin
49 admin/setting-repo-perms
49 admin/repo-admin
50 50 admin/security-tips
51 51 auth/auth
52 52 issue-trackers/issue-trackers
53 53 admin/lab-settings
54 54
55 55 .. toctree::
56 56 :maxdepth: 1
57 57 :caption: Feature Documentation
58 58
59 59 collaboration/collaboration
60 60 collaboration/review-notifications
61 61 collaboration/pull-requests
62 62 code-review/code-review
63 63 integrations/integrations
64 64
65 65 .. toctree::
66 66 :maxdepth: 1
67 67 :caption: User Documentation
68 68
69 69 usage/basic-usage
70 70 tutorials/tutorials
71 71
72 72 .. toctree::
73 73 :maxdepth: 1
74 74 :caption: Developer Documentation
75 75
76 76 api/api
77 77 tools/rhodecode-tools
78 78 extensions/extensions-hooks
79 79 contributing/contributing
80 80
81 81 .. toctree::
82 82 :maxdepth: 1
83 83 :caption: About
84 84
85 85 known-issues/known-issues
86 86 release-notes/release-notes
87 87 admin/glossary
@@ -1,174 +1,175 b''
1 1 {
2 2 "dirs": {
3 3 "css": {
4 4 "src": "rhodecode/public/css",
5 5 "dest": "rhodecode/public/css"
6 6 },
7 7 "js": {
8 8 "src": "rhodecode/public/js/src",
9 9 "src_rc": "rhodecode/public/js/rhodecode",
10 10 "dest": "rhodecode/public/js",
11 11 "node_modules": "node_modules"
12 12 }
13 13 },
14 14 "copy": {
15 15 "main": {
16 16 "files": [
17 17 {
18 18 "expand": true,
19 19 "cwd": "node_modules/@webcomponents",
20 20 "src": "webcomponentsjs/*.*",
21 21 "dest": "<%= dirs.js.dest %>/vendors"
22 22 },
23 23 {
24 24 "src": "<%= dirs.css.src %>/style-polymer.css",
25 25 "dest": "<%= dirs.js.dest %>/src/components/style-polymer.css"
26 26 }
27 27 ]
28 28 }
29 29 },
30 30 "concat": {
31 31 "dist": {
32 32 "src": [
33 33 "<%= dirs.js.node_modules %>/jquery/dist/jquery.min.js",
34 34 "<%= dirs.js.node_modules %>/mousetrap/mousetrap.min.js",
35 35 "<%= dirs.js.node_modules %>/moment/min/moment.min.js",
36 36 "<%= dirs.js.node_modules %>/clipboard/dist/clipboard.min.js",
37 37 "<%= dirs.js.node_modules %>/favico.js/favico-0.3.10.min.js",
38 "<%= dirs.js.node_modules %>/dropzone/dist/dropzone.js",
38 39 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/sticky-sidebar.min.js",
39 40 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/jquery.sticky-sidebar.min.js",
40 41 "<%= dirs.js.node_modules %>/waypoints/lib/noframework.waypoints.min.js",
41 42 "<%= dirs.js.node_modules %>/waypoints/lib/jquery.waypoints.min.js",
42 43 "<%= dirs.js.node_modules %>/appenlight-client/appenlight-client.min.js",
43 44 "<%= dirs.js.src %>/logging.js",
44 45 "<%= dirs.js.src %>/bootstrap.js",
45 46 "<%= dirs.js.src %>/i18n_utils.js",
46 47 "<%= dirs.js.src %>/deform.js",
47 48 "<%= dirs.js.src %>/ejs.js",
48 49 "<%= dirs.js.src %>/ejs_templates/utils.js",
49 50 "<%= dirs.js.src %>/plugins/jquery.pjax.js",
50 51 "<%= dirs.js.src %>/plugins/jquery.dataTables.js",
51 52 "<%= dirs.js.src %>/plugins/flavoured_checkbox.js",
52 53 "<%= dirs.js.src %>/plugins/jquery.auto-grow-input.js",
53 54 "<%= dirs.js.src %>/plugins/jquery.autocomplete.js",
54 55 "<%= dirs.js.src %>/plugins/jquery.debounce.js",
55 56 "<%= dirs.js.node_modules %>/mark.js/dist/jquery.mark.min.js",
56 57 "<%= dirs.js.src %>/plugins/jquery.timeago.js",
57 58 "<%= dirs.js.src %>/plugins/jquery.timeago-extension.js",
58 59 "<%= dirs.js.src %>/select2/select2.js",
59 60 "<%= dirs.js.src %>/codemirror/codemirror.js",
60 61 "<%= dirs.js.src %>/codemirror/codemirror_loadmode.js",
61 62 "<%= dirs.js.src %>/codemirror/codemirror_hint.js",
62 63 "<%= dirs.js.src %>/codemirror/codemirror_overlay.js",
63 64 "<%= dirs.js.src %>/codemirror/codemirror_placeholder.js",
64 65 "<%= dirs.js.src %>/codemirror/codemirror_simplemode.js",
65 66 "<%= dirs.js.dest %>/mode/meta.js",
66 67 "<%= dirs.js.dest %>/mode/meta_ext.js",
67 68 "<%= dirs.js.src_rc %>/i18n/select2/translations.js",
68 69 "<%= dirs.js.src %>/rhodecode/utils/array.js",
69 70 "<%= dirs.js.src %>/rhodecode/utils/string.js",
70 71 "<%= dirs.js.src %>/rhodecode/utils/pyroutes.js",
71 72 "<%= dirs.js.src %>/rhodecode/utils/ajax.js",
72 73 "<%= dirs.js.src %>/rhodecode/utils/autocomplete.js",
73 74 "<%= dirs.js.src %>/rhodecode/utils/colorgenerator.js",
74 75 "<%= dirs.js.src %>/rhodecode/utils/ie.js",
75 76 "<%= dirs.js.src %>/rhodecode/utils/os.js",
76 77 "<%= dirs.js.src %>/rhodecode/utils/topics.js",
77 78 "<%= dirs.js.src %>/rhodecode/init.js",
78 79 "<%= dirs.js.src %>/rhodecode/changelog.js",
79 80 "<%= dirs.js.src %>/rhodecode/codemirror.js",
80 81 "<%= dirs.js.src %>/rhodecode/comments.js",
81 82 "<%= dirs.js.src %>/rhodecode/constants.js",
82 83 "<%= dirs.js.src %>/rhodecode/files.js",
83 84 "<%= dirs.js.src %>/rhodecode/followers.js",
84 85 "<%= dirs.js.src %>/rhodecode/menus.js",
85 86 "<%= dirs.js.src %>/rhodecode/notifications.js",
86 87 "<%= dirs.js.src %>/rhodecode/permissions.js",
87 88 "<%= dirs.js.src %>/rhodecode/pjax.js",
88 89 "<%= dirs.js.src %>/rhodecode/pullrequests.js",
89 90 "<%= dirs.js.src %>/rhodecode/settings.js",
90 91 "<%= dirs.js.src %>/rhodecode/select2_widgets.js",
91 92 "<%= dirs.js.src %>/rhodecode/tooltips.js",
92 93 "<%= dirs.js.src %>/rhodecode/users.js",
93 94 "<%= dirs.js.src %>/rhodecode/appenlight.js",
94 95 "<%= dirs.js.src %>/rhodecode.js",
95 96 "<%= dirs.js.dest %>/rhodecode-components.js"
96 97 ],
97 98 "dest": "<%= dirs.js.dest %>/scripts.js",
98 99 "nonull": true
99 100 }
100 101 },
101 102 "less": {
102 103 "development": {
103 104 "options": {
104 105 "compress": false,
105 106 "yuicompress": false,
106 107 "optimization": 0
107 108 },
108 109 "files": {
109 110 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
110 111 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
111 112 }
112 113 },
113 114 "production": {
114 115 "options": {
115 116 "compress": true,
116 117 "yuicompress": true,
117 118 "optimization": 2
118 119 },
119 120 "files": {
120 121 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
121 122 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
122 123 }
123 124 },
124 125 "components": {
125 126 "files": [
126 127 {
127 128 "cwd": "<%= dirs.js.src %>/components/",
128 129 "dest": "<%= dirs.js.src %>/components/",
129 130 "src": [
130 131 "**/*.less"
131 132 ],
132 133 "expand": true,
133 134 "ext": ".css"
134 135 }
135 136 ]
136 137 }
137 138 },
138 139 "watch": {
139 140 "less": {
140 141 "files": [
141 142 "<%= dirs.css.src %>/**/*.less",
142 143 "<%= dirs.js.src %>/components/**/*.less"
143 144 ],
144 145 "tasks": [
145 146 "less:development",
146 147 "less:components",
147 148 "concat:polymercss",
148 149 "webpack",
149 150 "concat:dist"
150 151 ]
151 152 },
152 153 "js": {
153 154 "files": [
154 155 "!<%= dirs.js.src %>/components/root-styles.gen.html",
155 156 "<%= dirs.js.src %>/**/*.js",
156 157 "<%= dirs.js.src %>/components/**/*.html"
157 158 ],
158 159 "tasks": [
159 160 "less:components",
160 161 "concat:polymercss",
161 162 "webpack",
162 163 "concat:dist"
163 164 ]
164 165 }
165 166 },
166 167 "jshint": {
167 168 "rhodecode": {
168 169 "src": "<%= dirs.js.src %>/rhodecode/**/*.js",
169 170 "options": {
170 171 "jshintrc": ".jshintrc"
171 172 }
172 173 }
173 174 }
174 175 }
@@ -1,59 +1,60 b''
1 1 {
2 2 "name": "rhodecode-enterprise",
3 3 "version": "2.0.0",
4 4 "private": true,
5 5 "description" : "RhodeCode JS packaged",
6 6 "license": "SEE LICENSE IN LICENSE.txt",
7 7 "repository" : {
8 8 "type" : "hg",
9 9 "url" : "https://code.rhodecode.com/rhodecode-enterprise-ce"
10 10 },
11 11 "devDependencies": {
12 12 "appenlight-client": "git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1",
13 13 "clipboard": "^2.0.1",
14 14 "exports-loader": "^0.6.4",
15 15 "favico.js": "^0.3.10",
16 "dropzone": "^5.5.0",
16 17 "grunt": "^0.4.5",
17 18 "grunt-cli": "^1.3.1",
18 19 "grunt-contrib-concat": "^0.5.1",
19 20 "grunt-contrib-copy": "^1.0.0",
20 21 "grunt-contrib-jshint": "^0.12.0",
21 22 "grunt-contrib-less": "^1.1.0",
22 23 "grunt-contrib-watch": "^0.6.1",
23 24 "grunt-webpack": "^3.1.3",
24 25 "jquery": "1.11.3",
25 26 "mark.js": "8.11.1",
26 27 "jshint": "^2.9.1-rc3",
27 28 "moment": "^2.18.1",
28 29 "mousetrap": "^1.6.1",
29 30 "qrious": "^4.0.2",
30 31 "sticky-sidebar": "3.3.1",
31 32 "waypoints": "4.0.1",
32 33 "webpack": "4.23.1",
33 34 "webpack-cli": "3.1.2",
34 35 "babel-core": "^6.26.3",
35 36 "babel-loader": "^7.1.2",
36 37 "babel-plugin-transform-object-rest-spread": "^6.26.0",
37 38 "babel-preset-env": "^1.6.0",
38 39 "copy-webpack-plugin": "^4.4.2",
39 40 "css-loader": "^0.28.11",
40 41 "html-loader": "^0.4.4",
41 42 "html-webpack-plugin": "^3.2.0",
42 43 "imports-loader": "^0.7.1",
43 44 "polymer-webpack-loader": "^2.0.1",
44 45 "style-loader": "^0.21.0",
45 46 "webpack-uglify-js-plugin": "^1.1.9",
46 47 "raw-loader": "1.0.0-beta.0",
47 48 "ts-loader": "^1.3.3",
48 49 "@webcomponents/webcomponentsjs": "^2.0.0",
49 50 "@polymer/polymer": "^3.0.0",
50 51 "@polymer/paper-button": "^3.0.0",
51 52 "@polymer/paper-spinner": "^3.0.0",
52 53 "@polymer/paper-tooltip": "^3.0.0",
53 54 "@polymer/paper-toast": "^3.0.0",
54 55 "@polymer/paper-toggle-button": "^3.0.0",
55 56 "@polymer/iron-ajax": "^3.0.0",
56 57 "@polymer/iron-autogrow-textarea": "^3.0.0",
57 58 "@polymer/iron-a11y-keys": "^3.0.0"
58 59 }
59 60 }
This diff has been collapsed as it changes many lines, (617 lines changed) Show them Hide them
@@ -1,8915 +1,8934 b''
1 1 # This file has been generated by node2nix 1.6.0. Do not edit!
2 2
3 3 {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
4 4
5 5 let
6 6 sources = {
7 7 "@polymer/font-roboto-3.0.2" = {
8 8 name = "_at_polymer_slash_font-roboto";
9 9 packageName = "@polymer/font-roboto";
10 10 version = "3.0.2";
11 11 src = fetchurl {
12 12 url = "https://registry.npmjs.org/@polymer/font-roboto/-/font-roboto-3.0.2.tgz";
13 13 sha512 = "tx5TauYSmzsIvmSqepUPDYbs4/Ejz2XbZ1IkD7JEGqkdNUJlh+9KU85G56Tfdk/xjEZ8zorFfN09OSwiMrIQWA==";
14 14 };
15 15 };
16 16 "@polymer/iron-a11y-announcer-3.0.2" = {
17 17 name = "_at_polymer_slash_iron-a11y-announcer";
18 18 packageName = "@polymer/iron-a11y-announcer";
19 19 version = "3.0.2";
20 20 src = fetchurl {
21 21 url = "https://registry.npmjs.org/@polymer/iron-a11y-announcer/-/iron-a11y-announcer-3.0.2.tgz";
22 22 sha512 = "LqnMF39mXyxSSRbTHRzGbcJS8nU0NVTo2raBOgOlpxw5yfGJUVcwaTJ/qy5NtWCZLRfa4suycf0oAkuUjHTXHQ==";
23 23 };
24 24 };
25 25 "@polymer/iron-a11y-keys-3.0.1" = {
26 26 name = "_at_polymer_slash_iron-a11y-keys";
27 27 packageName = "@polymer/iron-a11y-keys";
28 28 version = "3.0.1";
29 29 src = fetchurl {
30 30 url = "https://registry.npmjs.org/@polymer/iron-a11y-keys/-/iron-a11y-keys-3.0.1.tgz";
31 31 sha512 = "zmTi8xHeY4ZMJLAitW2hAmW5zXZ35hVy/eHQUFadAlOccuBK3oRRmoPRQRaZgpyJrCVFDAQRXXzzJtUDil/0CA==";
32 32 };
33 33 };
34 34 "@polymer/iron-a11y-keys-behavior-3.0.1" = {
35 35 name = "_at_polymer_slash_iron-a11y-keys-behavior";
36 36 packageName = "@polymer/iron-a11y-keys-behavior";
37 37 version = "3.0.1";
38 38 src = fetchurl {
39 39 url = "https://registry.npmjs.org/@polymer/iron-a11y-keys-behavior/-/iron-a11y-keys-behavior-3.0.1.tgz";
40 40 sha512 = "lnrjKq3ysbBPT/74l0Fj0U9H9C35Tpw2C/tpJ8a+5g8Y3YJs1WSZYnEl1yOkw6sEyaxOq/1DkzH0+60gGu5/PQ==";
41 41 };
42 42 };
43 43 "@polymer/iron-ajax-3.0.1" = {
44 44 name = "_at_polymer_slash_iron-ajax";
45 45 packageName = "@polymer/iron-ajax";
46 46 version = "3.0.1";
47 47 src = fetchurl {
48 48 url = "https://registry.npmjs.org/@polymer/iron-ajax/-/iron-ajax-3.0.1.tgz";
49 49 sha512 = "7+TPEAfWsRdhj1Y8UeF1759ktpVu+c3sG16rJiUC3wF9+woQ9xI1zUm2d59i7Yc3aDEJrR/Q8Y262KlOvyGVNg==";
50 50 };
51 51 };
52 52 "@polymer/iron-autogrow-textarea-3.0.1" = {
53 53 name = "_at_polymer_slash_iron-autogrow-textarea";
54 54 packageName = "@polymer/iron-autogrow-textarea";
55 55 version = "3.0.1";
56 56 src = fetchurl {
57 57 url = "https://registry.npmjs.org/@polymer/iron-autogrow-textarea/-/iron-autogrow-textarea-3.0.1.tgz";
58 58 sha512 = "FgSL7APrOSL9Vu812sBCFlQ17hvnJsBAV2C2e1UAiaHhB+dyfLq8gGdGUpqVWuGJ50q4Y/49QwCNnLf85AdVYA==";
59 59 };
60 60 };
61 61 "@polymer/iron-behaviors-3.0.1" = {
62 62 name = "_at_polymer_slash_iron-behaviors";
63 63 packageName = "@polymer/iron-behaviors";
64 64 version = "3.0.1";
65 65 src = fetchurl {
66 66 url = "https://registry.npmjs.org/@polymer/iron-behaviors/-/iron-behaviors-3.0.1.tgz";
67 67 sha512 = "IMEwcv1lhf1HSQxuyWOUIL0lOBwmeaoSTpgCJeP9IBYnuB1SPQngmfRuHKgK6/m9LQ9F9miC7p3HeQQUdKAE0w==";
68 68 };
69 69 };
70 70 "@polymer/iron-checked-element-behavior-3.0.1" = {
71 71 name = "_at_polymer_slash_iron-checked-element-behavior";
72 72 packageName = "@polymer/iron-checked-element-behavior";
73 73 version = "3.0.1";
74 74 src = fetchurl {
75 75 url = "https://registry.npmjs.org/@polymer/iron-checked-element-behavior/-/iron-checked-element-behavior-3.0.1.tgz";
76 76 sha512 = "aDr0cbCNVq49q+pOqa6CZutFh+wWpwPMLpEth9swx+GkAj+gCURhuQkaUYhIo5f2egDbEioR1aeHMnPlU9dQZA==";
77 77 };
78 78 };
79 79 "@polymer/iron-fit-behavior-3.0.1" = {
80 80 name = "_at_polymer_slash_iron-fit-behavior";
81 81 packageName = "@polymer/iron-fit-behavior";
82 82 version = "3.0.1";
83 83 src = fetchurl {
84 84 url = "https://registry.npmjs.org/@polymer/iron-fit-behavior/-/iron-fit-behavior-3.0.1.tgz";
85 85 sha512 = "/M0B1L30k31vmwNBaGuZcxzUAhJSHoGccb/DF0CDKI/hT8UlkTvcyemaWdOpmHHLgY52ceKIkRwA3AeXrKyvaQ==";
86 86 };
87 87 };
88 88 "@polymer/iron-flex-layout-3.0.1" = {
89 89 name = "_at_polymer_slash_iron-flex-layout";
90 90 packageName = "@polymer/iron-flex-layout";
91 91 version = "3.0.1";
92 92 src = fetchurl {
93 93 url = "https://registry.npmjs.org/@polymer/iron-flex-layout/-/iron-flex-layout-3.0.1.tgz";
94 94 sha512 = "7gB869czArF+HZcPTVSgvA7tXYFze9EKckvM95NB7SqYF+NnsQyhoXgKnpFwGyo95lUjUW9TFDLUwDXnCYFtkw==";
95 95 };
96 96 };
97 97 "@polymer/iron-form-element-behavior-3.0.1" = {
98 98 name = "_at_polymer_slash_iron-form-element-behavior";
99 99 packageName = "@polymer/iron-form-element-behavior";
100 100 version = "3.0.1";
101 101 src = fetchurl {
102 102 url = "https://registry.npmjs.org/@polymer/iron-form-element-behavior/-/iron-form-element-behavior-3.0.1.tgz";
103 103 sha512 = "G/e2KXyL5AY7mMjmomHkGpgS0uAf4ovNpKhkuUTRnMuMJuf589bKqE85KN4ovE1Tzhv2hJoh/igyD6ekHiYU1A==";
104 104 };
105 105 };
106 106 "@polymer/iron-meta-3.0.1" = {
107 107 name = "_at_polymer_slash_iron-meta";
108 108 packageName = "@polymer/iron-meta";
109 109 version = "3.0.1";
110 110 src = fetchurl {
111 111 url = "https://registry.npmjs.org/@polymer/iron-meta/-/iron-meta-3.0.1.tgz";
112 112 sha512 = "pWguPugiLYmWFV9UWxLWzZ6gm4wBwQdDy4VULKwdHCqR7OP7u98h+XDdGZsSlDPv6qoryV/e3tGHlTIT0mbzJA==";
113 113 };
114 114 };
115 115 "@polymer/iron-overlay-behavior-3.0.2" = {
116 116 name = "_at_polymer_slash_iron-overlay-behavior";
117 117 packageName = "@polymer/iron-overlay-behavior";
118 118 version = "3.0.2";
119 119 src = fetchurl {
120 120 url = "https://registry.npmjs.org/@polymer/iron-overlay-behavior/-/iron-overlay-behavior-3.0.2.tgz";
121 121 sha512 = "j1qmt6mJHCwpe1mKOvqK5kcCUPQr5LSrlqpgRDbUuLgUfNJ/vGTipjrkBlfbEUagm5FEQdc1VLPLSQP6WVuP9g==";
122 122 };
123 123 };
124 124 "@polymer/iron-resizable-behavior-3.0.1" = {
125 125 name = "_at_polymer_slash_iron-resizable-behavior";
126 126 packageName = "@polymer/iron-resizable-behavior";
127 127 version = "3.0.1";
128 128 src = fetchurl {
129 129 url = "https://registry.npmjs.org/@polymer/iron-resizable-behavior/-/iron-resizable-behavior-3.0.1.tgz";
130 130 sha512 = "FyHxRxFspVoRaeZSWpT3y0C9awomb4tXXolIJcZ7RvXhMP632V5lez+ch5G5SwK0LpnAPkg35eB0LPMFv+YMMQ==";
131 131 };
132 132 };
133 133 "@polymer/iron-validatable-behavior-3.0.1" = {
134 134 name = "_at_polymer_slash_iron-validatable-behavior";
135 135 packageName = "@polymer/iron-validatable-behavior";
136 136 version = "3.0.1";
137 137 src = fetchurl {
138 138 url = "https://registry.npmjs.org/@polymer/iron-validatable-behavior/-/iron-validatable-behavior-3.0.1.tgz";
139 139 sha512 = "wwpYh6wOa4fNI+jH5EYKC7TVPYQ2OfgQqocWat7GsNWcsblKYhLYbwsvEY5nO0n2xKqNfZzDLrUom5INJN7msQ==";
140 140 };
141 141 };
142 142 "@polymer/paper-behaviors-3.0.1" = {
143 143 name = "_at_polymer_slash_paper-behaviors";
144 144 packageName = "@polymer/paper-behaviors";
145 145 version = "3.0.1";
146 146 src = fetchurl {
147 147 url = "https://registry.npmjs.org/@polymer/paper-behaviors/-/paper-behaviors-3.0.1.tgz";
148 148 sha512 = "6knhj69fPJejv8qR0kCSUY+Q0XjaUf0OSnkjRjmTJPAwSrRYtgqE+l6P1FfA+py1X/cUjgne9EF5rMZAKJIg1g==";
149 149 };
150 150 };
151 151 "@polymer/paper-button-3.0.1" = {
152 152 name = "_at_polymer_slash_paper-button";
153 153 packageName = "@polymer/paper-button";
154 154 version = "3.0.1";
155 155 src = fetchurl {
156 156 url = "https://registry.npmjs.org/@polymer/paper-button/-/paper-button-3.0.1.tgz";
157 157 sha512 = "JRNBc+Oj9EWnmyLr7FcCr8T1KAnEHPh6mosln9BUdkM+qYaYsudSICh3cjTIbnj6AuF5OJidoLkM1dlyj0j6Zg==";
158 158 };
159 159 };
160 160 "@polymer/paper-ripple-3.0.1" = {
161 161 name = "_at_polymer_slash_paper-ripple";
162 162 packageName = "@polymer/paper-ripple";
163 163 version = "3.0.1";
164 164 src = fetchurl {
165 165 url = "https://registry.npmjs.org/@polymer/paper-ripple/-/paper-ripple-3.0.1.tgz";
166 166 sha512 = "dgOe12GyCF1VZBLUQqnzGWlf3xb255FajNCVB1VFj/AtskYtoamnafa7m3a+1vs+C8qbg4Benn5KwgxVDSW4cg==";
167 167 };
168 168 };
169 169 "@polymer/paper-spinner-3.0.2" = {
170 170 name = "_at_polymer_slash_paper-spinner";
171 171 packageName = "@polymer/paper-spinner";
172 172 version = "3.0.2";
173 173 src = fetchurl {
174 174 url = "https://registry.npmjs.org/@polymer/paper-spinner/-/paper-spinner-3.0.2.tgz";
175 175 sha512 = "XUzu8/4NH+pnNZUTI2MxtOKFAr0EOsW7eGhTg3VBhTh7DDW/q3ewzwYRWnqNJokX9BEnxKMiXXaIeTEBq4k2dw==";
176 176 };
177 177 };
178 178 "@polymer/paper-styles-3.0.1" = {
179 179 name = "_at_polymer_slash_paper-styles";
180 180 packageName = "@polymer/paper-styles";
181 181 version = "3.0.1";
182 182 src = fetchurl {
183 183 url = "https://registry.npmjs.org/@polymer/paper-styles/-/paper-styles-3.0.1.tgz";
184 184 sha512 = "y6hmObLqlCx602TQiSBKHqjwkE7xmDiFkoxdYGaNjtv4xcysOTdVJsDR/R9UHwIaxJ7gHlthMSykir1nv78++g==";
185 185 };
186 186 };
187 187 "@polymer/paper-toast-3.0.1" = {
188 188 name = "_at_polymer_slash_paper-toast";
189 189 packageName = "@polymer/paper-toast";
190 190 version = "3.0.1";
191 191 src = fetchurl {
192 192 url = "https://registry.npmjs.org/@polymer/paper-toast/-/paper-toast-3.0.1.tgz";
193 193 sha512 = "pizuogzObniDdICUc6dSLrnDt2VzzoRne1gCmbD6sfOATVv5tc8UfrqhA2iHngbNBEbniBiciS3iogdp5KTVUQ==";
194 194 };
195 195 };
196 196 "@polymer/paper-toggle-button-3.0.1" = {
197 197 name = "_at_polymer_slash_paper-toggle-button";
198 198 packageName = "@polymer/paper-toggle-button";
199 199 version = "3.0.1";
200 200 src = fetchurl {
201 201 url = "https://registry.npmjs.org/@polymer/paper-toggle-button/-/paper-toggle-button-3.0.1.tgz";
202 202 sha512 = "jadZB60fycT7YnSAH0H23LYo6/2HYmMZTtNr9LpdSIRFPLX6mqqxewex92cFz019bMKaRJgORn308hRlJo2u6A==";
203 203 };
204 204 };
205 205 "@polymer/paper-tooltip-3.0.1" = {
206 206 name = "_at_polymer_slash_paper-tooltip";
207 207 packageName = "@polymer/paper-tooltip";
208 208 version = "3.0.1";
209 209 src = fetchurl {
210 210 url = "https://registry.npmjs.org/@polymer/paper-tooltip/-/paper-tooltip-3.0.1.tgz";
211 211 sha512 = "yiUk09opTEnE1lK+tb501ENb+yQBi4p++Ep0eGJAHesVYKVMPNgPphVKkIizkDaU+n0SE+zXfTsRbYyOMDYXSg==";
212 212 };
213 213 };
214 "@polymer/polymer-3.1.0" = {
214 "@polymer/polymer-3.2.0" = {
215 215 name = "_at_polymer_slash_polymer";
216 216 packageName = "@polymer/polymer";
217 version = "3.1.0";
218 src = fetchurl {
219 url = "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.1.0.tgz";
220 sha512 = "hwN8IMERsFATz/9dSMxYHL+84J9uBkPuuarxJWlTsppZ4CAYTZKnepBfNrKoyNsafBmA3yXBiiKPPf+fJtza7A==";
217 version = "3.2.0";
218 src = fetchurl {
219 url = "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.2.0.tgz";
220 sha512 = "L6uV1oM6T6xbwbVx6t3biG5T2VSSB03LxnIrUd9M2pr6RkHVPFHJ37pC5MUwBAEhkGFJif7eks7fdMMSGZTeEQ==";
221 221 };
222 222 };
223 223 "@types/clone-0.1.30" = {
224 224 name = "_at_types_slash_clone";
225 225 packageName = "@types/clone";
226 226 version = "0.1.30";
227 227 src = fetchurl {
228 228 url = "https://registry.npmjs.org/@types/clone/-/clone-0.1.30.tgz";
229 229 sha1 = "e7365648c1b42136a59c7d5040637b3b5c83b614";
230 230 };
231 231 };
232 "@types/node-6.14.3" = {
232 "@types/node-6.14.6" = {
233 233 name = "_at_types_slash_node";
234 234 packageName = "@types/node";
235 version = "6.14.3";
236 src = fetchurl {
237 url = "https://registry.npmjs.org/@types/node/-/node-6.14.3.tgz";
238 sha512 = "V2VrQBCKo4U0rni6tW4AASRDqIO5ZTLDN/Xzrm4mNBr9SGQYZ+7zZJn+hMs89Q8ZCIHzp4aWQPyCpK+rux1YGA==";
235 version = "6.14.6";
236 src = fetchurl {
237 url = "https://registry.npmjs.org/@types/node/-/node-6.14.6.tgz";
238 sha512 = "rFs9zCFtSHuseiNXxYxFlun8ibu+jtZPgRM+2ILCmeLiGeGLiIGxuOzD+cNyHegI1GD+da3R/cIbs9+xCLp13w==";
239 239 };
240 240 };
241 241 "@types/parse5-2.2.34" = {
242 242 name = "_at_types_slash_parse5";
243 243 packageName = "@types/parse5";
244 244 version = "2.2.34";
245 245 src = fetchurl {
246 246 url = "https://registry.npmjs.org/@types/parse5/-/parse5-2.2.34.tgz";
247 247 sha1 = "e3870a10e82735a720f62d71dcd183ba78ef3a9d";
248 248 };
249 249 };
250 250 "@webassemblyjs/ast-1.7.10" = {
251 251 name = "_at_webassemblyjs_slash_ast";
252 252 packageName = "@webassemblyjs/ast";
253 253 version = "1.7.10";
254 254 src = fetchurl {
255 255 url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.10.tgz";
256 256 sha512 = "wTUeaByYN2EA6qVqhbgavtGc7fLTOx0glG2IBsFlrFG51uXIGlYBTyIZMf4SPLo3v1bgV/7lBN3l7Z0R6Hswew==";
257 257 };
258 258 };
259 259 "@webassemblyjs/floating-point-hex-parser-1.7.10" = {
260 260 name = "_at_webassemblyjs_slash_floating-point-hex-parser";
261 261 packageName = "@webassemblyjs/floating-point-hex-parser";
262 262 version = "1.7.10";
263 263 src = fetchurl {
264 264 url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.10.tgz";
265 265 sha512 = "gMsGbI6I3p/P1xL2UxqhNh1ga2HCsx5VBB2i5VvJFAaqAjd2PBTRULc3BpTydabUQEGlaZCzEUQhLoLG7TvEYQ==";
266 266 };
267 267 };
268 268 "@webassemblyjs/helper-api-error-1.7.10" = {
269 269 name = "_at_webassemblyjs_slash_helper-api-error";
270 270 packageName = "@webassemblyjs/helper-api-error";
271 271 version = "1.7.10";
272 272 src = fetchurl {
273 273 url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.10.tgz";
274 274 sha512 = "DoYRlPWtuw3yd5BOr9XhtrmB6X1enYF0/54yNvQWGXZEPDF5PJVNI7zQ7gkcKfTESzp8bIBWailaFXEK/jjCsw==";
275 275 };
276 276 };
277 277 "@webassemblyjs/helper-buffer-1.7.10" = {
278 278 name = "_at_webassemblyjs_slash_helper-buffer";
279 279 packageName = "@webassemblyjs/helper-buffer";
280 280 version = "1.7.10";
281 281 src = fetchurl {
282 282 url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.10.tgz";
283 283 sha512 = "+RMU3dt/dPh4EpVX4u5jxsOlw22tp3zjqE0m3ftU2tsYxnPULb4cyHlgaNd2KoWuwasCQqn8Mhr+TTdbtj3LlA==";
284 284 };
285 285 };
286 286 "@webassemblyjs/helper-code-frame-1.7.10" = {
287 287 name = "_at_webassemblyjs_slash_helper-code-frame";
288 288 packageName = "@webassemblyjs/helper-code-frame";
289 289 version = "1.7.10";
290 290 src = fetchurl {
291 291 url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.10.tgz";
292 292 sha512 = "UiytbpKAULOEab2hUZK2ywXen4gWJVrgxtwY3Kn+eZaaSWaRM8z/7dAXRSoamhKFiBh1uaqxzE/XD9BLlug3gw==";
293 293 };
294 294 };
295 295 "@webassemblyjs/helper-fsm-1.7.10" = {
296 296 name = "_at_webassemblyjs_slash_helper-fsm";
297 297 packageName = "@webassemblyjs/helper-fsm";
298 298 version = "1.7.10";
299 299 src = fetchurl {
300 300 url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.10.tgz";
301 301 sha512 = "w2vDtUK9xeSRtt5+RnnlRCI7wHEvLjF0XdnxJpgx+LJOvklTZPqWkuy/NhwHSLP19sm9H8dWxKeReMR7sCkGZA==";
302 302 };
303 303 };
304 304 "@webassemblyjs/helper-module-context-1.7.10" = {
305 305 name = "_at_webassemblyjs_slash_helper-module-context";
306 306 packageName = "@webassemblyjs/helper-module-context";
307 307 version = "1.7.10";
308 308 src = fetchurl {
309 309 url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.10.tgz";
310 310 sha512 = "yE5x/LzZ3XdPdREmJijxzfrf+BDRewvO0zl8kvORgSWmxpRrkqY39KZSq6TSgIWBxkK4SrzlS3BsMCv2s1FpsQ==";
311 311 };
312 312 };
313 313 "@webassemblyjs/helper-wasm-bytecode-1.7.10" = {
314 314 name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
315 315 packageName = "@webassemblyjs/helper-wasm-bytecode";
316 316 version = "1.7.10";
317 317 src = fetchurl {
318 318 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.10.tgz";
319 319 sha512 = "u5qy4SJ/OrxKxZqJ9N3qH4ZQgHaAzsopsYwLvoWJY6Q33r8PhT3VPyNMaJ7ZFoqzBnZlCcS/0f4Sp8WBxylXfg==";
320 320 };
321 321 };
322 322 "@webassemblyjs/helper-wasm-section-1.7.10" = {
323 323 name = "_at_webassemblyjs_slash_helper-wasm-section";
324 324 packageName = "@webassemblyjs/helper-wasm-section";
325 325 version = "1.7.10";
326 326 src = fetchurl {
327 327 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.10.tgz";
328 328 sha512 = "Ecvww6sCkcjatcyctUrn22neSJHLN/TTzolMGG/N7S9rpbsTZ8c6Bl98GpSpV77EvzNijiNRHBG0+JO99qKz6g==";
329 329 };
330 330 };
331 331 "@webassemblyjs/ieee754-1.7.10" = {
332 332 name = "_at_webassemblyjs_slash_ieee754";
333 333 packageName = "@webassemblyjs/ieee754";
334 334 version = "1.7.10";
335 335 src = fetchurl {
336 336 url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.10.tgz";
337 337 sha512 = "HRcWcY+YWt4+s/CvQn+vnSPfRaD4KkuzQFt5MNaELXXHSjelHlSEA8ZcqT69q0GTIuLWZ6JaoKar4yWHVpZHsQ==";
338 338 };
339 339 };
340 340 "@webassemblyjs/leb128-1.7.10" = {
341 341 name = "_at_webassemblyjs_slash_leb128";
342 342 packageName = "@webassemblyjs/leb128";
343 343 version = "1.7.10";
344 344 src = fetchurl {
345 345 url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.10.tgz";
346 346 sha512 = "og8MciYlA8hvzCLR71hCuZKPbVBfLQeHv7ImKZ4nlyxrYbG7uJHYtHiHu6OV9SqrGuD03H/HtXC4Bgdjfm9FHw==";
347 347 };
348 348 };
349 349 "@webassemblyjs/utf8-1.7.10" = {
350 350 name = "_at_webassemblyjs_slash_utf8";
351 351 packageName = "@webassemblyjs/utf8";
352 352 version = "1.7.10";
353 353 src = fetchurl {
354 354 url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.10.tgz";
355 355 sha512 = "Ng6Pxv6siyZp635xCSnH3mKmIFgqWPCcGdoo0GBYgyGdxu7cUj4agV7Uu1a8REP66UYUFXJLudeGgd4RvuJAnQ==";
356 356 };
357 357 };
358 358 "@webassemblyjs/wasm-edit-1.7.10" = {
359 359 name = "_at_webassemblyjs_slash_wasm-edit";
360 360 packageName = "@webassemblyjs/wasm-edit";
361 361 version = "1.7.10";
362 362 src = fetchurl {
363 363 url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.10.tgz";
364 364 sha512 = "e9RZFQlb+ZuYcKRcW9yl+mqX/Ycj9+3/+ppDI8nEE/NCY6FoK8f3dKBcfubYV/HZn44b+ND4hjh+4BYBt+sDnA==";
365 365 };
366 366 };
367 367 "@webassemblyjs/wasm-gen-1.7.10" = {
368 368 name = "_at_webassemblyjs_slash_wasm-gen";
369 369 packageName = "@webassemblyjs/wasm-gen";
370 370 version = "1.7.10";
371 371 src = fetchurl {
372 372 url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.10.tgz";
373 373 sha512 = "M0lb6cO2Y0PzDye/L39PqwV+jvO+2YxEG5ax+7dgq7EwXdAlpOMx1jxyXJTScQoeTpzOPIb+fLgX/IkLF8h2yw==";
374 374 };
375 375 };
376 376 "@webassemblyjs/wasm-opt-1.7.10" = {
377 377 name = "_at_webassemblyjs_slash_wasm-opt";
378 378 packageName = "@webassemblyjs/wasm-opt";
379 379 version = "1.7.10";
380 380 src = fetchurl {
381 381 url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.10.tgz";
382 382 sha512 = "R66IHGCdicgF5ZliN10yn5HaC7vwYAqrSVJGjtJJQp5+QNPBye6heWdVH/at40uh0uoaDN/UVUfXK0gvuUqtVg==";
383 383 };
384 384 };
385 385 "@webassemblyjs/wasm-parser-1.7.10" = {
386 386 name = "_at_webassemblyjs_slash_wasm-parser";
387 387 packageName = "@webassemblyjs/wasm-parser";
388 388 version = "1.7.10";
389 389 src = fetchurl {
390 390 url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.10.tgz";
391 391 sha512 = "AEv8mkXVK63n/iDR3T693EzoGPnNAwKwT3iHmKJNBrrALAhhEjuPzo/lTE4U7LquEwyvg5nneSNdTdgrBaGJcA==";
392 392 };
393 393 };
394 394 "@webassemblyjs/wast-parser-1.7.10" = {
395 395 name = "_at_webassemblyjs_slash_wast-parser";
396 396 packageName = "@webassemblyjs/wast-parser";
397 397 version = "1.7.10";
398 398 src = fetchurl {
399 399 url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.10.tgz";
400 400 sha512 = "YTPEtOBljkCL0VjDp4sHe22dAYSm3ZwdJ9+2NTGdtC7ayNvuip1wAhaAS8Zt9Q6SW9E5Jf5PX7YE3XWlrzR9cw==";
401 401 };
402 402 };
403 403 "@webassemblyjs/wast-printer-1.7.10" = {
404 404 name = "_at_webassemblyjs_slash_wast-printer";
405 405 packageName = "@webassemblyjs/wast-printer";
406 406 version = "1.7.10";
407 407 src = fetchurl {
408 408 url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.10.tgz";
409 409 sha512 = "mJ3QKWtCchL1vhU/kZlJnLPuQZnlDOdZsyP0bbLWPGdYsQDnSBvyTLhzwBA3QAMlzEL9V4JHygEmK6/OTEyytA==";
410 410 };
411 411 };
412 "@webcomponents/shadycss-1.9.0" = {
412 "@webcomponents/shadycss-1.9.1" = {
413 413 name = "_at_webcomponents_slash_shadycss";
414 414 packageName = "@webcomponents/shadycss";
415 version = "1.9.0";
416 src = fetchurl {
417 url = "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.9.0.tgz";
418 sha512 = "g8Xa+6RSEME4g/wLJW4YII0eq15rvXp76RxPAuv7hx+Bdoi7GzZJ/EoZOUfyIbqAsQbII1TcWD4/+Xhs5NcM1w==";
419 };
420 };
421 "@webcomponents/webcomponentsjs-2.2.7" = {
415 version = "1.9.1";
416 src = fetchurl {
417 url = "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.9.1.tgz";
418 sha512 = "IaZOnWOKXHghqk/WfPNDRIgDBi3RsVPY2IFAw6tYiL9UBGvQRy5R6uC+Fk7qTZsReTJ0xh5MTT8yAcb3MUR4mQ==";
419 };
420 };
421 "@webcomponents/webcomponentsjs-2.2.10" = {
422 422 name = "_at_webcomponents_slash_webcomponentsjs";
423 423 packageName = "@webcomponents/webcomponentsjs";
424 version = "2.2.7";
425 src = fetchurl {
426 url = "https://registry.npmjs.org/@webcomponents/webcomponentsjs/-/webcomponentsjs-2.2.7.tgz";
427 sha512 = "kPPjzV+5kpoWpTniyvBSPcXS33f3j/C6HvNOJ3YecF3pvz3XwVeU4ammbxtVy/osF3z7hr1DYNptIf4oPEvXZA==";
424 version = "2.2.10";
425 src = fetchurl {
426 url = "https://registry.npmjs.org/@webcomponents/webcomponentsjs/-/webcomponentsjs-2.2.10.tgz";
427 sha512 = "5dzhUhP+h0qMiK0IWb7VNb0OGBoXO3AuI6Qi8t9PoKT50s5L1jv0xnwnLq+cFgPuTB8FLTNP8xIDmyoOsKBy9Q==";
428 428 };
429 429 };
430 430 "@xtuc/ieee754-1.2.0" = {
431 431 name = "_at_xtuc_slash_ieee754";
432 432 packageName = "@xtuc/ieee754";
433 433 version = "1.2.0";
434 434 src = fetchurl {
435 435 url = "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz";
436 436 sha512 = "DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==";
437 437 };
438 438 };
439 439 "@xtuc/long-4.2.1" = {
440 440 name = "_at_xtuc_slash_long";
441 441 packageName = "@xtuc/long";
442 442 version = "4.2.1";
443 443 src = fetchurl {
444 444 url = "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz";
445 445 sha512 = "FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==";
446 446 };
447 447 };
448 448 "abbrev-1.1.1" = {
449 449 name = "abbrev";
450 450 packageName = "abbrev";
451 451 version = "1.1.1";
452 452 src = fetchurl {
453 453 url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
454 454 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
455 455 };
456 456 };
457 457 "acorn-3.3.0" = {
458 458 name = "acorn";
459 459 packageName = "acorn";
460 460 version = "3.3.0";
461 461 src = fetchurl {
462 462 url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
463 463 sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
464 464 };
465 465 };
466 466 "acorn-5.7.3" = {
467 467 name = "acorn";
468 468 packageName = "acorn";
469 469 version = "5.7.3";
470 470 src = fetchurl {
471 471 url = "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz";
472 472 sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==";
473 473 };
474 474 };
475 475 "acorn-dynamic-import-3.0.0" = {
476 476 name = "acorn-dynamic-import";
477 477 packageName = "acorn-dynamic-import";
478 478 version = "3.0.0";
479 479 src = fetchurl {
480 480 url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz";
481 481 sha512 = "zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==";
482 482 };
483 483 };
484 484 "acorn-jsx-3.0.1" = {
485 485 name = "acorn-jsx";
486 486 packageName = "acorn-jsx";
487 487 version = "3.0.1";
488 488 src = fetchurl {
489 489 url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
490 490 sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
491 491 };
492 492 };
493 493 "ajv-4.11.8" = {
494 494 name = "ajv";
495 495 packageName = "ajv";
496 496 version = "4.11.8";
497 497 src = fetchurl {
498 498 url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
499 499 sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
500 500 };
501 501 };
502 "ajv-6.9.2" = {
502 "ajv-6.10.0" = {
503 503 name = "ajv";
504 504 packageName = "ajv";
505 version = "6.9.2";
506 src = fetchurl {
507 url = "https://registry.npmjs.org/ajv/-/ajv-6.9.2.tgz";
508 sha512 = "4UFy0/LgDo7Oa/+wOAlj44tp9K78u38E5/359eSrqEp1Z5PdVfimCcs7SluXMP755RUQu6d2b4AvF0R1C9RZjg==";
505 version = "6.10.0";
506 src = fetchurl {
507 url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz";
508 sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==";
509 509 };
510 510 };
511 511 "ajv-keywords-3.4.0" = {
512 512 name = "ajv-keywords";
513 513 packageName = "ajv-keywords";
514 514 version = "3.4.0";
515 515 src = fetchurl {
516 516 url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.0.tgz";
517 517 sha512 = "aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw==";
518 518 };
519 519 };
520 520 "align-text-0.1.4" = {
521 521 name = "align-text";
522 522 packageName = "align-text";
523 523 version = "0.1.4";
524 524 src = fetchurl {
525 525 url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
526 526 sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
527 527 };
528 528 };
529 529 "alphanum-sort-1.0.2" = {
530 530 name = "alphanum-sort";
531 531 packageName = "alphanum-sort";
532 532 version = "1.0.2";
533 533 src = fetchurl {
534 534 url = "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz";
535 535 sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3";
536 536 };
537 537 };
538 538 "amdefine-1.0.1" = {
539 539 name = "amdefine";
540 540 packageName = "amdefine";
541 541 version = "1.0.1";
542 542 src = fetchurl {
543 543 url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
544 544 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
545 545 };
546 546 };
547 547 "ansi-regex-0.2.1" = {
548 548 name = "ansi-regex";
549 549 packageName = "ansi-regex";
550 550 version = "0.2.1";
551 551 src = fetchurl {
552 552 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
553 553 sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
554 554 };
555 555 };
556 556 "ansi-regex-2.1.1" = {
557 557 name = "ansi-regex";
558 558 packageName = "ansi-regex";
559 559 version = "2.1.1";
560 560 src = fetchurl {
561 561 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
562 562 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
563 563 };
564 564 };
565 565 "ansi-regex-3.0.0" = {
566 566 name = "ansi-regex";
567 567 packageName = "ansi-regex";
568 568 version = "3.0.0";
569 569 src = fetchurl {
570 570 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
571 571 sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
572 572 };
573 573 };
574 574 "ansi-styles-1.1.0" = {
575 575 name = "ansi-styles";
576 576 packageName = "ansi-styles";
577 577 version = "1.1.0";
578 578 src = fetchurl {
579 579 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
580 580 sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
581 581 };
582 582 };
583 583 "ansi-styles-2.2.1" = {
584 584 name = "ansi-styles";
585 585 packageName = "ansi-styles";
586 586 version = "2.2.1";
587 587 src = fetchurl {
588 588 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
589 589 sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
590 590 };
591 591 };
592 592 "ansi-styles-3.2.1" = {
593 593 name = "ansi-styles";
594 594 packageName = "ansi-styles";
595 595 version = "3.2.1";
596 596 src = fetchurl {
597 597 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
598 598 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
599 599 };
600 600 };
601 601 "anymatch-2.0.0" = {
602 602 name = "anymatch";
603 603 packageName = "anymatch";
604 604 version = "2.0.0";
605 605 src = fetchurl {
606 606 url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
607 607 sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
608 608 };
609 609 };
610 610 "appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1" = {
611 611 name = "appenlight-client";
612 612 packageName = "appenlight-client";
613 613 version = "0.5.1";
614 614 src = fetchgit {
615 615 url = "https://git@github.com/AppEnlight/appenlight-client-js.git";
616 616 rev = "14712c64c230fbbe94fcbc8094aef5eb3b90b307";
617 617 sha256 = "05146f5b932f166c9a4db601bc9c13ae686899653d1dd03121652631f9bc83d6";
618 618 };
619 619 };
620 620 "aproba-1.2.0" = {
621 621 name = "aproba";
622 622 packageName = "aproba";
623 623 version = "1.2.0";
624 624 src = fetchurl {
625 625 url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
626 626 sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
627 627 };
628 628 };
629 629 "argparse-0.1.16" = {
630 630 name = "argparse";
631 631 packageName = "argparse";
632 632 version = "0.1.16";
633 633 src = fetchurl {
634 634 url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
635 635 sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
636 636 };
637 637 };
638 638 "argparse-1.0.10" = {
639 639 name = "argparse";
640 640 packageName = "argparse";
641 641 version = "1.0.10";
642 642 src = fetchurl {
643 643 url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
644 644 sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
645 645 };
646 646 };
647 647 "arr-diff-4.0.0" = {
648 648 name = "arr-diff";
649 649 packageName = "arr-diff";
650 650 version = "4.0.0";
651 651 src = fetchurl {
652 652 url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
653 653 sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
654 654 };
655 655 };
656 656 "arr-flatten-1.1.0" = {
657 657 name = "arr-flatten";
658 658 packageName = "arr-flatten";
659 659 version = "1.1.0";
660 660 src = fetchurl {
661 661 url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
662 662 sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
663 663 };
664 664 };
665 665 "arr-union-3.1.0" = {
666 666 name = "arr-union";
667 667 packageName = "arr-union";
668 668 version = "3.1.0";
669 669 src = fetchurl {
670 670 url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
671 671 sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
672 672 };
673 673 };
674 674 "array-each-1.0.1" = {
675 675 name = "array-each";
676 676 packageName = "array-each";
677 677 version = "1.0.1";
678 678 src = fetchurl {
679 679 url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
680 680 sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
681 681 };
682 682 };
683 683 "array-slice-1.1.0" = {
684 684 name = "array-slice";
685 685 packageName = "array-slice";
686 686 version = "1.1.0";
687 687 src = fetchurl {
688 688 url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
689 689 sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
690 690 };
691 691 };
692 692 "array-union-1.0.2" = {
693 693 name = "array-union";
694 694 packageName = "array-union";
695 695 version = "1.0.2";
696 696 src = fetchurl {
697 697 url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
698 698 sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
699 699 };
700 700 };
701 701 "array-uniq-1.0.3" = {
702 702 name = "array-uniq";
703 703 packageName = "array-uniq";
704 704 version = "1.0.3";
705 705 src = fetchurl {
706 706 url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
707 707 sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
708 708 };
709 709 };
710 710 "array-unique-0.3.2" = {
711 711 name = "array-unique";
712 712 packageName = "array-unique";
713 713 version = "0.3.2";
714 714 src = fetchurl {
715 715 url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
716 716 sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
717 717 };
718 718 };
719 719 "asap-2.0.6" = {
720 720 name = "asap";
721 721 packageName = "asap";
722 722 version = "2.0.6";
723 723 src = fetchurl {
724 724 url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
725 725 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
726 726 };
727 727 };
728 728 "asn1-0.2.4" = {
729 729 name = "asn1";
730 730 packageName = "asn1";
731 731 version = "0.2.4";
732 732 src = fetchurl {
733 733 url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
734 734 sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
735 735 };
736 736 };
737 737 "asn1.js-4.10.1" = {
738 738 name = "asn1.js";
739 739 packageName = "asn1.js";
740 740 version = "4.10.1";
741 741 src = fetchurl {
742 742 url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz";
743 743 sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==";
744 744 };
745 745 };
746 "assert-1.4.1" = {
746 "assert-1.5.0" = {
747 747 name = "assert";
748 748 packageName = "assert";
749 version = "1.4.1";
750 src = fetchurl {
751 url = "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz";
752 sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
749 version = "1.5.0";
750 src = fetchurl {
751 url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz";
752 sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==";
753 753 };
754 754 };
755 755 "assert-plus-0.2.0" = {
756 756 name = "assert-plus";
757 757 packageName = "assert-plus";
758 758 version = "0.2.0";
759 759 src = fetchurl {
760 760 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
761 761 sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
762 762 };
763 763 };
764 764 "assert-plus-1.0.0" = {
765 765 name = "assert-plus";
766 766 packageName = "assert-plus";
767 767 version = "1.0.0";
768 768 src = fetchurl {
769 769 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
770 770 sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
771 771 };
772 772 };
773 773 "assign-symbols-1.0.0" = {
774 774 name = "assign-symbols";
775 775 packageName = "assign-symbols";
776 776 version = "1.0.0";
777 777 src = fetchurl {
778 778 url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
779 779 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
780 780 };
781 781 };
782 782 "ast-types-0.9.6" = {
783 783 name = "ast-types";
784 784 packageName = "ast-types";
785 785 version = "0.9.6";
786 786 src = fetchurl {
787 787 url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz";
788 788 sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
789 789 };
790 790 };
791 791 "async-0.1.22" = {
792 792 name = "async";
793 793 packageName = "async";
794 794 version = "0.1.22";
795 795 src = fetchurl {
796 796 url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
797 797 sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
798 798 };
799 799 };
800 800 "async-0.2.10" = {
801 801 name = "async";
802 802 packageName = "async";
803 803 version = "0.2.10";
804 804 src = fetchurl {
805 805 url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
806 806 sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
807 807 };
808 808 };
809 809 "async-2.6.2" = {
810 810 name = "async";
811 811 packageName = "async";
812 812 version = "2.6.2";
813 813 src = fetchurl {
814 814 url = "https://registry.npmjs.org/async/-/async-2.6.2.tgz";
815 815 sha512 = "H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==";
816 816 };
817 817 };
818 "async-each-1.0.1" = {
818 "async-each-1.0.3" = {
819 819 name = "async-each";
820 820 packageName = "async-each";
821 version = "1.0.1";
822 src = fetchurl {
823 url = "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz";
824 sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d";
821 version = "1.0.3";
822 src = fetchurl {
823 url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz";
824 sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==";
825 825 };
826 826 };
827 827 "asynckit-0.4.0" = {
828 828 name = "asynckit";
829 829 packageName = "asynckit";
830 830 version = "0.4.0";
831 831 src = fetchurl {
832 832 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
833 833 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
834 834 };
835 835 };
836 836 "atob-2.1.2" = {
837 837 name = "atob";
838 838 packageName = "atob";
839 839 version = "2.1.2";
840 840 src = fetchurl {
841 841 url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz";
842 842 sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
843 843 };
844 844 };
845 845 "autoprefixer-6.7.7" = {
846 846 name = "autoprefixer";
847 847 packageName = "autoprefixer";
848 848 version = "6.7.7";
849 849 src = fetchurl {
850 850 url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz";
851 851 sha1 = "1dbd1c835658e35ce3f9984099db00585c782014";
852 852 };
853 853 };
854 854 "aws-sign2-0.6.0" = {
855 855 name = "aws-sign2";
856 856 packageName = "aws-sign2";
857 857 version = "0.6.0";
858 858 src = fetchurl {
859 859 url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
860 860 sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
861 861 };
862 862 };
863 863 "aws4-1.8.0" = {
864 864 name = "aws4";
865 865 packageName = "aws4";
866 866 version = "1.8.0";
867 867 src = fetchurl {
868 868 url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
869 869 sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
870 870 };
871 871 };
872 872 "babel-code-frame-6.26.0" = {
873 873 name = "babel-code-frame";
874 874 packageName = "babel-code-frame";
875 875 version = "6.26.0";
876 876 src = fetchurl {
877 877 url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
878 878 sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
879 879 };
880 880 };
881 881 "babel-core-6.26.3" = {
882 882 name = "babel-core";
883 883 packageName = "babel-core";
884 884 version = "6.26.3";
885 885 src = fetchurl {
886 886 url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz";
887 887 sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==";
888 888 };
889 889 };
890 890 "babel-generator-6.26.1" = {
891 891 name = "babel-generator";
892 892 packageName = "babel-generator";
893 893 version = "6.26.1";
894 894 src = fetchurl {
895 895 url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz";
896 896 sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==";
897 897 };
898 898 };
899 899 "babel-helper-builder-binary-assignment-operator-visitor-6.24.1" = {
900 900 name = "babel-helper-builder-binary-assignment-operator-visitor";
901 901 packageName = "babel-helper-builder-binary-assignment-operator-visitor";
902 902 version = "6.24.1";
903 903 src = fetchurl {
904 904 url = "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz";
905 905 sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664";
906 906 };
907 907 };
908 908 "babel-helper-call-delegate-6.24.1" = {
909 909 name = "babel-helper-call-delegate";
910 910 packageName = "babel-helper-call-delegate";
911 911 version = "6.24.1";
912 912 src = fetchurl {
913 913 url = "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz";
914 914 sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d";
915 915 };
916 916 };
917 917 "babel-helper-define-map-6.26.0" = {
918 918 name = "babel-helper-define-map";
919 919 packageName = "babel-helper-define-map";
920 920 version = "6.26.0";
921 921 src = fetchurl {
922 922 url = "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz";
923 923 sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f";
924 924 };
925 925 };
926 926 "babel-helper-explode-assignable-expression-6.24.1" = {
927 927 name = "babel-helper-explode-assignable-expression";
928 928 packageName = "babel-helper-explode-assignable-expression";
929 929 version = "6.24.1";
930 930 src = fetchurl {
931 931 url = "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz";
932 932 sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa";
933 933 };
934 934 };
935 935 "babel-helper-function-name-6.24.1" = {
936 936 name = "babel-helper-function-name";
937 937 packageName = "babel-helper-function-name";
938 938 version = "6.24.1";
939 939 src = fetchurl {
940 940 url = "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz";
941 941 sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9";
942 942 };
943 943 };
944 944 "babel-helper-get-function-arity-6.24.1" = {
945 945 name = "babel-helper-get-function-arity";
946 946 packageName = "babel-helper-get-function-arity";
947 947 version = "6.24.1";
948 948 src = fetchurl {
949 949 url = "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz";
950 950 sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d";
951 951 };
952 952 };
953 953 "babel-helper-hoist-variables-6.24.1" = {
954 954 name = "babel-helper-hoist-variables";
955 955 packageName = "babel-helper-hoist-variables";
956 956 version = "6.24.1";
957 957 src = fetchurl {
958 958 url = "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz";
959 959 sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76";
960 960 };
961 961 };
962 962 "babel-helper-optimise-call-expression-6.24.1" = {
963 963 name = "babel-helper-optimise-call-expression";
964 964 packageName = "babel-helper-optimise-call-expression";
965 965 version = "6.24.1";
966 966 src = fetchurl {
967 967 url = "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz";
968 968 sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257";
969 969 };
970 970 };
971 971 "babel-helper-regex-6.26.0" = {
972 972 name = "babel-helper-regex";
973 973 packageName = "babel-helper-regex";
974 974 version = "6.26.0";
975 975 src = fetchurl {
976 976 url = "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz";
977 977 sha1 = "325c59f902f82f24b74faceed0363954f6495e72";
978 978 };
979 979 };
980 980 "babel-helper-remap-async-to-generator-6.24.1" = {
981 981 name = "babel-helper-remap-async-to-generator";
982 982 packageName = "babel-helper-remap-async-to-generator";
983 983 version = "6.24.1";
984 984 src = fetchurl {
985 985 url = "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz";
986 986 sha1 = "5ec581827ad723fecdd381f1c928390676e4551b";
987 987 };
988 988 };
989 989 "babel-helper-replace-supers-6.24.1" = {
990 990 name = "babel-helper-replace-supers";
991 991 packageName = "babel-helper-replace-supers";
992 992 version = "6.24.1";
993 993 src = fetchurl {
994 994 url = "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz";
995 995 sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a";
996 996 };
997 997 };
998 998 "babel-helpers-6.24.1" = {
999 999 name = "babel-helpers";
1000 1000 packageName = "babel-helpers";
1001 1001 version = "6.24.1";
1002 1002 src = fetchurl {
1003 1003 url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz";
1004 1004 sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
1005 1005 };
1006 1006 };
1007 1007 "babel-loader-7.1.5" = {
1008 1008 name = "babel-loader";
1009 1009 packageName = "babel-loader";
1010 1010 version = "7.1.5";
1011 1011 src = fetchurl {
1012 1012 url = "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz";
1013 1013 sha512 = "iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==";
1014 1014 };
1015 1015 };
1016 1016 "babel-messages-6.23.0" = {
1017 1017 name = "babel-messages";
1018 1018 packageName = "babel-messages";
1019 1019 version = "6.23.0";
1020 1020 src = fetchurl {
1021 1021 url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz";
1022 1022 sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
1023 1023 };
1024 1024 };
1025 1025 "babel-plugin-check-es2015-constants-6.22.0" = {
1026 1026 name = "babel-plugin-check-es2015-constants";
1027 1027 packageName = "babel-plugin-check-es2015-constants";
1028 1028 version = "6.22.0";
1029 1029 src = fetchurl {
1030 1030 url = "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz";
1031 1031 sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a";
1032 1032 };
1033 1033 };
1034 1034 "babel-plugin-syntax-async-functions-6.13.0" = {
1035 1035 name = "babel-plugin-syntax-async-functions";
1036 1036 packageName = "babel-plugin-syntax-async-functions";
1037 1037 version = "6.13.0";
1038 1038 src = fetchurl {
1039 1039 url = "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz";
1040 1040 sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95";
1041 1041 };
1042 1042 };
1043 1043 "babel-plugin-syntax-exponentiation-operator-6.13.0" = {
1044 1044 name = "babel-plugin-syntax-exponentiation-operator";
1045 1045 packageName = "babel-plugin-syntax-exponentiation-operator";
1046 1046 version = "6.13.0";
1047 1047 src = fetchurl {
1048 1048 url = "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz";
1049 1049 sha1 = "9ee7e8337290da95288201a6a57f4170317830de";
1050 1050 };
1051 1051 };
1052 1052 "babel-plugin-syntax-object-rest-spread-6.13.0" = {
1053 1053 name = "babel-plugin-syntax-object-rest-spread";
1054 1054 packageName = "babel-plugin-syntax-object-rest-spread";
1055 1055 version = "6.13.0";
1056 1056 src = fetchurl {
1057 1057 url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz";
1058 1058 sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
1059 1059 };
1060 1060 };
1061 1061 "babel-plugin-syntax-trailing-function-commas-6.22.0" = {
1062 1062 name = "babel-plugin-syntax-trailing-function-commas";
1063 1063 packageName = "babel-plugin-syntax-trailing-function-commas";
1064 1064 version = "6.22.0";
1065 1065 src = fetchurl {
1066 1066 url = "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz";
1067 1067 sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3";
1068 1068 };
1069 1069 };
1070 1070 "babel-plugin-transform-async-to-generator-6.24.1" = {
1071 1071 name = "babel-plugin-transform-async-to-generator";
1072 1072 packageName = "babel-plugin-transform-async-to-generator";
1073 1073 version = "6.24.1";
1074 1074 src = fetchurl {
1075 1075 url = "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz";
1076 1076 sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761";
1077 1077 };
1078 1078 };
1079 1079 "babel-plugin-transform-es2015-arrow-functions-6.22.0" = {
1080 1080 name = "babel-plugin-transform-es2015-arrow-functions";
1081 1081 packageName = "babel-plugin-transform-es2015-arrow-functions";
1082 1082 version = "6.22.0";
1083 1083 src = fetchurl {
1084 1084 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz";
1085 1085 sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221";
1086 1086 };
1087 1087 };
1088 1088 "babel-plugin-transform-es2015-block-scoped-functions-6.22.0" = {
1089 1089 name = "babel-plugin-transform-es2015-block-scoped-functions";
1090 1090 packageName = "babel-plugin-transform-es2015-block-scoped-functions";
1091 1091 version = "6.22.0";
1092 1092 src = fetchurl {
1093 1093 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz";
1094 1094 sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141";
1095 1095 };
1096 1096 };
1097 1097 "babel-plugin-transform-es2015-block-scoping-6.26.0" = {
1098 1098 name = "babel-plugin-transform-es2015-block-scoping";
1099 1099 packageName = "babel-plugin-transform-es2015-block-scoping";
1100 1100 version = "6.26.0";
1101 1101 src = fetchurl {
1102 1102 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz";
1103 1103 sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f";
1104 1104 };
1105 1105 };
1106 1106 "babel-plugin-transform-es2015-classes-6.24.1" = {
1107 1107 name = "babel-plugin-transform-es2015-classes";
1108 1108 packageName = "babel-plugin-transform-es2015-classes";
1109 1109 version = "6.24.1";
1110 1110 src = fetchurl {
1111 1111 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz";
1112 1112 sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db";
1113 1113 };
1114 1114 };
1115 1115 "babel-plugin-transform-es2015-computed-properties-6.24.1" = {
1116 1116 name = "babel-plugin-transform-es2015-computed-properties";
1117 1117 packageName = "babel-plugin-transform-es2015-computed-properties";
1118 1118 version = "6.24.1";
1119 1119 src = fetchurl {
1120 1120 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz";
1121 1121 sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3";
1122 1122 };
1123 1123 };
1124 1124 "babel-plugin-transform-es2015-destructuring-6.23.0" = {
1125 1125 name = "babel-plugin-transform-es2015-destructuring";
1126 1126 packageName = "babel-plugin-transform-es2015-destructuring";
1127 1127 version = "6.23.0";
1128 1128 src = fetchurl {
1129 1129 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
1130 1130 sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
1131 1131 };
1132 1132 };
1133 1133 "babel-plugin-transform-es2015-duplicate-keys-6.24.1" = {
1134 1134 name = "babel-plugin-transform-es2015-duplicate-keys";
1135 1135 packageName = "babel-plugin-transform-es2015-duplicate-keys";
1136 1136 version = "6.24.1";
1137 1137 src = fetchurl {
1138 1138 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz";
1139 1139 sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e";
1140 1140 };
1141 1141 };
1142 1142 "babel-plugin-transform-es2015-for-of-6.23.0" = {
1143 1143 name = "babel-plugin-transform-es2015-for-of";
1144 1144 packageName = "babel-plugin-transform-es2015-for-of";
1145 1145 version = "6.23.0";
1146 1146 src = fetchurl {
1147 1147 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz";
1148 1148 sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691";
1149 1149 };
1150 1150 };
1151 1151 "babel-plugin-transform-es2015-function-name-6.24.1" = {
1152 1152 name = "babel-plugin-transform-es2015-function-name";
1153 1153 packageName = "babel-plugin-transform-es2015-function-name";
1154 1154 version = "6.24.1";
1155 1155 src = fetchurl {
1156 1156 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz";
1157 1157 sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b";
1158 1158 };
1159 1159 };
1160 1160 "babel-plugin-transform-es2015-literals-6.22.0" = {
1161 1161 name = "babel-plugin-transform-es2015-literals";
1162 1162 packageName = "babel-plugin-transform-es2015-literals";
1163 1163 version = "6.22.0";
1164 1164 src = fetchurl {
1165 1165 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz";
1166 1166 sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e";
1167 1167 };
1168 1168 };
1169 1169 "babel-plugin-transform-es2015-modules-amd-6.24.1" = {
1170 1170 name = "babel-plugin-transform-es2015-modules-amd";
1171 1171 packageName = "babel-plugin-transform-es2015-modules-amd";
1172 1172 version = "6.24.1";
1173 1173 src = fetchurl {
1174 1174 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz";
1175 1175 sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154";
1176 1176 };
1177 1177 };
1178 1178 "babel-plugin-transform-es2015-modules-commonjs-6.26.2" = {
1179 1179 name = "babel-plugin-transform-es2015-modules-commonjs";
1180 1180 packageName = "babel-plugin-transform-es2015-modules-commonjs";
1181 1181 version = "6.26.2";
1182 1182 src = fetchurl {
1183 1183 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz";
1184 1184 sha512 = "CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==";
1185 1185 };
1186 1186 };
1187 1187 "babel-plugin-transform-es2015-modules-systemjs-6.24.1" = {
1188 1188 name = "babel-plugin-transform-es2015-modules-systemjs";
1189 1189 packageName = "babel-plugin-transform-es2015-modules-systemjs";
1190 1190 version = "6.24.1";
1191 1191 src = fetchurl {
1192 1192 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz";
1193 1193 sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23";
1194 1194 };
1195 1195 };
1196 1196 "babel-plugin-transform-es2015-modules-umd-6.24.1" = {
1197 1197 name = "babel-plugin-transform-es2015-modules-umd";
1198 1198 packageName = "babel-plugin-transform-es2015-modules-umd";
1199 1199 version = "6.24.1";
1200 1200 src = fetchurl {
1201 1201 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz";
1202 1202 sha1 = "ac997e6285cd18ed6176adb607d602344ad38468";
1203 1203 };
1204 1204 };
1205 1205 "babel-plugin-transform-es2015-object-super-6.24.1" = {
1206 1206 name = "babel-plugin-transform-es2015-object-super";
1207 1207 packageName = "babel-plugin-transform-es2015-object-super";
1208 1208 version = "6.24.1";
1209 1209 src = fetchurl {
1210 1210 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz";
1211 1211 sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d";
1212 1212 };
1213 1213 };
1214 1214 "babel-plugin-transform-es2015-parameters-6.24.1" = {
1215 1215 name = "babel-plugin-transform-es2015-parameters";
1216 1216 packageName = "babel-plugin-transform-es2015-parameters";
1217 1217 version = "6.24.1";
1218 1218 src = fetchurl {
1219 1219 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz";
1220 1220 sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b";
1221 1221 };
1222 1222 };
1223 1223 "babel-plugin-transform-es2015-shorthand-properties-6.24.1" = {
1224 1224 name = "babel-plugin-transform-es2015-shorthand-properties";
1225 1225 packageName = "babel-plugin-transform-es2015-shorthand-properties";
1226 1226 version = "6.24.1";
1227 1227 src = fetchurl {
1228 1228 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz";
1229 1229 sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0";
1230 1230 };
1231 1231 };
1232 1232 "babel-plugin-transform-es2015-spread-6.22.0" = {
1233 1233 name = "babel-plugin-transform-es2015-spread";
1234 1234 packageName = "babel-plugin-transform-es2015-spread";
1235 1235 version = "6.22.0";
1236 1236 src = fetchurl {
1237 1237 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz";
1238 1238 sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1";
1239 1239 };
1240 1240 };
1241 1241 "babel-plugin-transform-es2015-sticky-regex-6.24.1" = {
1242 1242 name = "babel-plugin-transform-es2015-sticky-regex";
1243 1243 packageName = "babel-plugin-transform-es2015-sticky-regex";
1244 1244 version = "6.24.1";
1245 1245 src = fetchurl {
1246 1246 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz";
1247 1247 sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc";
1248 1248 };
1249 1249 };
1250 1250 "babel-plugin-transform-es2015-template-literals-6.22.0" = {
1251 1251 name = "babel-plugin-transform-es2015-template-literals";
1252 1252 packageName = "babel-plugin-transform-es2015-template-literals";
1253 1253 version = "6.22.0";
1254 1254 src = fetchurl {
1255 1255 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz";
1256 1256 sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d";
1257 1257 };
1258 1258 };
1259 1259 "babel-plugin-transform-es2015-typeof-symbol-6.23.0" = {
1260 1260 name = "babel-plugin-transform-es2015-typeof-symbol";
1261 1261 packageName = "babel-plugin-transform-es2015-typeof-symbol";
1262 1262 version = "6.23.0";
1263 1263 src = fetchurl {
1264 1264 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz";
1265 1265 sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372";
1266 1266 };
1267 1267 };
1268 1268 "babel-plugin-transform-es2015-unicode-regex-6.24.1" = {
1269 1269 name = "babel-plugin-transform-es2015-unicode-regex";
1270 1270 packageName = "babel-plugin-transform-es2015-unicode-regex";
1271 1271 version = "6.24.1";
1272 1272 src = fetchurl {
1273 1273 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz";
1274 1274 sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9";
1275 1275 };
1276 1276 };
1277 1277 "babel-plugin-transform-exponentiation-operator-6.24.1" = {
1278 1278 name = "babel-plugin-transform-exponentiation-operator";
1279 1279 packageName = "babel-plugin-transform-exponentiation-operator";
1280 1280 version = "6.24.1";
1281 1281 src = fetchurl {
1282 1282 url = "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz";
1283 1283 sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e";
1284 1284 };
1285 1285 };
1286 1286 "babel-plugin-transform-object-rest-spread-6.26.0" = {
1287 1287 name = "babel-plugin-transform-object-rest-spread";
1288 1288 packageName = "babel-plugin-transform-object-rest-spread";
1289 1289 version = "6.26.0";
1290 1290 src = fetchurl {
1291 1291 url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
1292 1292 sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
1293 1293 };
1294 1294 };
1295 1295 "babel-plugin-transform-regenerator-6.26.0" = {
1296 1296 name = "babel-plugin-transform-regenerator";
1297 1297 packageName = "babel-plugin-transform-regenerator";
1298 1298 version = "6.26.0";
1299 1299 src = fetchurl {
1300 1300 url = "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz";
1301 1301 sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f";
1302 1302 };
1303 1303 };
1304 1304 "babel-plugin-transform-strict-mode-6.24.1" = {
1305 1305 name = "babel-plugin-transform-strict-mode";
1306 1306 packageName = "babel-plugin-transform-strict-mode";
1307 1307 version = "6.24.1";
1308 1308 src = fetchurl {
1309 1309 url = "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz";
1310 1310 sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758";
1311 1311 };
1312 1312 };
1313 1313 "babel-preset-env-1.7.0" = {
1314 1314 name = "babel-preset-env";
1315 1315 packageName = "babel-preset-env";
1316 1316 version = "1.7.0";
1317 1317 src = fetchurl {
1318 1318 url = "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz";
1319 1319 sha512 = "9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==";
1320 1320 };
1321 1321 };
1322 1322 "babel-register-6.26.0" = {
1323 1323 name = "babel-register";
1324 1324 packageName = "babel-register";
1325 1325 version = "6.26.0";
1326 1326 src = fetchurl {
1327 1327 url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
1328 1328 sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
1329 1329 };
1330 1330 };
1331 1331 "babel-runtime-6.26.0" = {
1332 1332 name = "babel-runtime";
1333 1333 packageName = "babel-runtime";
1334 1334 version = "6.26.0";
1335 1335 src = fetchurl {
1336 1336 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
1337 1337 sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
1338 1338 };
1339 1339 };
1340 1340 "babel-template-6.26.0" = {
1341 1341 name = "babel-template";
1342 1342 packageName = "babel-template";
1343 1343 version = "6.26.0";
1344 1344 src = fetchurl {
1345 1345 url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
1346 1346 sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
1347 1347 };
1348 1348 };
1349 1349 "babel-traverse-6.26.0" = {
1350 1350 name = "babel-traverse";
1351 1351 packageName = "babel-traverse";
1352 1352 version = "6.26.0";
1353 1353 src = fetchurl {
1354 1354 url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
1355 1355 sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
1356 1356 };
1357 1357 };
1358 1358 "babel-types-6.26.0" = {
1359 1359 name = "babel-types";
1360 1360 packageName = "babel-types";
1361 1361 version = "6.26.0";
1362 1362 src = fetchurl {
1363 1363 url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
1364 1364 sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
1365 1365 };
1366 1366 };
1367 1367 "babylon-6.18.0" = {
1368 1368 name = "babylon";
1369 1369 packageName = "babylon";
1370 1370 version = "6.18.0";
1371 1371 src = fetchurl {
1372 1372 url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
1373 1373 sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==";
1374 1374 };
1375 1375 };
1376 1376 "balanced-match-0.4.2" = {
1377 1377 name = "balanced-match";
1378 1378 packageName = "balanced-match";
1379 1379 version = "0.4.2";
1380 1380 src = fetchurl {
1381 1381 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz";
1382 1382 sha1 = "cb3f3e3c732dc0f01ee70b403f302e61d7709838";
1383 1383 };
1384 1384 };
1385 1385 "balanced-match-1.0.0" = {
1386 1386 name = "balanced-match";
1387 1387 packageName = "balanced-match";
1388 1388 version = "1.0.0";
1389 1389 src = fetchurl {
1390 1390 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
1391 1391 sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
1392 1392 };
1393 1393 };
1394 1394 "base-0.11.2" = {
1395 1395 name = "base";
1396 1396 packageName = "base";
1397 1397 version = "0.11.2";
1398 1398 src = fetchurl {
1399 1399 url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
1400 1400 sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
1401 1401 };
1402 1402 };
1403 1403 "base64-js-1.3.0" = {
1404 1404 name = "base64-js";
1405 1405 packageName = "base64-js";
1406 1406 version = "1.3.0";
1407 1407 src = fetchurl {
1408 1408 url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz";
1409 1409 sha512 = "ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==";
1410 1410 };
1411 1411 };
1412 1412 "bcrypt-pbkdf-1.0.2" = {
1413 1413 name = "bcrypt-pbkdf";
1414 1414 packageName = "bcrypt-pbkdf";
1415 1415 version = "1.0.2";
1416 1416 src = fetchurl {
1417 1417 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
1418 1418 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
1419 1419 };
1420 1420 };
1421 1421 "big.js-3.2.0" = {
1422 1422 name = "big.js";
1423 1423 packageName = "big.js";
1424 1424 version = "3.2.0";
1425 1425 src = fetchurl {
1426 1426 url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
1427 1427 sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==";
1428 1428 };
1429 1429 };
1430 1430 "big.js-5.2.2" = {
1431 1431 name = "big.js";
1432 1432 packageName = "big.js";
1433 1433 version = "5.2.2";
1434 1434 src = fetchurl {
1435 1435 url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz";
1436 1436 sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==";
1437 1437 };
1438 1438 };
1439 "binary-extensions-1.13.0" = {
1439 "binary-extensions-1.13.1" = {
1440 1440 name = "binary-extensions";
1441 1441 packageName = "binary-extensions";
1442 version = "1.13.0";
1443 src = fetchurl {
1444 url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.0.tgz";
1445 sha512 = "EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw==";
1446 };
1447 };
1448 "bluebird-3.5.3" = {
1442 version = "1.13.1";
1443 src = fetchurl {
1444 url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz";
1445 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==";
1446 };
1447 };
1448 "bluebird-3.5.4" = {
1449 1449 name = "bluebird";
1450 1450 packageName = "bluebird";
1451 version = "3.5.3";
1452 src = fetchurl {
1453 url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz";
1454 sha512 = "/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==";
1451 version = "3.5.4";
1452 src = fetchurl {
1453 url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.4.tgz";
1454 sha512 = "FG+nFEZChJrbQ9tIccIfZJBz3J7mLrAhxakAbnrJWn8d7aKOC+LWifa0G+p4ZqKp4y13T7juYvdhq9NzKdsrjw==";
1455 1455 };
1456 1456 };
1457 1457 "bn.js-4.11.8" = {
1458 1458 name = "bn.js";
1459 1459 packageName = "bn.js";
1460 1460 version = "4.11.8";
1461 1461 src = fetchurl {
1462 1462 url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
1463 1463 sha512 = "ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==";
1464 1464 };
1465 1465 };
1466 1466 "boolbase-1.0.0" = {
1467 1467 name = "boolbase";
1468 1468 packageName = "boolbase";
1469 1469 version = "1.0.0";
1470 1470 src = fetchurl {
1471 1471 url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz";
1472 1472 sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
1473 1473 };
1474 1474 };
1475 1475 "boom-2.10.1" = {
1476 1476 name = "boom";
1477 1477 packageName = "boom";
1478 1478 version = "2.10.1";
1479 1479 src = fetchurl {
1480 1480 url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
1481 1481 sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
1482 1482 };
1483 1483 };
1484 1484 "brace-expansion-1.1.11" = {
1485 1485 name = "brace-expansion";
1486 1486 packageName = "brace-expansion";
1487 1487 version = "1.1.11";
1488 1488 src = fetchurl {
1489 1489 url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
1490 1490 sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
1491 1491 };
1492 1492 };
1493 1493 "braces-2.3.2" = {
1494 1494 name = "braces";
1495 1495 packageName = "braces";
1496 1496 version = "2.3.2";
1497 1497 src = fetchurl {
1498 1498 url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
1499 1499 sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
1500 1500 };
1501 1501 };
1502 1502 "brorand-1.1.0" = {
1503 1503 name = "brorand";
1504 1504 packageName = "brorand";
1505 1505 version = "1.1.0";
1506 1506 src = fetchurl {
1507 1507 url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
1508 1508 sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
1509 1509 };
1510 1510 };
1511 1511 "browserify-aes-1.2.0" = {
1512 1512 name = "browserify-aes";
1513 1513 packageName = "browserify-aes";
1514 1514 version = "1.2.0";
1515 1515 src = fetchurl {
1516 1516 url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz";
1517 1517 sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==";
1518 1518 };
1519 1519 };
1520 1520 "browserify-cipher-1.0.1" = {
1521 1521 name = "browserify-cipher";
1522 1522 packageName = "browserify-cipher";
1523 1523 version = "1.0.1";
1524 1524 src = fetchurl {
1525 1525 url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
1526 1526 sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==";
1527 1527 };
1528 1528 };
1529 1529 "browserify-des-1.0.2" = {
1530 1530 name = "browserify-des";
1531 1531 packageName = "browserify-des";
1532 1532 version = "1.0.2";
1533 1533 src = fetchurl {
1534 1534 url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz";
1535 1535 sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==";
1536 1536 };
1537 1537 };
1538 1538 "browserify-rsa-4.0.1" = {
1539 1539 name = "browserify-rsa";
1540 1540 packageName = "browserify-rsa";
1541 1541 version = "4.0.1";
1542 1542 src = fetchurl {
1543 1543 url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
1544 1544 sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
1545 1545 };
1546 1546 };
1547 1547 "browserify-sign-4.0.4" = {
1548 1548 name = "browserify-sign";
1549 1549 packageName = "browserify-sign";
1550 1550 version = "4.0.4";
1551 1551 src = fetchurl {
1552 1552 url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
1553 1553 sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
1554 1554 };
1555 1555 };
1556 1556 "browserify-zlib-0.2.0" = {
1557 1557 name = "browserify-zlib";
1558 1558 packageName = "browserify-zlib";
1559 1559 version = "0.2.0";
1560 1560 src = fetchurl {
1561 1561 url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
1562 1562 sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
1563 1563 };
1564 1564 };
1565 1565 "browserslist-1.7.7" = {
1566 1566 name = "browserslist";
1567 1567 packageName = "browserslist";
1568 1568 version = "1.7.7";
1569 1569 src = fetchurl {
1570 1570 url = "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz";
1571 1571 sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9";
1572 1572 };
1573 1573 };
1574 1574 "browserslist-3.2.8" = {
1575 1575 name = "browserslist";
1576 1576 packageName = "browserslist";
1577 1577 version = "3.2.8";
1578 1578 src = fetchurl {
1579 1579 url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz";
1580 1580 sha512 = "WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==";
1581 1581 };
1582 1582 };
1583 1583 "buffer-4.9.1" = {
1584 1584 name = "buffer";
1585 1585 packageName = "buffer";
1586 1586 version = "4.9.1";
1587 1587 src = fetchurl {
1588 1588 url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz";
1589 1589 sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
1590 1590 };
1591 1591 };
1592 1592 "buffer-from-1.1.1" = {
1593 1593 name = "buffer-from";
1594 1594 packageName = "buffer-from";
1595 1595 version = "1.1.1";
1596 1596 src = fetchurl {
1597 1597 url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
1598 1598 sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
1599 1599 };
1600 1600 };
1601 1601 "buffer-xor-1.0.3" = {
1602 1602 name = "buffer-xor";
1603 1603 packageName = "buffer-xor";
1604 1604 version = "1.0.3";
1605 1605 src = fetchurl {
1606 1606 url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
1607 1607 sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
1608 1608 };
1609 1609 };
1610 1610 "builtin-status-codes-3.0.0" = {
1611 1611 name = "builtin-status-codes";
1612 1612 packageName = "builtin-status-codes";
1613 1613 version = "3.0.0";
1614 1614 src = fetchurl {
1615 1615 url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
1616 1616 sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
1617 1617 };
1618 1618 };
1619 1619 "cacache-10.0.4" = {
1620 1620 name = "cacache";
1621 1621 packageName = "cacache";
1622 1622 version = "10.0.4";
1623 1623 src = fetchurl {
1624 1624 url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz";
1625 1625 sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==";
1626 1626 };
1627 1627 };
1628 1628 "cache-base-1.0.1" = {
1629 1629 name = "cache-base";
1630 1630 packageName = "cache-base";
1631 1631 version = "1.0.1";
1632 1632 src = fetchurl {
1633 1633 url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
1634 1634 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
1635 1635 };
1636 1636 };
1637 1637 "camel-case-3.0.0" = {
1638 1638 name = "camel-case";
1639 1639 packageName = "camel-case";
1640 1640 version = "3.0.0";
1641 1641 src = fetchurl {
1642 1642 url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz";
1643 1643 sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73";
1644 1644 };
1645 1645 };
1646 1646 "camelcase-1.2.1" = {
1647 1647 name = "camelcase";
1648 1648 packageName = "camelcase";
1649 1649 version = "1.2.1";
1650 1650 src = fetchurl {
1651 1651 url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
1652 1652 sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
1653 1653 };
1654 1654 };
1655 "camelcase-5.0.0" = {
1655 "camelcase-5.3.1" = {
1656 1656 name = "camelcase";
1657 1657 packageName = "camelcase";
1658 version = "5.0.0";
1659 src = fetchurl {
1660 url = "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz";
1661 sha512 = "faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==";
1658 version = "5.3.1";
1659 src = fetchurl {
1660 url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz";
1661 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==";
1662 1662 };
1663 1663 };
1664 1664 "caniuse-api-1.6.1" = {
1665 1665 name = "caniuse-api";
1666 1666 packageName = "caniuse-api";
1667 1667 version = "1.6.1";
1668 1668 src = fetchurl {
1669 1669 url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz";
1670 1670 sha1 = "b534e7c734c4f81ec5fbe8aca2ad24354b962c6c";
1671 1671 };
1672 1672 };
1673 "caniuse-db-1.0.30000939" = {
1673 "caniuse-db-1.0.30000967" = {
1674 1674 name = "caniuse-db";
1675 1675 packageName = "caniuse-db";
1676 version = "1.0.30000939";
1677 src = fetchurl {
1678 url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000939.tgz";
1679 sha512 = "nB5tLf3hOs+biXl1lhKjHRgNC0J1I7H52h/t1FP7qxARKKwpB0z+P/JewJLYAlxCBP/q7rxJzQzHHrQMl0viKg==";
1680 };
1681 };
1682 "caniuse-lite-1.0.30000939" = {
1676 version = "1.0.30000967";
1677 src = fetchurl {
1678 url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000967.tgz";
1679 sha512 = "70gk6cLSD5rItxnZ7WUxyCpM9LAjEb1tVzlENQfXQXZS/IiGnfAC6u32G5cZFlDBKjNPBIta/QSx5CZLZepxRA==";
1680 };
1681 };
1682 "caniuse-lite-1.0.30000967" = {
1683 1683 name = "caniuse-lite";
1684 1684 packageName = "caniuse-lite";
1685 version = "1.0.30000939";
1686 src = fetchurl {
1687 url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000939.tgz";
1688 sha512 = "oXB23ImDJOgQpGjRv1tCtzAvJr4/OvrHi5SO2vUgB0g0xpdZZoA/BxfImiWfdwoYdUTtQrPsXsvYU/dmCSM8gg==";
1685 version = "1.0.30000967";
1686 src = fetchurl {
1687 url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000967.tgz";
1688 sha512 = "rUBIbap+VJfxTzrM4akJ00lkvVb5/n5v3EGXfWzSH5zT8aJmGzjA8HWhJ4U6kCpzxozUSnB+yvAYDRPY6mRpgQ==";
1689 1689 };
1690 1690 };
1691 1691 "caseless-0.12.0" = {
1692 1692 name = "caseless";
1693 1693 packageName = "caseless";
1694 1694 version = "0.12.0";
1695 1695 src = fetchurl {
1696 1696 url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
1697 1697 sha1 = "1b681c21ff84033c826543090689420d187151dc";
1698 1698 };
1699 1699 };
1700 1700 "center-align-0.1.3" = {
1701 1701 name = "center-align";
1702 1702 packageName = "center-align";
1703 1703 version = "0.1.3";
1704 1704 src = fetchurl {
1705 1705 url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
1706 1706 sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
1707 1707 };
1708 1708 };
1709 1709 "chalk-0.5.1" = {
1710 1710 name = "chalk";
1711 1711 packageName = "chalk";
1712 1712 version = "0.5.1";
1713 1713 src = fetchurl {
1714 1714 url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
1715 1715 sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
1716 1716 };
1717 1717 };
1718 1718 "chalk-1.1.3" = {
1719 1719 name = "chalk";
1720 1720 packageName = "chalk";
1721 1721 version = "1.1.3";
1722 1722 src = fetchurl {
1723 1723 url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
1724 1724 sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
1725 1725 };
1726 1726 };
1727 1727 "chalk-2.4.2" = {
1728 1728 name = "chalk";
1729 1729 packageName = "chalk";
1730 1730 version = "2.4.2";
1731 1731 src = fetchurl {
1732 1732 url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz";
1733 1733 sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==";
1734 1734 };
1735 1735 };
1736 "chokidar-2.1.2" = {
1736 "chokidar-2.1.5" = {
1737 1737 name = "chokidar";
1738 1738 packageName = "chokidar";
1739 version = "2.1.2";
1740 src = fetchurl {
1741 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.2.tgz";
1742 sha512 = "IwXUx0FXc5ibYmPC2XeEj5mpXoV66sR+t3jqu2NS2GYwCktt3KF1/Qqjws/NkegajBA4RbZ5+DDwlOiJsxDHEg==";
1739 version = "2.1.5";
1740 src = fetchurl {
1741 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.5.tgz";
1742 sha512 = "i0TprVWp+Kj4WRPtInjexJ8Q+BqTE909VpH8xVhXrJkoc5QC8VO9TryGOqTr+2hljzc1sC62t22h5tZePodM/A==";
1743 1743 };
1744 1744 };
1745 1745 "chownr-1.1.1" = {
1746 1746 name = "chownr";
1747 1747 packageName = "chownr";
1748 1748 version = "1.1.1";
1749 1749 src = fetchurl {
1750 1750 url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz";
1751 1751 sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==";
1752 1752 };
1753 1753 };
1754 1754 "chrome-trace-event-1.0.0" = {
1755 1755 name = "chrome-trace-event";
1756 1756 packageName = "chrome-trace-event";
1757 1757 version = "1.0.0";
1758 1758 src = fetchurl {
1759 1759 url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz";
1760 1760 sha512 = "xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==";
1761 1761 };
1762 1762 };
1763 1763 "cipher-base-1.0.4" = {
1764 1764 name = "cipher-base";
1765 1765 packageName = "cipher-base";
1766 1766 version = "1.0.4";
1767 1767 src = fetchurl {
1768 1768 url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
1769 1769 sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==";
1770 1770 };
1771 1771 };
1772 1772 "clap-1.2.3" = {
1773 1773 name = "clap";
1774 1774 packageName = "clap";
1775 1775 version = "1.2.3";
1776 1776 src = fetchurl {
1777 1777 url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz";
1778 1778 sha512 = "4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==";
1779 1779 };
1780 1780 };
1781 1781 "class-utils-0.3.6" = {
1782 1782 name = "class-utils";
1783 1783 packageName = "class-utils";
1784 1784 version = "0.3.6";
1785 1785 src = fetchurl {
1786 1786 url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
1787 1787 sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
1788 1788 };
1789 1789 };
1790 1790 "clean-css-4.2.1" = {
1791 1791 name = "clean-css";
1792 1792 packageName = "clean-css";
1793 1793 version = "4.2.1";
1794 1794 src = fetchurl {
1795 1795 url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz";
1796 1796 sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==";
1797 1797 };
1798 1798 };
1799 1799 "cli-1.0.1" = {
1800 1800 name = "cli";
1801 1801 packageName = "cli";
1802 1802 version = "1.0.1";
1803 1803 src = fetchurl {
1804 1804 url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz";
1805 1805 sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
1806 1806 };
1807 1807 };
1808 1808 "clipboard-2.0.4" = {
1809 1809 name = "clipboard";
1810 1810 packageName = "clipboard";
1811 1811 version = "2.0.4";
1812 1812 src = fetchurl {
1813 1813 url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.4.tgz";
1814 1814 sha512 = "Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==";
1815 1815 };
1816 1816 };
1817 1817 "cliui-2.1.0" = {
1818 1818 name = "cliui";
1819 1819 packageName = "cliui";
1820 1820 version = "2.1.0";
1821 1821 src = fetchurl {
1822 1822 url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
1823 1823 sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
1824 1824 };
1825 1825 };
1826 1826 "cliui-4.1.0" = {
1827 1827 name = "cliui";
1828 1828 packageName = "cliui";
1829 1829 version = "4.1.0";
1830 1830 src = fetchurl {
1831 1831 url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz";
1832 1832 sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==";
1833 1833 };
1834 1834 };
1835 1835 "clone-1.0.4" = {
1836 1836 name = "clone";
1837 1837 packageName = "clone";
1838 1838 version = "1.0.4";
1839 1839 src = fetchurl {
1840 1840 url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
1841 1841 sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
1842 1842 };
1843 1843 };
1844 1844 "clone-2.1.2" = {
1845 1845 name = "clone";
1846 1846 packageName = "clone";
1847 1847 version = "2.1.2";
1848 1848 src = fetchurl {
1849 1849 url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz";
1850 1850 sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f";
1851 1851 };
1852 1852 };
1853 1853 "co-4.6.0" = {
1854 1854 name = "co";
1855 1855 packageName = "co";
1856 1856 version = "4.6.0";
1857 1857 src = fetchurl {
1858 1858 url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
1859 1859 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
1860 1860 };
1861 1861 };
1862 1862 "coa-1.0.4" = {
1863 1863 name = "coa";
1864 1864 packageName = "coa";
1865 1865 version = "1.0.4";
1866 1866 src = fetchurl {
1867 1867 url = "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz";
1868 1868 sha1 = "a9ef153660d6a86a8bdec0289a5c684d217432fd";
1869 1869 };
1870 1870 };
1871 1871 "code-point-at-1.1.0" = {
1872 1872 name = "code-point-at";
1873 1873 packageName = "code-point-at";
1874 1874 version = "1.1.0";
1875 1875 src = fetchurl {
1876 1876 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
1877 1877 sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
1878 1878 };
1879 1879 };
1880 1880 "coffee-script-1.3.3" = {
1881 1881 name = "coffee-script";
1882 1882 packageName = "coffee-script";
1883 1883 version = "1.3.3";
1884 1884 src = fetchurl {
1885 1885 url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz";
1886 1886 sha1 = "150d6b4cb522894369efed6a2101c20bc7f4a4f4";
1887 1887 };
1888 1888 };
1889 1889 "collection-visit-1.0.0" = {
1890 1890 name = "collection-visit";
1891 1891 packageName = "collection-visit";
1892 1892 version = "1.0.0";
1893 1893 src = fetchurl {
1894 1894 url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
1895 1895 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
1896 1896 };
1897 1897 };
1898 1898 "color-0.11.4" = {
1899 1899 name = "color";
1900 1900 packageName = "color";
1901 1901 version = "0.11.4";
1902 1902 src = fetchurl {
1903 1903 url = "https://registry.npmjs.org/color/-/color-0.11.4.tgz";
1904 1904 sha1 = "6d7b5c74fb65e841cd48792ad1ed5e07b904d764";
1905 1905 };
1906 1906 };
1907 1907 "color-convert-1.9.3" = {
1908 1908 name = "color-convert";
1909 1909 packageName = "color-convert";
1910 1910 version = "1.9.3";
1911 1911 src = fetchurl {
1912 1912 url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz";
1913 1913 sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==";
1914 1914 };
1915 1915 };
1916 1916 "color-name-1.1.3" = {
1917 1917 name = "color-name";
1918 1918 packageName = "color-name";
1919 1919 version = "1.1.3";
1920 1920 src = fetchurl {
1921 1921 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
1922 1922 sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
1923 1923 };
1924 1924 };
1925 1925 "color-string-0.3.0" = {
1926 1926 name = "color-string";
1927 1927 packageName = "color-string";
1928 1928 version = "0.3.0";
1929 1929 src = fetchurl {
1930 1930 url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz";
1931 1931 sha1 = "27d46fb67025c5c2fa25993bfbf579e47841b991";
1932 1932 };
1933 1933 };
1934 1934 "colormin-1.1.2" = {
1935 1935 name = "colormin";
1936 1936 packageName = "colormin";
1937 1937 version = "1.1.2";
1938 1938 src = fetchurl {
1939 1939 url = "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz";
1940 1940 sha1 = "ea2f7420a72b96881a38aae59ec124a6f7298133";
1941 1941 };
1942 1942 };
1943 1943 "colors-0.6.2" = {
1944 1944 name = "colors";
1945 1945 packageName = "colors";
1946 1946 version = "0.6.2";
1947 1947 src = fetchurl {
1948 1948 url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
1949 1949 sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
1950 1950 };
1951 1951 };
1952 1952 "colors-1.1.2" = {
1953 1953 name = "colors";
1954 1954 packageName = "colors";
1955 1955 version = "1.1.2";
1956 1956 src = fetchurl {
1957 1957 url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
1958 1958 sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
1959 1959 };
1960 1960 };
1961 1961 "colors-1.3.3" = {
1962 1962 name = "colors";
1963 1963 packageName = "colors";
1964 1964 version = "1.3.3";
1965 1965 src = fetchurl {
1966 1966 url = "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz";
1967 1967 sha512 = "mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==";
1968 1968 };
1969 1969 };
1970 "combined-stream-1.0.7" = {
1970 "combined-stream-1.0.8" = {
1971 1971 name = "combined-stream";
1972 1972 packageName = "combined-stream";
1973 version = "1.0.7";
1974 src = fetchurl {
1975 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz";
1976 sha512 = "brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==";
1973 version = "1.0.8";
1974 src = fetchurl {
1975 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz";
1976 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==";
1977 1977 };
1978 1978 };
1979 1979 "commander-2.14.1" = {
1980 1980 name = "commander";
1981 1981 packageName = "commander";
1982 1982 version = "2.14.1";
1983 1983 src = fetchurl {
1984 1984 url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz";
1985 1985 sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==";
1986 1986 };
1987 1987 };
1988 1988 "commander-2.17.1" = {
1989 1989 name = "commander";
1990 1990 packageName = "commander";
1991 1991 version = "2.17.1";
1992 1992 src = fetchurl {
1993 1993 url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz";
1994 1994 sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==";
1995 1995 };
1996 1996 };
1997 "commander-2.19.0" = {
1998 name = "commander";
1999 packageName = "commander";
2000 version = "2.19.0";
2001 src = fetchurl {
2002 url = "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz";
2003 sha512 = "6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==";
2004 };
2005 };
1997 2006 "commondir-1.0.1" = {
1998 2007 name = "commondir";
1999 2008 packageName = "commondir";
2000 2009 version = "1.0.1";
2001 2010 src = fetchurl {
2002 2011 url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz";
2003 2012 sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
2004 2013 };
2005 2014 };
2006 "component-emitter-1.2.1" = {
2015 "component-emitter-1.3.0" = {
2007 2016 name = "component-emitter";
2008 2017 packageName = "component-emitter";
2009 version = "1.2.1";
2010 src = fetchurl {
2011 url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
2012 sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
2018 version = "1.3.0";
2019 src = fetchurl {
2020 url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz";
2021 sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==";
2013 2022 };
2014 2023 };
2015 2024 "concat-map-0.0.1" = {
2016 2025 name = "concat-map";
2017 2026 packageName = "concat-map";
2018 2027 version = "0.0.1";
2019 2028 src = fetchurl {
2020 2029 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
2021 2030 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
2022 2031 };
2023 2032 };
2024 2033 "concat-stream-1.6.2" = {
2025 2034 name = "concat-stream";
2026 2035 packageName = "concat-stream";
2027 2036 version = "1.6.2";
2028 2037 src = fetchurl {
2029 2038 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
2030 2039 sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
2031 2040 };
2032 2041 };
2033 2042 "console-browserify-1.1.0" = {
2034 2043 name = "console-browserify";
2035 2044 packageName = "console-browserify";
2036 2045 version = "1.1.0";
2037 2046 src = fetchurl {
2038 2047 url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
2039 2048 sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
2040 2049 };
2041 2050 };
2042 2051 "constants-browserify-1.0.0" = {
2043 2052 name = "constants-browserify";
2044 2053 packageName = "constants-browserify";
2045 2054 version = "1.0.0";
2046 2055 src = fetchurl {
2047 2056 url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
2048 2057 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
2049 2058 };
2050 2059 };
2051 2060 "convert-source-map-1.6.0" = {
2052 2061 name = "convert-source-map";
2053 2062 packageName = "convert-source-map";
2054 2063 version = "1.6.0";
2055 2064 src = fetchurl {
2056 2065 url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz";
2057 2066 sha512 = "eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==";
2058 2067 };
2059 2068 };
2060 2069 "copy-concurrently-1.0.5" = {
2061 2070 name = "copy-concurrently";
2062 2071 packageName = "copy-concurrently";
2063 2072 version = "1.0.5";
2064 2073 src = fetchurl {
2065 2074 url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
2066 2075 sha512 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==";
2067 2076 };
2068 2077 };
2069 2078 "copy-descriptor-0.1.1" = {
2070 2079 name = "copy-descriptor";
2071 2080 packageName = "copy-descriptor";
2072 2081 version = "0.1.1";
2073 2082 src = fetchurl {
2074 2083 url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
2075 2084 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
2076 2085 };
2077 2086 };
2078 2087 "copy-webpack-plugin-4.6.0" = {
2079 2088 name = "copy-webpack-plugin";
2080 2089 packageName = "copy-webpack-plugin";
2081 2090 version = "4.6.0";
2082 2091 src = fetchurl {
2083 2092 url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz";
2084 2093 sha512 = "Y+SQCF+0NoWQryez2zXn5J5knmr9z/9qSQt7fbL78u83rxmigOy8X5+BFn8CFSuX+nKT8gpYwJX68ekqtQt6ZA==";
2085 2094 };
2086 2095 };
2087 2096 "core-js-2.6.5" = {
2088 2097 name = "core-js";
2089 2098 packageName = "core-js";
2090 2099 version = "2.6.5";
2091 2100 src = fetchurl {
2092 2101 url = "https://registry.npmjs.org/core-js/-/core-js-2.6.5.tgz";
2093 2102 sha512 = "klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==";
2094 2103 };
2095 2104 };
2096 2105 "core-util-is-1.0.2" = {
2097 2106 name = "core-util-is";
2098 2107 packageName = "core-util-is";
2099 2108 version = "1.0.2";
2100 2109 src = fetchurl {
2101 2110 url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
2102 2111 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
2103 2112 };
2104 2113 };
2105 2114 "create-ecdh-4.0.3" = {
2106 2115 name = "create-ecdh";
2107 2116 packageName = "create-ecdh";
2108 2117 version = "4.0.3";
2109 2118 src = fetchurl {
2110 2119 url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz";
2111 2120 sha512 = "GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==";
2112 2121 };
2113 2122 };
2114 2123 "create-hash-1.2.0" = {
2115 2124 name = "create-hash";
2116 2125 packageName = "create-hash";
2117 2126 version = "1.2.0";
2118 2127 src = fetchurl {
2119 2128 url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz";
2120 2129 sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==";
2121 2130 };
2122 2131 };
2123 2132 "create-hmac-1.1.7" = {
2124 2133 name = "create-hmac";
2125 2134 packageName = "create-hmac";
2126 2135 version = "1.1.7";
2127 2136 src = fetchurl {
2128 2137 url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz";
2129 2138 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
2130 2139 };
2131 2140 };
2132 2141 "cross-spawn-6.0.5" = {
2133 2142 name = "cross-spawn";
2134 2143 packageName = "cross-spawn";
2135 2144 version = "6.0.5";
2136 2145 src = fetchurl {
2137 2146 url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz";
2138 2147 sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
2139 2148 };
2140 2149 };
2141 2150 "cryptiles-2.0.5" = {
2142 2151 name = "cryptiles";
2143 2152 packageName = "cryptiles";
2144 2153 version = "2.0.5";
2145 2154 src = fetchurl {
2146 2155 url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
2147 2156 sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
2148 2157 };
2149 2158 };
2150 2159 "crypto-browserify-3.12.0" = {
2151 2160 name = "crypto-browserify";
2152 2161 packageName = "crypto-browserify";
2153 2162 version = "3.12.0";
2154 2163 src = fetchurl {
2155 2164 url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
2156 2165 sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
2157 2166 };
2158 2167 };
2159 2168 "css-color-names-0.0.4" = {
2160 2169 name = "css-color-names";
2161 2170 packageName = "css-color-names";
2162 2171 version = "0.0.4";
2163 2172 src = fetchurl {
2164 2173 url = "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz";
2165 2174 sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0";
2166 2175 };
2167 2176 };
2168 2177 "css-loader-0.28.11" = {
2169 2178 name = "css-loader";
2170 2179 packageName = "css-loader";
2171 2180 version = "0.28.11";
2172 2181 src = fetchurl {
2173 2182 url = "https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz";
2174 2183 sha512 = "wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==";
2175 2184 };
2176 2185 };
2177 2186 "css-select-1.2.0" = {
2178 2187 name = "css-select";
2179 2188 packageName = "css-select";
2180 2189 version = "1.2.0";
2181 2190 src = fetchurl {
2182 2191 url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz";
2183 2192 sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
2184 2193 };
2185 2194 };
2186 2195 "css-selector-tokenizer-0.7.1" = {
2187 2196 name = "css-selector-tokenizer";
2188 2197 packageName = "css-selector-tokenizer";
2189 2198 version = "0.7.1";
2190 2199 src = fetchurl {
2191 2200 url = "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz";
2192 2201 sha512 = "xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==";
2193 2202 };
2194 2203 };
2195 2204 "css-what-2.1.3" = {
2196 2205 name = "css-what";
2197 2206 packageName = "css-what";
2198 2207 version = "2.1.3";
2199 2208 src = fetchurl {
2200 2209 url = "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz";
2201 2210 sha512 = "a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==";
2202 2211 };
2203 2212 };
2204 2213 "cssesc-0.1.0" = {
2205 2214 name = "cssesc";
2206 2215 packageName = "cssesc";
2207 2216 version = "0.1.0";
2208 2217 src = fetchurl {
2209 2218 url = "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz";
2210 2219 sha1 = "c814903e45623371a0477b40109aaafbeeaddbb4";
2211 2220 };
2212 2221 };
2213 2222 "cssnano-3.10.0" = {
2214 2223 name = "cssnano";
2215 2224 packageName = "cssnano";
2216 2225 version = "3.10.0";
2217 2226 src = fetchurl {
2218 2227 url = "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz";
2219 2228 sha1 = "4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38";
2220 2229 };
2221 2230 };
2222 2231 "csso-2.3.2" = {
2223 2232 name = "csso";
2224 2233 packageName = "csso";
2225 2234 version = "2.3.2";
2226 2235 src = fetchurl {
2227 2236 url = "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz";
2228 2237 sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85";
2229 2238 };
2230 2239 };
2231 2240 "cyclist-0.2.2" = {
2232 2241 name = "cyclist";
2233 2242 packageName = "cyclist";
2234 2243 version = "0.2.2";
2235 2244 src = fetchurl {
2236 2245 url = "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz";
2237 2246 sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640";
2238 2247 };
2239 2248 };
2240 2249 "dashdash-1.14.1" = {
2241 2250 name = "dashdash";
2242 2251 packageName = "dashdash";
2243 2252 version = "1.14.1";
2244 2253 src = fetchurl {
2245 2254 url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
2246 2255 sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
2247 2256 };
2248 2257 };
2249 2258 "date-now-0.1.4" = {
2250 2259 name = "date-now";
2251 2260 packageName = "date-now";
2252 2261 version = "0.1.4";
2253 2262 src = fetchurl {
2254 2263 url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz";
2255 2264 sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
2256 2265 };
2257 2266 };
2258 2267 "dateformat-1.0.2-1.2.3" = {
2259 2268 name = "dateformat";
2260 2269 packageName = "dateformat";
2261 2270 version = "1.0.2-1.2.3";
2262 2271 src = fetchurl {
2263 2272 url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
2264 2273 sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
2265 2274 };
2266 2275 };
2267 2276 "debug-0.7.4" = {
2268 2277 name = "debug";
2269 2278 packageName = "debug";
2270 2279 version = "0.7.4";
2271 2280 src = fetchurl {
2272 2281 url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz";
2273 2282 sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39";
2274 2283 };
2275 2284 };
2276 2285 "debug-2.6.9" = {
2277 2286 name = "debug";
2278 2287 packageName = "debug";
2279 2288 version = "2.6.9";
2280 2289 src = fetchurl {
2281 2290 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
2282 2291 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
2283 2292 };
2284 2293 };
2285 2294 "decamelize-1.2.0" = {
2286 2295 name = "decamelize";
2287 2296 packageName = "decamelize";
2288 2297 version = "1.2.0";
2289 2298 src = fetchurl {
2290 2299 url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
2291 2300 sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
2292 2301 };
2293 2302 };
2294 2303 "decode-uri-component-0.2.0" = {
2295 2304 name = "decode-uri-component";
2296 2305 packageName = "decode-uri-component";
2297 2306 version = "0.2.0";
2298 2307 src = fetchurl {
2299 2308 url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
2300 2309 sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
2301 2310 };
2302 2311 };
2303 2312 "deep-for-each-2.0.3" = {
2304 2313 name = "deep-for-each";
2305 2314 packageName = "deep-for-each";
2306 2315 version = "2.0.3";
2307 2316 src = fetchurl {
2308 2317 url = "https://registry.npmjs.org/deep-for-each/-/deep-for-each-2.0.3.tgz";
2309 2318 sha512 = "Y9mu+rplGcNZ7veer+5rqcdI9w3aPb7/WyE/nYnsuPevaE2z5YuC2u7/Gz/hIKsa0zo8sE8gKoBimSNsO/sr+A==";
2310 2319 };
2311 2320 };
2312 2321 "define-properties-1.1.3" = {
2313 2322 name = "define-properties";
2314 2323 packageName = "define-properties";
2315 2324 version = "1.1.3";
2316 2325 src = fetchurl {
2317 2326 url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz";
2318 2327 sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==";
2319 2328 };
2320 2329 };
2321 2330 "define-property-0.2.5" = {
2322 2331 name = "define-property";
2323 2332 packageName = "define-property";
2324 2333 version = "0.2.5";
2325 2334 src = fetchurl {
2326 2335 url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
2327 2336 sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
2328 2337 };
2329 2338 };
2330 2339 "define-property-1.0.0" = {
2331 2340 name = "define-property";
2332 2341 packageName = "define-property";
2333 2342 version = "1.0.0";
2334 2343 src = fetchurl {
2335 2344 url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
2336 2345 sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
2337 2346 };
2338 2347 };
2339 2348 "define-property-2.0.2" = {
2340 2349 name = "define-property";
2341 2350 packageName = "define-property";
2342 2351 version = "2.0.2";
2343 2352 src = fetchurl {
2344 2353 url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
2345 2354 sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
2346 2355 };
2347 2356 };
2348 2357 "defined-1.0.0" = {
2349 2358 name = "defined";
2350 2359 packageName = "defined";
2351 2360 version = "1.0.0";
2352 2361 src = fetchurl {
2353 2362 url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz";
2354 2363 sha1 = "c98d9bcef75674188e110969151199e39b1fa693";
2355 2364 };
2356 2365 };
2357 2366 "delayed-stream-1.0.0" = {
2358 2367 name = "delayed-stream";
2359 2368 packageName = "delayed-stream";
2360 2369 version = "1.0.0";
2361 2370 src = fetchurl {
2362 2371 url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
2363 2372 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
2364 2373 };
2365 2374 };
2366 2375 "delegate-3.2.0" = {
2367 2376 name = "delegate";
2368 2377 packageName = "delegate";
2369 2378 version = "3.2.0";
2370 2379 src = fetchurl {
2371 2380 url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz";
2372 2381 sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==";
2373 2382 };
2374 2383 };
2375 2384 "des.js-1.0.0" = {
2376 2385 name = "des.js";
2377 2386 packageName = "des.js";
2378 2387 version = "1.0.0";
2379 2388 src = fetchurl {
2380 2389 url = "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz";
2381 2390 sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc";
2382 2391 };
2383 2392 };
2384 2393 "detect-file-1.0.0" = {
2385 2394 name = "detect-file";
2386 2395 packageName = "detect-file";
2387 2396 version = "1.0.0";
2388 2397 src = fetchurl {
2389 2398 url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
2390 2399 sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
2391 2400 };
2392 2401 };
2393 2402 "detect-indent-4.0.0" = {
2394 2403 name = "detect-indent";
2395 2404 packageName = "detect-indent";
2396 2405 version = "4.0.0";
2397 2406 src = fetchurl {
2398 2407 url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz";
2399 2408 sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
2400 2409 };
2401 2410 };
2402 2411 "diffie-hellman-5.0.3" = {
2403 2412 name = "diffie-hellman";
2404 2413 packageName = "diffie-hellman";
2405 2414 version = "5.0.3";
2406 2415 src = fetchurl {
2407 2416 url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
2408 2417 sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==";
2409 2418 };
2410 2419 };
2411 2420 "dir-glob-2.2.2" = {
2412 2421 name = "dir-glob";
2413 2422 packageName = "dir-glob";
2414 2423 version = "2.2.2";
2415 2424 src = fetchurl {
2416 2425 url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz";
2417 2426 sha512 = "f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==";
2418 2427 };
2419 2428 };
2420 2429 "dom-converter-0.2.0" = {
2421 2430 name = "dom-converter";
2422 2431 packageName = "dom-converter";
2423 2432 version = "0.2.0";
2424 2433 src = fetchurl {
2425 2434 url = "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz";
2426 2435 sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==";
2427 2436 };
2428 2437 };
2429 2438 "dom-serializer-0.1.1" = {
2430 2439 name = "dom-serializer";
2431 2440 packageName = "dom-serializer";
2432 2441 version = "0.1.1";
2433 2442 src = fetchurl {
2434 2443 url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz";
2435 2444 sha512 = "l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==";
2436 2445 };
2437 2446 };
2438 2447 "dom5-2.3.0" = {
2439 2448 name = "dom5";
2440 2449 packageName = "dom5";
2441 2450 version = "2.3.0";
2442 2451 src = fetchurl {
2443 2452 url = "https://registry.npmjs.org/dom5/-/dom5-2.3.0.tgz";
2444 2453 sha1 = "f8204975bd0dacbbe5b58a8a93ffc1fed0ffcd2a";
2445 2454 };
2446 2455 };
2447 2456 "domain-browser-1.2.0" = {
2448 2457 name = "domain-browser";
2449 2458 packageName = "domain-browser";
2450 2459 version = "1.2.0";
2451 2460 src = fetchurl {
2452 2461 url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz";
2453 2462 sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==";
2454 2463 };
2455 2464 };
2456 2465 "domelementtype-1.3.1" = {
2457 2466 name = "domelementtype";
2458 2467 packageName = "domelementtype";
2459 2468 version = "1.3.1";
2460 2469 src = fetchurl {
2461 2470 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz";
2462 2471 sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==";
2463 2472 };
2464 2473 };
2465 2474 "domhandler-2.3.0" = {
2466 2475 name = "domhandler";
2467 2476 packageName = "domhandler";
2468 2477 version = "2.3.0";
2469 2478 src = fetchurl {
2470 2479 url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz";
2471 2480 sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738";
2472 2481 };
2473 2482 };
2474 2483 "domutils-1.5.1" = {
2475 2484 name = "domutils";
2476 2485 packageName = "domutils";
2477 2486 version = "1.5.1";
2478 2487 src = fetchurl {
2479 2488 url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
2480 2489 sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
2481 2490 };
2482 2491 };
2492 "dropzone-5.5.1" = {
2493 name = "dropzone";
2494 packageName = "dropzone";
2495 version = "5.5.1";
2496 src = fetchurl {
2497 url = "https://registry.npmjs.org/dropzone/-/dropzone-5.5.1.tgz";
2498 sha512 = "3VduRWLxx9hbVr42QieQN25mx/I61/mRdUSuxAmDGdDqZIN8qtP7tcKMa3KfpJjuGjOJGYYUzzeq6eGDnkzesA==";
2499 };
2500 };
2483 2501 "duplexify-3.7.1" = {
2484 2502 name = "duplexify";
2485 2503 packageName = "duplexify";
2486 2504 version = "3.7.1";
2487 2505 src = fetchurl {
2488 2506 url = "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz";
2489 2507 sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==";
2490 2508 };
2491 2509 };
2492 2510 "ecc-jsbn-0.1.2" = {
2493 2511 name = "ecc-jsbn";
2494 2512 packageName = "ecc-jsbn";
2495 2513 version = "0.1.2";
2496 2514 src = fetchurl {
2497 2515 url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
2498 2516 sha1 = "3a83a904e54353287874c564b7549386849a98c9";
2499 2517 };
2500 2518 };
2501 "electron-to-chromium-1.3.113" = {
2519 "electron-to-chromium-1.3.133" = {
2502 2520 name = "electron-to-chromium";
2503 2521 packageName = "electron-to-chromium";
2504 version = "1.3.113";
2505 src = fetchurl {
2506 url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz";
2507 sha512 = "De+lPAxEcpxvqPTyZAXELNpRZXABRxf+uL/rSykstQhzj/B0l1150G/ExIIxKc16lI89Hgz81J0BHAcbTqK49g==";
2522 version = "1.3.133";
2523 src = fetchurl {
2524 url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.133.tgz";
2525 sha512 = "lyoC8aoqbbDqsprb6aPdt9n3DpOZZzdz/T4IZKsR0/dkZIxnJVUjjcpOSwA66jPRIOyDAamCTAUqweU05kKNSg==";
2508 2526 };
2509 2527 };
2510 2528 "elliptic-6.4.1" = {
2511 2529 name = "elliptic";
2512 2530 packageName = "elliptic";
2513 2531 version = "6.4.1";
2514 2532 src = fetchurl {
2515 2533 url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz";
2516 2534 sha512 = "BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==";
2517 2535 };
2518 2536 };
2519 2537 "emojis-list-2.1.0" = {
2520 2538 name = "emojis-list";
2521 2539 packageName = "emojis-list";
2522 2540 version = "2.1.0";
2523 2541 src = fetchurl {
2524 2542 url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz";
2525 2543 sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
2526 2544 };
2527 2545 };
2528 2546 "end-of-stream-1.4.1" = {
2529 2547 name = "end-of-stream";
2530 2548 packageName = "end-of-stream";
2531 2549 version = "1.4.1";
2532 2550 src = fetchurl {
2533 2551 url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz";
2534 2552 sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==";
2535 2553 };
2536 2554 };
2537 2555 "enhanced-resolve-3.4.1" = {
2538 2556 name = "enhanced-resolve";
2539 2557 packageName = "enhanced-resolve";
2540 2558 version = "3.4.1";
2541 2559 src = fetchurl {
2542 2560 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz";
2543 2561 sha1 = "0421e339fd71419b3da13d129b3979040230476e";
2544 2562 };
2545 2563 };
2546 2564 "enhanced-resolve-4.1.0" = {
2547 2565 name = "enhanced-resolve";
2548 2566 packageName = "enhanced-resolve";
2549 2567 version = "4.1.0";
2550 2568 src = fetchurl {
2551 2569 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz";
2552 2570 sha512 = "F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==";
2553 2571 };
2554 2572 };
2555 2573 "entities-1.0.0" = {
2556 2574 name = "entities";
2557 2575 packageName = "entities";
2558 2576 version = "1.0.0";
2559 2577 src = fetchurl {
2560 2578 url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz";
2561 2579 sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26";
2562 2580 };
2563 2581 };
2564 2582 "entities-1.1.2" = {
2565 2583 name = "entities";
2566 2584 packageName = "entities";
2567 2585 version = "1.1.2";
2568 2586 src = fetchurl {
2569 2587 url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz";
2570 2588 sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==";
2571 2589 };
2572 2590 };
2573 2591 "errno-0.1.7" = {
2574 2592 name = "errno";
2575 2593 packageName = "errno";
2576 2594 version = "0.1.7";
2577 2595 src = fetchurl {
2578 2596 url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
2579 2597 sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
2580 2598 };
2581 2599 };
2582 2600 "es-abstract-1.13.0" = {
2583 2601 name = "es-abstract";
2584 2602 packageName = "es-abstract";
2585 2603 version = "1.13.0";
2586 2604 src = fetchurl {
2587 2605 url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz";
2588 2606 sha512 = "vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==";
2589 2607 };
2590 2608 };
2591 2609 "es-to-primitive-1.2.0" = {
2592 2610 name = "es-to-primitive";
2593 2611 packageName = "es-to-primitive";
2594 2612 version = "1.2.0";
2595 2613 src = fetchurl {
2596 2614 url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz";
2597 2615 sha512 = "qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==";
2598 2616 };
2599 2617 };
2600 2618 "es6-templates-0.2.3" = {
2601 2619 name = "es6-templates";
2602 2620 packageName = "es6-templates";
2603 2621 version = "0.2.3";
2604 2622 src = fetchurl {
2605 2623 url = "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz";
2606 2624 sha1 = "5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4";
2607 2625 };
2608 2626 };
2609 2627 "escape-string-regexp-1.0.5" = {
2610 2628 name = "escape-string-regexp";
2611 2629 packageName = "escape-string-regexp";
2612 2630 version = "1.0.5";
2613 2631 src = fetchurl {
2614 2632 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
2615 2633 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
2616 2634 };
2617 2635 };
2618 "eslint-scope-4.0.0" = {
2636 "eslint-scope-4.0.3" = {
2619 2637 name = "eslint-scope";
2620 2638 packageName = "eslint-scope";
2621 version = "4.0.0";
2622 src = fetchurl {
2623 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz";
2624 sha512 = "1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==";
2639 version = "4.0.3";
2640 src = fetchurl {
2641 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz";
2642 sha512 = "p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==";
2625 2643 };
2626 2644 };
2627 2645 "espree-3.5.4" = {
2628 2646 name = "espree";
2629 2647 packageName = "espree";
2630 2648 version = "3.5.4";
2631 2649 src = fetchurl {
2632 2650 url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz";
2633 2651 sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==";
2634 2652 };
2635 2653 };
2636 2654 "esprima-1.0.4" = {
2637 2655 name = "esprima";
2638 2656 packageName = "esprima";
2639 2657 version = "1.0.4";
2640 2658 src = fetchurl {
2641 2659 url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
2642 2660 sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
2643 2661 };
2644 2662 };
2645 2663 "esprima-2.7.3" = {
2646 2664 name = "esprima";
2647 2665 packageName = "esprima";
2648 2666 version = "2.7.3";
2649 2667 src = fetchurl {
2650 2668 url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz";
2651 2669 sha1 = "96e3b70d5779f6ad49cd032673d1c312767ba581";
2652 2670 };
2653 2671 };
2654 2672 "esprima-3.1.3" = {
2655 2673 name = "esprima";
2656 2674 packageName = "esprima";
2657 2675 version = "3.1.3";
2658 2676 src = fetchurl {
2659 2677 url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz";
2660 2678 sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633";
2661 2679 };
2662 2680 };
2663 2681 "esrecurse-4.2.1" = {
2664 2682 name = "esrecurse";
2665 2683 packageName = "esrecurse";
2666 2684 version = "4.2.1";
2667 2685 src = fetchurl {
2668 2686 url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz";
2669 2687 sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==";
2670 2688 };
2671 2689 };
2672 2690 "estraverse-4.2.0" = {
2673 2691 name = "estraverse";
2674 2692 packageName = "estraverse";
2675 2693 version = "4.2.0";
2676 2694 src = fetchurl {
2677 2695 url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz";
2678 2696 sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13";
2679 2697 };
2680 2698 };
2681 2699 "esutils-2.0.2" = {
2682 2700 name = "esutils";
2683 2701 packageName = "esutils";
2684 2702 version = "2.0.2";
2685 2703 src = fetchurl {
2686 2704 url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz";
2687 2705 sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b";
2688 2706 };
2689 2707 };
2690 2708 "eventemitter2-0.4.14" = {
2691 2709 name = "eventemitter2";
2692 2710 packageName = "eventemitter2";
2693 2711 version = "0.4.14";
2694 2712 src = fetchurl {
2695 2713 url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz";
2696 2714 sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab";
2697 2715 };
2698 2716 };
2699 2717 "events-3.0.0" = {
2700 2718 name = "events";
2701 2719 packageName = "events";
2702 2720 version = "3.0.0";
2703 2721 src = fetchurl {
2704 2722 url = "https://registry.npmjs.org/events/-/events-3.0.0.tgz";
2705 2723 sha512 = "Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==";
2706 2724 };
2707 2725 };
2708 2726 "evp_bytestokey-1.0.3" = {
2709 2727 name = "evp_bytestokey";
2710 2728 packageName = "evp_bytestokey";
2711 2729 version = "1.0.3";
2712 2730 src = fetchurl {
2713 2731 url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
2714 2732 sha512 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==";
2715 2733 };
2716 2734 };
2717 2735 "execa-1.0.0" = {
2718 2736 name = "execa";
2719 2737 packageName = "execa";
2720 2738 version = "1.0.0";
2721 2739 src = fetchurl {
2722 2740 url = "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz";
2723 2741 sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==";
2724 2742 };
2725 2743 };
2726 2744 "exit-0.1.2" = {
2727 2745 name = "exit";
2728 2746 packageName = "exit";
2729 2747 version = "0.1.2";
2730 2748 src = fetchurl {
2731 2749 url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
2732 2750 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
2733 2751 };
2734 2752 };
2735 2753 "expand-brackets-2.1.4" = {
2736 2754 name = "expand-brackets";
2737 2755 packageName = "expand-brackets";
2738 2756 version = "2.1.4";
2739 2757 src = fetchurl {
2740 2758 url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
2741 2759 sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
2742 2760 };
2743 2761 };
2744 2762 "expand-tilde-2.0.2" = {
2745 2763 name = "expand-tilde";
2746 2764 packageName = "expand-tilde";
2747 2765 version = "2.0.2";
2748 2766 src = fetchurl {
2749 2767 url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
2750 2768 sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
2751 2769 };
2752 2770 };
2753 2771 "exports-loader-0.6.4" = {
2754 2772 name = "exports-loader";
2755 2773 packageName = "exports-loader";
2756 2774 version = "0.6.4";
2757 2775 src = fetchurl {
2758 2776 url = "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz";
2759 2777 sha1 = "d70fc6121975b35fc12830cf52754be2740fc886";
2760 2778 };
2761 2779 };
2762 2780 "extend-3.0.2" = {
2763 2781 name = "extend";
2764 2782 packageName = "extend";
2765 2783 version = "3.0.2";
2766 2784 src = fetchurl {
2767 2785 url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
2768 2786 sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
2769 2787 };
2770 2788 };
2771 2789 "extend-shallow-2.0.1" = {
2772 2790 name = "extend-shallow";
2773 2791 packageName = "extend-shallow";
2774 2792 version = "2.0.1";
2775 2793 src = fetchurl {
2776 2794 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
2777 2795 sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
2778 2796 };
2779 2797 };
2780 2798 "extend-shallow-3.0.2" = {
2781 2799 name = "extend-shallow";
2782 2800 packageName = "extend-shallow";
2783 2801 version = "3.0.2";
2784 2802 src = fetchurl {
2785 2803 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
2786 2804 sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
2787 2805 };
2788 2806 };
2789 2807 "extglob-2.0.4" = {
2790 2808 name = "extglob";
2791 2809 packageName = "extglob";
2792 2810 version = "2.0.4";
2793 2811 src = fetchurl {
2794 2812 url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
2795 2813 sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
2796 2814 };
2797 2815 };
2798 2816 "extsprintf-1.3.0" = {
2799 2817 name = "extsprintf";
2800 2818 packageName = "extsprintf";
2801 2819 version = "1.3.0";
2802 2820 src = fetchurl {
2803 2821 url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
2804 2822 sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
2805 2823 };
2806 2824 };
2807 2825 "fast-deep-equal-2.0.1" = {
2808 2826 name = "fast-deep-equal";
2809 2827 packageName = "fast-deep-equal";
2810 2828 version = "2.0.1";
2811 2829 src = fetchurl {
2812 2830 url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz";
2813 2831 sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49";
2814 2832 };
2815 2833 };
2816 2834 "fast-json-stable-stringify-2.0.0" = {
2817 2835 name = "fast-json-stable-stringify";
2818 2836 packageName = "fast-json-stable-stringify";
2819 2837 version = "2.0.0";
2820 2838 src = fetchurl {
2821 2839 url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
2822 2840 sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
2823 2841 };
2824 2842 };
2825 2843 "fastparse-1.1.2" = {
2826 2844 name = "fastparse";
2827 2845 packageName = "fastparse";
2828 2846 version = "1.1.2";
2829 2847 src = fetchurl {
2830 2848 url = "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz";
2831 2849 sha512 = "483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==";
2832 2850 };
2833 2851 };
2834 2852 "favico.js-0.3.10" = {
2835 2853 name = "favico.js";
2836 2854 packageName = "favico.js";
2837 2855 version = "0.3.10";
2838 2856 src = fetchurl {
2839 2857 url = "https://registry.npmjs.org/favico.js/-/favico.js-0.3.10.tgz";
2840 2858 sha1 = "80586e27a117f24a8d51c18a99bdc714d4339301";
2841 2859 };
2842 2860 };
2843 2861 "faye-websocket-0.4.4" = {
2844 2862 name = "faye-websocket";
2845 2863 packageName = "faye-websocket";
2846 2864 version = "0.4.4";
2847 2865 src = fetchurl {
2848 2866 url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.4.4.tgz";
2849 2867 sha1 = "c14c5b3bf14d7417ffbfd990c0a7495cd9f337bc";
2850 2868 };
2851 2869 };
2852 2870 "file-sync-cmp-0.1.1" = {
2853 2871 name = "file-sync-cmp";
2854 2872 packageName = "file-sync-cmp";
2855 2873 version = "0.1.1";
2856 2874 src = fetchurl {
2857 2875 url = "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz";
2858 2876 sha1 = "a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b";
2859 2877 };
2860 2878 };
2861 2879 "fill-range-4.0.0" = {
2862 2880 name = "fill-range";
2863 2881 packageName = "fill-range";
2864 2882 version = "4.0.0";
2865 2883 src = fetchurl {
2866 2884 url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
2867 2885 sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
2868 2886 };
2869 2887 };
2870 2888 "find-cache-dir-1.0.0" = {
2871 2889 name = "find-cache-dir";
2872 2890 packageName = "find-cache-dir";
2873 2891 version = "1.0.0";
2874 2892 src = fetchurl {
2875 2893 url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
2876 2894 sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
2877 2895 };
2878 2896 };
2879 2897 "find-up-2.1.0" = {
2880 2898 name = "find-up";
2881 2899 packageName = "find-up";
2882 2900 version = "2.1.0";
2883 2901 src = fetchurl {
2884 2902 url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
2885 2903 sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
2886 2904 };
2887 2905 };
2888 2906 "find-up-3.0.0" = {
2889 2907 name = "find-up";
2890 2908 packageName = "find-up";
2891 2909 version = "3.0.0";
2892 2910 src = fetchurl {
2893 2911 url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
2894 2912 sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
2895 2913 };
2896 2914 };
2897 2915 "findup-sync-0.1.3" = {
2898 2916 name = "findup-sync";
2899 2917 packageName = "findup-sync";
2900 2918 version = "0.1.3";
2901 2919 src = fetchurl {
2902 2920 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz";
2903 2921 sha1 = "7f3e7a97b82392c653bf06589bd85190e93c3683";
2904 2922 };
2905 2923 };
2906 2924 "findup-sync-2.0.0" = {
2907 2925 name = "findup-sync";
2908 2926 packageName = "findup-sync";
2909 2927 version = "2.0.0";
2910 2928 src = fetchurl {
2911 2929 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
2912 2930 sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
2913 2931 };
2914 2932 };
2915 "fined-1.1.1" = {
2933 "fined-1.2.0" = {
2916 2934 name = "fined";
2917 2935 packageName = "fined";
2918 version = "1.1.1";
2919 src = fetchurl {
2920 url = "https://registry.npmjs.org/fined/-/fined-1.1.1.tgz";
2921 sha512 = "jQp949ZmEbiYHk3gkbdtpJ0G1+kgtLQBNdP5edFP7Fh+WAYceLQz6yO1SBj72Xkg8GVyTB3bBzAYrHJVh5Xd5g==";
2936 version = "1.2.0";
2937 src = fetchurl {
2938 url = "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz";
2939 sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==";
2922 2940 };
2923 2941 };
2924 2942 "flagged-respawn-1.0.1" = {
2925 2943 name = "flagged-respawn";
2926 2944 packageName = "flagged-respawn";
2927 2945 version = "1.0.1";
2928 2946 src = fetchurl {
2929 2947 url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz";
2930 2948 sha512 = "lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==";
2931 2949 };
2932 2950 };
2933 2951 "flatten-1.0.2" = {
2934 2952 name = "flatten";
2935 2953 packageName = "flatten";
2936 2954 version = "1.0.2";
2937 2955 src = fetchurl {
2938 2956 url = "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz";
2939 2957 sha1 = "dae46a9d78fbe25292258cc1e780a41d95c03782";
2940 2958 };
2941 2959 };
2942 2960 "flush-write-stream-1.1.1" = {
2943 2961 name = "flush-write-stream";
2944 2962 packageName = "flush-write-stream";
2945 2963 version = "1.1.1";
2946 2964 src = fetchurl {
2947 2965 url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz";
2948 2966 sha512 = "3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==";
2949 2967 };
2950 2968 };
2951 2969 "for-in-1.0.2" = {
2952 2970 name = "for-in";
2953 2971 packageName = "for-in";
2954 2972 version = "1.0.2";
2955 2973 src = fetchurl {
2956 2974 url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
2957 2975 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
2958 2976 };
2959 2977 };
2960 2978 "for-own-1.0.0" = {
2961 2979 name = "for-own";
2962 2980 packageName = "for-own";
2963 2981 version = "1.0.0";
2964 2982 src = fetchurl {
2965 2983 url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
2966 2984 sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
2967 2985 };
2968 2986 };
2969 2987 "forever-agent-0.6.1" = {
2970 2988 name = "forever-agent";
2971 2989 packageName = "forever-agent";
2972 2990 version = "0.6.1";
2973 2991 src = fetchurl {
2974 2992 url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
2975 2993 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
2976 2994 };
2977 2995 };
2978 2996 "form-data-2.1.4" = {
2979 2997 name = "form-data";
2980 2998 packageName = "form-data";
2981 2999 version = "2.1.4";
2982 3000 src = fetchurl {
2983 3001 url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
2984 3002 sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
2985 3003 };
2986 3004 };
2987 3005 "fragment-cache-0.2.1" = {
2988 3006 name = "fragment-cache";
2989 3007 packageName = "fragment-cache";
2990 3008 version = "0.2.1";
2991 3009 src = fetchurl {
2992 3010 url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
2993 3011 sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
2994 3012 };
2995 3013 };
2996 3014 "from2-2.3.0" = {
2997 3015 name = "from2";
2998 3016 packageName = "from2";
2999 3017 version = "2.3.0";
3000 3018 src = fetchurl {
3001 3019 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
3002 3020 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
3003 3021 };
3004 3022 };
3005 3023 "fs-write-stream-atomic-1.0.10" = {
3006 3024 name = "fs-write-stream-atomic";
3007 3025 packageName = "fs-write-stream-atomic";
3008 3026 version = "1.0.10";
3009 3027 src = fetchurl {
3010 3028 url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
3011 3029 sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
3012 3030 };
3013 3031 };
3014 3032 "fs.realpath-1.0.0" = {
3015 3033 name = "fs.realpath";
3016 3034 packageName = "fs.realpath";
3017 3035 version = "1.0.0";
3018 3036 src = fetchurl {
3019 3037 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
3020 3038 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
3021 3039 };
3022 3040 };
3023 "fsevents-1.2.7" = {
3041 "fsevents-1.2.9" = {
3024 3042 name = "fsevents";
3025 3043 packageName = "fsevents";
3026 version = "1.2.7";
3027 src = fetchurl {
3028 url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz";
3029 sha512 = "Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==";
3044 version = "1.2.9";
3045 src = fetchurl {
3046 url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz";
3047 sha512 = "oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==";
3030 3048 };
3031 3049 };
3032 3050 "function-bind-1.1.1" = {
3033 3051 name = "function-bind";
3034 3052 packageName = "function-bind";
3035 3053 version = "1.1.1";
3036 3054 src = fetchurl {
3037 3055 url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
3038 3056 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
3039 3057 };
3040 3058 };
3041 3059 "gaze-0.5.2" = {
3042 3060 name = "gaze";
3043 3061 packageName = "gaze";
3044 3062 version = "0.5.2";
3045 3063 src = fetchurl {
3046 3064 url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
3047 3065 sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
3048 3066 };
3049 3067 };
3050 3068 "get-caller-file-1.0.3" = {
3051 3069 name = "get-caller-file";
3052 3070 packageName = "get-caller-file";
3053 3071 version = "1.0.3";
3054 3072 src = fetchurl {
3055 3073 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz";
3056 3074 sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==";
3057 3075 };
3058 3076 };
3059 3077 "get-stream-4.1.0" = {
3060 3078 name = "get-stream";
3061 3079 packageName = "get-stream";
3062 3080 version = "4.1.0";
3063 3081 src = fetchurl {
3064 3082 url = "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz";
3065 3083 sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==";
3066 3084 };
3067 3085 };
3068 3086 "get-value-2.0.6" = {
3069 3087 name = "get-value";
3070 3088 packageName = "get-value";
3071 3089 version = "2.0.6";
3072 3090 src = fetchurl {
3073 3091 url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
3074 3092 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
3075 3093 };
3076 3094 };
3077 3095 "getobject-0.1.0" = {
3078 3096 name = "getobject";
3079 3097 packageName = "getobject";
3080 3098 version = "0.1.0";
3081 3099 src = fetchurl {
3082 3100 url = "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz";
3083 3101 sha1 = "047a449789fa160d018f5486ed91320b6ec7885c";
3084 3102 };
3085 3103 };
3086 3104 "getpass-0.1.7" = {
3087 3105 name = "getpass";
3088 3106 packageName = "getpass";
3089 3107 version = "0.1.7";
3090 3108 src = fetchurl {
3091 3109 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
3092 3110 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
3093 3111 };
3094 3112 };
3095 3113 "glob-3.1.21" = {
3096 3114 name = "glob";
3097 3115 packageName = "glob";
3098 3116 version = "3.1.21";
3099 3117 src = fetchurl {
3100 3118 url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
3101 3119 sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
3102 3120 };
3103 3121 };
3104 3122 "glob-3.2.11" = {
3105 3123 name = "glob";
3106 3124 packageName = "glob";
3107 3125 version = "3.2.11";
3108 3126 src = fetchurl {
3109 3127 url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
3110 3128 sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
3111 3129 };
3112 3130 };
3113 "glob-7.1.3" = {
3131 "glob-7.1.4" = {
3114 3132 name = "glob";
3115 3133 packageName = "glob";
3116 version = "7.1.3";
3117 src = fetchurl {
3118 url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz";
3119 sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==";
3134 version = "7.1.4";
3135 src = fetchurl {
3136 url = "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz";
3137 sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==";
3120 3138 };
3121 3139 };
3122 3140 "glob-parent-3.1.0" = {
3123 3141 name = "glob-parent";
3124 3142 packageName = "glob-parent";
3125 3143 version = "3.1.0";
3126 3144 src = fetchurl {
3127 3145 url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
3128 3146 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
3129 3147 };
3130 3148 };
3131 3149 "global-modules-1.0.0" = {
3132 3150 name = "global-modules";
3133 3151 packageName = "global-modules";
3134 3152 version = "1.0.0";
3135 3153 src = fetchurl {
3136 3154 url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
3137 3155 sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
3138 3156 };
3139 3157 };
3140 3158 "global-modules-path-2.3.1" = {
3141 3159 name = "global-modules-path";
3142 3160 packageName = "global-modules-path";
3143 3161 version = "2.3.1";
3144 3162 src = fetchurl {
3145 3163 url = "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.1.tgz";
3146 3164 sha512 = "y+shkf4InI7mPRHSo2b/k6ix6+NLDtyccYv86whhxrSGX9wjPX1VMITmrDbE1eh7zkzhiWtW2sHklJYoQ62Cxg==";
3147 3165 };
3148 3166 };
3149 3167 "global-prefix-1.0.2" = {
3150 3168 name = "global-prefix";
3151 3169 packageName = "global-prefix";
3152 3170 version = "1.0.2";
3153 3171 src = fetchurl {
3154 3172 url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
3155 3173 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
3156 3174 };
3157 3175 };
3158 3176 "globals-9.18.0" = {
3159 3177 name = "globals";
3160 3178 packageName = "globals";
3161 3179 version = "9.18.0";
3162 3180 src = fetchurl {
3163 3181 url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz";
3164 3182 sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==";
3165 3183 };
3166 3184 };
3167 3185 "globby-7.1.1" = {
3168 3186 name = "globby";
3169 3187 packageName = "globby";
3170 3188 version = "7.1.1";
3171 3189 src = fetchurl {
3172 3190 url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz";
3173 3191 sha1 = "fb2ccff9401f8600945dfada97440cca972b8680";
3174 3192 };
3175 3193 };
3176 3194 "globule-0.1.0" = {
3177 3195 name = "globule";
3178 3196 packageName = "globule";
3179 3197 version = "0.1.0";
3180 3198 src = fetchurl {
3181 3199 url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
3182 3200 sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
3183 3201 };
3184 3202 };
3185 3203 "good-listener-1.2.2" = {
3186 3204 name = "good-listener";
3187 3205 packageName = "good-listener";
3188 3206 version = "1.2.2";
3189 3207 src = fetchurl {
3190 3208 url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz";
3191 3209 sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
3192 3210 };
3193 3211 };
3194 3212 "graceful-fs-1.2.3" = {
3195 3213 name = "graceful-fs";
3196 3214 packageName = "graceful-fs";
3197 3215 version = "1.2.3";
3198 3216 src = fetchurl {
3199 3217 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
3200 3218 sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
3201 3219 };
3202 3220 };
3203 3221 "graceful-fs-4.1.15" = {
3204 3222 name = "graceful-fs";
3205 3223 packageName = "graceful-fs";
3206 3224 version = "4.1.15";
3207 3225 src = fetchurl {
3208 3226 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz";
3209 3227 sha512 = "6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==";
3210 3228 };
3211 3229 };
3212 3230 "grunt-0.4.5" = {
3213 3231 name = "grunt";
3214 3232 packageName = "grunt";
3215 3233 version = "0.4.5";
3216 3234 src = fetchurl {
3217 3235 url = "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz";
3218 3236 sha1 = "56937cd5194324adff6d207631832a9d6ba4e7f0";
3219 3237 };
3220 3238 };
3221 3239 "grunt-cli-1.3.2" = {
3222 3240 name = "grunt-cli";
3223 3241 packageName = "grunt-cli";
3224 3242 version = "1.3.2";
3225 3243 src = fetchurl {
3226 3244 url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.2.tgz";
3227 3245 sha512 = "8OHDiZZkcptxVXtMfDxJvmN7MVJNE8L/yIcPb4HB7TlyFD1kDvjHrb62uhySsU14wJx9ORMnTuhRMQ40lH/orQ==";
3228 3246 };
3229 3247 };
3230 3248 "grunt-contrib-concat-0.5.1" = {
3231 3249 name = "grunt-contrib-concat";
3232 3250 packageName = "grunt-contrib-concat";
3233 3251 version = "0.5.1";
3234 3252 src = fetchurl {
3235 3253 url = "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz";
3236 3254 sha1 = "953c6efdfdfd2c107ab9c85077f2d4b24d31cd49";
3237 3255 };
3238 3256 };
3239 3257 "grunt-contrib-copy-1.0.0" = {
3240 3258 name = "grunt-contrib-copy";
3241 3259 packageName = "grunt-contrib-copy";
3242 3260 version = "1.0.0";
3243 3261 src = fetchurl {
3244 3262 url = "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz";
3245 3263 sha1 = "7060c6581e904b8ab0d00f076e0a8f6e3e7c3573";
3246 3264 };
3247 3265 };
3248 3266 "grunt-contrib-jshint-0.12.0" = {
3249 3267 name = "grunt-contrib-jshint";
3250 3268 packageName = "grunt-contrib-jshint";
3251 3269 version = "0.12.0";
3252 3270 src = fetchurl {
3253 3271 url = "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-0.12.0.tgz";
3254 3272 sha1 = "f6b2f06fc715264837a7ab6c69a1ce1a689c2c29";
3255 3273 };
3256 3274 };
3257 3275 "grunt-contrib-less-1.4.1" = {
3258 3276 name = "grunt-contrib-less";
3259 3277 packageName = "grunt-contrib-less";
3260 3278 version = "1.4.1";
3261 3279 src = fetchurl {
3262 3280 url = "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.4.1.tgz";
3263 3281 sha1 = "3bbdec0b75d12ceaa55d62943625c0b0861cdf6f";
3264 3282 };
3265 3283 };
3266 3284 "grunt-contrib-watch-0.6.1" = {
3267 3285 name = "grunt-contrib-watch";
3268 3286 packageName = "grunt-contrib-watch";
3269 3287 version = "0.6.1";
3270 3288 src = fetchurl {
3271 3289 url = "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-0.6.1.tgz";
3272 3290 sha1 = "64fdcba25a635f5b4da1b6ce6f90da0aeb6e3f15";
3273 3291 };
3274 3292 };
3275 3293 "grunt-known-options-1.1.1" = {
3276 3294 name = "grunt-known-options";
3277 3295 packageName = "grunt-known-options";
3278 3296 version = "1.1.1";
3279 3297 src = fetchurl {
3280 3298 url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
3281 3299 sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
3282 3300 };
3283 3301 };
3284 3302 "grunt-legacy-log-0.1.3" = {
3285 3303 name = "grunt-legacy-log";
3286 3304 packageName = "grunt-legacy-log";
3287 3305 version = "0.1.3";
3288 3306 src = fetchurl {
3289 3307 url = "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz";
3290 3308 sha1 = "ec29426e803021af59029f87d2f9cd7335a05531";
3291 3309 };
3292 3310 };
3293 3311 "grunt-legacy-log-utils-0.1.1" = {
3294 3312 name = "grunt-legacy-log-utils";
3295 3313 packageName = "grunt-legacy-log-utils";
3296 3314 version = "0.1.1";
3297 3315 src = fetchurl {
3298 3316 url = "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz";
3299 3317 sha1 = "c0706b9dd9064e116f36f23fe4e6b048672c0f7e";
3300 3318 };
3301 3319 };
3302 3320 "grunt-legacy-util-0.2.0" = {
3303 3321 name = "grunt-legacy-util";
3304 3322 packageName = "grunt-legacy-util";
3305 3323 version = "0.2.0";
3306 3324 src = fetchurl {
3307 3325 url = "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz";
3308 3326 sha1 = "93324884dbf7e37a9ff7c026dff451d94a9e554b";
3309 3327 };
3310 3328 };
3311 3329 "grunt-webpack-3.1.3" = {
3312 3330 name = "grunt-webpack";
3313 3331 packageName = "grunt-webpack";
3314 3332 version = "3.1.3";
3315 3333 src = fetchurl {
3316 3334 url = "https://registry.npmjs.org/grunt-webpack/-/grunt-webpack-3.1.3.tgz";
3317 3335 sha512 = "SaZ8K8lG4iTxs7ClZxOWCf3kxqS2y+Eel8SbaEGgBKwhAp6e45beIu+vhBZRLX3vonKML2kjemKsQ21REaqNFQ==";
3318 3336 };
3319 3337 };
3320 3338 "har-schema-1.0.5" = {
3321 3339 name = "har-schema";
3322 3340 packageName = "har-schema";
3323 3341 version = "1.0.5";
3324 3342 src = fetchurl {
3325 3343 url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
3326 3344 sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
3327 3345 };
3328 3346 };
3329 3347 "har-validator-4.2.1" = {
3330 3348 name = "har-validator";
3331 3349 packageName = "har-validator";
3332 3350 version = "4.2.1";
3333 3351 src = fetchurl {
3334 3352 url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
3335 3353 sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
3336 3354 };
3337 3355 };
3338 3356 "has-1.0.3" = {
3339 3357 name = "has";
3340 3358 packageName = "has";
3341 3359 version = "1.0.3";
3342 3360 src = fetchurl {
3343 3361 url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz";
3344 3362 sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==";
3345 3363 };
3346 3364 };
3347 3365 "has-ansi-0.1.0" = {
3348 3366 name = "has-ansi";
3349 3367 packageName = "has-ansi";
3350 3368 version = "0.1.0";
3351 3369 src = fetchurl {
3352 3370 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz";
3353 3371 sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e";
3354 3372 };
3355 3373 };
3356 3374 "has-ansi-2.0.0" = {
3357 3375 name = "has-ansi";
3358 3376 packageName = "has-ansi";
3359 3377 version = "2.0.0";
3360 3378 src = fetchurl {
3361 3379 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
3362 3380 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
3363 3381 };
3364 3382 };
3365 3383 "has-flag-1.0.0" = {
3366 3384 name = "has-flag";
3367 3385 packageName = "has-flag";
3368 3386 version = "1.0.0";
3369 3387 src = fetchurl {
3370 3388 url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz";
3371 3389 sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa";
3372 3390 };
3373 3391 };
3374 3392 "has-flag-3.0.0" = {
3375 3393 name = "has-flag";
3376 3394 packageName = "has-flag";
3377 3395 version = "3.0.0";
3378 3396 src = fetchurl {
3379 3397 url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
3380 3398 sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
3381 3399 };
3382 3400 };
3383 3401 "has-symbols-1.0.0" = {
3384 3402 name = "has-symbols";
3385 3403 packageName = "has-symbols";
3386 3404 version = "1.0.0";
3387 3405 src = fetchurl {
3388 3406 url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz";
3389 3407 sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44";
3390 3408 };
3391 3409 };
3392 3410 "has-value-0.3.1" = {
3393 3411 name = "has-value";
3394 3412 packageName = "has-value";
3395 3413 version = "0.3.1";
3396 3414 src = fetchurl {
3397 3415 url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
3398 3416 sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
3399 3417 };
3400 3418 };
3401 3419 "has-value-1.0.0" = {
3402 3420 name = "has-value";
3403 3421 packageName = "has-value";
3404 3422 version = "1.0.0";
3405 3423 src = fetchurl {
3406 3424 url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
3407 3425 sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
3408 3426 };
3409 3427 };
3410 3428 "has-values-0.1.4" = {
3411 3429 name = "has-values";
3412 3430 packageName = "has-values";
3413 3431 version = "0.1.4";
3414 3432 src = fetchurl {
3415 3433 url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
3416 3434 sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
3417 3435 };
3418 3436 };
3419 3437 "has-values-1.0.0" = {
3420 3438 name = "has-values";
3421 3439 packageName = "has-values";
3422 3440 version = "1.0.0";
3423 3441 src = fetchurl {
3424 3442 url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
3425 3443 sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
3426 3444 };
3427 3445 };
3428 3446 "hash-base-3.0.4" = {
3429 3447 name = "hash-base";
3430 3448 packageName = "hash-base";
3431 3449 version = "3.0.4";
3432 3450 src = fetchurl {
3433 3451 url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz";
3434 3452 sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918";
3435 3453 };
3436 3454 };
3437 3455 "hash.js-1.1.7" = {
3438 3456 name = "hash.js";
3439 3457 packageName = "hash.js";
3440 3458 version = "1.1.7";
3441 3459 src = fetchurl {
3442 3460 url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz";
3443 3461 sha512 = "taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==";
3444 3462 };
3445 3463 };
3446 3464 "hawk-3.1.3" = {
3447 3465 name = "hawk";
3448 3466 packageName = "hawk";
3449 3467 version = "3.1.3";
3450 3468 src = fetchurl {
3451 3469 url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
3452 3470 sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
3453 3471 };
3454 3472 };
3455 3473 "he-1.2.0" = {
3456 3474 name = "he";
3457 3475 packageName = "he";
3458 3476 version = "1.2.0";
3459 3477 src = fetchurl {
3460 3478 url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz";
3461 3479 sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==";
3462 3480 };
3463 3481 };
3464 3482 "hmac-drbg-1.0.1" = {
3465 3483 name = "hmac-drbg";
3466 3484 packageName = "hmac-drbg";
3467 3485 version = "1.0.1";
3468 3486 src = fetchurl {
3469 3487 url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
3470 3488 sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
3471 3489 };
3472 3490 };
3473 3491 "hoek-2.16.3" = {
3474 3492 name = "hoek";
3475 3493 packageName = "hoek";
3476 3494 version = "2.16.3";
3477 3495 src = fetchurl {
3478 3496 url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
3479 3497 sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
3480 3498 };
3481 3499 };
3482 3500 "home-or-tmp-2.0.0" = {
3483 3501 name = "home-or-tmp";
3484 3502 packageName = "home-or-tmp";
3485 3503 version = "2.0.0";
3486 3504 src = fetchurl {
3487 3505 url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
3488 3506 sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
3489 3507 };
3490 3508 };
3491 3509 "homedir-polyfill-1.0.3" = {
3492 3510 name = "homedir-polyfill";
3493 3511 packageName = "homedir-polyfill";
3494 3512 version = "1.0.3";
3495 3513 src = fetchurl {
3496 3514 url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz";
3497 3515 sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==";
3498 3516 };
3499 3517 };
3500 3518 "hooker-0.2.3" = {
3501 3519 name = "hooker";
3502 3520 packageName = "hooker";
3503 3521 version = "0.2.3";
3504 3522 src = fetchurl {
3505 3523 url = "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz";
3506 3524 sha1 = "b834f723cc4a242aa65963459df6d984c5d3d959";
3507 3525 };
3508 3526 };
3509 3527 "html-comment-regex-1.1.2" = {
3510 3528 name = "html-comment-regex";
3511 3529 packageName = "html-comment-regex";
3512 3530 version = "1.1.2";
3513 3531 src = fetchurl {
3514 3532 url = "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz";
3515 3533 sha512 = "P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==";
3516 3534 };
3517 3535 };
3518 3536 "html-loader-0.4.5" = {
3519 3537 name = "html-loader";
3520 3538 packageName = "html-loader";
3521 3539 version = "0.4.5";
3522 3540 src = fetchurl {
3523 3541 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.4.5.tgz";
3524 3542 sha1 = "5fbcd87cd63a5c49a7fce2fe56f425e05729c68c";
3525 3543 };
3526 3544 };
3527 3545 "html-loader-0.5.5" = {
3528 3546 name = "html-loader";
3529 3547 packageName = "html-loader";
3530 3548 version = "0.5.5";
3531 3549 src = fetchurl {
3532 3550 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz";
3533 3551 sha512 = "7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==";
3534 3552 };
3535 3553 };
3536 3554 "html-minifier-3.5.21" = {
3537 3555 name = "html-minifier";
3538 3556 packageName = "html-minifier";
3539 3557 version = "3.5.21";
3540 3558 src = fetchurl {
3541 3559 url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz";
3542 3560 sha512 = "LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==";
3543 3561 };
3544 3562 };
3545 3563 "html-webpack-plugin-3.2.0" = {
3546 3564 name = "html-webpack-plugin";
3547 3565 packageName = "html-webpack-plugin";
3548 3566 version = "3.2.0";
3549 3567 src = fetchurl {
3550 3568 url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz";
3551 3569 sha1 = "b01abbd723acaaa7b37b6af4492ebda03d9dd37b";
3552 3570 };
3553 3571 };
3554 3572 "htmlparser2-3.8.3" = {
3555 3573 name = "htmlparser2";
3556 3574 packageName = "htmlparser2";
3557 3575 version = "3.8.3";
3558 3576 src = fetchurl {
3559 3577 url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz";
3560 3578 sha1 = "996c28b191516a8be86501a7d79757e5c70c1068";
3561 3579 };
3562 3580 };
3563 3581 "http-signature-1.1.1" = {
3564 3582 name = "http-signature";
3565 3583 packageName = "http-signature";
3566 3584 version = "1.1.1";
3567 3585 src = fetchurl {
3568 3586 url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
3569 3587 sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
3570 3588 };
3571 3589 };
3572 3590 "https-browserify-1.0.0" = {
3573 3591 name = "https-browserify";
3574 3592 packageName = "https-browserify";
3575 3593 version = "1.0.0";
3576 3594 src = fetchurl {
3577 3595 url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz";
3578 3596 sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
3579 3597 };
3580 3598 };
3581 3599 "iconv-lite-0.2.11" = {
3582 3600 name = "iconv-lite";
3583 3601 packageName = "iconv-lite";
3584 3602 version = "0.2.11";
3585 3603 src = fetchurl {
3586 3604 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz";
3587 3605 sha1 = "1ce60a3a57864a292d1321ff4609ca4bb965adc8";
3588 3606 };
3589 3607 };
3590 3608 "icss-replace-symbols-1.1.0" = {
3591 3609 name = "icss-replace-symbols";
3592 3610 packageName = "icss-replace-symbols";
3593 3611 version = "1.1.0";
3594 3612 src = fetchurl {
3595 3613 url = "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz";
3596 3614 sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded";
3597 3615 };
3598 3616 };
3599 3617 "icss-utils-2.1.0" = {
3600 3618 name = "icss-utils";
3601 3619 packageName = "icss-utils";
3602 3620 version = "2.1.0";
3603 3621 src = fetchurl {
3604 3622 url = "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz";
3605 3623 sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962";
3606 3624 };
3607 3625 };
3608 "ieee754-1.1.12" = {
3626 "ieee754-1.1.13" = {
3609 3627 name = "ieee754";
3610 3628 packageName = "ieee754";
3611 version = "1.1.12";
3612 src = fetchurl {
3613 url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz";
3614 sha512 = "GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==";
3629 version = "1.1.13";
3630 src = fetchurl {
3631 url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz";
3632 sha512 = "4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==";
3615 3633 };
3616 3634 };
3617 3635 "iferr-0.1.5" = {
3618 3636 name = "iferr";
3619 3637 packageName = "iferr";
3620 3638 version = "0.1.5";
3621 3639 src = fetchurl {
3622 3640 url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
3623 3641 sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
3624 3642 };
3625 3643 };
3626 3644 "ignore-3.3.10" = {
3627 3645 name = "ignore";
3628 3646 packageName = "ignore";
3629 3647 version = "3.3.10";
3630 3648 src = fetchurl {
3631 3649 url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz";
3632 3650 sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==";
3633 3651 };
3634 3652 };
3635 3653 "image-size-0.5.5" = {
3636 3654 name = "image-size";
3637 3655 packageName = "image-size";
3638 3656 version = "0.5.5";
3639 3657 src = fetchurl {
3640 3658 url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz";
3641 3659 sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
3642 3660 };
3643 3661 };
3644 3662 "import-local-2.0.0" = {
3645 3663 name = "import-local";
3646 3664 packageName = "import-local";
3647 3665 version = "2.0.0";
3648 3666 src = fetchurl {
3649 3667 url = "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz";
3650 3668 sha512 = "b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==";
3651 3669 };
3652 3670 };
3653 3671 "imports-loader-0.7.1" = {
3654 3672 name = "imports-loader";
3655 3673 packageName = "imports-loader";
3656 3674 version = "0.7.1";
3657 3675 src = fetchurl {
3658 3676 url = "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz";
3659 3677 sha1 = "f204b5f34702a32c1db7d48d89d5e867a0441253";
3660 3678 };
3661 3679 };
3662 3680 "imurmurhash-0.1.4" = {
3663 3681 name = "imurmurhash";
3664 3682 packageName = "imurmurhash";
3665 3683 version = "0.1.4";
3666 3684 src = fetchurl {
3667 3685 url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
3668 3686 sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
3669 3687 };
3670 3688 };
3671 3689 "indexes-of-1.0.1" = {
3672 3690 name = "indexes-of";
3673 3691 packageName = "indexes-of";
3674 3692 version = "1.0.1";
3675 3693 src = fetchurl {
3676 3694 url = "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz";
3677 3695 sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607";
3678 3696 };
3679 3697 };
3680 3698 "indexof-0.0.1" = {
3681 3699 name = "indexof";
3682 3700 packageName = "indexof";
3683 3701 version = "0.0.1";
3684 3702 src = fetchurl {
3685 3703 url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz";
3686 3704 sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
3687 3705 };
3688 3706 };
3689 3707 "inflight-1.0.6" = {
3690 3708 name = "inflight";
3691 3709 packageName = "inflight";
3692 3710 version = "1.0.6";
3693 3711 src = fetchurl {
3694 3712 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
3695 3713 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
3696 3714 };
3697 3715 };
3698 3716 "inherits-1.0.2" = {
3699 3717 name = "inherits";
3700 3718 packageName = "inherits";
3701 3719 version = "1.0.2";
3702 3720 src = fetchurl {
3703 3721 url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
3704 3722 sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
3705 3723 };
3706 3724 };
3707 3725 "inherits-2.0.1" = {
3708 3726 name = "inherits";
3709 3727 packageName = "inherits";
3710 3728 version = "2.0.1";
3711 3729 src = fetchurl {
3712 3730 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
3713 3731 sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
3714 3732 };
3715 3733 };
3716 3734 "inherits-2.0.3" = {
3717 3735 name = "inherits";
3718 3736 packageName = "inherits";
3719 3737 version = "2.0.3";
3720 3738 src = fetchurl {
3721 3739 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
3722 3740 sha1 = "633c2c83e3da42a502f52466022480f4208261de";
3723 3741 };
3724 3742 };
3725 3743 "ini-1.3.5" = {
3726 3744 name = "ini";
3727 3745 packageName = "ini";
3728 3746 version = "1.3.5";
3729 3747 src = fetchurl {
3730 3748 url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
3731 3749 sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
3732 3750 };
3733 3751 };
3734 3752 "interpret-1.1.0" = {
3735 3753 name = "interpret";
3736 3754 packageName = "interpret";
3737 3755 version = "1.1.0";
3738 3756 src = fetchurl {
3739 3757 url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
3740 3758 sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
3741 3759 };
3742 3760 };
3743 3761 "invariant-2.2.4" = {
3744 3762 name = "invariant";
3745 3763 packageName = "invariant";
3746 3764 version = "2.2.4";
3747 3765 src = fetchurl {
3748 3766 url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz";
3749 3767 sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==";
3750 3768 };
3751 3769 };
3752 3770 "invert-kv-2.0.0" = {
3753 3771 name = "invert-kv";
3754 3772 packageName = "invert-kv";
3755 3773 version = "2.0.0";
3756 3774 src = fetchurl {
3757 3775 url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz";
3758 3776 sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==";
3759 3777 };
3760 3778 };
3761 3779 "is-absolute-1.0.0" = {
3762 3780 name = "is-absolute";
3763 3781 packageName = "is-absolute";
3764 3782 version = "1.0.0";
3765 3783 src = fetchurl {
3766 3784 url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
3767 3785 sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
3768 3786 };
3769 3787 };
3770 3788 "is-absolute-url-2.1.0" = {
3771 3789 name = "is-absolute-url";
3772 3790 packageName = "is-absolute-url";
3773 3791 version = "2.1.0";
3774 3792 src = fetchurl {
3775 3793 url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz";
3776 3794 sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6";
3777 3795 };
3778 3796 };
3779 3797 "is-accessor-descriptor-0.1.6" = {
3780 3798 name = "is-accessor-descriptor";
3781 3799 packageName = "is-accessor-descriptor";
3782 3800 version = "0.1.6";
3783 3801 src = fetchurl {
3784 3802 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
3785 3803 sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
3786 3804 };
3787 3805 };
3788 3806 "is-accessor-descriptor-1.0.0" = {
3789 3807 name = "is-accessor-descriptor";
3790 3808 packageName = "is-accessor-descriptor";
3791 3809 version = "1.0.0";
3792 3810 src = fetchurl {
3793 3811 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
3794 3812 sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
3795 3813 };
3796 3814 };
3797 3815 "is-binary-path-1.0.1" = {
3798 3816 name = "is-binary-path";
3799 3817 packageName = "is-binary-path";
3800 3818 version = "1.0.1";
3801 3819 src = fetchurl {
3802 3820 url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
3803 3821 sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
3804 3822 };
3805 3823 };
3806 3824 "is-buffer-1.1.6" = {
3807 3825 name = "is-buffer";
3808 3826 packageName = "is-buffer";
3809 3827 version = "1.1.6";
3810 3828 src = fetchurl {
3811 3829 url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
3812 3830 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
3813 3831 };
3814 3832 };
3815 3833 "is-callable-1.1.4" = {
3816 3834 name = "is-callable";
3817 3835 packageName = "is-callable";
3818 3836 version = "1.1.4";
3819 3837 src = fetchurl {
3820 3838 url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz";
3821 3839 sha512 = "r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==";
3822 3840 };
3823 3841 };
3824 3842 "is-data-descriptor-0.1.4" = {
3825 3843 name = "is-data-descriptor";
3826 3844 packageName = "is-data-descriptor";
3827 3845 version = "0.1.4";
3828 3846 src = fetchurl {
3829 3847 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
3830 3848 sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
3831 3849 };
3832 3850 };
3833 3851 "is-data-descriptor-1.0.0" = {
3834 3852 name = "is-data-descriptor";
3835 3853 packageName = "is-data-descriptor";
3836 3854 version = "1.0.0";
3837 3855 src = fetchurl {
3838 3856 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
3839 3857 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
3840 3858 };
3841 3859 };
3842 3860 "is-date-object-1.0.1" = {
3843 3861 name = "is-date-object";
3844 3862 packageName = "is-date-object";
3845 3863 version = "1.0.1";
3846 3864 src = fetchurl {
3847 3865 url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz";
3848 3866 sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16";
3849 3867 };
3850 3868 };
3851 3869 "is-descriptor-0.1.6" = {
3852 3870 name = "is-descriptor";
3853 3871 packageName = "is-descriptor";
3854 3872 version = "0.1.6";
3855 3873 src = fetchurl {
3856 3874 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
3857 3875 sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
3858 3876 };
3859 3877 };
3860 3878 "is-descriptor-1.0.2" = {
3861 3879 name = "is-descriptor";
3862 3880 packageName = "is-descriptor";
3863 3881 version = "1.0.2";
3864 3882 src = fetchurl {
3865 3883 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
3866 3884 sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
3867 3885 };
3868 3886 };
3869 3887 "is-extendable-0.1.1" = {
3870 3888 name = "is-extendable";
3871 3889 packageName = "is-extendable";
3872 3890 version = "0.1.1";
3873 3891 src = fetchurl {
3874 3892 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
3875 3893 sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
3876 3894 };
3877 3895 };
3878 3896 "is-extendable-1.0.1" = {
3879 3897 name = "is-extendable";
3880 3898 packageName = "is-extendable";
3881 3899 version = "1.0.1";
3882 3900 src = fetchurl {
3883 3901 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
3884 3902 sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
3885 3903 };
3886 3904 };
3887 3905 "is-extglob-2.1.1" = {
3888 3906 name = "is-extglob";
3889 3907 packageName = "is-extglob";
3890 3908 version = "2.1.1";
3891 3909 src = fetchurl {
3892 3910 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
3893 3911 sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
3894 3912 };
3895 3913 };
3896 3914 "is-finite-1.0.2" = {
3897 3915 name = "is-finite";
3898 3916 packageName = "is-finite";
3899 3917 version = "1.0.2";
3900 3918 src = fetchurl {
3901 3919 url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz";
3902 3920 sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
3903 3921 };
3904 3922 };
3905 3923 "is-fullwidth-code-point-1.0.0" = {
3906 3924 name = "is-fullwidth-code-point";
3907 3925 packageName = "is-fullwidth-code-point";
3908 3926 version = "1.0.0";
3909 3927 src = fetchurl {
3910 3928 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
3911 3929 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
3912 3930 };
3913 3931 };
3914 3932 "is-fullwidth-code-point-2.0.0" = {
3915 3933 name = "is-fullwidth-code-point";
3916 3934 packageName = "is-fullwidth-code-point";
3917 3935 version = "2.0.0";
3918 3936 src = fetchurl {
3919 3937 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
3920 3938 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
3921 3939 };
3922 3940 };
3923 3941 "is-glob-3.1.0" = {
3924 3942 name = "is-glob";
3925 3943 packageName = "is-glob";
3926 3944 version = "3.1.0";
3927 3945 src = fetchurl {
3928 3946 url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
3929 3947 sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
3930 3948 };
3931 3949 };
3932 "is-glob-4.0.0" = {
3950 "is-glob-4.0.1" = {
3933 3951 name = "is-glob";
3934 3952 packageName = "is-glob";
3935 version = "4.0.0";
3936 src = fetchurl {
3937 url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz";
3938 sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0";
3953 version = "4.0.1";
3954 src = fetchurl {
3955 url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz";
3956 sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==";
3939 3957 };
3940 3958 };
3941 3959 "is-number-3.0.0" = {
3942 3960 name = "is-number";
3943 3961 packageName = "is-number";
3944 3962 version = "3.0.0";
3945 3963 src = fetchurl {
3946 3964 url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
3947 3965 sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
3948 3966 };
3949 3967 };
3950 3968 "is-plain-obj-1.1.0" = {
3951 3969 name = "is-plain-obj";
3952 3970 packageName = "is-plain-obj";
3953 3971 version = "1.1.0";
3954 3972 src = fetchurl {
3955 3973 url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
3956 3974 sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
3957 3975 };
3958 3976 };
3959 3977 "is-plain-object-2.0.4" = {
3960 3978 name = "is-plain-object";
3961 3979 packageName = "is-plain-object";
3962 3980 version = "2.0.4";
3963 3981 src = fetchurl {
3964 3982 url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
3965 3983 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
3966 3984 };
3967 3985 };
3968 3986 "is-regex-1.0.4" = {
3969 3987 name = "is-regex";
3970 3988 packageName = "is-regex";
3971 3989 version = "1.0.4";
3972 3990 src = fetchurl {
3973 3991 url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz";
3974 3992 sha1 = "5517489b547091b0930e095654ced25ee97e9491";
3975 3993 };
3976 3994 };
3977 3995 "is-relative-1.0.0" = {
3978 3996 name = "is-relative";
3979 3997 packageName = "is-relative";
3980 3998 version = "1.0.0";
3981 3999 src = fetchurl {
3982 4000 url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
3983 4001 sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
3984 4002 };
3985 4003 };
3986 4004 "is-stream-1.1.0" = {
3987 4005 name = "is-stream";
3988 4006 packageName = "is-stream";
3989 4007 version = "1.1.0";
3990 4008 src = fetchurl {
3991 4009 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
3992 4010 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
3993 4011 };
3994 4012 };
3995 4013 "is-svg-2.1.0" = {
3996 4014 name = "is-svg";
3997 4015 packageName = "is-svg";
3998 4016 version = "2.1.0";
3999 4017 src = fetchurl {
4000 4018 url = "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz";
4001 4019 sha1 = "cf61090da0d9efbcab8722deba6f032208dbb0e9";
4002 4020 };
4003 4021 };
4004 4022 "is-symbol-1.0.2" = {
4005 4023 name = "is-symbol";
4006 4024 packageName = "is-symbol";
4007 4025 version = "1.0.2";
4008 4026 src = fetchurl {
4009 4027 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz";
4010 4028 sha512 = "HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==";
4011 4029 };
4012 4030 };
4013 4031 "is-typedarray-1.0.0" = {
4014 4032 name = "is-typedarray";
4015 4033 packageName = "is-typedarray";
4016 4034 version = "1.0.0";
4017 4035 src = fetchurl {
4018 4036 url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
4019 4037 sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
4020 4038 };
4021 4039 };
4022 4040 "is-unc-path-1.0.0" = {
4023 4041 name = "is-unc-path";
4024 4042 packageName = "is-unc-path";
4025 4043 version = "1.0.0";
4026 4044 src = fetchurl {
4027 4045 url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
4028 4046 sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
4029 4047 };
4030 4048 };
4031 4049 "is-windows-1.0.2" = {
4032 4050 name = "is-windows";
4033 4051 packageName = "is-windows";
4034 4052 version = "1.0.2";
4035 4053 src = fetchurl {
4036 4054 url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
4037 4055 sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
4038 4056 };
4039 4057 };
4040 4058 "isarray-0.0.1" = {
4041 4059 name = "isarray";
4042 4060 packageName = "isarray";
4043 4061 version = "0.0.1";
4044 4062 src = fetchurl {
4045 4063 url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
4046 4064 sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
4047 4065 };
4048 4066 };
4049 4067 "isarray-1.0.0" = {
4050 4068 name = "isarray";
4051 4069 packageName = "isarray";
4052 4070 version = "1.0.0";
4053 4071 src = fetchurl {
4054 4072 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
4055 4073 sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
4056 4074 };
4057 4075 };
4058 4076 "isexe-2.0.0" = {
4059 4077 name = "isexe";
4060 4078 packageName = "isexe";
4061 4079 version = "2.0.0";
4062 4080 src = fetchurl {
4063 4081 url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
4064 4082 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
4065 4083 };
4066 4084 };
4067 4085 "isobject-2.1.0" = {
4068 4086 name = "isobject";
4069 4087 packageName = "isobject";
4070 4088 version = "2.1.0";
4071 4089 src = fetchurl {
4072 4090 url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
4073 4091 sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
4074 4092 };
4075 4093 };
4076 4094 "isobject-3.0.1" = {
4077 4095 name = "isobject";
4078 4096 packageName = "isobject";
4079 4097 version = "3.0.1";
4080 4098 src = fetchurl {
4081 4099 url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
4082 4100 sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
4083 4101 };
4084 4102 };
4085 4103 "isstream-0.1.2" = {
4086 4104 name = "isstream";
4087 4105 packageName = "isstream";
4088 4106 version = "0.1.2";
4089 4107 src = fetchurl {
4090 4108 url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
4091 4109 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
4092 4110 };
4093 4111 };
4094 4112 "jquery-1.11.3" = {
4095 4113 name = "jquery";
4096 4114 packageName = "jquery";
4097 4115 version = "1.11.3";
4098 4116 src = fetchurl {
4099 4117 url = "https://registry.npmjs.org/jquery/-/jquery-1.11.3.tgz";
4100 4118 sha1 = "dd8b74278b27102d29df63eae28308a8cfa1b583";
4101 4119 };
4102 4120 };
4103 4121 "js-base64-2.5.1" = {
4104 4122 name = "js-base64";
4105 4123 packageName = "js-base64";
4106 4124 version = "2.5.1";
4107 4125 src = fetchurl {
4108 4126 url = "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz";
4109 4127 sha512 = "M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==";
4110 4128 };
4111 4129 };
4112 4130 "js-tokens-3.0.2" = {
4113 4131 name = "js-tokens";
4114 4132 packageName = "js-tokens";
4115 4133 version = "3.0.2";
4116 4134 src = fetchurl {
4117 4135 url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz";
4118 4136 sha1 = "9866df395102130e38f7f996bceb65443209c25b";
4119 4137 };
4120 4138 };
4121 4139 "js-yaml-2.0.5" = {
4122 4140 name = "js-yaml";
4123 4141 packageName = "js-yaml";
4124 4142 version = "2.0.5";
4125 4143 src = fetchurl {
4126 4144 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz";
4127 4145 sha1 = "a25ae6509999e97df278c6719da11bd0687743a8";
4128 4146 };
4129 4147 };
4130 4148 "js-yaml-3.7.0" = {
4131 4149 name = "js-yaml";
4132 4150 packageName = "js-yaml";
4133 4151 version = "3.7.0";
4134 4152 src = fetchurl {
4135 4153 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz";
4136 4154 sha1 = "5c967ddd837a9bfdca5f2de84253abe8a1c03b80";
4137 4155 };
4138 4156 };
4139 4157 "jsbn-0.1.1" = {
4140 4158 name = "jsbn";
4141 4159 packageName = "jsbn";
4142 4160 version = "0.1.1";
4143 4161 src = fetchurl {
4144 4162 url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
4145 4163 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
4146 4164 };
4147 4165 };
4148 4166 "jsesc-0.5.0" = {
4149 4167 name = "jsesc";
4150 4168 packageName = "jsesc";
4151 4169 version = "0.5.0";
4152 4170 src = fetchurl {
4153 4171 url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz";
4154 4172 sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d";
4155 4173 };
4156 4174 };
4157 4175 "jsesc-1.3.0" = {
4158 4176 name = "jsesc";
4159 4177 packageName = "jsesc";
4160 4178 version = "1.3.0";
4161 4179 src = fetchurl {
4162 4180 url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz";
4163 4181 sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
4164 4182 };
4165 4183 };
4166 "jshint-2.10.1" = {
4184 "jshint-2.10.2" = {
4167 4185 name = "jshint";
4168 4186 packageName = "jshint";
4169 version = "2.10.1";
4170 src = fetchurl {
4171 url = "https://registry.npmjs.org/jshint/-/jshint-2.10.1.tgz";
4172 sha512 = "9GpPfKeffYBl7oBDX2lHPG16j0AM7D2bn3aLy9DaWTr6CWa0i/7UGhX8WLZ7V14QQnnr4hXbjauTLYg06F+HYw==";
4187 version = "2.10.2";
4188 src = fetchurl {
4189 url = "https://registry.npmjs.org/jshint/-/jshint-2.10.2.tgz";
4190 sha512 = "e7KZgCSXMJxznE/4WULzybCMNXNAd/bf5TSrvVEq78Q/K8ZwFpmBqQeDtNiHc3l49nV4E/+YeHU/JZjSUIrLAA==";
4173 4191 };
4174 4192 };
4175 4193 "jshint-2.9.7" = {
4176 4194 name = "jshint";
4177 4195 packageName = "jshint";
4178 4196 version = "2.9.7";
4179 4197 src = fetchurl {
4180 4198 url = "https://registry.npmjs.org/jshint/-/jshint-2.9.7.tgz";
4181 4199 sha512 = "Q8XN38hGsVQhdlM+4gd1Xl7OB1VieSuCJf+fEJjpo59JH99bVJhXRXAh26qQ15wfdd1VPMuDWNeSWoNl53T4YA==";
4182 4200 };
4183 4201 };
4184 4202 "json-parse-better-errors-1.0.2" = {
4185 4203 name = "json-parse-better-errors";
4186 4204 packageName = "json-parse-better-errors";
4187 4205 version = "1.0.2";
4188 4206 src = fetchurl {
4189 4207 url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
4190 4208 sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
4191 4209 };
4192 4210 };
4193 4211 "json-schema-0.2.3" = {
4194 4212 name = "json-schema";
4195 4213 packageName = "json-schema";
4196 4214 version = "0.2.3";
4197 4215 src = fetchurl {
4198 4216 url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
4199 4217 sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
4200 4218 };
4201 4219 };
4202 4220 "json-schema-traverse-0.4.1" = {
4203 4221 name = "json-schema-traverse";
4204 4222 packageName = "json-schema-traverse";
4205 4223 version = "0.4.1";
4206 4224 src = fetchurl {
4207 4225 url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
4208 4226 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
4209 4227 };
4210 4228 };
4211 4229 "json-stable-stringify-1.0.1" = {
4212 4230 name = "json-stable-stringify";
4213 4231 packageName = "json-stable-stringify";
4214 4232 version = "1.0.1";
4215 4233 src = fetchurl {
4216 4234 url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
4217 4235 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
4218 4236 };
4219 4237 };
4220 4238 "json-stringify-safe-5.0.1" = {
4221 4239 name = "json-stringify-safe";
4222 4240 packageName = "json-stringify-safe";
4223 4241 version = "5.0.1";
4224 4242 src = fetchurl {
4225 4243 url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
4226 4244 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
4227 4245 };
4228 4246 };
4229 4247 "json5-0.5.1" = {
4230 4248 name = "json5";
4231 4249 packageName = "json5";
4232 4250 version = "0.5.1";
4233 4251 src = fetchurl {
4234 4252 url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz";
4235 4253 sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
4236 4254 };
4237 4255 };
4238 4256 "json5-1.0.1" = {
4239 4257 name = "json5";
4240 4258 packageName = "json5";
4241 4259 version = "1.0.1";
4242 4260 src = fetchurl {
4243 4261 url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz";
4244 4262 sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==";
4245 4263 };
4246 4264 };
4247 4265 "jsonify-0.0.0" = {
4248 4266 name = "jsonify";
4249 4267 packageName = "jsonify";
4250 4268 version = "0.0.0";
4251 4269 src = fetchurl {
4252 4270 url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
4253 4271 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
4254 4272 };
4255 4273 };
4256 4274 "jsprim-1.4.1" = {
4257 4275 name = "jsprim";
4258 4276 packageName = "jsprim";
4259 4277 version = "1.4.1";
4260 4278 src = fetchurl {
4261 4279 url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
4262 4280 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
4263 4281 };
4264 4282 };
4265 4283 "kind-of-3.2.2" = {
4266 4284 name = "kind-of";
4267 4285 packageName = "kind-of";
4268 4286 version = "3.2.2";
4269 4287 src = fetchurl {
4270 4288 url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
4271 4289 sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
4272 4290 };
4273 4291 };
4274 4292 "kind-of-4.0.0" = {
4275 4293 name = "kind-of";
4276 4294 packageName = "kind-of";
4277 4295 version = "4.0.0";
4278 4296 src = fetchurl {
4279 4297 url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
4280 4298 sha1 = "20813df3d712928b207378691a45066fae72dd57";
4281 4299 };
4282 4300 };
4283 4301 "kind-of-5.1.0" = {
4284 4302 name = "kind-of";
4285 4303 packageName = "kind-of";
4286 4304 version = "5.1.0";
4287 4305 src = fetchurl {
4288 4306 url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
4289 4307 sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
4290 4308 };
4291 4309 };
4292 4310 "kind-of-6.0.2" = {
4293 4311 name = "kind-of";
4294 4312 packageName = "kind-of";
4295 4313 version = "6.0.2";
4296 4314 src = fetchurl {
4297 4315 url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
4298 4316 sha512 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==";
4299 4317 };
4300 4318 };
4301 4319 "lazy-cache-1.0.4" = {
4302 4320 name = "lazy-cache";
4303 4321 packageName = "lazy-cache";
4304 4322 version = "1.0.4";
4305 4323 src = fetchurl {
4306 4324 url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
4307 4325 sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
4308 4326 };
4309 4327 };
4310 4328 "lcid-2.0.0" = {
4311 4329 name = "lcid";
4312 4330 packageName = "lcid";
4313 4331 version = "2.0.0";
4314 4332 src = fetchurl {
4315 4333 url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz";
4316 4334 sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==";
4317 4335 };
4318 4336 };
4319 4337 "less-2.7.3" = {
4320 4338 name = "less";
4321 4339 packageName = "less";
4322 4340 version = "2.7.3";
4323 4341 src = fetchurl {
4324 4342 url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
4325 4343 sha512 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==";
4326 4344 };
4327 4345 };
4328 4346 "liftoff-2.5.0" = {
4329 4347 name = "liftoff";
4330 4348 packageName = "liftoff";
4331 4349 version = "2.5.0";
4332 4350 src = fetchurl {
4333 4351 url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
4334 4352 sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
4335 4353 };
4336 4354 };
4337 4355 "loader-runner-2.4.0" = {
4338 4356 name = "loader-runner";
4339 4357 packageName = "loader-runner";
4340 4358 version = "2.4.0";
4341 4359 src = fetchurl {
4342 4360 url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz";
4343 4361 sha512 = "Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==";
4344 4362 };
4345 4363 };
4346 4364 "loader-utils-0.2.17" = {
4347 4365 name = "loader-utils";
4348 4366 packageName = "loader-utils";
4349 4367 version = "0.2.17";
4350 4368 src = fetchurl {
4351 4369 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz";
4352 4370 sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348";
4353 4371 };
4354 4372 };
4355 4373 "loader-utils-1.2.3" = {
4356 4374 name = "loader-utils";
4357 4375 packageName = "loader-utils";
4358 4376 version = "1.2.3";
4359 4377 src = fetchurl {
4360 4378 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz";
4361 4379 sha512 = "fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==";
4362 4380 };
4363 4381 };
4364 4382 "locate-path-2.0.0" = {
4365 4383 name = "locate-path";
4366 4384 packageName = "locate-path";
4367 4385 version = "2.0.0";
4368 4386 src = fetchurl {
4369 4387 url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
4370 4388 sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
4371 4389 };
4372 4390 };
4373 4391 "locate-path-3.0.0" = {
4374 4392 name = "locate-path";
4375 4393 packageName = "locate-path";
4376 4394 version = "3.0.0";
4377 4395 src = fetchurl {
4378 4396 url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
4379 4397 sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
4380 4398 };
4381 4399 };
4382 4400 "lodash-0.9.2" = {
4383 4401 name = "lodash";
4384 4402 packageName = "lodash";
4385 4403 version = "0.9.2";
4386 4404 src = fetchurl {
4387 4405 url = "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz";
4388 4406 sha1 = "8f3499c5245d346d682e5b0d3b40767e09f1a92c";
4389 4407 };
4390 4408 };
4391 4409 "lodash-1.0.2" = {
4392 4410 name = "lodash";
4393 4411 packageName = "lodash";
4394 4412 version = "1.0.2";
4395 4413 src = fetchurl {
4396 4414 url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
4397 4415 sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
4398 4416 };
4399 4417 };
4400 4418 "lodash-2.4.2" = {
4401 4419 name = "lodash";
4402 4420 packageName = "lodash";
4403 4421 version = "2.4.2";
4404 4422 src = fetchurl {
4405 4423 url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
4406 4424 sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
4407 4425 };
4408 4426 };
4409 4427 "lodash-4.17.11" = {
4410 4428 name = "lodash";
4411 4429 packageName = "lodash";
4412 4430 version = "4.17.11";
4413 4431 src = fetchurl {
4414 4432 url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz";
4415 4433 sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==";
4416 4434 };
4417 4435 };
4418 4436 "lodash.camelcase-4.3.0" = {
4419 4437 name = "lodash.camelcase";
4420 4438 packageName = "lodash.camelcase";
4421 4439 version = "4.3.0";
4422 4440 src = fetchurl {
4423 4441 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz";
4424 4442 sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6";
4425 4443 };
4426 4444 };
4427 4445 "lodash.isplainobject-4.0.6" = {
4428 4446 name = "lodash.isplainobject";
4429 4447 packageName = "lodash.isplainobject";
4430 4448 version = "4.0.6";
4431 4449 src = fetchurl {
4432 4450 url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
4433 4451 sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
4434 4452 };
4435 4453 };
4436 4454 "lodash.memoize-4.1.2" = {
4437 4455 name = "lodash.memoize";
4438 4456 packageName = "lodash.memoize";
4439 4457 version = "4.1.2";
4440 4458 src = fetchurl {
4441 4459 url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz";
4442 4460 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe";
4443 4461 };
4444 4462 };
4445 4463 "lodash.uniq-4.5.0" = {
4446 4464 name = "lodash.uniq";
4447 4465 packageName = "lodash.uniq";
4448 4466 version = "4.5.0";
4449 4467 src = fetchurl {
4450 4468 url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
4451 4469 sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
4452 4470 };
4453 4471 };
4454 4472 "longest-1.0.1" = {
4455 4473 name = "longest";
4456 4474 packageName = "longest";
4457 4475 version = "1.0.1";
4458 4476 src = fetchurl {
4459 4477 url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
4460 4478 sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
4461 4479 };
4462 4480 };
4463 4481 "loose-envify-1.4.0" = {
4464 4482 name = "loose-envify";
4465 4483 packageName = "loose-envify";
4466 4484 version = "1.4.0";
4467 4485 src = fetchurl {
4468 4486 url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz";
4469 4487 sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==";
4470 4488 };
4471 4489 };
4472 4490 "lower-case-1.1.4" = {
4473 4491 name = "lower-case";
4474 4492 packageName = "lower-case";
4475 4493 version = "1.1.4";
4476 4494 src = fetchurl {
4477 4495 url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz";
4478 4496 sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac";
4479 4497 };
4480 4498 };
4481 4499 "lru-cache-2.7.3" = {
4482 4500 name = "lru-cache";
4483 4501 packageName = "lru-cache";
4484 4502 version = "2.7.3";
4485 4503 src = fetchurl {
4486 4504 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
4487 4505 sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
4488 4506 };
4489 4507 };
4490 4508 "lru-cache-4.1.5" = {
4491 4509 name = "lru-cache";
4492 4510 packageName = "lru-cache";
4493 4511 version = "4.1.5";
4494 4512 src = fetchurl {
4495 4513 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz";
4496 4514 sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==";
4497 4515 };
4498 4516 };
4499 4517 "make-dir-1.3.0" = {
4500 4518 name = "make-dir";
4501 4519 packageName = "make-dir";
4502 4520 version = "1.3.0";
4503 4521 src = fetchurl {
4504 4522 url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
4505 4523 sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
4506 4524 };
4507 4525 };
4508 4526 "make-iterator-1.0.1" = {
4509 4527 name = "make-iterator";
4510 4528 packageName = "make-iterator";
4511 4529 version = "1.0.1";
4512 4530 src = fetchurl {
4513 4531 url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
4514 4532 sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
4515 4533 };
4516 4534 };
4517 4535 "map-age-cleaner-0.1.3" = {
4518 4536 name = "map-age-cleaner";
4519 4537 packageName = "map-age-cleaner";
4520 4538 version = "0.1.3";
4521 4539 src = fetchurl {
4522 4540 url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz";
4523 4541 sha512 = "bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==";
4524 4542 };
4525 4543 };
4526 4544 "map-cache-0.2.2" = {
4527 4545 name = "map-cache";
4528 4546 packageName = "map-cache";
4529 4547 version = "0.2.2";
4530 4548 src = fetchurl {
4531 4549 url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
4532 4550 sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
4533 4551 };
4534 4552 };
4535 4553 "map-visit-1.0.0" = {
4536 4554 name = "map-visit";
4537 4555 packageName = "map-visit";
4538 4556 version = "1.0.0";
4539 4557 src = fetchurl {
4540 4558 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
4541 4559 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
4542 4560 };
4543 4561 };
4544 4562 "mark.js-8.11.1" = {
4545 4563 name = "mark.js";
4546 4564 packageName = "mark.js";
4547 4565 version = "8.11.1";
4548 4566 src = fetchurl {
4549 4567 url = "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz";
4550 4568 sha1 = "180f1f9ebef8b0e638e4166ad52db879beb2ffc5";
4551 4569 };
4552 4570 };
4553 4571 "math-expression-evaluator-1.2.17" = {
4554 4572 name = "math-expression-evaluator";
4555 4573 packageName = "math-expression-evaluator";
4556 4574 version = "1.2.17";
4557 4575 src = fetchurl {
4558 4576 url = "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz";
4559 4577 sha1 = "de819fdbcd84dccd8fae59c6aeb79615b9d266ac";
4560 4578 };
4561 4579 };
4562 4580 "md5.js-1.3.5" = {
4563 4581 name = "md5.js";
4564 4582 packageName = "md5.js";
4565 4583 version = "1.3.5";
4566 4584 src = fetchurl {
4567 4585 url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz";
4568 4586 sha512 = "xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==";
4569 4587 };
4570 4588 };
4571 "mem-4.1.0" = {
4589 "mem-4.3.0" = {
4572 4590 name = "mem";
4573 4591 packageName = "mem";
4574 version = "4.1.0";
4575 src = fetchurl {
4576 url = "https://registry.npmjs.org/mem/-/mem-4.1.0.tgz";
4577 sha512 = "I5u6Q1x7wxO0kdOpYBB28xueHADYps5uty/zg936CiG8NTe5sJL8EjrCuLneuDW3PlMdZBGDIn8BirEVdovZvg==";
4592 version = "4.3.0";
4593 src = fetchurl {
4594 url = "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz";
4595 sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==";
4578 4596 };
4579 4597 };
4580 4598 "memory-fs-0.4.1" = {
4581 4599 name = "memory-fs";
4582 4600 packageName = "memory-fs";
4583 4601 version = "0.4.1";
4584 4602 src = fetchurl {
4585 4603 url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz";
4586 4604 sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
4587 4605 };
4588 4606 };
4589 4607 "micromatch-3.1.10" = {
4590 4608 name = "micromatch";
4591 4609 packageName = "micromatch";
4592 4610 version = "3.1.10";
4593 4611 src = fetchurl {
4594 4612 url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
4595 4613 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
4596 4614 };
4597 4615 };
4598 4616 "miller-rabin-4.0.1" = {
4599 4617 name = "miller-rabin";
4600 4618 packageName = "miller-rabin";
4601 4619 version = "4.0.1";
4602 4620 src = fetchurl {
4603 4621 url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz";
4604 4622 sha512 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==";
4605 4623 };
4606 4624 };
4607 4625 "mime-1.6.0" = {
4608 4626 name = "mime";
4609 4627 packageName = "mime";
4610 4628 version = "1.6.0";
4611 4629 src = fetchurl {
4612 4630 url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
4613 4631 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
4614 4632 };
4615 4633 };
4616 "mime-db-1.38.0" = {
4634 "mime-db-1.40.0" = {
4617 4635 name = "mime-db";
4618 4636 packageName = "mime-db";
4619 version = "1.38.0";
4620 src = fetchurl {
4621 url = "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz";
4622 sha512 = "bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==";
4623 };
4624 };
4625 "mime-types-2.1.22" = {
4637 version = "1.40.0";
4638 src = fetchurl {
4639 url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz";
4640 sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==";
4641 };
4642 };
4643 "mime-types-2.1.24" = {
4626 4644 name = "mime-types";
4627 4645 packageName = "mime-types";
4628 version = "2.1.22";
4629 src = fetchurl {
4630 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz";
4631 sha512 = "aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==";
4632 };
4633 };
4634 "mimic-fn-1.2.0" = {
4646 version = "2.1.24";
4647 src = fetchurl {
4648 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz";
4649 sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==";
4650 };
4651 };
4652 "mimic-fn-2.1.0" = {
4635 4653 name = "mimic-fn";
4636 4654 packageName = "mimic-fn";
4637 version = "1.2.0";
4638 src = fetchurl {
4639 url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz";
4640 sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==";
4655 version = "2.1.0";
4656 src = fetchurl {
4657 url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz";
4658 sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==";
4641 4659 };
4642 4660 };
4643 4661 "minimalistic-assert-1.0.1" = {
4644 4662 name = "minimalistic-assert";
4645 4663 packageName = "minimalistic-assert";
4646 4664 version = "1.0.1";
4647 4665 src = fetchurl {
4648 4666 url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
4649 4667 sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==";
4650 4668 };
4651 4669 };
4652 4670 "minimalistic-crypto-utils-1.0.1" = {
4653 4671 name = "minimalistic-crypto-utils";
4654 4672 packageName = "minimalistic-crypto-utils";
4655 4673 version = "1.0.1";
4656 4674 src = fetchurl {
4657 4675 url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
4658 4676 sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
4659 4677 };
4660 4678 };
4661 4679 "minimatch-0.2.14" = {
4662 4680 name = "minimatch";
4663 4681 packageName = "minimatch";
4664 4682 version = "0.2.14";
4665 4683 src = fetchurl {
4666 4684 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
4667 4685 sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
4668 4686 };
4669 4687 };
4670 4688 "minimatch-0.3.0" = {
4671 4689 name = "minimatch";
4672 4690 packageName = "minimatch";
4673 4691 version = "0.3.0";
4674 4692 src = fetchurl {
4675 4693 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
4676 4694 sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
4677 4695 };
4678 4696 };
4679 4697 "minimatch-3.0.4" = {
4680 4698 name = "minimatch";
4681 4699 packageName = "minimatch";
4682 4700 version = "3.0.4";
4683 4701 src = fetchurl {
4684 4702 url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
4685 4703 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
4686 4704 };
4687 4705 };
4688 4706 "minimist-0.0.8" = {
4689 4707 name = "minimist";
4690 4708 packageName = "minimist";
4691 4709 version = "0.0.8";
4692 4710 src = fetchurl {
4693 4711 url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
4694 4712 sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
4695 4713 };
4696 4714 };
4697 4715 "minimist-1.2.0" = {
4698 4716 name = "minimist";
4699 4717 packageName = "minimist";
4700 4718 version = "1.2.0";
4701 4719 src = fetchurl {
4702 4720 url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
4703 4721 sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
4704 4722 };
4705 4723 };
4706 4724 "mississippi-2.0.0" = {
4707 4725 name = "mississippi";
4708 4726 packageName = "mississippi";
4709 4727 version = "2.0.0";
4710 4728 src = fetchurl {
4711 4729 url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz";
4712 4730 sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==";
4713 4731 };
4714 4732 };
4715 4733 "mixin-deep-1.3.1" = {
4716 4734 name = "mixin-deep";
4717 4735 packageName = "mixin-deep";
4718 4736 version = "1.3.1";
4719 4737 src = fetchurl {
4720 4738 url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz";
4721 4739 sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==";
4722 4740 };
4723 4741 };
4724 4742 "mkdirp-0.5.1" = {
4725 4743 name = "mkdirp";
4726 4744 packageName = "mkdirp";
4727 4745 version = "0.5.1";
4728 4746 src = fetchurl {
4729 4747 url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
4730 4748 sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
4731 4749 };
4732 4750 };
4733 4751 "moment-2.24.0" = {
4734 4752 name = "moment";
4735 4753 packageName = "moment";
4736 4754 version = "2.24.0";
4737 4755 src = fetchurl {
4738 4756 url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz";
4739 4757 sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==";
4740 4758 };
4741 4759 };
4742 "mousetrap-1.6.2" = {
4760 "mousetrap-1.6.3" = {
4743 4761 name = "mousetrap";
4744 4762 packageName = "mousetrap";
4745 version = "1.6.2";
4746 src = fetchurl {
4747 url = "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.2.tgz";
4748 sha512 = "jDjhi7wlHwdO6q6DS7YRmSHcuI+RVxadBkLt3KHrhd3C2b+w5pKefg3oj5beTcHZyVFA9Aksf+yEE1y5jxUjVA==";
4763 version = "1.6.3";
4764 src = fetchurl {
4765 url = "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.3.tgz";
4766 sha512 = "bd+nzwhhs9ifsUrC2tWaSgm24/oo2c83zaRyZQF06hYA6sANfsXHtnZ19AbbbDXCDzeH5nZBSQ4NvCjgD62tJA==";
4749 4767 };
4750 4768 };
4751 4769 "move-concurrently-1.0.1" = {
4752 4770 name = "move-concurrently";
4753 4771 packageName = "move-concurrently";
4754 4772 version = "1.0.1";
4755 4773 src = fetchurl {
4756 4774 url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
4757 4775 sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
4758 4776 };
4759 4777 };
4760 4778 "ms-2.0.0" = {
4761 4779 name = "ms";
4762 4780 packageName = "ms";
4763 4781 version = "2.0.0";
4764 4782 src = fetchurl {
4765 4783 url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
4766 4784 sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
4767 4785 };
4768 4786 };
4769 "nan-2.12.1" = {
4787 "nan-2.13.2" = {
4770 4788 name = "nan";
4771 4789 packageName = "nan";
4772 version = "2.12.1";
4773 src = fetchurl {
4774 url = "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz";
4775 sha512 = "JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==";
4790 version = "2.13.2";
4791 src = fetchurl {
4792 url = "https://registry.npmjs.org/nan/-/nan-2.13.2.tgz";
4793 sha512 = "TghvYc72wlMGMVMluVo9WRJc0mB8KxxF/gZ4YYFy7V2ZQX9l7rgbPg7vjS9mt6U5HXODVFVI2bOduCzwOMv/lw==";
4776 4794 };
4777 4795 };
4778 4796 "nanomatch-1.2.13" = {
4779 4797 name = "nanomatch";
4780 4798 packageName = "nanomatch";
4781 4799 version = "1.2.13";
4782 4800 src = fetchurl {
4783 4801 url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
4784 4802 sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
4785 4803 };
4786 4804 };
4787 "neo-async-2.6.0" = {
4805 "neo-async-2.6.1" = {
4788 4806 name = "neo-async";
4789 4807 packageName = "neo-async";
4790 version = "2.6.0";
4791 src = fetchurl {
4792 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz";
4793 sha512 = "MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==";
4808 version = "2.6.1";
4809 src = fetchurl {
4810 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz";
4811 sha512 = "iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==";
4794 4812 };
4795 4813 };
4796 4814 "nice-try-1.0.5" = {
4797 4815 name = "nice-try";
4798 4816 packageName = "nice-try";
4799 4817 version = "1.0.5";
4800 4818 src = fetchurl {
4801 4819 url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz";
4802 4820 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
4803 4821 };
4804 4822 };
4805 4823 "no-case-2.3.2" = {
4806 4824 name = "no-case";
4807 4825 packageName = "no-case";
4808 4826 version = "2.3.2";
4809 4827 src = fetchurl {
4810 4828 url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz";
4811 4829 sha512 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==";
4812 4830 };
4813 4831 };
4814 4832 "node-libs-browser-2.2.0" = {
4815 4833 name = "node-libs-browser";
4816 4834 packageName = "node-libs-browser";
4817 4835 version = "2.2.0";
4818 4836 src = fetchurl {
4819 4837 url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.0.tgz";
4820 4838 sha512 = "5MQunG/oyOaBdttrL40dA7bUfPORLRWMUJLQtMg7nluxUvk5XwnLdL9twQHFAjRx/y7mIMkLKT9++qPbbk6BZA==";
4821 4839 };
4822 4840 };
4823 4841 "nopt-1.0.10" = {
4824 4842 name = "nopt";
4825 4843 packageName = "nopt";
4826 4844 version = "1.0.10";
4827 4845 src = fetchurl {
4828 4846 url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
4829 4847 sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
4830 4848 };
4831 4849 };
4832 4850 "nopt-2.0.0" = {
4833 4851 name = "nopt";
4834 4852 packageName = "nopt";
4835 4853 version = "2.0.0";
4836 4854 src = fetchurl {
4837 4855 url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
4838 4856 sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
4839 4857 };
4840 4858 };
4841 4859 "nopt-4.0.1" = {
4842 4860 name = "nopt";
4843 4861 packageName = "nopt";
4844 4862 version = "4.0.1";
4845 4863 src = fetchurl {
4846 4864 url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
4847 4865 sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
4848 4866 };
4849 4867 };
4850 4868 "noptify-0.0.3" = {
4851 4869 name = "noptify";
4852 4870 packageName = "noptify";
4853 4871 version = "0.0.3";
4854 4872 src = fetchurl {
4855 4873 url = "https://registry.npmjs.org/noptify/-/noptify-0.0.3.tgz";
4856 4874 sha1 = "58f654a73d9753df0c51d9686dc92104a67f4bbb";
4857 4875 };
4858 4876 };
4859 4877 "normalize-path-2.1.1" = {
4860 4878 name = "normalize-path";
4861 4879 packageName = "normalize-path";
4862 4880 version = "2.1.1";
4863 4881 src = fetchurl {
4864 4882 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
4865 4883 sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
4866 4884 };
4867 4885 };
4868 4886 "normalize-path-3.0.0" = {
4869 4887 name = "normalize-path";
4870 4888 packageName = "normalize-path";
4871 4889 version = "3.0.0";
4872 4890 src = fetchurl {
4873 4891 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz";
4874 4892 sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==";
4875 4893 };
4876 4894 };
4877 4895 "normalize-range-0.1.2" = {
4878 4896 name = "normalize-range";
4879 4897 packageName = "normalize-range";
4880 4898 version = "0.1.2";
4881 4899 src = fetchurl {
4882 4900 url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz";
4883 4901 sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942";
4884 4902 };
4885 4903 };
4886 4904 "normalize-url-1.9.1" = {
4887 4905 name = "normalize-url";
4888 4906 packageName = "normalize-url";
4889 4907 version = "1.9.1";
4890 4908 src = fetchurl {
4891 4909 url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz";
4892 4910 sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c";
4893 4911 };
4894 4912 };
4895 4913 "npm-run-path-2.0.2" = {
4896 4914 name = "npm-run-path";
4897 4915 packageName = "npm-run-path";
4898 4916 version = "2.0.2";
4899 4917 src = fetchurl {
4900 4918 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
4901 4919 sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
4902 4920 };
4903 4921 };
4904 4922 "nth-check-1.0.2" = {
4905 4923 name = "nth-check";
4906 4924 packageName = "nth-check";
4907 4925 version = "1.0.2";
4908 4926 src = fetchurl {
4909 4927 url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz";
4910 4928 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==";
4911 4929 };
4912 4930 };
4913 4931 "num2fraction-1.2.2" = {
4914 4932 name = "num2fraction";
4915 4933 packageName = "num2fraction";
4916 4934 version = "1.2.2";
4917 4935 src = fetchurl {
4918 4936 url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz";
4919 4937 sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede";
4920 4938 };
4921 4939 };
4922 4940 "number-is-nan-1.0.1" = {
4923 4941 name = "number-is-nan";
4924 4942 packageName = "number-is-nan";
4925 4943 version = "1.0.1";
4926 4944 src = fetchurl {
4927 4945 url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
4928 4946 sha1 = "097b602b53422a522c1afb8790318336941a011d";
4929 4947 };
4930 4948 };
4931 4949 "oauth-sign-0.8.2" = {
4932 4950 name = "oauth-sign";
4933 4951 packageName = "oauth-sign";
4934 4952 version = "0.8.2";
4935 4953 src = fetchurl {
4936 4954 url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
4937 4955 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
4938 4956 };
4939 4957 };
4940 4958 "object-assign-4.1.1" = {
4941 4959 name = "object-assign";
4942 4960 packageName = "object-assign";
4943 4961 version = "4.1.1";
4944 4962 src = fetchurl {
4945 4963 url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
4946 4964 sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
4947 4965 };
4948 4966 };
4949 4967 "object-copy-0.1.0" = {
4950 4968 name = "object-copy";
4951 4969 packageName = "object-copy";
4952 4970 version = "0.1.0";
4953 4971 src = fetchurl {
4954 4972 url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
4955 4973 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
4956 4974 };
4957 4975 };
4958 "object-keys-1.1.0" = {
4976 "object-keys-1.1.1" = {
4959 4977 name = "object-keys";
4960 4978 packageName = "object-keys";
4961 version = "1.1.0";
4962 src = fetchurl {
4963 url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.0.tgz";
4964 sha512 = "6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg==";
4979 version = "1.1.1";
4980 src = fetchurl {
4981 url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz";
4982 sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==";
4965 4983 };
4966 4984 };
4967 4985 "object-visit-1.0.1" = {
4968 4986 name = "object-visit";
4969 4987 packageName = "object-visit";
4970 4988 version = "1.0.1";
4971 4989 src = fetchurl {
4972 4990 url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
4973 4991 sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
4974 4992 };
4975 4993 };
4976 4994 "object.defaults-1.1.0" = {
4977 4995 name = "object.defaults";
4978 4996 packageName = "object.defaults";
4979 4997 version = "1.1.0";
4980 4998 src = fetchurl {
4981 4999 url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
4982 5000 sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
4983 5001 };
4984 5002 };
4985 5003 "object.getownpropertydescriptors-2.0.3" = {
4986 5004 name = "object.getownpropertydescriptors";
4987 5005 packageName = "object.getownpropertydescriptors";
4988 5006 version = "2.0.3";
4989 5007 src = fetchurl {
4990 5008 url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz";
4991 5009 sha1 = "8758c846f5b407adab0f236e0986f14b051caa16";
4992 5010 };
4993 5011 };
4994 5012 "object.map-1.0.1" = {
4995 5013 name = "object.map";
4996 5014 packageName = "object.map";
4997 5015 version = "1.0.1";
4998 5016 src = fetchurl {
4999 5017 url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
5000 5018 sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
5001 5019 };
5002 5020 };
5003 5021 "object.pick-1.3.0" = {
5004 5022 name = "object.pick";
5005 5023 packageName = "object.pick";
5006 5024 version = "1.3.0";
5007 5025 src = fetchurl {
5008 5026 url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
5009 5027 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
5010 5028 };
5011 5029 };
5012 5030 "once-1.4.0" = {
5013 5031 name = "once";
5014 5032 packageName = "once";
5015 5033 version = "1.4.0";
5016 5034 src = fetchurl {
5017 5035 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
5018 5036 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
5019 5037 };
5020 5038 };
5021 5039 "os-browserify-0.3.0" = {
5022 5040 name = "os-browserify";
5023 5041 packageName = "os-browserify";
5024 5042 version = "0.3.0";
5025 5043 src = fetchurl {
5026 5044 url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
5027 5045 sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
5028 5046 };
5029 5047 };
5030 5048 "os-homedir-1.0.2" = {
5031 5049 name = "os-homedir";
5032 5050 packageName = "os-homedir";
5033 5051 version = "1.0.2";
5034 5052 src = fetchurl {
5035 5053 url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
5036 5054 sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
5037 5055 };
5038 5056 };
5039 5057 "os-locale-3.1.0" = {
5040 5058 name = "os-locale";
5041 5059 packageName = "os-locale";
5042 5060 version = "3.1.0";
5043 5061 src = fetchurl {
5044 5062 url = "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz";
5045 5063 sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==";
5046 5064 };
5047 5065 };
5048 5066 "os-tmpdir-1.0.2" = {
5049 5067 name = "os-tmpdir";
5050 5068 packageName = "os-tmpdir";
5051 5069 version = "1.0.2";
5052 5070 src = fetchurl {
5053 5071 url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
5054 5072 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
5055 5073 };
5056 5074 };
5057 5075 "osenv-0.1.5" = {
5058 5076 name = "osenv";
5059 5077 packageName = "osenv";
5060 5078 version = "0.1.5";
5061 5079 src = fetchurl {
5062 5080 url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
5063 5081 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
5064 5082 };
5065 5083 };
5066 5084 "p-defer-1.0.0" = {
5067 5085 name = "p-defer";
5068 5086 packageName = "p-defer";
5069 5087 version = "1.0.0";
5070 5088 src = fetchurl {
5071 5089 url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz";
5072 5090 sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c";
5073 5091 };
5074 5092 };
5075 5093 "p-finally-1.0.0" = {
5076 5094 name = "p-finally";
5077 5095 packageName = "p-finally";
5078 5096 version = "1.0.0";
5079 5097 src = fetchurl {
5080 5098 url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
5081 5099 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
5082 5100 };
5083 5101 };
5084 "p-is-promise-2.0.0" = {
5102 "p-is-promise-2.1.0" = {
5085 5103 name = "p-is-promise";
5086 5104 packageName = "p-is-promise";
5087 version = "2.0.0";
5088 src = fetchurl {
5089 url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.0.0.tgz";
5090 sha512 = "pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==";
5105 version = "2.1.0";
5106 src = fetchurl {
5107 url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz";
5108 sha512 = "Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==";
5091 5109 };
5092 5110 };
5093 5111 "p-limit-1.3.0" = {
5094 5112 name = "p-limit";
5095 5113 packageName = "p-limit";
5096 5114 version = "1.3.0";
5097 5115 src = fetchurl {
5098 5116 url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
5099 5117 sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==";
5100 5118 };
5101 5119 };
5102 "p-limit-2.1.0" = {
5120 "p-limit-2.2.0" = {
5103 5121 name = "p-limit";
5104 5122 packageName = "p-limit";
5105 version = "2.1.0";
5106 src = fetchurl {
5107 url = "https://registry.npmjs.org/p-limit/-/p-limit-2.1.0.tgz";
5108 sha512 = "NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g==";
5123 version = "2.2.0";
5124 src = fetchurl {
5125 url = "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz";
5126 sha512 = "pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==";
5109 5127 };
5110 5128 };
5111 5129 "p-locate-2.0.0" = {
5112 5130 name = "p-locate";
5113 5131 packageName = "p-locate";
5114 5132 version = "2.0.0";
5115 5133 src = fetchurl {
5116 5134 url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
5117 5135 sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
5118 5136 };
5119 5137 };
5120 5138 "p-locate-3.0.0" = {
5121 5139 name = "p-locate";
5122 5140 packageName = "p-locate";
5123 5141 version = "3.0.0";
5124 5142 src = fetchurl {
5125 5143 url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
5126 5144 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
5127 5145 };
5128 5146 };
5129 5147 "p-try-1.0.0" = {
5130 5148 name = "p-try";
5131 5149 packageName = "p-try";
5132 5150 version = "1.0.0";
5133 5151 src = fetchurl {
5134 5152 url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
5135 5153 sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
5136 5154 };
5137 5155 };
5138 "p-try-2.0.0" = {
5156 "p-try-2.2.0" = {
5139 5157 name = "p-try";
5140 5158 packageName = "p-try";
5141 version = "2.0.0";
5142 src = fetchurl {
5143 url = "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz";
5144 sha512 = "hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==";
5145 };
5146 };
5147 "pako-1.0.8" = {
5159 version = "2.2.0";
5160 src = fetchurl {
5161 url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz";
5162 sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==";
5163 };
5164 };
5165 "pako-1.0.10" = {
5148 5166 name = "pako";
5149 5167 packageName = "pako";
5150 version = "1.0.8";
5151 src = fetchurl {
5152 url = "https://registry.npmjs.org/pako/-/pako-1.0.8.tgz";
5153 sha512 = "6i0HVbUfcKaTv+EG8ZTr75az7GFXcLYk9UyLEg7Notv/Ma+z/UG3TCoz6GiNeOrn1E/e63I0X/Hpw18jHOTUnA==";
5168 version = "1.0.10";
5169 src = fetchurl {
5170 url = "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz";
5171 sha512 = "0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==";
5154 5172 };
5155 5173 };
5156 5174 "parallel-transform-1.1.0" = {
5157 5175 name = "parallel-transform";
5158 5176 packageName = "parallel-transform";
5159 5177 version = "1.1.0";
5160 5178 src = fetchurl {
5161 5179 url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz";
5162 5180 sha1 = "d410f065b05da23081fcd10f28854c29bda33b06";
5163 5181 };
5164 5182 };
5165 5183 "param-case-2.1.1" = {
5166 5184 name = "param-case";
5167 5185 packageName = "param-case";
5168 5186 version = "2.1.1";
5169 5187 src = fetchurl {
5170 5188 url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz";
5171 5189 sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247";
5172 5190 };
5173 5191 };
5174 5192 "parse-asn1-5.1.4" = {
5175 5193 name = "parse-asn1";
5176 5194 packageName = "parse-asn1";
5177 5195 version = "5.1.4";
5178 5196 src = fetchurl {
5179 5197 url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz";
5180 5198 sha512 = "Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==";
5181 5199 };
5182 5200 };
5183 5201 "parse-filepath-1.0.2" = {
5184 5202 name = "parse-filepath";
5185 5203 packageName = "parse-filepath";
5186 5204 version = "1.0.2";
5187 5205 src = fetchurl {
5188 5206 url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
5189 5207 sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
5190 5208 };
5191 5209 };
5192 5210 "parse-passwd-1.0.0" = {
5193 5211 name = "parse-passwd";
5194 5212 packageName = "parse-passwd";
5195 5213 version = "1.0.0";
5196 5214 src = fetchurl {
5197 5215 url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
5198 5216 sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
5199 5217 };
5200 5218 };
5201 5219 "parse5-2.2.3" = {
5202 5220 name = "parse5";
5203 5221 packageName = "parse5";
5204 5222 version = "2.2.3";
5205 5223 src = fetchurl {
5206 5224 url = "https://registry.npmjs.org/parse5/-/parse5-2.2.3.tgz";
5207 5225 sha1 = "0c4fc41c1000c5e6b93d48b03f8083837834e9f6";
5208 5226 };
5209 5227 };
5210 5228 "parse5-3.0.3" = {
5211 5229 name = "parse5";
5212 5230 packageName = "parse5";
5213 5231 version = "3.0.3";
5214 5232 src = fetchurl {
5215 5233 url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz";
5216 5234 sha512 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==";
5217 5235 };
5218 5236 };
5219 5237 "parse5-utils-2.0.0" = {
5220 5238 name = "parse5-utils";
5221 5239 packageName = "parse5-utils";
5222 5240 version = "2.0.0";
5223 5241 src = fetchurl {
5224 5242 url = "https://registry.npmjs.org/parse5-utils/-/parse5-utils-2.0.0.tgz";
5225 5243 sha1 = "c926c1764e2431a450a5941f302db9beaec9d78a";
5226 5244 };
5227 5245 };
5228 5246 "pascalcase-0.1.1" = {
5229 5247 name = "pascalcase";
5230 5248 packageName = "pascalcase";
5231 5249 version = "0.1.1";
5232 5250 src = fetchurl {
5233 5251 url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
5234 5252 sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
5235 5253 };
5236 5254 };
5237 5255 "path-browserify-0.0.0" = {
5238 5256 name = "path-browserify";
5239 5257 packageName = "path-browserify";
5240 5258 version = "0.0.0";
5241 5259 src = fetchurl {
5242 5260 url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz";
5243 5261 sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a";
5244 5262 };
5245 5263 };
5246 5264 "path-dirname-1.0.2" = {
5247 5265 name = "path-dirname";
5248 5266 packageName = "path-dirname";
5249 5267 version = "1.0.2";
5250 5268 src = fetchurl {
5251 5269 url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
5252 5270 sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
5253 5271 };
5254 5272 };
5255 5273 "path-exists-3.0.0" = {
5256 5274 name = "path-exists";
5257 5275 packageName = "path-exists";
5258 5276 version = "3.0.0";
5259 5277 src = fetchurl {
5260 5278 url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
5261 5279 sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
5262 5280 };
5263 5281 };
5264 5282 "path-is-absolute-1.0.1" = {
5265 5283 name = "path-is-absolute";
5266 5284 packageName = "path-is-absolute";
5267 5285 version = "1.0.1";
5268 5286 src = fetchurl {
5269 5287 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
5270 5288 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
5271 5289 };
5272 5290 };
5273 5291 "path-key-2.0.1" = {
5274 5292 name = "path-key";
5275 5293 packageName = "path-key";
5276 5294 version = "2.0.1";
5277 5295 src = fetchurl {
5278 5296 url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
5279 5297 sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
5280 5298 };
5281 5299 };
5282 5300 "path-parse-1.0.6" = {
5283 5301 name = "path-parse";
5284 5302 packageName = "path-parse";
5285 5303 version = "1.0.6";
5286 5304 src = fetchurl {
5287 5305 url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
5288 5306 sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
5289 5307 };
5290 5308 };
5291 5309 "path-root-0.1.1" = {
5292 5310 name = "path-root";
5293 5311 packageName = "path-root";
5294 5312 version = "0.1.1";
5295 5313 src = fetchurl {
5296 5314 url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
5297 5315 sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
5298 5316 };
5299 5317 };
5300 5318 "path-root-regex-0.1.2" = {
5301 5319 name = "path-root-regex";
5302 5320 packageName = "path-root-regex";
5303 5321 version = "0.1.2";
5304 5322 src = fetchurl {
5305 5323 url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
5306 5324 sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
5307 5325 };
5308 5326 };
5309 5327 "path-type-3.0.0" = {
5310 5328 name = "path-type";
5311 5329 packageName = "path-type";
5312 5330 version = "3.0.0";
5313 5331 src = fetchurl {
5314 5332 url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
5315 5333 sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==";
5316 5334 };
5317 5335 };
5318 5336 "pbkdf2-3.0.17" = {
5319 5337 name = "pbkdf2";
5320 5338 packageName = "pbkdf2";
5321 5339 version = "3.0.17";
5322 5340 src = fetchurl {
5323 5341 url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz";
5324 5342 sha512 = "U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==";
5325 5343 };
5326 5344 };
5327 5345 "performance-now-0.2.0" = {
5328 5346 name = "performance-now";
5329 5347 packageName = "performance-now";
5330 5348 version = "0.2.0";
5331 5349 src = fetchurl {
5332 5350 url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
5333 5351 sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
5334 5352 };
5335 5353 };
5336 5354 "pify-3.0.0" = {
5337 5355 name = "pify";
5338 5356 packageName = "pify";
5339 5357 version = "3.0.0";
5340 5358 src = fetchurl {
5341 5359 url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
5342 5360 sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
5343 5361 };
5344 5362 };
5345 5363 "pkg-dir-2.0.0" = {
5346 5364 name = "pkg-dir";
5347 5365 packageName = "pkg-dir";
5348 5366 version = "2.0.0";
5349 5367 src = fetchurl {
5350 5368 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz";
5351 5369 sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
5352 5370 };
5353 5371 };
5354 5372 "pkg-dir-3.0.0" = {
5355 5373 name = "pkg-dir";
5356 5374 packageName = "pkg-dir";
5357 5375 version = "3.0.0";
5358 5376 src = fetchurl {
5359 5377 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz";
5360 5378 sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==";
5361 5379 };
5362 5380 };
5363 5381 "polymer-webpack-loader-2.0.3" = {
5364 5382 name = "polymer-webpack-loader";
5365 5383 packageName = "polymer-webpack-loader";
5366 5384 version = "2.0.3";
5367 5385 src = fetchurl {
5368 5386 url = "https://registry.npmjs.org/polymer-webpack-loader/-/polymer-webpack-loader-2.0.3.tgz";
5369 5387 sha512 = "3SR+/qVAGeVKltvsSMA+euGdLwj8ZZJnwd5NvXRvbdQ7yO57sdcTpRw3d34pTc9YTZxncW/kozuI/9bHjr/rdg==";
5370 5388 };
5371 5389 };
5372 5390 "posix-character-classes-0.1.1" = {
5373 5391 name = "posix-character-classes";
5374 5392 packageName = "posix-character-classes";
5375 5393 version = "0.1.1";
5376 5394 src = fetchurl {
5377 5395 url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
5378 5396 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
5379 5397 };
5380 5398 };
5381 5399 "postcss-5.2.18" = {
5382 5400 name = "postcss";
5383 5401 packageName = "postcss";
5384 5402 version = "5.2.18";
5385 5403 src = fetchurl {
5386 5404 url = "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz";
5387 5405 sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==";
5388 5406 };
5389 5407 };
5390 5408 "postcss-6.0.23" = {
5391 5409 name = "postcss";
5392 5410 packageName = "postcss";
5393 5411 version = "6.0.23";
5394 5412 src = fetchurl {
5395 5413 url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz";
5396 5414 sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==";
5397 5415 };
5398 5416 };
5399 5417 "postcss-calc-5.3.1" = {
5400 5418 name = "postcss-calc";
5401 5419 packageName = "postcss-calc";
5402 5420 version = "5.3.1";
5403 5421 src = fetchurl {
5404 5422 url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz";
5405 5423 sha1 = "77bae7ca928ad85716e2fda42f261bf7c1d65b5e";
5406 5424 };
5407 5425 };
5408 5426 "postcss-colormin-2.2.2" = {
5409 5427 name = "postcss-colormin";
5410 5428 packageName = "postcss-colormin";
5411 5429 version = "2.2.2";
5412 5430 src = fetchurl {
5413 5431 url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz";
5414 5432 sha1 = "6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b";
5415 5433 };
5416 5434 };
5417 5435 "postcss-convert-values-2.6.1" = {
5418 5436 name = "postcss-convert-values";
5419 5437 packageName = "postcss-convert-values";
5420 5438 version = "2.6.1";
5421 5439 src = fetchurl {
5422 5440 url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz";
5423 5441 sha1 = "bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d";
5424 5442 };
5425 5443 };
5426 5444 "postcss-discard-comments-2.0.4" = {
5427 5445 name = "postcss-discard-comments";
5428 5446 packageName = "postcss-discard-comments";
5429 5447 version = "2.0.4";
5430 5448 src = fetchurl {
5431 5449 url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz";
5432 5450 sha1 = "befe89fafd5b3dace5ccce51b76b81514be00e3d";
5433 5451 };
5434 5452 };
5435 5453 "postcss-discard-duplicates-2.1.0" = {
5436 5454 name = "postcss-discard-duplicates";
5437 5455 packageName = "postcss-discard-duplicates";
5438 5456 version = "2.1.0";
5439 5457 src = fetchurl {
5440 5458 url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz";
5441 5459 sha1 = "b9abf27b88ac188158a5eb12abcae20263b91932";
5442 5460 };
5443 5461 };
5444 5462 "postcss-discard-empty-2.1.0" = {
5445 5463 name = "postcss-discard-empty";
5446 5464 packageName = "postcss-discard-empty";
5447 5465 version = "2.1.0";
5448 5466 src = fetchurl {
5449 5467 url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz";
5450 5468 sha1 = "d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5";
5451 5469 };
5452 5470 };
5453 5471 "postcss-discard-overridden-0.1.1" = {
5454 5472 name = "postcss-discard-overridden";
5455 5473 packageName = "postcss-discard-overridden";
5456 5474 version = "0.1.1";
5457 5475 src = fetchurl {
5458 5476 url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz";
5459 5477 sha1 = "8b1eaf554f686fb288cd874c55667b0aa3668d58";
5460 5478 };
5461 5479 };
5462 5480 "postcss-discard-unused-2.2.3" = {
5463 5481 name = "postcss-discard-unused";
5464 5482 packageName = "postcss-discard-unused";
5465 5483 version = "2.2.3";
5466 5484 src = fetchurl {
5467 5485 url = "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz";
5468 5486 sha1 = "bce30b2cc591ffc634322b5fb3464b6d934f4433";
5469 5487 };
5470 5488 };
5471 5489 "postcss-filter-plugins-2.0.3" = {
5472 5490 name = "postcss-filter-plugins";
5473 5491 packageName = "postcss-filter-plugins";
5474 5492 version = "2.0.3";
5475 5493 src = fetchurl {
5476 5494 url = "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz";
5477 5495 sha512 = "T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==";
5478 5496 };
5479 5497 };
5480 5498 "postcss-merge-idents-2.1.7" = {
5481 5499 name = "postcss-merge-idents";
5482 5500 packageName = "postcss-merge-idents";
5483 5501 version = "2.1.7";
5484 5502 src = fetchurl {
5485 5503 url = "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz";
5486 5504 sha1 = "4c5530313c08e1d5b3bbf3d2bbc747e278eea270";
5487 5505 };
5488 5506 };
5489 5507 "postcss-merge-longhand-2.0.2" = {
5490 5508 name = "postcss-merge-longhand";
5491 5509 packageName = "postcss-merge-longhand";
5492 5510 version = "2.0.2";
5493 5511 src = fetchurl {
5494 5512 url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz";
5495 5513 sha1 = "23d90cd127b0a77994915332739034a1a4f3d658";
5496 5514 };
5497 5515 };
5498 5516 "postcss-merge-rules-2.1.2" = {
5499 5517 name = "postcss-merge-rules";
5500 5518 packageName = "postcss-merge-rules";
5501 5519 version = "2.1.2";
5502 5520 src = fetchurl {
5503 5521 url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz";
5504 5522 sha1 = "d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721";
5505 5523 };
5506 5524 };
5507 5525 "postcss-message-helpers-2.0.0" = {
5508 5526 name = "postcss-message-helpers";
5509 5527 packageName = "postcss-message-helpers";
5510 5528 version = "2.0.0";
5511 5529 src = fetchurl {
5512 5530 url = "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz";
5513 5531 sha1 = "a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e";
5514 5532 };
5515 5533 };
5516 5534 "postcss-minify-font-values-1.0.5" = {
5517 5535 name = "postcss-minify-font-values";
5518 5536 packageName = "postcss-minify-font-values";
5519 5537 version = "1.0.5";
5520 5538 src = fetchurl {
5521 5539 url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz";
5522 5540 sha1 = "4b58edb56641eba7c8474ab3526cafd7bbdecb69";
5523 5541 };
5524 5542 };
5525 5543 "postcss-minify-gradients-1.0.5" = {
5526 5544 name = "postcss-minify-gradients";
5527 5545 packageName = "postcss-minify-gradients";
5528 5546 version = "1.0.5";
5529 5547 src = fetchurl {
5530 5548 url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz";
5531 5549 sha1 = "5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1";
5532 5550 };
5533 5551 };
5534 5552 "postcss-minify-params-1.2.2" = {
5535 5553 name = "postcss-minify-params";
5536 5554 packageName = "postcss-minify-params";
5537 5555 version = "1.2.2";
5538 5556 src = fetchurl {
5539 5557 url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz";
5540 5558 sha1 = "ad2ce071373b943b3d930a3fa59a358c28d6f1f3";
5541 5559 };
5542 5560 };
5543 5561 "postcss-minify-selectors-2.1.1" = {
5544 5562 name = "postcss-minify-selectors";
5545 5563 packageName = "postcss-minify-selectors";
5546 5564 version = "2.1.1";
5547 5565 src = fetchurl {
5548 5566 url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz";
5549 5567 sha1 = "b2c6a98c0072cf91b932d1a496508114311735bf";
5550 5568 };
5551 5569 };
5552 5570 "postcss-modules-extract-imports-1.2.1" = {
5553 5571 name = "postcss-modules-extract-imports";
5554 5572 packageName = "postcss-modules-extract-imports";
5555 5573 version = "1.2.1";
5556 5574 src = fetchurl {
5557 5575 url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz";
5558 5576 sha512 = "6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==";
5559 5577 };
5560 5578 };
5561 5579 "postcss-modules-local-by-default-1.2.0" = {
5562 5580 name = "postcss-modules-local-by-default";
5563 5581 packageName = "postcss-modules-local-by-default";
5564 5582 version = "1.2.0";
5565 5583 src = fetchurl {
5566 5584 url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz";
5567 5585 sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069";
5568 5586 };
5569 5587 };
5570 5588 "postcss-modules-scope-1.1.0" = {
5571 5589 name = "postcss-modules-scope";
5572 5590 packageName = "postcss-modules-scope";
5573 5591 version = "1.1.0";
5574 5592 src = fetchurl {
5575 5593 url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz";
5576 5594 sha1 = "d6ea64994c79f97b62a72b426fbe6056a194bb90";
5577 5595 };
5578 5596 };
5579 5597 "postcss-modules-values-1.3.0" = {
5580 5598 name = "postcss-modules-values";
5581 5599 packageName = "postcss-modules-values";
5582 5600 version = "1.3.0";
5583 5601 src = fetchurl {
5584 5602 url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz";
5585 5603 sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20";
5586 5604 };
5587 5605 };
5588 5606 "postcss-normalize-charset-1.1.1" = {
5589 5607 name = "postcss-normalize-charset";
5590 5608 packageName = "postcss-normalize-charset";
5591 5609 version = "1.1.1";
5592 5610 src = fetchurl {
5593 5611 url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz";
5594 5612 sha1 = "ef9ee71212d7fe759c78ed162f61ed62b5cb93f1";
5595 5613 };
5596 5614 };
5597 5615 "postcss-normalize-url-3.0.8" = {
5598 5616 name = "postcss-normalize-url";
5599 5617 packageName = "postcss-normalize-url";
5600 5618 version = "3.0.8";
5601 5619 src = fetchurl {
5602 5620 url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz";
5603 5621 sha1 = "108f74b3f2fcdaf891a2ffa3ea4592279fc78222";
5604 5622 };
5605 5623 };
5606 5624 "postcss-ordered-values-2.2.3" = {
5607 5625 name = "postcss-ordered-values";
5608 5626 packageName = "postcss-ordered-values";
5609 5627 version = "2.2.3";
5610 5628 src = fetchurl {
5611 5629 url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz";
5612 5630 sha1 = "eec6c2a67b6c412a8db2042e77fe8da43f95c11d";
5613 5631 };
5614 5632 };
5615 5633 "postcss-reduce-idents-2.4.0" = {
5616 5634 name = "postcss-reduce-idents";
5617 5635 packageName = "postcss-reduce-idents";
5618 5636 version = "2.4.0";
5619 5637 src = fetchurl {
5620 5638 url = "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz";
5621 5639 sha1 = "c2c6d20cc958284f6abfbe63f7609bf409059ad3";
5622 5640 };
5623 5641 };
5624 5642 "postcss-reduce-initial-1.0.1" = {
5625 5643 name = "postcss-reduce-initial";
5626 5644 packageName = "postcss-reduce-initial";
5627 5645 version = "1.0.1";
5628 5646 src = fetchurl {
5629 5647 url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz";
5630 5648 sha1 = "68f80695f045d08263a879ad240df8dd64f644ea";
5631 5649 };
5632 5650 };
5633 5651 "postcss-reduce-transforms-1.0.4" = {
5634 5652 name = "postcss-reduce-transforms";
5635 5653 packageName = "postcss-reduce-transforms";
5636 5654 version = "1.0.4";
5637 5655 src = fetchurl {
5638 5656 url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz";
5639 5657 sha1 = "ff76f4d8212437b31c298a42d2e1444025771ae1";
5640 5658 };
5641 5659 };
5642 5660 "postcss-selector-parser-2.2.3" = {
5643 5661 name = "postcss-selector-parser";
5644 5662 packageName = "postcss-selector-parser";
5645 5663 version = "2.2.3";
5646 5664 src = fetchurl {
5647 5665 url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz";
5648 5666 sha1 = "f9437788606c3c9acee16ffe8d8b16297f27bb90";
5649 5667 };
5650 5668 };
5651 5669 "postcss-svgo-2.1.6" = {
5652 5670 name = "postcss-svgo";
5653 5671 packageName = "postcss-svgo";
5654 5672 version = "2.1.6";
5655 5673 src = fetchurl {
5656 5674 url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz";
5657 5675 sha1 = "b6df18aa613b666e133f08adb5219c2684ac108d";
5658 5676 };
5659 5677 };
5660 5678 "postcss-unique-selectors-2.0.2" = {
5661 5679 name = "postcss-unique-selectors";
5662 5680 packageName = "postcss-unique-selectors";
5663 5681 version = "2.0.2";
5664 5682 src = fetchurl {
5665 5683 url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz";
5666 5684 sha1 = "981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d";
5667 5685 };
5668 5686 };
5669 5687 "postcss-value-parser-3.3.1" = {
5670 5688 name = "postcss-value-parser";
5671 5689 packageName = "postcss-value-parser";
5672 5690 version = "3.3.1";
5673 5691 src = fetchurl {
5674 5692 url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz";
5675 5693 sha512 = "pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==";
5676 5694 };
5677 5695 };
5678 5696 "postcss-zindex-2.2.0" = {
5679 5697 name = "postcss-zindex";
5680 5698 packageName = "postcss-zindex";
5681 5699 version = "2.2.0";
5682 5700 src = fetchurl {
5683 5701 url = "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz";
5684 5702 sha1 = "d2109ddc055b91af67fc4cb3b025946639d2af22";
5685 5703 };
5686 5704 };
5687 5705 "prepend-http-1.0.4" = {
5688 5706 name = "prepend-http";
5689 5707 packageName = "prepend-http";
5690 5708 version = "1.0.4";
5691 5709 src = fetchurl {
5692 5710 url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
5693 5711 sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
5694 5712 };
5695 5713 };
5696 5714 "pretty-error-2.1.1" = {
5697 5715 name = "pretty-error";
5698 5716 packageName = "pretty-error";
5699 5717 version = "2.1.1";
5700 5718 src = fetchurl {
5701 5719 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz";
5702 5720 sha1 = "5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3";
5703 5721 };
5704 5722 };
5705 5723 "private-0.1.8" = {
5706 5724 name = "private";
5707 5725 packageName = "private";
5708 5726 version = "0.1.8";
5709 5727 src = fetchurl {
5710 5728 url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz";
5711 5729 sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==";
5712 5730 };
5713 5731 };
5714 5732 "process-0.11.10" = {
5715 5733 name = "process";
5716 5734 packageName = "process";
5717 5735 version = "0.11.10";
5718 5736 src = fetchurl {
5719 5737 url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz";
5720 5738 sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
5721 5739 };
5722 5740 };
5723 5741 "process-nextick-args-2.0.0" = {
5724 5742 name = "process-nextick-args";
5725 5743 packageName = "process-nextick-args";
5726 5744 version = "2.0.0";
5727 5745 src = fetchurl {
5728 5746 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz";
5729 5747 sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==";
5730 5748 };
5731 5749 };
5732 5750 "promise-7.3.1" = {
5733 5751 name = "promise";
5734 5752 packageName = "promise";
5735 5753 version = "7.3.1";
5736 5754 src = fetchurl {
5737 5755 url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
5738 5756 sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
5739 5757 };
5740 5758 };
5741 5759 "promise-inflight-1.0.1" = {
5742 5760 name = "promise-inflight";
5743 5761 packageName = "promise-inflight";
5744 5762 version = "1.0.1";
5745 5763 src = fetchurl {
5746 5764 url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz";
5747 5765 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
5748 5766 };
5749 5767 };
5750 5768 "prr-1.0.1" = {
5751 5769 name = "prr";
5752 5770 packageName = "prr";
5753 5771 version = "1.0.1";
5754 5772 src = fetchurl {
5755 5773 url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
5756 5774 sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
5757 5775 };
5758 5776 };
5759 5777 "pseudomap-1.0.2" = {
5760 5778 name = "pseudomap";
5761 5779 packageName = "pseudomap";
5762 5780 version = "1.0.2";
5763 5781 src = fetchurl {
5764 5782 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
5765 5783 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
5766 5784 };
5767 5785 };
5768 5786 "public-encrypt-4.0.3" = {
5769 5787 name = "public-encrypt";
5770 5788 packageName = "public-encrypt";
5771 5789 version = "4.0.3";
5772 5790 src = fetchurl {
5773 5791 url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz";
5774 5792 sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==";
5775 5793 };
5776 5794 };
5777 5795 "pump-2.0.1" = {
5778 5796 name = "pump";
5779 5797 packageName = "pump";
5780 5798 version = "2.0.1";
5781 5799 src = fetchurl {
5782 5800 url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz";
5783 5801 sha512 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==";
5784 5802 };
5785 5803 };
5786 5804 "pump-3.0.0" = {
5787 5805 name = "pump";
5788 5806 packageName = "pump";
5789 5807 version = "3.0.0";
5790 5808 src = fetchurl {
5791 5809 url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz";
5792 5810 sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==";
5793 5811 };
5794 5812 };
5795 5813 "pumpify-1.5.1" = {
5796 5814 name = "pumpify";
5797 5815 packageName = "pumpify";
5798 5816 version = "1.5.1";
5799 5817 src = fetchurl {
5800 5818 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz";
5801 5819 sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==";
5802 5820 };
5803 5821 };
5804 5822 "punycode-1.3.2" = {
5805 5823 name = "punycode";
5806 5824 packageName = "punycode";
5807 5825 version = "1.3.2";
5808 5826 src = fetchurl {
5809 5827 url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz";
5810 5828 sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
5811 5829 };
5812 5830 };
5813 5831 "punycode-1.4.1" = {
5814 5832 name = "punycode";
5815 5833 packageName = "punycode";
5816 5834 version = "1.4.1";
5817 5835 src = fetchurl {
5818 5836 url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
5819 5837 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
5820 5838 };
5821 5839 };
5822 5840 "punycode-2.1.1" = {
5823 5841 name = "punycode";
5824 5842 packageName = "punycode";
5825 5843 version = "2.1.1";
5826 5844 src = fetchurl {
5827 5845 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
5828 5846 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
5829 5847 };
5830 5848 };
5831 5849 "q-1.5.1" = {
5832 5850 name = "q";
5833 5851 packageName = "q";
5834 5852 version = "1.5.1";
5835 5853 src = fetchurl {
5836 5854 url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz";
5837 5855 sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7";
5838 5856 };
5839 5857 };
5840 5858 "qrious-4.0.2" = {
5841 5859 name = "qrious";
5842 5860 packageName = "qrious";
5843 5861 version = "4.0.2";
5844 5862 src = fetchurl {
5845 5863 url = "https://registry.npmjs.org/qrious/-/qrious-4.0.2.tgz";
5846 5864 sha512 = "xWPJIrK1zu5Ypn898fBp8RHkT/9ibquV2Kv24S/JY9VYEhMBMKur1gHVsOiNUh7PHP9uCgejjpZUHUIXXKoU/g==";
5847 5865 };
5848 5866 };
5849 5867 "qs-0.5.6" = {
5850 5868 name = "qs";
5851 5869 packageName = "qs";
5852 5870 version = "0.5.6";
5853 5871 src = fetchurl {
5854 5872 url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz";
5855 5873 sha1 = "31b1ad058567651c526921506b9a8793911a0384";
5856 5874 };
5857 5875 };
5858 5876 "qs-6.4.0" = {
5859 5877 name = "qs";
5860 5878 packageName = "qs";
5861 5879 version = "6.4.0";
5862 5880 src = fetchurl {
5863 5881 url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
5864 5882 sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
5865 5883 };
5866 5884 };
5867 5885 "query-string-4.3.4" = {
5868 5886 name = "query-string";
5869 5887 packageName = "query-string";
5870 5888 version = "4.3.4";
5871 5889 src = fetchurl {
5872 5890 url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz";
5873 5891 sha1 = "bbb693b9ca915c232515b228b1a02b609043dbeb";
5874 5892 };
5875 5893 };
5876 5894 "querystring-0.2.0" = {
5877 5895 name = "querystring";
5878 5896 packageName = "querystring";
5879 5897 version = "0.2.0";
5880 5898 src = fetchurl {
5881 5899 url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz";
5882 5900 sha1 = "b209849203bb25df820da756e747005878521620";
5883 5901 };
5884 5902 };
5885 5903 "querystring-es3-0.2.1" = {
5886 5904 name = "querystring-es3";
5887 5905 packageName = "querystring-es3";
5888 5906 version = "0.2.1";
5889 5907 src = fetchurl {
5890 5908 url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz";
5891 5909 sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
5892 5910 };
5893 5911 };
5894 5912 "randombytes-2.1.0" = {
5895 5913 name = "randombytes";
5896 5914 packageName = "randombytes";
5897 5915 version = "2.1.0";
5898 5916 src = fetchurl {
5899 5917 url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz";
5900 5918 sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==";
5901 5919 };
5902 5920 };
5903 5921 "randomfill-1.0.4" = {
5904 5922 name = "randomfill";
5905 5923 packageName = "randomfill";
5906 5924 version = "1.0.4";
5907 5925 src = fetchurl {
5908 5926 url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz";
5909 5927 sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==";
5910 5928 };
5911 5929 };
5912 5930 "raw-loader-1.0.0-beta.0" = {
5913 5931 name = "raw-loader";
5914 5932 packageName = "raw-loader";
5915 5933 version = "1.0.0-beta.0";
5916 5934 src = fetchurl {
5917 5935 url = "https://registry.npmjs.org/raw-loader/-/raw-loader-1.0.0-beta.0.tgz";
5918 5936 sha512 = "guh4ZNAf96f+CDwfnPbFeFiO5YcfPllUmZrgcoOmx6iqZPq+DcKbnyjPuBxEAtQ3tqqd++qChsQfQB+VBzFT0Q==";
5919 5937 };
5920 5938 };
5921 5939 "readable-stream-1.1.14" = {
5922 5940 name = "readable-stream";
5923 5941 packageName = "readable-stream";
5924 5942 version = "1.1.14";
5925 5943 src = fetchurl {
5926 5944 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
5927 5945 sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
5928 5946 };
5929 5947 };
5930 5948 "readable-stream-2.3.6" = {
5931 5949 name = "readable-stream";
5932 5950 packageName = "readable-stream";
5933 5951 version = "2.3.6";
5934 5952 src = fetchurl {
5935 5953 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
5936 5954 sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
5937 5955 };
5938 5956 };
5939 5957 "readdirp-2.2.1" = {
5940 5958 name = "readdirp";
5941 5959 packageName = "readdirp";
5942 5960 version = "2.2.1";
5943 5961 src = fetchurl {
5944 5962 url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz";
5945 5963 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
5946 5964 };
5947 5965 };
5948 5966 "recast-0.11.23" = {
5949 5967 name = "recast";
5950 5968 packageName = "recast";
5951 5969 version = "0.11.23";
5952 5970 src = fetchurl {
5953 5971 url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
5954 5972 sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
5955 5973 };
5956 5974 };
5957 5975 "rechoir-0.6.2" = {
5958 5976 name = "rechoir";
5959 5977 packageName = "rechoir";
5960 5978 version = "0.6.2";
5961 5979 src = fetchurl {
5962 5980 url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
5963 5981 sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
5964 5982 };
5965 5983 };
5966 5984 "reduce-css-calc-1.3.0" = {
5967 5985 name = "reduce-css-calc";
5968 5986 packageName = "reduce-css-calc";
5969 5987 version = "1.3.0";
5970 5988 src = fetchurl {
5971 5989 url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz";
5972 5990 sha1 = "747c914e049614a4c9cfbba629871ad1d2927716";
5973 5991 };
5974 5992 };
5975 5993 "reduce-function-call-1.0.2" = {
5976 5994 name = "reduce-function-call";
5977 5995 packageName = "reduce-function-call";
5978 5996 version = "1.0.2";
5979 5997 src = fetchurl {
5980 5998 url = "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz";
5981 5999 sha1 = "5a200bf92e0e37751752fe45b0ab330fd4b6be99";
5982 6000 };
5983 6001 };
5984 6002 "regenerate-1.4.0" = {
5985 6003 name = "regenerate";
5986 6004 packageName = "regenerate";
5987 6005 version = "1.4.0";
5988 6006 src = fetchurl {
5989 6007 url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz";
5990 6008 sha512 = "1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==";
5991 6009 };
5992 6010 };
5993 6011 "regenerator-runtime-0.11.1" = {
5994 6012 name = "regenerator-runtime";
5995 6013 packageName = "regenerator-runtime";
5996 6014 version = "0.11.1";
5997 6015 src = fetchurl {
5998 6016 url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
5999 6017 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
6000 6018 };
6001 6019 };
6002 6020 "regenerator-transform-0.10.1" = {
6003 6021 name = "regenerator-transform";
6004 6022 packageName = "regenerator-transform";
6005 6023 version = "0.10.1";
6006 6024 src = fetchurl {
6007 6025 url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz";
6008 6026 sha512 = "PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==";
6009 6027 };
6010 6028 };
6011 6029 "regex-not-1.0.2" = {
6012 6030 name = "regex-not";
6013 6031 packageName = "regex-not";
6014 6032 version = "1.0.2";
6015 6033 src = fetchurl {
6016 6034 url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
6017 6035 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
6018 6036 };
6019 6037 };
6020 6038 "regexpu-core-1.0.0" = {
6021 6039 name = "regexpu-core";
6022 6040 packageName = "regexpu-core";
6023 6041 version = "1.0.0";
6024 6042 src = fetchurl {
6025 6043 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz";
6026 6044 sha1 = "86a763f58ee4d7c2f6b102e4764050de7ed90c6b";
6027 6045 };
6028 6046 };
6029 6047 "regexpu-core-2.0.0" = {
6030 6048 name = "regexpu-core";
6031 6049 packageName = "regexpu-core";
6032 6050 version = "2.0.0";
6033 6051 src = fetchurl {
6034 6052 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz";
6035 6053 sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240";
6036 6054 };
6037 6055 };
6038 6056 "regjsgen-0.2.0" = {
6039 6057 name = "regjsgen";
6040 6058 packageName = "regjsgen";
6041 6059 version = "0.2.0";
6042 6060 src = fetchurl {
6043 6061 url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz";
6044 6062 sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7";
6045 6063 };
6046 6064 };
6047 6065 "regjsparser-0.1.5" = {
6048 6066 name = "regjsparser";
6049 6067 packageName = "regjsparser";
6050 6068 version = "0.1.5";
6051 6069 src = fetchurl {
6052 6070 url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz";
6053 6071 sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c";
6054 6072 };
6055 6073 };
6056 6074 "relateurl-0.2.7" = {
6057 6075 name = "relateurl";
6058 6076 packageName = "relateurl";
6059 6077 version = "0.2.7";
6060 6078 src = fetchurl {
6061 6079 url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz";
6062 6080 sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9";
6063 6081 };
6064 6082 };
6065 6083 "remove-trailing-separator-1.1.0" = {
6066 6084 name = "remove-trailing-separator";
6067 6085 packageName = "remove-trailing-separator";
6068 6086 version = "1.1.0";
6069 6087 src = fetchurl {
6070 6088 url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
6071 6089 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
6072 6090 };
6073 6091 };
6074 6092 "renderkid-2.0.3" = {
6075 6093 name = "renderkid";
6076 6094 packageName = "renderkid";
6077 6095 version = "2.0.3";
6078 6096 src = fetchurl {
6079 6097 url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz";
6080 6098 sha512 = "z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==";
6081 6099 };
6082 6100 };
6083 6101 "repeat-element-1.1.3" = {
6084 6102 name = "repeat-element";
6085 6103 packageName = "repeat-element";
6086 6104 version = "1.1.3";
6087 6105 src = fetchurl {
6088 6106 url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
6089 6107 sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
6090 6108 };
6091 6109 };
6092 6110 "repeat-string-1.6.1" = {
6093 6111 name = "repeat-string";
6094 6112 packageName = "repeat-string";
6095 6113 version = "1.6.1";
6096 6114 src = fetchurl {
6097 6115 url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
6098 6116 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
6099 6117 };
6100 6118 };
6101 6119 "repeating-2.0.1" = {
6102 6120 name = "repeating";
6103 6121 packageName = "repeating";
6104 6122 version = "2.0.1";
6105 6123 src = fetchurl {
6106 6124 url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
6107 6125 sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
6108 6126 };
6109 6127 };
6110 6128 "request-2.81.0" = {
6111 6129 name = "request";
6112 6130 packageName = "request";
6113 6131 version = "2.81.0";
6114 6132 src = fetchurl {
6115 6133 url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
6116 6134 sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
6117 6135 };
6118 6136 };
6119 6137 "require-directory-2.1.1" = {
6120 6138 name = "require-directory";
6121 6139 packageName = "require-directory";
6122 6140 version = "2.1.1";
6123 6141 src = fetchurl {
6124 6142 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
6125 6143 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
6126 6144 };
6127 6145 };
6128 6146 "require-main-filename-1.0.1" = {
6129 6147 name = "require-main-filename";
6130 6148 packageName = "require-main-filename";
6131 6149 version = "1.0.1";
6132 6150 src = fetchurl {
6133 6151 url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
6134 6152 sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
6135 6153 };
6136 6154 };
6137 "resolve-1.10.0" = {
6155 "resolve-1.10.1" = {
6138 6156 name = "resolve";
6139 6157 packageName = "resolve";
6140 version = "1.10.0";
6141 src = fetchurl {
6142 url = "https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz";
6143 sha512 = "3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==";
6158 version = "1.10.1";
6159 src = fetchurl {
6160 url = "https://registry.npmjs.org/resolve/-/resolve-1.10.1.tgz";
6161 sha512 = "KuIe4mf++td/eFb6wkaPbMDnP6kObCaEtIDuHOUED6MNUo4K670KZUHuuvYPZDxNF0WVLw49n06M2m2dXphEzA==";
6144 6162 };
6145 6163 };
6146 6164 "resolve-cwd-2.0.0" = {
6147 6165 name = "resolve-cwd";
6148 6166 packageName = "resolve-cwd";
6149 6167 version = "2.0.0";
6150 6168 src = fetchurl {
6151 6169 url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
6152 6170 sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
6153 6171 };
6154 6172 };
6155 6173 "resolve-dir-1.0.1" = {
6156 6174 name = "resolve-dir";
6157 6175 packageName = "resolve-dir";
6158 6176 version = "1.0.1";
6159 6177 src = fetchurl {
6160 6178 url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
6161 6179 sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
6162 6180 };
6163 6181 };
6164 6182 "resolve-from-3.0.0" = {
6165 6183 name = "resolve-from";
6166 6184 packageName = "resolve-from";
6167 6185 version = "3.0.0";
6168 6186 src = fetchurl {
6169 6187 url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
6170 6188 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
6171 6189 };
6172 6190 };
6173 6191 "resolve-url-0.2.1" = {
6174 6192 name = "resolve-url";
6175 6193 packageName = "resolve-url";
6176 6194 version = "0.2.1";
6177 6195 src = fetchurl {
6178 6196 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
6179 6197 sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
6180 6198 };
6181 6199 };
6182 6200 "ret-0.1.15" = {
6183 6201 name = "ret";
6184 6202 packageName = "ret";
6185 6203 version = "0.1.15";
6186 6204 src = fetchurl {
6187 6205 url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
6188 6206 sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
6189 6207 };
6190 6208 };
6191 6209 "right-align-0.1.3" = {
6192 6210 name = "right-align";
6193 6211 packageName = "right-align";
6194 6212 version = "0.1.3";
6195 6213 src = fetchurl {
6196 6214 url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
6197 6215 sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
6198 6216 };
6199 6217 };
6200 6218 "rimraf-2.2.8" = {
6201 6219 name = "rimraf";
6202 6220 packageName = "rimraf";
6203 6221 version = "2.2.8";
6204 6222 src = fetchurl {
6205 6223 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
6206 6224 sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
6207 6225 };
6208 6226 };
6209 6227 "rimraf-2.6.3" = {
6210 6228 name = "rimraf";
6211 6229 packageName = "rimraf";
6212 6230 version = "2.6.3";
6213 6231 src = fetchurl {
6214 6232 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz";
6215 6233 sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==";
6216 6234 };
6217 6235 };
6218 6236 "ripemd160-2.0.2" = {
6219 6237 name = "ripemd160";
6220 6238 packageName = "ripemd160";
6221 6239 version = "2.0.2";
6222 6240 src = fetchurl {
6223 6241 url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz";
6224 6242 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
6225 6243 };
6226 6244 };
6227 6245 "run-queue-1.0.3" = {
6228 6246 name = "run-queue";
6229 6247 packageName = "run-queue";
6230 6248 version = "1.0.3";
6231 6249 src = fetchurl {
6232 6250 url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz";
6233 6251 sha1 = "e848396f057d223f24386924618e25694161ec47";
6234 6252 };
6235 6253 };
6236 6254 "safe-buffer-5.1.2" = {
6237 6255 name = "safe-buffer";
6238 6256 packageName = "safe-buffer";
6239 6257 version = "5.1.2";
6240 6258 src = fetchurl {
6241 6259 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
6242 6260 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
6243 6261 };
6244 6262 };
6245 6263 "safe-regex-1.1.0" = {
6246 6264 name = "safe-regex";
6247 6265 packageName = "safe-regex";
6248 6266 version = "1.1.0";
6249 6267 src = fetchurl {
6250 6268 url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
6251 6269 sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
6252 6270 };
6253 6271 };
6254 6272 "safer-buffer-2.1.2" = {
6255 6273 name = "safer-buffer";
6256 6274 packageName = "safer-buffer";
6257 6275 version = "2.1.2";
6258 6276 src = fetchurl {
6259 6277 url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
6260 6278 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
6261 6279 };
6262 6280 };
6263 6281 "sax-1.2.4" = {
6264 6282 name = "sax";
6265 6283 packageName = "sax";
6266 6284 version = "1.2.4";
6267 6285 src = fetchurl {
6268 6286 url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
6269 6287 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
6270 6288 };
6271 6289 };
6272 6290 "schema-utils-0.4.7" = {
6273 6291 name = "schema-utils";
6274 6292 packageName = "schema-utils";
6275 6293 version = "0.4.7";
6276 6294 src = fetchurl {
6277 6295 url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz";
6278 6296 sha512 = "v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==";
6279 6297 };
6280 6298 };
6281 6299 "select-1.1.2" = {
6282 6300 name = "select";
6283 6301 packageName = "select";
6284 6302 version = "1.1.2";
6285 6303 src = fetchurl {
6286 6304 url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz";
6287 6305 sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
6288 6306 };
6289 6307 };
6290 "semver-5.6.0" = {
6308 "semver-5.7.0" = {
6291 6309 name = "semver";
6292 6310 packageName = "semver";
6293 version = "5.6.0";
6294 src = fetchurl {
6295 url = "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz";
6296 sha512 = "RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==";
6297 };
6298 };
6299 "serialize-javascript-1.6.1" = {
6311 version = "5.7.0";
6312 src = fetchurl {
6313 url = "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz";
6314 sha512 = "Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==";
6315 };
6316 };
6317 "serialize-javascript-1.7.0" = {
6300 6318 name = "serialize-javascript";
6301 6319 packageName = "serialize-javascript";
6302 version = "1.6.1";
6303 src = fetchurl {
6304 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.6.1.tgz";
6305 sha512 = "A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw==";
6320 version = "1.7.0";
6321 src = fetchurl {
6322 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz";
6323 sha512 = "ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==";
6306 6324 };
6307 6325 };
6308 6326 "set-blocking-2.0.0" = {
6309 6327 name = "set-blocking";
6310 6328 packageName = "set-blocking";
6311 6329 version = "2.0.0";
6312 6330 src = fetchurl {
6313 6331 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
6314 6332 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
6315 6333 };
6316 6334 };
6317 6335 "set-value-0.4.3" = {
6318 6336 name = "set-value";
6319 6337 packageName = "set-value";
6320 6338 version = "0.4.3";
6321 6339 src = fetchurl {
6322 6340 url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
6323 6341 sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
6324 6342 };
6325 6343 };
6326 6344 "set-value-2.0.0" = {
6327 6345 name = "set-value";
6328 6346 packageName = "set-value";
6329 6347 version = "2.0.0";
6330 6348 src = fetchurl {
6331 6349 url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
6332 6350 sha512 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==";
6333 6351 };
6334 6352 };
6335 6353 "setimmediate-1.0.5" = {
6336 6354 name = "setimmediate";
6337 6355 packageName = "setimmediate";
6338 6356 version = "1.0.5";
6339 6357 src = fetchurl {
6340 6358 url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
6341 6359 sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
6342 6360 };
6343 6361 };
6344 6362 "sha.js-2.4.11" = {
6345 6363 name = "sha.js";
6346 6364 packageName = "sha.js";
6347 6365 version = "2.4.11";
6348 6366 src = fetchurl {
6349 6367 url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
6350 6368 sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==";
6351 6369 };
6352 6370 };
6353 6371 "shebang-command-1.2.0" = {
6354 6372 name = "shebang-command";
6355 6373 packageName = "shebang-command";
6356 6374 version = "1.2.0";
6357 6375 src = fetchurl {
6358 6376 url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
6359 6377 sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
6360 6378 };
6361 6379 };
6362 6380 "shebang-regex-1.0.0" = {
6363 6381 name = "shebang-regex";
6364 6382 packageName = "shebang-regex";
6365 6383 version = "1.0.0";
6366 6384 src = fetchurl {
6367 6385 url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
6368 6386 sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
6369 6387 };
6370 6388 };
6371 6389 "shelljs-0.3.0" = {
6372 6390 name = "shelljs";
6373 6391 packageName = "shelljs";
6374 6392 version = "0.3.0";
6375 6393 src = fetchurl {
6376 6394 url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz";
6377 6395 sha1 = "3596e6307a781544f591f37da618360f31db57b1";
6378 6396 };
6379 6397 };
6380 6398 "sigmund-1.0.1" = {
6381 6399 name = "sigmund";
6382 6400 packageName = "sigmund";
6383 6401 version = "1.0.1";
6384 6402 src = fetchurl {
6385 6403 url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
6386 6404 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
6387 6405 };
6388 6406 };
6389 6407 "signal-exit-3.0.2" = {
6390 6408 name = "signal-exit";
6391 6409 packageName = "signal-exit";
6392 6410 version = "3.0.2";
6393 6411 src = fetchurl {
6394 6412 url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
6395 6413 sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
6396 6414 };
6397 6415 };
6398 6416 "slash-1.0.0" = {
6399 6417 name = "slash";
6400 6418 packageName = "slash";
6401 6419 version = "1.0.0";
6402 6420 src = fetchurl {
6403 6421 url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
6404 6422 sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
6405 6423 };
6406 6424 };
6407 6425 "snapdragon-0.8.2" = {
6408 6426 name = "snapdragon";
6409 6427 packageName = "snapdragon";
6410 6428 version = "0.8.2";
6411 6429 src = fetchurl {
6412 6430 url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
6413 6431 sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
6414 6432 };
6415 6433 };
6416 6434 "snapdragon-node-2.1.1" = {
6417 6435 name = "snapdragon-node";
6418 6436 packageName = "snapdragon-node";
6419 6437 version = "2.1.1";
6420 6438 src = fetchurl {
6421 6439 url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
6422 6440 sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
6423 6441 };
6424 6442 };
6425 6443 "snapdragon-util-3.0.1" = {
6426 6444 name = "snapdragon-util";
6427 6445 packageName = "snapdragon-util";
6428 6446 version = "3.0.1";
6429 6447 src = fetchurl {
6430 6448 url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
6431 6449 sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
6432 6450 };
6433 6451 };
6434 6452 "sntp-1.0.9" = {
6435 6453 name = "sntp";
6436 6454 packageName = "sntp";
6437 6455 version = "1.0.9";
6438 6456 src = fetchurl {
6439 6457 url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
6440 6458 sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
6441 6459 };
6442 6460 };
6443 6461 "sort-keys-1.1.2" = {
6444 6462 name = "sort-keys";
6445 6463 packageName = "sort-keys";
6446 6464 version = "1.1.2";
6447 6465 src = fetchurl {
6448 6466 url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz";
6449 6467 sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad";
6450 6468 };
6451 6469 };
6452 6470 "source-list-map-0.1.8" = {
6453 6471 name = "source-list-map";
6454 6472 packageName = "source-list-map";
6455 6473 version = "0.1.8";
6456 6474 src = fetchurl {
6457 6475 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz";
6458 6476 sha1 = "c550b2ab5427f6b3f21f5afead88c4f5587b2106";
6459 6477 };
6460 6478 };
6461 6479 "source-list-map-2.0.1" = {
6462 6480 name = "source-list-map";
6463 6481 packageName = "source-list-map";
6464 6482 version = "2.0.1";
6465 6483 src = fetchurl {
6466 6484 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz";
6467 6485 sha512 = "qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==";
6468 6486 };
6469 6487 };
6470 6488 "source-map-0.3.0" = {
6471 6489 name = "source-map";
6472 6490 packageName = "source-map";
6473 6491 version = "0.3.0";
6474 6492 src = fetchurl {
6475 6493 url = "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz";
6476 6494 sha1 = "8586fb9a5a005e5b501e21cd18b6f21b457ad1f9";
6477 6495 };
6478 6496 };
6479 6497 "source-map-0.4.4" = {
6480 6498 name = "source-map";
6481 6499 packageName = "source-map";
6482 6500 version = "0.4.4";
6483 6501 src = fetchurl {
6484 6502 url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz";
6485 6503 sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
6486 6504 };
6487 6505 };
6488 6506 "source-map-0.5.7" = {
6489 6507 name = "source-map";
6490 6508 packageName = "source-map";
6491 6509 version = "0.5.7";
6492 6510 src = fetchurl {
6493 6511 url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
6494 6512 sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
6495 6513 };
6496 6514 };
6497 6515 "source-map-0.6.1" = {
6498 6516 name = "source-map";
6499 6517 packageName = "source-map";
6500 6518 version = "0.6.1";
6501 6519 src = fetchurl {
6502 6520 url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
6503 6521 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
6504 6522 };
6505 6523 };
6506 6524 "source-map-resolve-0.5.2" = {
6507 6525 name = "source-map-resolve";
6508 6526 packageName = "source-map-resolve";
6509 6527 version = "0.5.2";
6510 6528 src = fetchurl {
6511 6529 url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz";
6512 6530 sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==";
6513 6531 };
6514 6532 };
6515 6533 "source-map-support-0.4.18" = {
6516 6534 name = "source-map-support";
6517 6535 packageName = "source-map-support";
6518 6536 version = "0.4.18";
6519 6537 src = fetchurl {
6520 6538 url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz";
6521 6539 sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==";
6522 6540 };
6523 6541 };
6524 6542 "source-map-url-0.4.0" = {
6525 6543 name = "source-map-url";
6526 6544 packageName = "source-map-url";
6527 6545 version = "0.4.0";
6528 6546 src = fetchurl {
6529 6547 url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
6530 6548 sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
6531 6549 };
6532 6550 };
6533 6551 "split-string-3.1.0" = {
6534 6552 name = "split-string";
6535 6553 packageName = "split-string";
6536 6554 version = "3.1.0";
6537 6555 src = fetchurl {
6538 6556 url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
6539 6557 sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
6540 6558 };
6541 6559 };
6542 6560 "sprintf-js-1.0.3" = {
6543 6561 name = "sprintf-js";
6544 6562 packageName = "sprintf-js";
6545 6563 version = "1.0.3";
6546 6564 src = fetchurl {
6547 6565 url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
6548 6566 sha1 = "04e6926f662895354f3dd015203633b857297e2c";
6549 6567 };
6550 6568 };
6551 6569 "sshpk-1.16.1" = {
6552 6570 name = "sshpk";
6553 6571 packageName = "sshpk";
6554 6572 version = "1.16.1";
6555 6573 src = fetchurl {
6556 6574 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz";
6557 6575 sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==";
6558 6576 };
6559 6577 };
6560 6578 "ssri-5.3.0" = {
6561 6579 name = "ssri";
6562 6580 packageName = "ssri";
6563 6581 version = "5.3.0";
6564 6582 src = fetchurl {
6565 6583 url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
6566 6584 sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
6567 6585 };
6568 6586 };
6569 6587 "static-extend-0.1.2" = {
6570 6588 name = "static-extend";
6571 6589 packageName = "static-extend";
6572 6590 version = "0.1.2";
6573 6591 src = fetchurl {
6574 6592 url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
6575 6593 sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
6576 6594 };
6577 6595 };
6578 6596 "sticky-sidebar-3.3.1" = {
6579 6597 name = "sticky-sidebar";
6580 6598 packageName = "sticky-sidebar";
6581 6599 version = "3.3.1";
6582 6600 src = fetchurl {
6583 6601 url = "https://registry.npmjs.org/sticky-sidebar/-/sticky-sidebar-3.3.1.tgz";
6584 6602 sha1 = "142bf6b64c2b416e4b707ebf8f09b8b5a5043877";
6585 6603 };
6586 6604 };
6587 6605 "stream-browserify-2.0.2" = {
6588 6606 name = "stream-browserify";
6589 6607 packageName = "stream-browserify";
6590 6608 version = "2.0.2";
6591 6609 src = fetchurl {
6592 6610 url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz";
6593 6611 sha512 = "nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==";
6594 6612 };
6595 6613 };
6596 6614 "stream-each-1.2.3" = {
6597 6615 name = "stream-each";
6598 6616 packageName = "stream-each";
6599 6617 version = "1.2.3";
6600 6618 src = fetchurl {
6601 6619 url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
6602 6620 sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
6603 6621 };
6604 6622 };
6605 6623 "stream-http-2.8.3" = {
6606 6624 name = "stream-http";
6607 6625 packageName = "stream-http";
6608 6626 version = "2.8.3";
6609 6627 src = fetchurl {
6610 6628 url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
6611 6629 sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==";
6612 6630 };
6613 6631 };
6614 6632 "stream-shift-1.0.0" = {
6615 6633 name = "stream-shift";
6616 6634 packageName = "stream-shift";
6617 6635 version = "1.0.0";
6618 6636 src = fetchurl {
6619 6637 url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz";
6620 6638 sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
6621 6639 };
6622 6640 };
6623 6641 "strict-uri-encode-1.1.0" = {
6624 6642 name = "strict-uri-encode";
6625 6643 packageName = "strict-uri-encode";
6626 6644 version = "1.1.0";
6627 6645 src = fetchurl {
6628 6646 url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz";
6629 6647 sha1 = "279b225df1d582b1f54e65addd4352e18faa0713";
6630 6648 };
6631 6649 };
6632 6650 "string-width-1.0.2" = {
6633 6651 name = "string-width";
6634 6652 packageName = "string-width";
6635 6653 version = "1.0.2";
6636 6654 src = fetchurl {
6637 6655 url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
6638 6656 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
6639 6657 };
6640 6658 };
6641 6659 "string-width-2.1.1" = {
6642 6660 name = "string-width";
6643 6661 packageName = "string-width";
6644 6662 version = "2.1.1";
6645 6663 src = fetchurl {
6646 6664 url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
6647 6665 sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
6648 6666 };
6649 6667 };
6650 6668 "string_decoder-0.10.31" = {
6651 6669 name = "string_decoder";
6652 6670 packageName = "string_decoder";
6653 6671 version = "0.10.31";
6654 6672 src = fetchurl {
6655 6673 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
6656 6674 sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
6657 6675 };
6658 6676 };
6659 6677 "string_decoder-1.1.1" = {
6660 6678 name = "string_decoder";
6661 6679 packageName = "string_decoder";
6662 6680 version = "1.1.1";
6663 6681 src = fetchurl {
6664 6682 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
6665 6683 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
6666 6684 };
6667 6685 };
6668 6686 "string_decoder-1.2.0" = {
6669 6687 name = "string_decoder";
6670 6688 packageName = "string_decoder";
6671 6689 version = "1.2.0";
6672 6690 src = fetchurl {
6673 6691 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz";
6674 6692 sha512 = "6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w==";
6675 6693 };
6676 6694 };
6677 6695 "stringstream-0.0.6" = {
6678 6696 name = "stringstream";
6679 6697 packageName = "stringstream";
6680 6698 version = "0.0.6";
6681 6699 src = fetchurl {
6682 6700 url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz";
6683 6701 sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==";
6684 6702 };
6685 6703 };
6686 6704 "strip-ansi-0.3.0" = {
6687 6705 name = "strip-ansi";
6688 6706 packageName = "strip-ansi";
6689 6707 version = "0.3.0";
6690 6708 src = fetchurl {
6691 6709 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz";
6692 6710 sha1 = "25f48ea22ca79187f3174a4db8759347bb126220";
6693 6711 };
6694 6712 };
6695 6713 "strip-ansi-3.0.1" = {
6696 6714 name = "strip-ansi";
6697 6715 packageName = "strip-ansi";
6698 6716 version = "3.0.1";
6699 6717 src = fetchurl {
6700 6718 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
6701 6719 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
6702 6720 };
6703 6721 };
6704 6722 "strip-ansi-4.0.0" = {
6705 6723 name = "strip-ansi";
6706 6724 packageName = "strip-ansi";
6707 6725 version = "4.0.0";
6708 6726 src = fetchurl {
6709 6727 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
6710 6728 sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
6711 6729 };
6712 6730 };
6713 6731 "strip-eof-1.0.0" = {
6714 6732 name = "strip-eof";
6715 6733 packageName = "strip-eof";
6716 6734 version = "1.0.0";
6717 6735 src = fetchurl {
6718 6736 url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
6719 6737 sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
6720 6738 };
6721 6739 };
6722 6740 "strip-json-comments-1.0.4" = {
6723 6741 name = "strip-json-comments";
6724 6742 packageName = "strip-json-comments";
6725 6743 version = "1.0.4";
6726 6744 src = fetchurl {
6727 6745 url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
6728 6746 sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
6729 6747 };
6730 6748 };
6731 6749 "style-loader-0.21.0" = {
6732 6750 name = "style-loader";
6733 6751 packageName = "style-loader";
6734 6752 version = "0.21.0";
6735 6753 src = fetchurl {
6736 6754 url = "https://registry.npmjs.org/style-loader/-/style-loader-0.21.0.tgz";
6737 6755 sha512 = "T+UNsAcl3Yg+BsPKs1vd22Fr8sVT+CJMtzqc6LEw9bbJZb43lm9GoeIfUcDEefBSWC0BhYbcdupV1GtI4DGzxg==";
6738 6756 };
6739 6757 };
6740 6758 "supports-color-0.2.0" = {
6741 6759 name = "supports-color";
6742 6760 packageName = "supports-color";
6743 6761 version = "0.2.0";
6744 6762 src = fetchurl {
6745 6763 url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz";
6746 6764 sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a";
6747 6765 };
6748 6766 };
6749 6767 "supports-color-2.0.0" = {
6750 6768 name = "supports-color";
6751 6769 packageName = "supports-color";
6752 6770 version = "2.0.0";
6753 6771 src = fetchurl {
6754 6772 url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
6755 6773 sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
6756 6774 };
6757 6775 };
6758 6776 "supports-color-3.2.3" = {
6759 6777 name = "supports-color";
6760 6778 packageName = "supports-color";
6761 6779 version = "3.2.3";
6762 6780 src = fetchurl {
6763 6781 url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz";
6764 6782 sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6";
6765 6783 };
6766 6784 };
6767 6785 "supports-color-5.5.0" = {
6768 6786 name = "supports-color";
6769 6787 packageName = "supports-color";
6770 6788 version = "5.5.0";
6771 6789 src = fetchurl {
6772 6790 url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz";
6773 6791 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==";
6774 6792 };
6775 6793 };
6776 6794 "svgo-0.7.2" = {
6777 6795 name = "svgo";
6778 6796 packageName = "svgo";
6779 6797 version = "0.7.2";
6780 6798 src = fetchurl {
6781 6799 url = "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz";
6782 6800 sha1 = "9f5772413952135c6fefbf40afe6a4faa88b4bb5";
6783 6801 };
6784 6802 };
6785 6803 "tapable-0.2.9" = {
6786 6804 name = "tapable";
6787 6805 packageName = "tapable";
6788 6806 version = "0.2.9";
6789 6807 src = fetchurl {
6790 6808 url = "https://registry.npmjs.org/tapable/-/tapable-0.2.9.tgz";
6791 6809 sha512 = "2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A==";
6792 6810 };
6793 6811 };
6794 "tapable-1.1.1" = {
6812 "tapable-1.1.3" = {
6795 6813 name = "tapable";
6796 6814 packageName = "tapable";
6797 version = "1.1.1";
6798 src = fetchurl {
6799 url = "https://registry.npmjs.org/tapable/-/tapable-1.1.1.tgz";
6800 sha512 = "9I2ydhj8Z9veORCw5PRm4u9uebCn0mcCa6scWoNcbZ6dAtoo2618u9UUzxgmsCOreJpqDDuv61LvwofW7hLcBA==";
6815 version = "1.1.3";
6816 src = fetchurl {
6817 url = "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz";
6818 sha512 = "4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==";
6801 6819 };
6802 6820 };
6803 6821 "through-2.3.8" = {
6804 6822 name = "through";
6805 6823 packageName = "through";
6806 6824 version = "2.3.8";
6807 6825 src = fetchurl {
6808 6826 url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
6809 6827 sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
6810 6828 };
6811 6829 };
6812 6830 "through2-2.0.5" = {
6813 6831 name = "through2";
6814 6832 packageName = "through2";
6815 6833 version = "2.0.5";
6816 6834 src = fetchurl {
6817 6835 url = "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz";
6818 6836 sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==";
6819 6837 };
6820 6838 };
6821 6839 "timers-browserify-2.0.10" = {
6822 6840 name = "timers-browserify";
6823 6841 packageName = "timers-browserify";
6824 6842 version = "2.0.10";
6825 6843 src = fetchurl {
6826 6844 url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz";
6827 6845 sha512 = "YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==";
6828 6846 };
6829 6847 };
6830 6848 "tiny-emitter-2.1.0" = {
6831 6849 name = "tiny-emitter";
6832 6850 packageName = "tiny-emitter";
6833 6851 version = "2.1.0";
6834 6852 src = fetchurl {
6835 6853 url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz";
6836 6854 sha512 = "NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==";
6837 6855 };
6838 6856 };
6839 6857 "tiny-lr-fork-0.0.5" = {
6840 6858 name = "tiny-lr-fork";
6841 6859 packageName = "tiny-lr-fork";
6842 6860 version = "0.0.5";
6843 6861 src = fetchurl {
6844 6862 url = "https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz";
6845 6863 sha1 = "1e99e1e2a8469b736ab97d97eefa98c71f76ed0a";
6846 6864 };
6847 6865 };
6848 6866 "to-arraybuffer-1.0.1" = {
6849 6867 name = "to-arraybuffer";
6850 6868 packageName = "to-arraybuffer";
6851 6869 version = "1.0.1";
6852 6870 src = fetchurl {
6853 6871 url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
6854 6872 sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
6855 6873 };
6856 6874 };
6857 6875 "to-fast-properties-1.0.3" = {
6858 6876 name = "to-fast-properties";
6859 6877 packageName = "to-fast-properties";
6860 6878 version = "1.0.3";
6861 6879 src = fetchurl {
6862 6880 url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
6863 6881 sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
6864 6882 };
6865 6883 };
6866 6884 "to-object-path-0.3.0" = {
6867 6885 name = "to-object-path";
6868 6886 packageName = "to-object-path";
6869 6887 version = "0.3.0";
6870 6888 src = fetchurl {
6871 6889 url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
6872 6890 sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
6873 6891 };
6874 6892 };
6875 6893 "to-regex-3.0.2" = {
6876 6894 name = "to-regex";
6877 6895 packageName = "to-regex";
6878 6896 version = "3.0.2";
6879 6897 src = fetchurl {
6880 6898 url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
6881 6899 sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
6882 6900 };
6883 6901 };
6884 6902 "to-regex-range-2.1.1" = {
6885 6903 name = "to-regex-range";
6886 6904 packageName = "to-regex-range";
6887 6905 version = "2.1.1";
6888 6906 src = fetchurl {
6889 6907 url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
6890 6908 sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
6891 6909 };
6892 6910 };
6893 6911 "toposort-1.0.7" = {
6894 6912 name = "toposort";
6895 6913 packageName = "toposort";
6896 6914 version = "1.0.7";
6897 6915 src = fetchurl {
6898 6916 url = "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz";
6899 6917 sha1 = "2e68442d9f64ec720b8cc89e6443ac6caa950029";
6900 6918 };
6901 6919 };
6902 6920 "tough-cookie-2.3.4" = {
6903 6921 name = "tough-cookie";
6904 6922 packageName = "tough-cookie";
6905 6923 version = "2.3.4";
6906 6924 src = fetchurl {
6907 6925 url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
6908 6926 sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
6909 6927 };
6910 6928 };
6911 6929 "trim-right-1.0.1" = {
6912 6930 name = "trim-right";
6913 6931 packageName = "trim-right";
6914 6932 version = "1.0.1";
6915 6933 src = fetchurl {
6916 6934 url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz";
6917 6935 sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
6918 6936 };
6919 6937 };
6920 6938 "ts-loader-1.3.3" = {
6921 6939 name = "ts-loader";
6922 6940 packageName = "ts-loader";
6923 6941 version = "1.3.3";
6924 6942 src = fetchurl {
6925 6943 url = "https://registry.npmjs.org/ts-loader/-/ts-loader-1.3.3.tgz";
6926 6944 sha1 = "30c6203e1e66b841a88701ed8858f1725d94b026";
6927 6945 };
6928 6946 };
6929 6947 "tslib-1.9.3" = {
6930 6948 name = "tslib";
6931 6949 packageName = "tslib";
6932 6950 version = "1.9.3";
6933 6951 src = fetchurl {
6934 6952 url = "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz";
6935 6953 sha512 = "4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==";
6936 6954 };
6937 6955 };
6938 6956 "tty-browserify-0.0.0" = {
6939 6957 name = "tty-browserify";
6940 6958 packageName = "tty-browserify";
6941 6959 version = "0.0.0";
6942 6960 src = fetchurl {
6943 6961 url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz";
6944 6962 sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
6945 6963 };
6946 6964 };
6947 6965 "tunnel-agent-0.6.0" = {
6948 6966 name = "tunnel-agent";
6949 6967 packageName = "tunnel-agent";
6950 6968 version = "0.6.0";
6951 6969 src = fetchurl {
6952 6970 url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
6953 6971 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
6954 6972 };
6955 6973 };
6956 6974 "tweetnacl-0.14.5" = {
6957 6975 name = "tweetnacl";
6958 6976 packageName = "tweetnacl";
6959 6977 version = "0.14.5";
6960 6978 src = fetchurl {
6961 6979 url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
6962 6980 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
6963 6981 };
6964 6982 };
6965 6983 "typedarray-0.0.6" = {
6966 6984 name = "typedarray";
6967 6985 packageName = "typedarray";
6968 6986 version = "0.0.6";
6969 6987 src = fetchurl {
6970 6988 url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
6971 6989 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
6972 6990 };
6973 6991 };
6974 6992 "uglify-es-3.3.10" = {
6975 6993 name = "uglify-es";
6976 6994 packageName = "uglify-es";
6977 6995 version = "3.3.10";
6978 6996 src = fetchurl {
6979 6997 url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz";
6980 6998 sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww==";
6981 6999 };
6982 7000 };
6983 7001 "uglify-js-2.8.29" = {
6984 7002 name = "uglify-js";
6985 7003 packageName = "uglify-js";
6986 7004 version = "2.8.29";
6987 7005 src = fetchurl {
6988 7006 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz";
6989 7007 sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
6990 7008 };
6991 7009 };
6992 "uglify-js-3.4.9" = {
7010 "uglify-js-3.4.10" = {
6993 7011 name = "uglify-js";
6994 7012 packageName = "uglify-js";
6995 version = "3.4.9";
6996 src = fetchurl {
6997 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz";
6998 sha512 = "8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==";
7013 version = "3.4.10";
7014 src = fetchurl {
7015 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz";
7016 sha512 = "Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==";
6999 7017 };
7000 7018 };
7001 7019 "uglify-to-browserify-1.0.2" = {
7002 7020 name = "uglify-to-browserify";
7003 7021 packageName = "uglify-to-browserify";
7004 7022 version = "1.0.2";
7005 7023 src = fetchurl {
7006 7024 url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
7007 7025 sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
7008 7026 };
7009 7027 };
7010 7028 "uglifyjs-webpack-plugin-1.3.0" = {
7011 7029 name = "uglifyjs-webpack-plugin";
7012 7030 packageName = "uglifyjs-webpack-plugin";
7013 7031 version = "1.3.0";
7014 7032 src = fetchurl {
7015 7033 url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz";
7016 7034 sha512 = "ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==";
7017 7035 };
7018 7036 };
7019 7037 "unc-path-regex-0.1.2" = {
7020 7038 name = "unc-path-regex";
7021 7039 packageName = "unc-path-regex";
7022 7040 version = "0.1.2";
7023 7041 src = fetchurl {
7024 7042 url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
7025 7043 sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
7026 7044 };
7027 7045 };
7028 7046 "underscore-1.7.0" = {
7029 7047 name = "underscore";
7030 7048 packageName = "underscore";
7031 7049 version = "1.7.0";
7032 7050 src = fetchurl {
7033 7051 url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz";
7034 7052 sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209";
7035 7053 };
7036 7054 };
7037 7055 "underscore.string-2.2.1" = {
7038 7056 name = "underscore.string";
7039 7057 packageName = "underscore.string";
7040 7058 version = "2.2.1";
7041 7059 src = fetchurl {
7042 7060 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz";
7043 7061 sha1 = "d7c0fa2af5d5a1a67f4253daee98132e733f0f19";
7044 7062 };
7045 7063 };
7046 7064 "underscore.string-2.3.3" = {
7047 7065 name = "underscore.string";
7048 7066 packageName = "underscore.string";
7049 7067 version = "2.3.3";
7050 7068 src = fetchurl {
7051 7069 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz";
7052 7070 sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d";
7053 7071 };
7054 7072 };
7055 7073 "underscore.string-2.4.0" = {
7056 7074 name = "underscore.string";
7057 7075 packageName = "underscore.string";
7058 7076 version = "2.4.0";
7059 7077 src = fetchurl {
7060 7078 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz";
7061 7079 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
7062 7080 };
7063 7081 };
7064 7082 "union-value-1.0.0" = {
7065 7083 name = "union-value";
7066 7084 packageName = "union-value";
7067 7085 version = "1.0.0";
7068 7086 src = fetchurl {
7069 7087 url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
7070 7088 sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
7071 7089 };
7072 7090 };
7073 7091 "uniq-1.0.1" = {
7074 7092 name = "uniq";
7075 7093 packageName = "uniq";
7076 7094 version = "1.0.1";
7077 7095 src = fetchurl {
7078 7096 url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz";
7079 7097 sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff";
7080 7098 };
7081 7099 };
7082 7100 "uniqs-2.0.0" = {
7083 7101 name = "uniqs";
7084 7102 packageName = "uniqs";
7085 7103 version = "2.0.0";
7086 7104 src = fetchurl {
7087 7105 url = "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz";
7088 7106 sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02";
7089 7107 };
7090 7108 };
7091 7109 "unique-filename-1.1.1" = {
7092 7110 name = "unique-filename";
7093 7111 packageName = "unique-filename";
7094 7112 version = "1.1.1";
7095 7113 src = fetchurl {
7096 7114 url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz";
7097 7115 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==";
7098 7116 };
7099 7117 };
7100 7118 "unique-slug-2.0.1" = {
7101 7119 name = "unique-slug";
7102 7120 packageName = "unique-slug";
7103 7121 version = "2.0.1";
7104 7122 src = fetchurl {
7105 7123 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz";
7106 7124 sha512 = "n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==";
7107 7125 };
7108 7126 };
7109 7127 "unset-value-1.0.0" = {
7110 7128 name = "unset-value";
7111 7129 packageName = "unset-value";
7112 7130 version = "1.0.0";
7113 7131 src = fetchurl {
7114 7132 url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
7115 7133 sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
7116 7134 };
7117 7135 };
7118 "upath-1.1.0" = {
7136 "upath-1.1.2" = {
7119 7137 name = "upath";
7120 7138 packageName = "upath";
7121 version = "1.1.0";
7122 src = fetchurl {
7123 url = "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz";
7124 sha512 = "bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==";
7139 version = "1.1.2";
7140 src = fetchurl {
7141 url = "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz";
7142 sha512 = "kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==";
7125 7143 };
7126 7144 };
7127 7145 "upper-case-1.1.3" = {
7128 7146 name = "upper-case";
7129 7147 packageName = "upper-case";
7130 7148 version = "1.1.3";
7131 7149 src = fetchurl {
7132 7150 url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz";
7133 7151 sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598";
7134 7152 };
7135 7153 };
7136 7154 "uri-js-4.2.2" = {
7137 7155 name = "uri-js";
7138 7156 packageName = "uri-js";
7139 7157 version = "4.2.2";
7140 7158 src = fetchurl {
7141 7159 url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
7142 7160 sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
7143 7161 };
7144 7162 };
7145 7163 "urix-0.1.0" = {
7146 7164 name = "urix";
7147 7165 packageName = "urix";
7148 7166 version = "0.1.0";
7149 7167 src = fetchurl {
7150 7168 url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
7151 7169 sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
7152 7170 };
7153 7171 };
7154 7172 "url-0.11.0" = {
7155 7173 name = "url";
7156 7174 packageName = "url";
7157 7175 version = "0.11.0";
7158 7176 src = fetchurl {
7159 7177 url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz";
7160 7178 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
7161 7179 };
7162 7180 };
7163 7181 "use-3.1.1" = {
7164 7182 name = "use";
7165 7183 packageName = "use";
7166 7184 version = "3.1.1";
7167 7185 src = fetchurl {
7168 7186 url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
7169 7187 sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
7170 7188 };
7171 7189 };
7172 7190 "util-0.10.3" = {
7173 7191 name = "util";
7174 7192 packageName = "util";
7175 7193 version = "0.10.3";
7176 7194 src = fetchurl {
7177 7195 url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz";
7178 7196 sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
7179 7197 };
7180 7198 };
7181 7199 "util-0.11.1" = {
7182 7200 name = "util";
7183 7201 packageName = "util";
7184 7202 version = "0.11.1";
7185 7203 src = fetchurl {
7186 7204 url = "https://registry.npmjs.org/util/-/util-0.11.1.tgz";
7187 7205 sha512 = "HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==";
7188 7206 };
7189 7207 };
7190 7208 "util-deprecate-1.0.2" = {
7191 7209 name = "util-deprecate";
7192 7210 packageName = "util-deprecate";
7193 7211 version = "1.0.2";
7194 7212 src = fetchurl {
7195 7213 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
7196 7214 sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
7197 7215 };
7198 7216 };
7199 7217 "util.promisify-1.0.0" = {
7200 7218 name = "util.promisify";
7201 7219 packageName = "util.promisify";
7202 7220 version = "1.0.0";
7203 7221 src = fetchurl {
7204 7222 url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz";
7205 7223 sha512 = "i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==";
7206 7224 };
7207 7225 };
7208 7226 "utila-0.4.0" = {
7209 7227 name = "utila";
7210 7228 packageName = "utila";
7211 7229 version = "0.4.0";
7212 7230 src = fetchurl {
7213 7231 url = "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz";
7214 7232 sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c";
7215 7233 };
7216 7234 };
7217 7235 "uuid-3.3.2" = {
7218 7236 name = "uuid";
7219 7237 packageName = "uuid";
7220 7238 version = "3.3.2";
7221 7239 src = fetchurl {
7222 7240 url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
7223 7241 sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
7224 7242 };
7225 7243 };
7226 "v8-compile-cache-2.0.2" = {
7244 "v8-compile-cache-2.0.3" = {
7227 7245 name = "v8-compile-cache";
7228 7246 packageName = "v8-compile-cache";
7229 version = "2.0.2";
7230 src = fetchurl {
7231 url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz";
7232 sha512 = "1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==";
7233 };
7234 };
7235 "v8flags-3.1.2" = {
7247 version = "2.0.3";
7248 src = fetchurl {
7249 url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz";
7250 sha512 = "CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==";
7251 };
7252 };
7253 "v8flags-3.1.3" = {
7236 7254 name = "v8flags";
7237 7255 packageName = "v8flags";
7238 version = "3.1.2";
7239 src = fetchurl {
7240 url = "https://registry.npmjs.org/v8flags/-/v8flags-3.1.2.tgz";
7241 sha512 = "MtivA7GF24yMPte9Rp/BWGCYQNaUj86zeYxV/x2RRJMKagImbbv3u8iJC57lNhWLPcGLJmHcHmFWkNsplbbLWw==";
7242 };
7243 };
7244 "vendors-1.0.2" = {
7256 version = "3.1.3";
7257 src = fetchurl {
7258 url = "https://registry.npmjs.org/v8flags/-/v8flags-3.1.3.tgz";
7259 sha512 = "amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==";
7260 };
7261 };
7262 "vendors-1.0.3" = {
7245 7263 name = "vendors";
7246 7264 packageName = "vendors";
7247 version = "1.0.2";
7248 src = fetchurl {
7249 url = "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz";
7250 sha512 = "w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ==";
7265 version = "1.0.3";
7266 src = fetchurl {
7267 url = "https://registry.npmjs.org/vendors/-/vendors-1.0.3.tgz";
7268 sha512 = "fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw==";
7251 7269 };
7252 7270 };
7253 7271 "verror-1.10.0" = {
7254 7272 name = "verror";
7255 7273 packageName = "verror";
7256 7274 version = "1.10.0";
7257 7275 src = fetchurl {
7258 7276 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
7259 7277 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
7260 7278 };
7261 7279 };
7262 7280 "vm-browserify-0.0.4" = {
7263 7281 name = "vm-browserify";
7264 7282 packageName = "vm-browserify";
7265 7283 version = "0.0.4";
7266 7284 src = fetchurl {
7267 7285 url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz";
7268 7286 sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73";
7269 7287 };
7270 7288 };
7271 7289 "watchpack-1.6.0" = {
7272 7290 name = "watchpack";
7273 7291 packageName = "watchpack";
7274 7292 version = "1.6.0";
7275 7293 src = fetchurl {
7276 7294 url = "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz";
7277 7295 sha512 = "i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==";
7278 7296 };
7279 7297 };
7280 7298 "waypoints-4.0.1" = {
7281 7299 name = "waypoints";
7282 7300 packageName = "waypoints";
7283 7301 version = "4.0.1";
7284 7302 src = fetchurl {
7285 7303 url = "https://registry.npmjs.org/waypoints/-/waypoints-4.0.1.tgz";
7286 7304 sha1 = "09979a0573810b29627cba4366a284a062ec69c8";
7287 7305 };
7288 7306 };
7289 7307 "webpack-4.23.1" = {
7290 7308 name = "webpack";
7291 7309 packageName = "webpack";
7292 7310 version = "4.23.1";
7293 7311 src = fetchurl {
7294 7312 url = "https://registry.npmjs.org/webpack/-/webpack-4.23.1.tgz";
7295 7313 sha512 = "iE5Cu4rGEDk7ONRjisTOjVHv3dDtcFfwitSxT7evtYj/rANJpt1OuC/Kozh1pBa99AUBr1L/LsaNB+D9Xz3CEg==";
7296 7314 };
7297 7315 };
7298 7316 "webpack-cli-3.1.2" = {
7299 7317 name = "webpack-cli";
7300 7318 packageName = "webpack-cli";
7301 7319 version = "3.1.2";
7302 7320 src = fetchurl {
7303 7321 url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz";
7304 7322 sha512 = "Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ==";
7305 7323 };
7306 7324 };
7307 7325 "webpack-core-0.6.9" = {
7308 7326 name = "webpack-core";
7309 7327 packageName = "webpack-core";
7310 7328 version = "0.6.9";
7311 7329 src = fetchurl {
7312 7330 url = "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz";
7313 7331 sha1 = "fc571588c8558da77be9efb6debdc5a3b172bdc2";
7314 7332 };
7315 7333 };
7316 7334 "webpack-sources-1.3.0" = {
7317 7335 name = "webpack-sources";
7318 7336 packageName = "webpack-sources";
7319 7337 version = "1.3.0";
7320 7338 src = fetchurl {
7321 7339 url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz";
7322 7340 sha512 = "OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==";
7323 7341 };
7324 7342 };
7325 7343 "webpack-uglify-js-plugin-1.1.9" = {
7326 7344 name = "webpack-uglify-js-plugin";
7327 7345 packageName = "webpack-uglify-js-plugin";
7328 7346 version = "1.1.9";
7329 7347 src = fetchurl {
7330 7348 url = "https://registry.npmjs.org/webpack-uglify-js-plugin/-/webpack-uglify-js-plugin-1.1.9.tgz";
7331 7349 sha1 = "ecd4c27843a4ac17ee318f45229cdf1d2fb5e103";
7332 7350 };
7333 7351 };
7334 7352 "whet.extend-0.9.9" = {
7335 7353 name = "whet.extend";
7336 7354 packageName = "whet.extend";
7337 7355 version = "0.9.9";
7338 7356 src = fetchurl {
7339 7357 url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz";
7340 7358 sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1";
7341 7359 };
7342 7360 };
7343 7361 "which-1.0.9" = {
7344 7362 name = "which";
7345 7363 packageName = "which";
7346 7364 version = "1.0.9";
7347 7365 src = fetchurl {
7348 7366 url = "https://registry.npmjs.org/which/-/which-1.0.9.tgz";
7349 7367 sha1 = "460c1da0f810103d0321a9b633af9e575e64486f";
7350 7368 };
7351 7369 };
7352 7370 "which-1.3.1" = {
7353 7371 name = "which";
7354 7372 packageName = "which";
7355 7373 version = "1.3.1";
7356 7374 src = fetchurl {
7357 7375 url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
7358 7376 sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
7359 7377 };
7360 7378 };
7361 7379 "which-module-2.0.0" = {
7362 7380 name = "which-module";
7363 7381 packageName = "which-module";
7364 7382 version = "2.0.0";
7365 7383 src = fetchurl {
7366 7384 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
7367 7385 sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
7368 7386 };
7369 7387 };
7370 7388 "window-size-0.1.0" = {
7371 7389 name = "window-size";
7372 7390 packageName = "window-size";
7373 7391 version = "0.1.0";
7374 7392 src = fetchurl {
7375 7393 url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
7376 7394 sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
7377 7395 };
7378 7396 };
7379 7397 "wordwrap-0.0.2" = {
7380 7398 name = "wordwrap";
7381 7399 packageName = "wordwrap";
7382 7400 version = "0.0.2";
7383 7401 src = fetchurl {
7384 7402 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
7385 7403 sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
7386 7404 };
7387 7405 };
7388 "worker-farm-1.6.0" = {
7406 "worker-farm-1.7.0" = {
7389 7407 name = "worker-farm";
7390 7408 packageName = "worker-farm";
7391 version = "1.6.0";
7392 src = fetchurl {
7393 url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz";
7394 sha512 = "6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==";
7409 version = "1.7.0";
7410 src = fetchurl {
7411 url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz";
7412 sha512 = "rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==";
7395 7413 };
7396 7414 };
7397 7415 "wrap-ansi-2.1.0" = {
7398 7416 name = "wrap-ansi";
7399 7417 packageName = "wrap-ansi";
7400 7418 version = "2.1.0";
7401 7419 src = fetchurl {
7402 7420 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
7403 7421 sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
7404 7422 };
7405 7423 };
7406 7424 "wrappy-1.0.2" = {
7407 7425 name = "wrappy";
7408 7426 packageName = "wrappy";
7409 7427 version = "1.0.2";
7410 7428 src = fetchurl {
7411 7429 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
7412 7430 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
7413 7431 };
7414 7432 };
7415 7433 "xtend-4.0.1" = {
7416 7434 name = "xtend";
7417 7435 packageName = "xtend";
7418 7436 version = "4.0.1";
7419 7437 src = fetchurl {
7420 7438 url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
7421 7439 sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
7422 7440 };
7423 7441 };
7424 7442 "y18n-4.0.0" = {
7425 7443 name = "y18n";
7426 7444 packageName = "y18n";
7427 7445 version = "4.0.0";
7428 7446 src = fetchurl {
7429 7447 url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
7430 7448 sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
7431 7449 };
7432 7450 };
7433 7451 "yallist-2.1.2" = {
7434 7452 name = "yallist";
7435 7453 packageName = "yallist";
7436 7454 version = "2.1.2";
7437 7455 src = fetchurl {
7438 7456 url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
7439 7457 sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
7440 7458 };
7441 7459 };
7442 7460 "yargs-12.0.5" = {
7443 7461 name = "yargs";
7444 7462 packageName = "yargs";
7445 7463 version = "12.0.5";
7446 7464 src = fetchurl {
7447 7465 url = "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz";
7448 7466 sha512 = "Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==";
7449 7467 };
7450 7468 };
7451 7469 "yargs-3.10.0" = {
7452 7470 name = "yargs";
7453 7471 packageName = "yargs";
7454 7472 version = "3.10.0";
7455 7473 src = fetchurl {
7456 7474 url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
7457 7475 sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
7458 7476 };
7459 7477 };
7460 7478 "yargs-parser-11.1.1" = {
7461 7479 name = "yargs-parser";
7462 7480 packageName = "yargs-parser";
7463 7481 version = "11.1.1";
7464 7482 src = fetchurl {
7465 7483 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz";
7466 7484 sha512 = "C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==";
7467 7485 };
7468 7486 };
7469 7487 };
7470 7488 args = {
7471 7489 name = "rhodecode-enterprise";
7472 7490 packageName = "rhodecode-enterprise";
7473 7491 version = "2.0.0";
7474 7492 src = ./..;
7475 7493 dependencies = [
7476 7494 sources."@polymer/font-roboto-3.0.2"
7477 7495 sources."@polymer/iron-a11y-announcer-3.0.2"
7478 7496 sources."@polymer/iron-a11y-keys-3.0.1"
7479 7497 sources."@polymer/iron-a11y-keys-behavior-3.0.1"
7480 7498 sources."@polymer/iron-ajax-3.0.1"
7481 7499 sources."@polymer/iron-autogrow-textarea-3.0.1"
7482 7500 sources."@polymer/iron-behaviors-3.0.1"
7483 7501 sources."@polymer/iron-checked-element-behavior-3.0.1"
7484 7502 sources."@polymer/iron-fit-behavior-3.0.1"
7485 7503 sources."@polymer/iron-flex-layout-3.0.1"
7486 7504 sources."@polymer/iron-form-element-behavior-3.0.1"
7487 7505 sources."@polymer/iron-meta-3.0.1"
7488 7506 sources."@polymer/iron-overlay-behavior-3.0.2"
7489 7507 sources."@polymer/iron-resizable-behavior-3.0.1"
7490 7508 sources."@polymer/iron-validatable-behavior-3.0.1"
7491 7509 sources."@polymer/paper-behaviors-3.0.1"
7492 7510 sources."@polymer/paper-button-3.0.1"
7493 7511 sources."@polymer/paper-ripple-3.0.1"
7494 7512 sources."@polymer/paper-spinner-3.0.2"
7495 7513 sources."@polymer/paper-styles-3.0.1"
7496 7514 sources."@polymer/paper-toast-3.0.1"
7497 7515 sources."@polymer/paper-toggle-button-3.0.1"
7498 7516 sources."@polymer/paper-tooltip-3.0.1"
7499 sources."@polymer/polymer-3.1.0"
7517 sources."@polymer/polymer-3.2.0"
7500 7518 sources."@types/clone-0.1.30"
7501 sources."@types/node-6.14.3"
7519 sources."@types/node-6.14.6"
7502 7520 sources."@types/parse5-2.2.34"
7503 7521 sources."@webassemblyjs/ast-1.7.10"
7504 7522 sources."@webassemblyjs/floating-point-hex-parser-1.7.10"
7505 7523 sources."@webassemblyjs/helper-api-error-1.7.10"
7506 7524 sources."@webassemblyjs/helper-buffer-1.7.10"
7507 7525 sources."@webassemblyjs/helper-code-frame-1.7.10"
7508 7526 sources."@webassemblyjs/helper-fsm-1.7.10"
7509 7527 sources."@webassemblyjs/helper-module-context-1.7.10"
7510 7528 sources."@webassemblyjs/helper-wasm-bytecode-1.7.10"
7511 7529 sources."@webassemblyjs/helper-wasm-section-1.7.10"
7512 7530 sources."@webassemblyjs/ieee754-1.7.10"
7513 7531 sources."@webassemblyjs/leb128-1.7.10"
7514 7532 sources."@webassemblyjs/utf8-1.7.10"
7515 7533 sources."@webassemblyjs/wasm-edit-1.7.10"
7516 7534 sources."@webassemblyjs/wasm-gen-1.7.10"
7517 7535 sources."@webassemblyjs/wasm-opt-1.7.10"
7518 7536 sources."@webassemblyjs/wasm-parser-1.7.10"
7519 7537 sources."@webassemblyjs/wast-parser-1.7.10"
7520 7538 sources."@webassemblyjs/wast-printer-1.7.10"
7521 sources."@webcomponents/shadycss-1.9.0"
7522 sources."@webcomponents/webcomponentsjs-2.2.7"
7539 sources."@webcomponents/shadycss-1.9.1"
7540 sources."@webcomponents/webcomponentsjs-2.2.10"
7523 7541 sources."@xtuc/ieee754-1.2.0"
7524 7542 sources."@xtuc/long-4.2.1"
7525 7543 sources."abbrev-1.1.1"
7526 7544 sources."acorn-5.7.3"
7527 7545 sources."acorn-dynamic-import-3.0.0"
7528 7546 (sources."acorn-jsx-3.0.1" // {
7529 7547 dependencies = [
7530 7548 sources."acorn-3.3.0"
7531 7549 ];
7532 7550 })
7533 7551 sources."ajv-4.11.8"
7534 7552 sources."ajv-keywords-3.4.0"
7535 7553 (sources."align-text-0.1.4" // {
7536 7554 dependencies = [
7537 7555 sources."kind-of-3.2.2"
7538 7556 ];
7539 7557 })
7540 7558 sources."alphanum-sort-1.0.2"
7541 7559 sources."amdefine-1.0.1"
7542 7560 sources."ansi-regex-0.2.1"
7543 7561 sources."ansi-styles-1.1.0"
7544 7562 (sources."anymatch-2.0.0" // {
7545 7563 dependencies = [
7546 7564 sources."normalize-path-2.1.1"
7547 7565 ];
7548 7566 })
7549 7567 sources."appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1"
7550 7568 sources."aproba-1.2.0"
7551 7569 (sources."argparse-0.1.16" // {
7552 7570 dependencies = [
7553 7571 sources."underscore.string-2.4.0"
7554 7572 ];
7555 7573 })
7556 7574 sources."arr-diff-4.0.0"
7557 7575 sources."arr-flatten-1.1.0"
7558 7576 sources."arr-union-3.1.0"
7559 7577 sources."array-each-1.0.1"
7560 7578 sources."array-slice-1.1.0"
7561 7579 sources."array-union-1.0.2"
7562 7580 sources."array-uniq-1.0.3"
7563 7581 sources."array-unique-0.3.2"
7564 7582 sources."asap-2.0.6"
7565 7583 sources."asn1-0.2.4"
7566 7584 sources."asn1.js-4.10.1"
7567 (sources."assert-1.4.1" // {
7585 (sources."assert-1.5.0" // {
7568 7586 dependencies = [
7569 7587 sources."inherits-2.0.1"
7570 7588 sources."util-0.10.3"
7571 7589 ];
7572 7590 })
7573 7591 sources."assert-plus-0.2.0"
7574 7592 sources."assign-symbols-1.0.0"
7575 7593 sources."ast-types-0.9.6"
7576 7594 sources."async-0.1.22"
7577 sources."async-each-1.0.1"
7595 sources."async-each-1.0.3"
7578 7596 sources."asynckit-0.4.0"
7579 7597 sources."atob-2.1.2"
7580 7598 (sources."autoprefixer-6.7.7" // {
7581 7599 dependencies = [
7582 7600 sources."browserslist-1.7.7"
7583 7601 ];
7584 7602 })
7585 7603 sources."aws-sign2-0.6.0"
7586 7604 sources."aws4-1.8.0"
7587 7605 (sources."babel-code-frame-6.26.0" // {
7588 7606 dependencies = [
7589 7607 sources."ansi-regex-2.1.1"
7590 7608 sources."ansi-styles-2.2.1"
7591 7609 sources."chalk-1.1.3"
7592 7610 sources."has-ansi-2.0.0"
7593 7611 sources."strip-ansi-3.0.1"
7594 7612 sources."supports-color-2.0.0"
7595 7613 ];
7596 7614 })
7597 7615 (sources."babel-core-6.26.3" // {
7598 7616 dependencies = [
7599 7617 sources."json5-0.5.1"
7600 7618 sources."lodash-4.17.11"
7601 7619 sources."minimatch-3.0.4"
7602 7620 ];
7603 7621 })
7604 7622 (sources."babel-generator-6.26.1" // {
7605 7623 dependencies = [
7606 7624 sources."lodash-4.17.11"
7607 7625 ];
7608 7626 })
7609 7627 sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1"
7610 7628 sources."babel-helper-call-delegate-6.24.1"
7611 7629 (sources."babel-helper-define-map-6.26.0" // {
7612 7630 dependencies = [
7613 7631 sources."lodash-4.17.11"
7614 7632 ];
7615 7633 })
7616 7634 sources."babel-helper-explode-assignable-expression-6.24.1"
7617 7635 sources."babel-helper-function-name-6.24.1"
7618 7636 sources."babel-helper-get-function-arity-6.24.1"
7619 7637 sources."babel-helper-hoist-variables-6.24.1"
7620 7638 sources."babel-helper-optimise-call-expression-6.24.1"
7621 7639 (sources."babel-helper-regex-6.26.0" // {
7622 7640 dependencies = [
7623 7641 sources."lodash-4.17.11"
7624 7642 ];
7625 7643 })
7626 7644 sources."babel-helper-remap-async-to-generator-6.24.1"
7627 7645 sources."babel-helper-replace-supers-6.24.1"
7628 7646 sources."babel-helpers-6.24.1"
7629 7647 sources."babel-loader-7.1.5"
7630 7648 sources."babel-messages-6.23.0"
7631 7649 sources."babel-plugin-check-es2015-constants-6.22.0"
7632 7650 sources."babel-plugin-syntax-async-functions-6.13.0"
7633 7651 sources."babel-plugin-syntax-exponentiation-operator-6.13.0"
7634 7652 sources."babel-plugin-syntax-object-rest-spread-6.13.0"
7635 7653 sources."babel-plugin-syntax-trailing-function-commas-6.22.0"
7636 7654 sources."babel-plugin-transform-async-to-generator-6.24.1"
7637 7655 sources."babel-plugin-transform-es2015-arrow-functions-6.22.0"
7638 7656 sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0"
7639 7657 (sources."babel-plugin-transform-es2015-block-scoping-6.26.0" // {
7640 7658 dependencies = [
7641 7659 sources."lodash-4.17.11"
7642 7660 ];
7643 7661 })
7644 7662 sources."babel-plugin-transform-es2015-classes-6.24.1"
7645 7663 sources."babel-plugin-transform-es2015-computed-properties-6.24.1"
7646 7664 sources."babel-plugin-transform-es2015-destructuring-6.23.0"
7647 7665 sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1"
7648 7666 sources."babel-plugin-transform-es2015-for-of-6.23.0"
7649 7667 sources."babel-plugin-transform-es2015-function-name-6.24.1"
7650 7668 sources."babel-plugin-transform-es2015-literals-6.22.0"
7651 7669 sources."babel-plugin-transform-es2015-modules-amd-6.24.1"
7652 7670 sources."babel-plugin-transform-es2015-modules-commonjs-6.26.2"
7653 7671 sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1"
7654 7672 sources."babel-plugin-transform-es2015-modules-umd-6.24.1"
7655 7673 sources."babel-plugin-transform-es2015-object-super-6.24.1"
7656 7674 sources."babel-plugin-transform-es2015-parameters-6.24.1"
7657 7675 sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1"
7658 7676 sources."babel-plugin-transform-es2015-spread-6.22.0"
7659 7677 sources."babel-plugin-transform-es2015-sticky-regex-6.24.1"
7660 7678 sources."babel-plugin-transform-es2015-template-literals-6.22.0"
7661 7679 sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0"
7662 7680 sources."babel-plugin-transform-es2015-unicode-regex-6.24.1"
7663 7681 sources."babel-plugin-transform-exponentiation-operator-6.24.1"
7664 7682 sources."babel-plugin-transform-object-rest-spread-6.26.0"
7665 7683 sources."babel-plugin-transform-regenerator-6.26.0"
7666 7684 sources."babel-plugin-transform-strict-mode-6.24.1"
7667 7685 sources."babel-preset-env-1.7.0"
7668 7686 (sources."babel-register-6.26.0" // {
7669 7687 dependencies = [
7670 7688 sources."lodash-4.17.11"
7671 7689 ];
7672 7690 })
7673 7691 sources."babel-runtime-6.26.0"
7674 7692 (sources."babel-template-6.26.0" // {
7675 7693 dependencies = [
7676 7694 sources."lodash-4.17.11"
7677 7695 ];
7678 7696 })
7679 7697 (sources."babel-traverse-6.26.0" // {
7680 7698 dependencies = [
7681 7699 sources."lodash-4.17.11"
7682 7700 ];
7683 7701 })
7684 7702 (sources."babel-types-6.26.0" // {
7685 7703 dependencies = [
7686 7704 sources."lodash-4.17.11"
7687 7705 ];
7688 7706 })
7689 7707 sources."babylon-6.18.0"
7690 7708 sources."balanced-match-1.0.0"
7691 7709 (sources."base-0.11.2" // {
7692 7710 dependencies = [
7693 7711 sources."define-property-1.0.0"
7694 7712 ];
7695 7713 })
7696 7714 sources."base64-js-1.3.0"
7697 7715 sources."bcrypt-pbkdf-1.0.2"
7698 7716 sources."big.js-5.2.2"
7699 sources."binary-extensions-1.13.0"
7700 sources."bluebird-3.5.3"
7717 sources."binary-extensions-1.13.1"
7718 sources."bluebird-3.5.4"
7701 7719 sources."bn.js-4.11.8"
7702 7720 sources."boolbase-1.0.0"
7703 7721 sources."boom-2.10.1"
7704 7722 sources."brace-expansion-1.1.11"
7705 7723 (sources."braces-2.3.2" // {
7706 7724 dependencies = [
7707 7725 sources."extend-shallow-2.0.1"
7708 7726 ];
7709 7727 })
7710 7728 sources."brorand-1.1.0"
7711 7729 sources."browserify-aes-1.2.0"
7712 7730 sources."browserify-cipher-1.0.1"
7713 7731 sources."browserify-des-1.0.2"
7714 7732 sources."browserify-rsa-4.0.1"
7715 7733 sources."browserify-sign-4.0.4"
7716 7734 sources."browserify-zlib-0.2.0"
7717 7735 sources."browserslist-3.2.8"
7718 7736 sources."buffer-4.9.1"
7719 7737 sources."buffer-from-1.1.1"
7720 7738 sources."buffer-xor-1.0.3"
7721 7739 sources."builtin-status-codes-3.0.0"
7722 7740 (sources."cacache-10.0.4" // {
7723 7741 dependencies = [
7724 sources."glob-7.1.3"
7742 sources."glob-7.1.4"
7725 7743 sources."graceful-fs-4.1.15"
7726 7744 sources."lru-cache-4.1.5"
7727 7745 sources."minimatch-3.0.4"
7728 7746 sources."rimraf-2.6.3"
7729 7747 ];
7730 7748 })
7731 7749 sources."cache-base-1.0.1"
7732 7750 sources."camel-case-3.0.0"
7733 sources."camelcase-5.0.0"
7751 sources."camelcase-5.3.1"
7734 7752 (sources."caniuse-api-1.6.1" // {
7735 7753 dependencies = [
7736 7754 sources."browserslist-1.7.7"
7737 7755 ];
7738 7756 })
7739 sources."caniuse-db-1.0.30000939"
7740 sources."caniuse-lite-1.0.30000939"
7757 sources."caniuse-db-1.0.30000967"
7758 sources."caniuse-lite-1.0.30000967"
7741 7759 sources."caseless-0.12.0"
7742 7760 sources."center-align-0.1.3"
7743 7761 sources."chalk-0.5.1"
7744 (sources."chokidar-2.1.2" // {
7745 dependencies = [
7746 sources."is-glob-4.0.0"
7762 (sources."chokidar-2.1.5" // {
7763 dependencies = [
7764 sources."is-glob-4.0.1"
7747 7765 ];
7748 7766 })
7749 7767 sources."chownr-1.1.1"
7750 7768 sources."chrome-trace-event-1.0.0"
7751 7769 sources."cipher-base-1.0.4"
7752 7770 (sources."clap-1.2.3" // {
7753 7771 dependencies = [
7754 7772 sources."ansi-regex-2.1.1"
7755 7773 sources."ansi-styles-2.2.1"
7756 7774 sources."chalk-1.1.3"
7757 7775 sources."has-ansi-2.0.0"
7758 7776 sources."strip-ansi-3.0.1"
7759 7777 sources."supports-color-2.0.0"
7760 7778 ];
7761 7779 })
7762 7780 (sources."class-utils-0.3.6" // {
7763 7781 dependencies = [
7764 7782 sources."define-property-0.2.5"
7765 7783 (sources."is-accessor-descriptor-0.1.6" // {
7766 7784 dependencies = [
7767 7785 sources."kind-of-3.2.2"
7768 7786 ];
7769 7787 })
7770 7788 (sources."is-data-descriptor-0.1.4" // {
7771 7789 dependencies = [
7772 7790 sources."kind-of-3.2.2"
7773 7791 ];
7774 7792 })
7775 7793 sources."is-descriptor-0.1.6"
7776 7794 sources."kind-of-5.1.0"
7777 7795 ];
7778 7796 })
7779 7797 (sources."clean-css-4.2.1" // {
7780 7798 dependencies = [
7781 7799 sources."source-map-0.6.1"
7782 7800 ];
7783 7801 })
7784 7802 (sources."cli-1.0.1" // {
7785 7803 dependencies = [
7786 sources."glob-7.1.3"
7804 sources."glob-7.1.4"
7787 7805 sources."minimatch-3.0.4"
7788 7806 ];
7789 7807 })
7790 7808 sources."clipboard-2.0.4"
7791 7809 (sources."cliui-4.1.0" // {
7792 7810 dependencies = [
7793 7811 sources."ansi-regex-3.0.0"
7794 7812 sources."strip-ansi-4.0.0"
7795 7813 ];
7796 7814 })
7797 7815 sources."clone-1.0.4"
7798 7816 sources."co-4.6.0"
7799 7817 sources."coa-1.0.4"
7800 7818 sources."code-point-at-1.1.0"
7801 7819 sources."coffee-script-1.3.3"
7802 7820 sources."collection-visit-1.0.0"
7803 7821 sources."color-0.11.4"
7804 7822 sources."color-convert-1.9.3"
7805 7823 sources."color-name-1.1.3"
7806 7824 sources."color-string-0.3.0"
7807 7825 sources."colormin-1.1.2"
7808 7826 sources."colors-0.6.2"
7809 sources."combined-stream-1.0.7"
7827 sources."combined-stream-1.0.8"
7810 7828 sources."commander-2.14.1"
7811 7829 sources."commondir-1.0.1"
7812 sources."component-emitter-1.2.1"
7830 sources."component-emitter-1.3.0"
7813 7831 sources."concat-map-0.0.1"
7814 7832 (sources."concat-stream-1.6.2" // {
7815 7833 dependencies = [
7816 7834 sources."readable-stream-2.3.6"
7817 7835 sources."string_decoder-1.1.1"
7818 7836 ];
7819 7837 })
7820 7838 sources."console-browserify-1.1.0"
7821 7839 sources."constants-browserify-1.0.0"
7822 7840 sources."convert-source-map-1.6.0"
7823 7841 (sources."copy-concurrently-1.0.5" // {
7824 7842 dependencies = [
7825 sources."glob-7.1.3"
7843 sources."glob-7.1.4"
7826 7844 sources."minimatch-3.0.4"
7827 7845 sources."rimraf-2.6.3"
7828 7846 ];
7829 7847 })
7830 7848 sources."copy-descriptor-0.1.1"
7831 7849 (sources."copy-webpack-plugin-4.6.0" // {
7832 7850 dependencies = [
7833 sources."is-glob-4.0.0"
7851 sources."is-glob-4.0.1"
7834 7852 sources."minimatch-3.0.4"
7835 7853 ];
7836 7854 })
7837 7855 sources."core-js-2.6.5"
7838 7856 sources."core-util-is-1.0.2"
7839 7857 sources."create-ecdh-4.0.3"
7840 7858 sources."create-hash-1.2.0"
7841 7859 sources."create-hmac-1.1.7"
7842 7860 (sources."cross-spawn-6.0.5" // {
7843 7861 dependencies = [
7844 7862 sources."which-1.3.1"
7845 7863 ];
7846 7864 })
7847 7865 sources."cryptiles-2.0.5"
7848 7866 sources."crypto-browserify-3.12.0"
7849 7867 sources."css-color-names-0.0.4"
7850 7868 sources."css-loader-0.28.11"
7851 7869 sources."css-select-1.2.0"
7852 7870 (sources."css-selector-tokenizer-0.7.1" // {
7853 7871 dependencies = [
7854 7872 sources."regexpu-core-1.0.0"
7855 7873 ];
7856 7874 })
7857 7875 sources."css-what-2.1.3"
7858 7876 sources."cssesc-0.1.0"
7859 7877 sources."cssnano-3.10.0"
7860 7878 sources."csso-2.3.2"
7861 7879 sources."cyclist-0.2.2"
7862 7880 (sources."dashdash-1.14.1" // {
7863 7881 dependencies = [
7864 7882 sources."assert-plus-1.0.0"
7865 7883 ];
7866 7884 })
7867 7885 sources."date-now-0.1.4"
7868 7886 sources."dateformat-1.0.2-1.2.3"
7869 7887 sources."debug-2.6.9"
7870 7888 sources."decamelize-1.2.0"
7871 7889 sources."decode-uri-component-0.2.0"
7872 7890 sources."deep-for-each-2.0.3"
7873 7891 sources."define-properties-1.1.3"
7874 7892 sources."define-property-2.0.2"
7875 7893 sources."defined-1.0.0"
7876 7894 sources."delayed-stream-1.0.0"
7877 7895 sources."delegate-3.2.0"
7878 7896 sources."des.js-1.0.0"
7879 7897 sources."detect-file-1.0.0"
7880 7898 sources."detect-indent-4.0.0"
7881 7899 sources."diffie-hellman-5.0.3"
7882 7900 sources."dir-glob-2.2.2"
7883 7901 sources."dom-converter-0.2.0"
7884 7902 (sources."dom-serializer-0.1.1" // {
7885 7903 dependencies = [
7886 7904 sources."entities-1.1.2"
7887 7905 ];
7888 7906 })
7889 7907 (sources."dom5-2.3.0" // {
7890 7908 dependencies = [
7891 7909 sources."clone-2.1.2"
7892 7910 sources."parse5-2.2.3"
7893 7911 ];
7894 7912 })
7895 7913 sources."domain-browser-1.2.0"
7896 7914 sources."domelementtype-1.3.1"
7897 7915 sources."domhandler-2.3.0"
7898 7916 sources."domutils-1.5.1"
7917 sources."dropzone-5.5.1"
7899 7918 (sources."duplexify-3.7.1" // {
7900 7919 dependencies = [
7901 7920 sources."readable-stream-2.3.6"
7902 7921 sources."string_decoder-1.1.1"
7903 7922 ];
7904 7923 })
7905 7924 sources."ecc-jsbn-0.1.2"
7906 sources."electron-to-chromium-1.3.113"
7925 sources."electron-to-chromium-1.3.133"
7907 7926 sources."elliptic-6.4.1"
7908 7927 sources."emojis-list-2.1.0"
7909 7928 sources."end-of-stream-1.4.1"
7910 7929 (sources."enhanced-resolve-4.1.0" // {
7911 7930 dependencies = [
7912 7931 sources."graceful-fs-4.1.15"
7913 7932 ];
7914 7933 })
7915 7934 sources."entities-1.0.0"
7916 7935 sources."errno-0.1.7"
7917 7936 sources."es-abstract-1.13.0"
7918 7937 sources."es-to-primitive-1.2.0"
7919 7938 sources."es6-templates-0.2.3"
7920 7939 sources."escape-string-regexp-1.0.5"
7921 sources."eslint-scope-4.0.0"
7940 sources."eslint-scope-4.0.3"
7922 7941 sources."espree-3.5.4"
7923 7942 sources."esprima-1.0.4"
7924 7943 sources."esrecurse-4.2.1"
7925 7944 sources."estraverse-4.2.0"
7926 7945 sources."esutils-2.0.2"
7927 7946 sources."eventemitter2-0.4.14"
7928 7947 sources."events-3.0.0"
7929 7948 sources."evp_bytestokey-1.0.3"
7930 7949 sources."execa-1.0.0"
7931 7950 sources."exit-0.1.2"
7932 7951 (sources."expand-brackets-2.1.4" // {
7933 7952 dependencies = [
7934 7953 sources."define-property-0.2.5"
7935 7954 sources."extend-shallow-2.0.1"
7936 7955 (sources."is-accessor-descriptor-0.1.6" // {
7937 7956 dependencies = [
7938 7957 sources."kind-of-3.2.2"
7939 7958 ];
7940 7959 })
7941 7960 (sources."is-data-descriptor-0.1.4" // {
7942 7961 dependencies = [
7943 7962 sources."kind-of-3.2.2"
7944 7963 ];
7945 7964 })
7946 7965 sources."is-descriptor-0.1.6"
7947 7966 sources."kind-of-5.1.0"
7948 7967 ];
7949 7968 })
7950 7969 sources."expand-tilde-2.0.2"
7951 7970 sources."exports-loader-0.6.4"
7952 7971 sources."extend-3.0.2"
7953 7972 (sources."extend-shallow-3.0.2" // {
7954 7973 dependencies = [
7955 7974 sources."is-extendable-1.0.1"
7956 7975 ];
7957 7976 })
7958 7977 (sources."extglob-2.0.4" // {
7959 7978 dependencies = [
7960 7979 sources."define-property-1.0.0"
7961 7980 sources."extend-shallow-2.0.1"
7962 7981 ];
7963 7982 })
7964 7983 sources."extsprintf-1.3.0"
7965 7984 sources."fast-deep-equal-2.0.1"
7966 7985 sources."fast-json-stable-stringify-2.0.0"
7967 7986 sources."fastparse-1.1.2"
7968 7987 sources."favico.js-0.3.10"
7969 7988 sources."faye-websocket-0.4.4"
7970 7989 sources."file-sync-cmp-0.1.1"
7971 7990 (sources."fill-range-4.0.0" // {
7972 7991 dependencies = [
7973 7992 sources."extend-shallow-2.0.1"
7974 7993 ];
7975 7994 })
7976 7995 sources."find-cache-dir-1.0.0"
7977 7996 sources."find-up-2.1.0"
7978 7997 (sources."findup-sync-0.1.3" // {
7979 7998 dependencies = [
7980 7999 sources."glob-3.2.11"
7981 8000 sources."lodash-2.4.2"
7982 8001 sources."minimatch-0.3.0"
7983 8002 ];
7984 8003 })
7985 sources."fined-1.1.1"
8004 sources."fined-1.2.0"
7986 8005 sources."flagged-respawn-1.0.1"
7987 8006 sources."flatten-1.0.2"
7988 8007 (sources."flush-write-stream-1.1.1" // {
7989 8008 dependencies = [
7990 8009 sources."readable-stream-2.3.6"
7991 8010 sources."string_decoder-1.1.1"
7992 8011 ];
7993 8012 })
7994 8013 sources."for-in-1.0.2"
7995 8014 sources."for-own-1.0.0"
7996 8015 sources."forever-agent-0.6.1"
7997 8016 sources."form-data-2.1.4"
7998 8017 sources."fragment-cache-0.2.1"
7999 8018 (sources."from2-2.3.0" // {
8000 8019 dependencies = [
8001 8020 sources."readable-stream-2.3.6"
8002 8021 sources."string_decoder-1.1.1"
8003 8022 ];
8004 8023 })
8005 8024 (sources."fs-write-stream-atomic-1.0.10" // {
8006 8025 dependencies = [
8007 8026 sources."graceful-fs-4.1.15"
8008 8027 ];
8009 8028 })
8010 8029 sources."fs.realpath-1.0.0"
8011 sources."fsevents-1.2.7"
8030 sources."fsevents-1.2.9"
8012 8031 sources."function-bind-1.1.1"
8013 8032 sources."gaze-0.5.2"
8014 8033 sources."get-caller-file-1.0.3"
8015 8034 (sources."get-stream-4.1.0" // {
8016 8035 dependencies = [
8017 8036 sources."pump-3.0.0"
8018 8037 ];
8019 8038 })
8020 8039 sources."get-value-2.0.6"
8021 8040 sources."getobject-0.1.0"
8022 8041 (sources."getpass-0.1.7" // {
8023 8042 dependencies = [
8024 8043 sources."assert-plus-1.0.0"
8025 8044 ];
8026 8045 })
8027 8046 (sources."glob-3.1.21" // {
8028 8047 dependencies = [
8029 8048 sources."inherits-1.0.2"
8030 8049 ];
8031 8050 })
8032 8051 sources."glob-parent-3.1.0"
8033 8052 sources."global-modules-1.0.0"
8034 8053 sources."global-modules-path-2.3.1"
8035 8054 (sources."global-prefix-1.0.2" // {
8036 8055 dependencies = [
8037 8056 sources."which-1.3.1"
8038 8057 ];
8039 8058 })
8040 8059 sources."globals-9.18.0"
8041 8060 (sources."globby-7.1.1" // {
8042 8061 dependencies = [
8043 sources."glob-7.1.3"
8062 sources."glob-7.1.4"
8044 8063 sources."minimatch-3.0.4"
8045 8064 ];
8046 8065 })
8047 8066 (sources."globule-0.1.0" // {
8048 8067 dependencies = [
8049 8068 sources."lodash-1.0.2"
8050 8069 ];
8051 8070 })
8052 8071 sources."good-listener-1.2.2"
8053 8072 sources."graceful-fs-1.2.3"
8054 8073 sources."grunt-0.4.5"
8055 8074 (sources."grunt-cli-1.3.2" // {
8056 8075 dependencies = [
8057 8076 sources."nopt-4.0.1"
8058 8077 ];
8059 8078 })
8060 8079 (sources."grunt-contrib-concat-0.5.1" // {
8061 8080 dependencies = [
8062 8081 sources."source-map-0.3.0"
8063 8082 ];
8064 8083 })
8065 8084 (sources."grunt-contrib-copy-1.0.0" // {
8066 8085 dependencies = [
8067 8086 sources."ansi-regex-2.1.1"
8068 8087 sources."ansi-styles-2.2.1"
8069 8088 sources."chalk-1.1.3"
8070 8089 sources."has-ansi-2.0.0"
8071 8090 sources."strip-ansi-3.0.1"
8072 8091 sources."supports-color-2.0.0"
8073 8092 ];
8074 8093 })
8075 8094 (sources."grunt-contrib-jshint-0.12.0" // {
8076 8095 dependencies = [
8077 8096 sources."jshint-2.9.7"
8078 8097 sources."lodash-4.17.11"
8079 8098 sources."minimatch-3.0.4"
8080 8099 ];
8081 8100 })
8082 8101 (sources."grunt-contrib-less-1.4.1" // {
8083 8102 dependencies = [
8084 8103 sources."ansi-regex-2.1.1"
8085 8104 sources."ansi-styles-2.2.1"
8086 8105 sources."async-2.6.2"
8087 8106 sources."chalk-1.1.3"
8088 8107 sources."has-ansi-2.0.0"
8089 8108 sources."lodash-4.17.11"
8090 8109 sources."strip-ansi-3.0.1"
8091 8110 sources."supports-color-2.0.0"
8092 8111 ];
8093 8112 })
8094 8113 (sources."grunt-contrib-watch-0.6.1" // {
8095 8114 dependencies = [
8096 8115 sources."async-0.2.10"
8097 8116 sources."lodash-2.4.2"
8098 8117 ];
8099 8118 })
8100 8119 sources."grunt-known-options-1.1.1"
8101 8120 (sources."grunt-legacy-log-0.1.3" // {
8102 8121 dependencies = [
8103 8122 sources."lodash-2.4.2"
8104 8123 sources."underscore.string-2.3.3"
8105 8124 ];
8106 8125 })
8107 8126 (sources."grunt-legacy-log-utils-0.1.1" // {
8108 8127 dependencies = [
8109 8128 sources."lodash-2.4.2"
8110 8129 sources."underscore.string-2.3.3"
8111 8130 ];
8112 8131 })
8113 8132 sources."grunt-legacy-util-0.2.0"
8114 8133 (sources."grunt-webpack-3.1.3" // {
8115 8134 dependencies = [
8116 8135 sources."lodash-4.17.11"
8117 8136 ];
8118 8137 })
8119 8138 sources."har-schema-1.0.5"
8120 8139 sources."har-validator-4.2.1"
8121 8140 sources."has-1.0.3"
8122 8141 sources."has-ansi-0.1.0"
8123 8142 sources."has-flag-3.0.0"
8124 8143 sources."has-symbols-1.0.0"
8125 8144 sources."has-value-1.0.0"
8126 8145 (sources."has-values-1.0.0" // {
8127 8146 dependencies = [
8128 8147 sources."kind-of-4.0.0"
8129 8148 ];
8130 8149 })
8131 8150 sources."hash-base-3.0.4"
8132 8151 sources."hash.js-1.1.7"
8133 8152 sources."hawk-3.1.3"
8134 8153 sources."he-1.2.0"
8135 8154 sources."hmac-drbg-1.0.1"
8136 8155 sources."hoek-2.16.3"
8137 8156 sources."home-or-tmp-2.0.0"
8138 8157 sources."homedir-polyfill-1.0.3"
8139 8158 sources."hooker-0.2.3"
8140 8159 sources."html-comment-regex-1.1.2"
8141 8160 sources."html-loader-0.4.5"
8142 8161 (sources."html-minifier-3.5.21" // {
8143 8162 dependencies = [
8144 8163 sources."commander-2.17.1"
8145 8164 ];
8146 8165 })
8147 8166 (sources."html-webpack-plugin-3.2.0" // {
8148 8167 dependencies = [
8149 8168 sources."big.js-3.2.0"
8150 8169 sources."json5-0.5.1"
8151 8170 sources."loader-utils-0.2.17"
8152 8171 sources."lodash-4.17.11"
8153 8172 ];
8154 8173 })
8155 8174 sources."htmlparser2-3.8.3"
8156 8175 sources."http-signature-1.1.1"
8157 8176 sources."https-browserify-1.0.0"
8158 8177 sources."iconv-lite-0.2.11"
8159 8178 sources."icss-replace-symbols-1.1.0"
8160 8179 (sources."icss-utils-2.1.0" // {
8161 8180 dependencies = [
8162 8181 sources."ansi-styles-3.2.1"
8163 8182 sources."chalk-2.4.2"
8164 8183 sources."postcss-6.0.23"
8165 8184 sources."source-map-0.6.1"
8166 8185 sources."supports-color-5.5.0"
8167 8186 ];
8168 8187 })
8169 sources."ieee754-1.1.12"
8188 sources."ieee754-1.1.13"
8170 8189 sources."iferr-0.1.5"
8171 8190 sources."ignore-3.3.10"
8172 8191 sources."image-size-0.5.5"
8173 8192 (sources."import-local-2.0.0" // {
8174 8193 dependencies = [
8175 8194 sources."find-up-3.0.0"
8176 8195 sources."locate-path-3.0.0"
8177 sources."p-limit-2.1.0"
8196 sources."p-limit-2.2.0"
8178 8197 sources."p-locate-3.0.0"
8179 sources."p-try-2.0.0"
8198 sources."p-try-2.2.0"
8180 8199 sources."pkg-dir-3.0.0"
8181 8200 ];
8182 8201 })
8183 8202 sources."imports-loader-0.7.1"
8184 8203 sources."imurmurhash-0.1.4"
8185 8204 sources."indexes-of-1.0.1"
8186 8205 sources."indexof-0.0.1"
8187 8206 sources."inflight-1.0.6"
8188 8207 sources."inherits-2.0.3"
8189 8208 sources."ini-1.3.5"
8190 8209 sources."interpret-1.1.0"
8191 8210 sources."invariant-2.2.4"
8192 8211 sources."invert-kv-2.0.0"
8193 8212 sources."is-absolute-1.0.0"
8194 8213 sources."is-absolute-url-2.1.0"
8195 8214 sources."is-accessor-descriptor-1.0.0"
8196 8215 sources."is-binary-path-1.0.1"
8197 8216 sources."is-buffer-1.1.6"
8198 8217 sources."is-callable-1.1.4"
8199 8218 sources."is-data-descriptor-1.0.0"
8200 8219 sources."is-date-object-1.0.1"
8201 8220 sources."is-descriptor-1.0.2"
8202 8221 sources."is-extendable-0.1.1"
8203 8222 sources."is-extglob-2.1.1"
8204 8223 sources."is-finite-1.0.2"
8205 8224 sources."is-fullwidth-code-point-1.0.0"
8206 8225 sources."is-glob-3.1.0"
8207 8226 (sources."is-number-3.0.0" // {
8208 8227 dependencies = [
8209 8228 sources."kind-of-3.2.2"
8210 8229 ];
8211 8230 })
8212 8231 sources."is-plain-obj-1.1.0"
8213 8232 sources."is-plain-object-2.0.4"
8214 8233 sources."is-regex-1.0.4"
8215 8234 sources."is-relative-1.0.0"
8216 8235 sources."is-stream-1.1.0"
8217 8236 sources."is-svg-2.1.0"
8218 8237 sources."is-symbol-1.0.2"
8219 8238 sources."is-typedarray-1.0.0"
8220 8239 sources."is-unc-path-1.0.0"
8221 8240 sources."is-windows-1.0.2"
8222 8241 sources."isarray-1.0.0"
8223 8242 sources."isexe-2.0.0"
8224 8243 sources."isobject-3.0.1"
8225 8244 sources."isstream-0.1.2"
8226 8245 sources."jquery-1.11.3"
8227 8246 sources."js-base64-2.5.1"
8228 8247 sources."js-tokens-3.0.2"
8229 8248 sources."js-yaml-2.0.5"
8230 8249 sources."jsbn-0.1.1"
8231 8250 sources."jsesc-1.3.0"
8232 (sources."jshint-2.10.1" // {
8251 (sources."jshint-2.10.2" // {
8233 8252 dependencies = [
8234 8253 sources."lodash-4.17.11"
8235 8254 sources."minimatch-3.0.4"
8236 8255 ];
8237 8256 })
8238 8257 sources."json-parse-better-errors-1.0.2"
8239 8258 sources."json-schema-0.2.3"
8240 8259 sources."json-schema-traverse-0.4.1"
8241 8260 sources."json-stable-stringify-1.0.1"
8242 8261 sources."json-stringify-safe-5.0.1"
8243 8262 sources."json5-1.0.1"
8244 8263 sources."jsonify-0.0.0"
8245 8264 (sources."jsprim-1.4.1" // {
8246 8265 dependencies = [
8247 8266 sources."assert-plus-1.0.0"
8248 8267 ];
8249 8268 })
8250 8269 sources."kind-of-6.0.2"
8251 8270 sources."lazy-cache-1.0.4"
8252 8271 sources."lcid-2.0.0"
8253 8272 (sources."less-2.7.3" // {
8254 8273 dependencies = [
8255 8274 sources."graceful-fs-4.1.15"
8256 8275 ];
8257 8276 })
8258 8277 (sources."liftoff-2.5.0" // {
8259 8278 dependencies = [
8260 8279 sources."findup-sync-2.0.0"
8261 8280 ];
8262 8281 })
8263 8282 sources."loader-runner-2.4.0"
8264 8283 sources."loader-utils-1.2.3"
8265 8284 sources."locate-path-2.0.0"
8266 8285 sources."lodash-0.9.2"
8267 8286 sources."lodash.camelcase-4.3.0"
8268 8287 sources."lodash.isplainobject-4.0.6"
8269 8288 sources."lodash.memoize-4.1.2"
8270 8289 sources."lodash.uniq-4.5.0"
8271 8290 sources."longest-1.0.1"
8272 8291 sources."loose-envify-1.4.0"
8273 8292 sources."lower-case-1.1.4"
8274 8293 sources."lru-cache-2.7.3"
8275 8294 sources."make-dir-1.3.0"
8276 8295 sources."make-iterator-1.0.1"
8277 8296 sources."map-age-cleaner-0.1.3"
8278 8297 sources."map-cache-0.2.2"
8279 8298 sources."map-visit-1.0.0"
8280 8299 sources."mark.js-8.11.1"
8281 8300 sources."math-expression-evaluator-1.2.17"
8282 8301 sources."md5.js-1.3.5"
8283 sources."mem-4.1.0"
8302 sources."mem-4.3.0"
8284 8303 (sources."memory-fs-0.4.1" // {
8285 8304 dependencies = [
8286 8305 sources."readable-stream-2.3.6"
8287 8306 sources."string_decoder-1.1.1"
8288 8307 ];
8289 8308 })
8290 8309 sources."micromatch-3.1.10"
8291 8310 sources."miller-rabin-4.0.1"
8292 8311 sources."mime-1.6.0"
8293 sources."mime-db-1.38.0"
8294 sources."mime-types-2.1.22"
8295 sources."mimic-fn-1.2.0"
8312 sources."mime-db-1.40.0"
8313 sources."mime-types-2.1.24"
8314 sources."mimic-fn-2.1.0"
8296 8315 sources."minimalistic-assert-1.0.1"
8297 8316 sources."minimalistic-crypto-utils-1.0.1"
8298 8317 sources."minimatch-0.2.14"
8299 8318 sources."minimist-1.2.0"
8300 8319 sources."mississippi-2.0.0"
8301 8320 (sources."mixin-deep-1.3.1" // {
8302 8321 dependencies = [
8303 8322 sources."is-extendable-1.0.1"
8304 8323 ];
8305 8324 })
8306 8325 (sources."mkdirp-0.5.1" // {
8307 8326 dependencies = [
8308 8327 sources."minimist-0.0.8"
8309 8328 ];
8310 8329 })
8311 8330 sources."moment-2.24.0"
8312 sources."mousetrap-1.6.2"
8331 sources."mousetrap-1.6.3"
8313 8332 (sources."move-concurrently-1.0.1" // {
8314 8333 dependencies = [
8315 sources."glob-7.1.3"
8334 sources."glob-7.1.4"
8316 8335 sources."minimatch-3.0.4"
8317 8336 sources."rimraf-2.6.3"
8318 8337 ];
8319 8338 })
8320 8339 sources."ms-2.0.0"
8321 sources."nan-2.12.1"
8340 sources."nan-2.13.2"
8322 8341 sources."nanomatch-1.2.13"
8323 sources."neo-async-2.6.0"
8342 sources."neo-async-2.6.1"
8324 8343 sources."nice-try-1.0.5"
8325 8344 sources."no-case-2.3.2"
8326 8345 (sources."node-libs-browser-2.2.0" // {
8327 8346 dependencies = [
8328 8347 (sources."readable-stream-2.3.6" // {
8329 8348 dependencies = [
8330 8349 sources."string_decoder-1.1.1"
8331 8350 ];
8332 8351 })
8333 8352 sources."string_decoder-1.2.0"
8334 8353 ];
8335 8354 })
8336 8355 sources."nopt-1.0.10"
8337 8356 (sources."noptify-0.0.3" // {
8338 8357 dependencies = [
8339 8358 sources."nopt-2.0.0"
8340 8359 ];
8341 8360 })
8342 8361 sources."normalize-path-3.0.0"
8343 8362 sources."normalize-range-0.1.2"
8344 8363 sources."normalize-url-1.9.1"
8345 8364 sources."npm-run-path-2.0.2"
8346 8365 sources."nth-check-1.0.2"
8347 8366 sources."num2fraction-1.2.2"
8348 8367 sources."number-is-nan-1.0.1"
8349 8368 sources."oauth-sign-0.8.2"
8350 8369 sources."object-assign-4.1.1"
8351 8370 (sources."object-copy-0.1.0" // {
8352 8371 dependencies = [
8353 8372 sources."define-property-0.2.5"
8354 8373 sources."is-accessor-descriptor-0.1.6"
8355 8374 sources."is-data-descriptor-0.1.4"
8356 8375 (sources."is-descriptor-0.1.6" // {
8357 8376 dependencies = [
8358 8377 sources."kind-of-5.1.0"
8359 8378 ];
8360 8379 })
8361 8380 sources."kind-of-3.2.2"
8362 8381 ];
8363 8382 })
8364 sources."object-keys-1.1.0"
8383 sources."object-keys-1.1.1"
8365 8384 sources."object-visit-1.0.1"
8366 8385 sources."object.defaults-1.1.0"
8367 8386 sources."object.getownpropertydescriptors-2.0.3"
8368 8387 sources."object.map-1.0.1"
8369 8388 sources."object.pick-1.3.0"
8370 8389 sources."once-1.4.0"
8371 8390 sources."os-browserify-0.3.0"
8372 8391 sources."os-homedir-1.0.2"
8373 8392 sources."os-locale-3.1.0"
8374 8393 sources."os-tmpdir-1.0.2"
8375 8394 sources."osenv-0.1.5"
8376 8395 sources."p-defer-1.0.0"
8377 8396 sources."p-finally-1.0.0"
8378 sources."p-is-promise-2.0.0"
8397 sources."p-is-promise-2.1.0"
8379 8398 sources."p-limit-1.3.0"
8380 8399 sources."p-locate-2.0.0"
8381 8400 sources."p-try-1.0.0"
8382 sources."pako-1.0.8"
8401 sources."pako-1.0.10"
8383 8402 (sources."parallel-transform-1.1.0" // {
8384 8403 dependencies = [
8385 8404 sources."readable-stream-2.3.6"
8386 8405 sources."string_decoder-1.1.1"
8387 8406 ];
8388 8407 })
8389 8408 sources."param-case-2.1.1"
8390 8409 sources."parse-asn1-5.1.4"
8391 8410 sources."parse-filepath-1.0.2"
8392 8411 sources."parse-passwd-1.0.0"
8393 8412 sources."parse5-3.0.3"
8394 8413 (sources."parse5-utils-2.0.0" // {
8395 8414 dependencies = [
8396 8415 sources."parse5-2.2.3"
8397 8416 ];
8398 8417 })
8399 8418 sources."pascalcase-0.1.1"
8400 8419 sources."path-browserify-0.0.0"
8401 8420 sources."path-dirname-1.0.2"
8402 8421 sources."path-exists-3.0.0"
8403 8422 sources."path-is-absolute-1.0.1"
8404 8423 sources."path-key-2.0.1"
8405 8424 sources."path-parse-1.0.6"
8406 8425 sources."path-root-0.1.1"
8407 8426 sources."path-root-regex-0.1.2"
8408 8427 sources."path-type-3.0.0"
8409 8428 sources."pbkdf2-3.0.17"
8410 8429 sources."performance-now-0.2.0"
8411 8430 sources."pify-3.0.0"
8412 8431 sources."pkg-dir-2.0.0"
8413 8432 (sources."polymer-webpack-loader-2.0.3" // {
8414 8433 dependencies = [
8415 8434 sources."ansi-styles-3.2.1"
8416 8435 sources."chalk-2.4.2"
8417 8436 sources."html-loader-0.5.5"
8418 8437 (sources."postcss-6.0.23" // {
8419 8438 dependencies = [
8420 8439 sources."source-map-0.6.1"
8421 8440 ];
8422 8441 })
8423 8442 sources."supports-color-5.5.0"
8424 8443 ];
8425 8444 })
8426 8445 sources."posix-character-classes-0.1.1"
8427 8446 (sources."postcss-5.2.18" // {
8428 8447 dependencies = [
8429 8448 sources."ansi-regex-2.1.1"
8430 8449 sources."ansi-styles-2.2.1"
8431 8450 (sources."chalk-1.1.3" // {
8432 8451 dependencies = [
8433 8452 sources."supports-color-2.0.0"
8434 8453 ];
8435 8454 })
8436 8455 sources."has-ansi-2.0.0"
8437 8456 sources."has-flag-1.0.0"
8438 8457 sources."strip-ansi-3.0.1"
8439 8458 sources."supports-color-3.2.3"
8440 8459 ];
8441 8460 })
8442 8461 sources."postcss-calc-5.3.1"
8443 8462 sources."postcss-colormin-2.2.2"
8444 8463 sources."postcss-convert-values-2.6.1"
8445 8464 sources."postcss-discard-comments-2.0.4"
8446 8465 sources."postcss-discard-duplicates-2.1.0"
8447 8466 sources."postcss-discard-empty-2.1.0"
8448 8467 sources."postcss-discard-overridden-0.1.1"
8449 8468 sources."postcss-discard-unused-2.2.3"
8450 8469 sources."postcss-filter-plugins-2.0.3"
8451 8470 sources."postcss-merge-idents-2.1.7"
8452 8471 sources."postcss-merge-longhand-2.0.2"
8453 8472 (sources."postcss-merge-rules-2.1.2" // {
8454 8473 dependencies = [
8455 8474 sources."browserslist-1.7.7"
8456 8475 ];
8457 8476 })
8458 8477 sources."postcss-message-helpers-2.0.0"
8459 8478 sources."postcss-minify-font-values-1.0.5"
8460 8479 sources."postcss-minify-gradients-1.0.5"
8461 8480 sources."postcss-minify-params-1.2.2"
8462 8481 sources."postcss-minify-selectors-2.1.1"
8463 8482 (sources."postcss-modules-extract-imports-1.2.1" // {
8464 8483 dependencies = [
8465 8484 sources."ansi-styles-3.2.1"
8466 8485 sources."chalk-2.4.2"
8467 8486 sources."postcss-6.0.23"
8468 8487 sources."source-map-0.6.1"
8469 8488 sources."supports-color-5.5.0"
8470 8489 ];
8471 8490 })
8472 8491 (sources."postcss-modules-local-by-default-1.2.0" // {
8473 8492 dependencies = [
8474 8493 sources."ansi-styles-3.2.1"
8475 8494 sources."chalk-2.4.2"
8476 8495 sources."postcss-6.0.23"
8477 8496 sources."source-map-0.6.1"
8478 8497 sources."supports-color-5.5.0"
8479 8498 ];
8480 8499 })
8481 8500 (sources."postcss-modules-scope-1.1.0" // {
8482 8501 dependencies = [
8483 8502 sources."ansi-styles-3.2.1"
8484 8503 sources."chalk-2.4.2"
8485 8504 sources."postcss-6.0.23"
8486 8505 sources."source-map-0.6.1"
8487 8506 sources."supports-color-5.5.0"
8488 8507 ];
8489 8508 })
8490 8509 (sources."postcss-modules-values-1.3.0" // {
8491 8510 dependencies = [
8492 8511 sources."ansi-styles-3.2.1"
8493 8512 sources."chalk-2.4.2"
8494 8513 sources."postcss-6.0.23"
8495 8514 sources."source-map-0.6.1"
8496 8515 sources."supports-color-5.5.0"
8497 8516 ];
8498 8517 })
8499 8518 sources."postcss-normalize-charset-1.1.1"
8500 8519 sources."postcss-normalize-url-3.0.8"
8501 8520 sources."postcss-ordered-values-2.2.3"
8502 8521 sources."postcss-reduce-idents-2.4.0"
8503 8522 sources."postcss-reduce-initial-1.0.1"
8504 8523 sources."postcss-reduce-transforms-1.0.4"
8505 8524 sources."postcss-selector-parser-2.2.3"
8506 8525 sources."postcss-svgo-2.1.6"
8507 8526 sources."postcss-unique-selectors-2.0.2"
8508 8527 sources."postcss-value-parser-3.3.1"
8509 8528 sources."postcss-zindex-2.2.0"
8510 8529 sources."prepend-http-1.0.4"
8511 8530 sources."pretty-error-2.1.1"
8512 8531 sources."private-0.1.8"
8513 8532 sources."process-0.11.10"
8514 8533 sources."process-nextick-args-2.0.0"
8515 8534 sources."promise-7.3.1"
8516 8535 sources."promise-inflight-1.0.1"
8517 8536 sources."prr-1.0.1"
8518 8537 sources."pseudomap-1.0.2"
8519 8538 sources."public-encrypt-4.0.3"
8520 8539 sources."pump-2.0.1"
8521 8540 sources."pumpify-1.5.1"
8522 8541 sources."punycode-1.4.1"
8523 8542 sources."q-1.5.1"
8524 8543 sources."qrious-4.0.2"
8525 8544 sources."qs-6.4.0"
8526 8545 sources."query-string-4.3.4"
8527 8546 sources."querystring-0.2.0"
8528 8547 sources."querystring-es3-0.2.1"
8529 8548 sources."randombytes-2.1.0"
8530 8549 sources."randomfill-1.0.4"
8531 8550 sources."raw-loader-1.0.0-beta.0"
8532 8551 (sources."readable-stream-1.1.14" // {
8533 8552 dependencies = [
8534 8553 sources."isarray-0.0.1"
8535 8554 ];
8536 8555 })
8537 8556 (sources."readdirp-2.2.1" // {
8538 8557 dependencies = [
8539 8558 sources."graceful-fs-4.1.15"
8540 8559 sources."readable-stream-2.3.6"
8541 8560 sources."string_decoder-1.1.1"
8542 8561 ];
8543 8562 })
8544 8563 (sources."recast-0.11.23" // {
8545 8564 dependencies = [
8546 8565 sources."esprima-3.1.3"
8547 8566 ];
8548 8567 })
8549 8568 sources."rechoir-0.6.2"
8550 8569 (sources."reduce-css-calc-1.3.0" // {
8551 8570 dependencies = [
8552 8571 sources."balanced-match-0.4.2"
8553 8572 ];
8554 8573 })
8555 8574 (sources."reduce-function-call-1.0.2" // {
8556 8575 dependencies = [
8557 8576 sources."balanced-match-0.4.2"
8558 8577 ];
8559 8578 })
8560 8579 sources."regenerate-1.4.0"
8561 8580 sources."regenerator-runtime-0.11.1"
8562 8581 sources."regenerator-transform-0.10.1"
8563 8582 sources."regex-not-1.0.2"
8564 8583 sources."regexpu-core-2.0.0"
8565 8584 sources."regjsgen-0.2.0"
8566 8585 (sources."regjsparser-0.1.5" // {
8567 8586 dependencies = [
8568 8587 sources."jsesc-0.5.0"
8569 8588 ];
8570 8589 })
8571 8590 sources."relateurl-0.2.7"
8572 8591 sources."remove-trailing-separator-1.1.0"
8573 8592 (sources."renderkid-2.0.3" // {
8574 8593 dependencies = [
8575 8594 sources."ansi-regex-2.1.1"
8576 8595 sources."strip-ansi-3.0.1"
8577 8596 ];
8578 8597 })
8579 8598 sources."repeat-element-1.1.3"
8580 8599 sources."repeat-string-1.6.1"
8581 8600 sources."repeating-2.0.1"
8582 8601 sources."request-2.81.0"
8583 8602 sources."require-directory-2.1.1"
8584 8603 sources."require-main-filename-1.0.1"
8585 sources."resolve-1.10.0"
8604 sources."resolve-1.10.1"
8586 8605 sources."resolve-cwd-2.0.0"
8587 8606 sources."resolve-dir-1.0.1"
8588 8607 sources."resolve-from-3.0.0"
8589 8608 sources."resolve-url-0.2.1"
8590 8609 sources."ret-0.1.15"
8591 8610 sources."right-align-0.1.3"
8592 8611 sources."rimraf-2.2.8"
8593 8612 sources."ripemd160-2.0.2"
8594 8613 sources."run-queue-1.0.3"
8595 8614 sources."safe-buffer-5.1.2"
8596 8615 sources."safe-regex-1.1.0"
8597 8616 sources."safer-buffer-2.1.2"
8598 8617 sources."sax-1.2.4"
8599 8618 (sources."schema-utils-0.4.7" // {
8600 8619 dependencies = [
8601 sources."ajv-6.9.2"
8620 sources."ajv-6.10.0"
8602 8621 ];
8603 8622 })
8604 8623 sources."select-1.1.2"
8605 sources."semver-5.6.0"
8606 sources."serialize-javascript-1.6.1"
8624 sources."semver-5.7.0"
8625 sources."serialize-javascript-1.7.0"
8607 8626 sources."set-blocking-2.0.0"
8608 8627 (sources."set-value-2.0.0" // {
8609 8628 dependencies = [
8610 8629 sources."extend-shallow-2.0.1"
8611 8630 ];
8612 8631 })
8613 8632 sources."setimmediate-1.0.5"
8614 8633 sources."sha.js-2.4.11"
8615 8634 sources."shebang-command-1.2.0"
8616 8635 sources."shebang-regex-1.0.0"
8617 8636 sources."shelljs-0.3.0"
8618 8637 sources."sigmund-1.0.1"
8619 8638 sources."signal-exit-3.0.2"
8620 8639 sources."slash-1.0.0"
8621 8640 (sources."snapdragon-0.8.2" // {
8622 8641 dependencies = [
8623 8642 sources."define-property-0.2.5"
8624 8643 sources."extend-shallow-2.0.1"
8625 8644 (sources."is-accessor-descriptor-0.1.6" // {
8626 8645 dependencies = [
8627 8646 sources."kind-of-3.2.2"
8628 8647 ];
8629 8648 })
8630 8649 (sources."is-data-descriptor-0.1.4" // {
8631 8650 dependencies = [
8632 8651 sources."kind-of-3.2.2"
8633 8652 ];
8634 8653 })
8635 8654 sources."is-descriptor-0.1.6"
8636 8655 sources."kind-of-5.1.0"
8637 8656 ];
8638 8657 })
8639 8658 (sources."snapdragon-node-2.1.1" // {
8640 8659 dependencies = [
8641 8660 sources."define-property-1.0.0"
8642 8661 ];
8643 8662 })
8644 8663 (sources."snapdragon-util-3.0.1" // {
8645 8664 dependencies = [
8646 8665 sources."kind-of-3.2.2"
8647 8666 ];
8648 8667 })
8649 8668 sources."sntp-1.0.9"
8650 8669 sources."sort-keys-1.1.2"
8651 8670 sources."source-list-map-2.0.1"
8652 8671 sources."source-map-0.5.7"
8653 8672 sources."source-map-resolve-0.5.2"
8654 8673 sources."source-map-support-0.4.18"
8655 8674 sources."source-map-url-0.4.0"
8656 8675 sources."split-string-3.1.0"
8657 8676 sources."sprintf-js-1.0.3"
8658 8677 (sources."sshpk-1.16.1" // {
8659 8678 dependencies = [
8660 8679 sources."assert-plus-1.0.0"
8661 8680 ];
8662 8681 })
8663 8682 sources."ssri-5.3.0"
8664 8683 (sources."static-extend-0.1.2" // {
8665 8684 dependencies = [
8666 8685 sources."define-property-0.2.5"
8667 8686 (sources."is-accessor-descriptor-0.1.6" // {
8668 8687 dependencies = [
8669 8688 sources."kind-of-3.2.2"
8670 8689 ];
8671 8690 })
8672 8691 (sources."is-data-descriptor-0.1.4" // {
8673 8692 dependencies = [
8674 8693 sources."kind-of-3.2.2"
8675 8694 ];
8676 8695 })
8677 8696 sources."is-descriptor-0.1.6"
8678 8697 sources."kind-of-5.1.0"
8679 8698 ];
8680 8699 })
8681 8700 sources."sticky-sidebar-3.3.1"
8682 8701 (sources."stream-browserify-2.0.2" // {
8683 8702 dependencies = [
8684 8703 sources."readable-stream-2.3.6"
8685 8704 sources."string_decoder-1.1.1"
8686 8705 ];
8687 8706 })
8688 8707 sources."stream-each-1.2.3"
8689 8708 (sources."stream-http-2.8.3" // {
8690 8709 dependencies = [
8691 8710 sources."readable-stream-2.3.6"
8692 8711 sources."string_decoder-1.1.1"
8693 8712 ];
8694 8713 })
8695 8714 sources."stream-shift-1.0.0"
8696 8715 sources."strict-uri-encode-1.1.0"
8697 8716 (sources."string-width-2.1.1" // {
8698 8717 dependencies = [
8699 8718 sources."ansi-regex-3.0.0"
8700 8719 sources."is-fullwidth-code-point-2.0.0"
8701 8720 sources."strip-ansi-4.0.0"
8702 8721 ];
8703 8722 })
8704 8723 sources."string_decoder-0.10.31"
8705 8724 sources."stringstream-0.0.6"
8706 8725 sources."strip-ansi-0.3.0"
8707 8726 sources."strip-eof-1.0.0"
8708 8727 sources."strip-json-comments-1.0.4"
8709 8728 sources."style-loader-0.21.0"
8710 8729 sources."supports-color-0.2.0"
8711 8730 (sources."svgo-0.7.2" // {
8712 8731 dependencies = [
8713 8732 sources."argparse-1.0.10"
8714 8733 sources."colors-1.1.2"
8715 8734 sources."esprima-2.7.3"
8716 8735 sources."js-yaml-3.7.0"
8717 8736 ];
8718 8737 })
8719 sources."tapable-1.1.1"
8738 sources."tapable-1.1.3"
8720 8739 sources."through-2.3.8"
8721 8740 (sources."through2-2.0.5" // {
8722 8741 dependencies = [
8723 8742 sources."readable-stream-2.3.6"
8724 8743 sources."string_decoder-1.1.1"
8725 8744 ];
8726 8745 })
8727 8746 sources."timers-browserify-2.0.10"
8728 8747 sources."tiny-emitter-2.1.0"
8729 8748 (sources."tiny-lr-fork-0.0.5" // {
8730 8749 dependencies = [
8731 8750 sources."debug-0.7.4"
8732 8751 sources."qs-0.5.6"
8733 8752 ];
8734 8753 })
8735 8754 sources."to-arraybuffer-1.0.1"
8736 8755 sources."to-fast-properties-1.0.3"
8737 8756 (sources."to-object-path-0.3.0" // {
8738 8757 dependencies = [
8739 8758 sources."kind-of-3.2.2"
8740 8759 ];
8741 8760 })
8742 8761 sources."to-regex-3.0.2"
8743 8762 sources."to-regex-range-2.1.1"
8744 8763 sources."toposort-1.0.7"
8745 8764 sources."tough-cookie-2.3.4"
8746 8765 sources."trim-right-1.0.1"
8747 8766 (sources."ts-loader-1.3.3" // {
8748 8767 dependencies = [
8749 8768 sources."big.js-3.2.0"
8750 8769 sources."colors-1.3.3"
8751 8770 sources."enhanced-resolve-3.4.1"
8752 8771 sources."graceful-fs-4.1.15"
8753 8772 sources."json5-0.5.1"
8754 8773 sources."loader-utils-0.2.17"
8755 8774 sources."tapable-0.2.9"
8756 8775 ];
8757 8776 })
8758 8777 sources."tslib-1.9.3"
8759 8778 sources."tty-browserify-0.0.0"
8760 8779 sources."tunnel-agent-0.6.0"
8761 8780 sources."tweetnacl-0.14.5"
8762 8781 sources."typedarray-0.0.6"
8763 8782 (sources."uglify-es-3.3.10" // {
8764 8783 dependencies = [
8765 8784 sources."source-map-0.6.1"
8766 8785 ];
8767 8786 })
8768 (sources."uglify-js-3.4.9" // {
8769 dependencies = [
8770 sources."commander-2.17.1"
8787 (sources."uglify-js-3.4.10" // {
8788 dependencies = [
8789 sources."commander-2.19.0"
8771 8790 sources."source-map-0.6.1"
8772 8791 ];
8773 8792 })
8774 8793 sources."uglify-to-browserify-1.0.2"
8775 8794 (sources."uglifyjs-webpack-plugin-1.3.0" // {
8776 8795 dependencies = [
8777 8796 sources."source-map-0.6.1"
8778 8797 ];
8779 8798 })
8780 8799 sources."unc-path-regex-0.1.2"
8781 8800 sources."underscore-1.7.0"
8782 8801 sources."underscore.string-2.2.1"
8783 8802 (sources."union-value-1.0.0" // {
8784 8803 dependencies = [
8785 8804 sources."extend-shallow-2.0.1"
8786 8805 sources."set-value-0.4.3"
8787 8806 ];
8788 8807 })
8789 8808 sources."uniq-1.0.1"
8790 8809 sources."uniqs-2.0.0"
8791 8810 sources."unique-filename-1.1.1"
8792 8811 sources."unique-slug-2.0.1"
8793 8812 (sources."unset-value-1.0.0" // {
8794 8813 dependencies = [
8795 8814 (sources."has-value-0.3.1" // {
8796 8815 dependencies = [
8797 8816 sources."isobject-2.1.0"
8798 8817 ];
8799 8818 })
8800 8819 sources."has-values-0.1.4"
8801 8820 ];
8802 8821 })
8803 sources."upath-1.1.0"
8822 sources."upath-1.1.2"
8804 8823 sources."upper-case-1.1.3"
8805 8824 (sources."uri-js-4.2.2" // {
8806 8825 dependencies = [
8807 8826 sources."punycode-2.1.1"
8808 8827 ];
8809 8828 })
8810 8829 sources."urix-0.1.0"
8811 8830 (sources."url-0.11.0" // {
8812 8831 dependencies = [
8813 8832 sources."punycode-1.3.2"
8814 8833 ];
8815 8834 })
8816 8835 sources."use-3.1.1"
8817 8836 sources."util-0.11.1"
8818 8837 sources."util-deprecate-1.0.2"
8819 8838 sources."util.promisify-1.0.0"
8820 8839 sources."utila-0.4.0"
8821 8840 sources."uuid-3.3.2"
8822 sources."v8-compile-cache-2.0.2"
8823 sources."v8flags-3.1.2"
8824 sources."vendors-1.0.2"
8841 sources."v8-compile-cache-2.0.3"
8842 sources."v8flags-3.1.3"
8843 sources."vendors-1.0.3"
8825 8844 (sources."verror-1.10.0" // {
8826 8845 dependencies = [
8827 8846 sources."assert-plus-1.0.0"
8828 8847 ];
8829 8848 })
8830 8849 sources."vm-browserify-0.0.4"
8831 8850 (sources."watchpack-1.6.0" // {
8832 8851 dependencies = [
8833 8852 sources."graceful-fs-4.1.15"
8834 8853 ];
8835 8854 })
8836 8855 sources."waypoints-4.0.1"
8837 8856 (sources."webpack-4.23.1" // {
8838 8857 dependencies = [
8839 sources."ajv-6.9.2"
8858 sources."ajv-6.10.0"
8840 8859 ];
8841 8860 })
8842 8861 (sources."webpack-cli-3.1.2" // {
8843 8862 dependencies = [
8844 8863 sources."ansi-styles-3.2.1"
8845 8864 sources."chalk-2.4.2"
8846 8865 sources."supports-color-5.5.0"
8847 8866 ];
8848 8867 })
8849 8868 (sources."webpack-core-0.6.9" // {
8850 8869 dependencies = [
8851 8870 sources."source-list-map-0.1.8"
8852 8871 sources."source-map-0.4.4"
8853 8872 ];
8854 8873 })
8855 8874 (sources."webpack-sources-1.3.0" // {
8856 8875 dependencies = [
8857 8876 sources."source-map-0.6.1"
8858 8877 ];
8859 8878 })
8860 8879 (sources."webpack-uglify-js-plugin-1.1.9" // {
8861 8880 dependencies = [
8862 8881 sources."ansi-regex-2.1.1"
8863 8882 sources."ansi-styles-2.2.1"
8864 8883 sources."camelcase-1.2.1"
8865 8884 sources."chalk-1.1.3"
8866 8885 sources."cliui-2.1.0"
8867 8886 sources."has-ansi-2.0.0"
8868 8887 sources."strip-ansi-3.0.1"
8869 8888 sources."supports-color-2.0.0"
8870 8889 sources."uglify-js-2.8.29"
8871 8890 sources."yargs-3.10.0"
8872 8891 ];
8873 8892 })
8874 8893 sources."whet.extend-0.9.9"
8875 8894 sources."which-1.0.9"
8876 8895 sources."which-module-2.0.0"
8877 8896 sources."window-size-0.1.0"
8878 8897 sources."wordwrap-0.0.2"
8879 sources."worker-farm-1.6.0"
8898 sources."worker-farm-1.7.0"
8880 8899 (sources."wrap-ansi-2.1.0" // {
8881 8900 dependencies = [
8882 8901 sources."ansi-regex-2.1.1"
8883 8902 sources."string-width-1.0.2"
8884 8903 sources."strip-ansi-3.0.1"
8885 8904 ];
8886 8905 })
8887 8906 sources."wrappy-1.0.2"
8888 8907 sources."xtend-4.0.1"
8889 8908 sources."y18n-4.0.0"
8890 8909 sources."yallist-2.1.2"
8891 8910 (sources."yargs-12.0.5" // {
8892 8911 dependencies = [
8893 8912 sources."find-up-3.0.0"
8894 8913 sources."locate-path-3.0.0"
8895 sources."p-limit-2.1.0"
8914 sources."p-limit-2.2.0"
8896 8915 sources."p-locate-3.0.0"
8897 sources."p-try-2.0.0"
8916 sources."p-try-2.2.0"
8898 8917 ];
8899 8918 })
8900 8919 sources."yargs-parser-11.1.1"
8901 8920 ];
8902 8921 buildInputs = globalBuildInputs;
8903 8922 meta = {
8904 8923 description = "RhodeCode JS packaged";
8905 8924 license = "SEE LICENSE IN LICENSE.txt";
8906 8925 };
8907 8926 production = false;
8908 8927 bypassCache = true;
8909 8928 };
8910 8929 in
8911 8930 {
8912 8931 tarball = nodeEnv.buildNodeSourceDist args;
8913 8932 package = nodeEnv.buildNodePackage args;
8914 8933 shell = nodeEnv.buildNodeShell args;
8915 8934 } No newline at end of file
@@ -1,2361 +1,2346 b''
1 1 # Generated by pip2nix 0.8.0.dev1
2 2 # See https://github.com/johbo/pip2nix
3 3
4 4 { pkgs, fetchurl, fetchgit, fetchhg }:
5 5
6 6 self: super: {
7 7 "alembic" = super.buildPythonPackage {
8 8 name = "alembic-1.0.10";
9 9 doCheck = false;
10 10 propagatedBuildInputs = [
11 11 self."sqlalchemy"
12 12 self."mako"
13 13 self."python-editor"
14 14 self."python-dateutil"
15 15 ];
16 16 src = fetchurl {
17 17 url = "https://files.pythonhosted.org/packages/6e/8b/fa3bd058cccd5e9177fea4efa26bfb769228fdd3178436ad5e05830ef6ef/alembic-1.0.10.tar.gz";
18 18 sha256 = "1dwl0264r6ri2jyrjr68am04x538ab26xwy4crqjnnhm4alwm3c2";
19 19 };
20 20 meta = {
21 21 license = [ pkgs.lib.licenses.mit ];
22 22 };
23 23 };
24 24 "amqp" = super.buildPythonPackage {
25 25 name = "amqp-2.3.1";
26 26 doCheck = false;
27 27 propagatedBuildInputs = [
28 28 self."vine"
29 29 ];
30 30 src = fetchurl {
31 31 url = "https://files.pythonhosted.org/packages/1b/32/242ff76cd802766f11c89c72f3389b5c8de4bdfbab406137b90c5fae8b05/amqp-2.3.1.tar.gz";
32 32 sha256 = "0wlfnvhmfrn7c8qif2jyvsm63ibdxp02ss564qwrvqfhz0di72s0";
33 33 };
34 34 meta = {
35 35 license = [ pkgs.lib.licenses.bsdOriginal ];
36 36 };
37 37 };
38 38 "appenlight-client" = super.buildPythonPackage {
39 39 name = "appenlight-client-0.6.26";
40 40 doCheck = false;
41 41 propagatedBuildInputs = [
42 42 self."webob"
43 43 self."requests"
44 44 self."six"
45 45 ];
46 46 src = fetchurl {
47 47 url = "https://files.pythonhosted.org/packages/2e/56/418fc10379b96e795ee39a15e69a730c222818af04c3821fa354eaa859ec/appenlight_client-0.6.26.tar.gz";
48 48 sha256 = "0s9xw3sb8s3pk73k78nnq4jil3q4mk6bczfa1fmgfx61kdxl2712";
49 49 };
50 50 meta = {
51 51 license = [ pkgs.lib.licenses.bsdOriginal ];
52 52 };
53 53 };
54 54 "asn1crypto" = super.buildPythonPackage {
55 55 name = "asn1crypto-0.24.0";
56 56 doCheck = false;
57 57 src = fetchurl {
58 58 url = "https://files.pythonhosted.org/packages/fc/f1/8db7daa71f414ddabfa056c4ef792e1461ff655c2ae2928a2b675bfed6b4/asn1crypto-0.24.0.tar.gz";
59 59 sha256 = "0jaf8rf9dx1lf23xfv2cdd5h52f1qr3w8k63985bc35g3d220p4x";
60 60 };
61 61 meta = {
62 62 license = [ pkgs.lib.licenses.mit ];
63 63 };
64 64 };
65 65 "atomicwrites" = super.buildPythonPackage {
66 66 name = "atomicwrites-1.2.1";
67 67 doCheck = false;
68 68 src = fetchurl {
69 69 url = "https://files.pythonhosted.org/packages/ac/ed/a311712ef6b4355035489f665e63e1a73f9eb371929e3c98e5efd451069e/atomicwrites-1.2.1.tar.gz";
70 70 sha256 = "1vmkbw9j0qammwxbxycrs39gvdg4lc2d4lk98kwf8ag2manyi6pc";
71 71 };
72 72 meta = {
73 73 license = [ pkgs.lib.licenses.mit ];
74 74 };
75 75 };
76 76 "attrs" = super.buildPythonPackage {
77 77 name = "attrs-18.2.0";
78 78 doCheck = false;
79 79 src = fetchurl {
80 80 url = "https://files.pythonhosted.org/packages/0f/9e/26b1d194aab960063b266170e53c39f73ea0d0d3f5ce23313e0ec8ee9bdf/attrs-18.2.0.tar.gz";
81 81 sha256 = "0s9ydh058wmmf5v391pym877x4ahxg45dw6a0w4c7s5wgpigdjqh";
82 82 };
83 83 meta = {
84 84 license = [ pkgs.lib.licenses.mit ];
85 85 };
86 86 };
87 87 "authomatic" = super.buildPythonPackage {
88 88 name = "authomatic-0.1.0.post1";
89 89 doCheck = false;
90 90 src = fetchurl {
91 url = "https://code.rhodecode.com/upstream/authomatic/archive/90a9ce60cc405ae8a2bf5c3713acd5d78579a04e.tar.gz?md5=3c68720a1322b25254009518d1ff6801";
92 sha256 = "1cgk0a86sbsjbri06gf5z5l4npwkjdxw6fdnwl4vvfmxs2sx9yxw";
91 url = "https://code.rhodecode.com/upstream/authomatic/artifacts/download/0-4fe9c041-a567-4f84-be4c-7efa2a606d3c.tar.gz?md5=f6bdc3c769688212db68233e8d2b0383";
92 sha256 = "0pc716mva0ym6xd8jwzjbjp8dqxy9069wwwv2aqwb8lyhl4757ab";
93 93 };
94 94 meta = {
95 95 license = [ pkgs.lib.licenses.mit ];
96 96 };
97 97 };
98 98 "babel" = super.buildPythonPackage {
99 99 name = "babel-1.3";
100 100 doCheck = false;
101 101 propagatedBuildInputs = [
102 102 self."pytz"
103 103 ];
104 104 src = fetchurl {
105 105 url = "https://files.pythonhosted.org/packages/33/27/e3978243a03a76398c384c83f7ca879bc6e8f1511233a621fcada135606e/Babel-1.3.tar.gz";
106 106 sha256 = "0bnin777lc53nxd1hp3apq410jj5wx92n08h7h4izpl4f4sx00lz";
107 107 };
108 108 meta = {
109 109 license = [ pkgs.lib.licenses.bsdOriginal ];
110 110 };
111 111 };
112 112 "backports.shutil-get-terminal-size" = super.buildPythonPackage {
113 113 name = "backports.shutil-get-terminal-size-1.0.0";
114 114 doCheck = false;
115 115 src = fetchurl {
116 116 url = "https://files.pythonhosted.org/packages/ec/9c/368086faa9c016efce5da3e0e13ba392c9db79e3ab740b763fe28620b18b/backports.shutil_get_terminal_size-1.0.0.tar.gz";
117 117 sha256 = "107cmn7g3jnbkp826zlj8rrj19fam301qvaqf0f3905f5217lgki";
118 118 };
119 119 meta = {
120 120 license = [ pkgs.lib.licenses.mit ];
121 121 };
122 122 };
123 123 "beaker" = super.buildPythonPackage {
124 124 name = "beaker-1.9.1";
125 125 doCheck = false;
126 126 propagatedBuildInputs = [
127 127 self."funcsigs"
128 128 ];
129 129 src = fetchurl {
130 130 url = "https://files.pythonhosted.org/packages/ca/14/a626188d0d0c7b55dd7cf1902046c2743bd392a7078bb53073e13280eb1e/Beaker-1.9.1.tar.gz";
131 131 sha256 = "08arsn61r255lhz6hcpn2lsiqpg30clla805ysx06wmbhvb6w9rj";
132 132 };
133 133 meta = {
134 134 license = [ pkgs.lib.licenses.bsdOriginal ];
135 135 };
136 136 };
137 137 "beautifulsoup4" = super.buildPythonPackage {
138 138 name = "beautifulsoup4-4.6.3";
139 139 doCheck = false;
140 140 src = fetchurl {
141 141 url = "https://files.pythonhosted.org/packages/88/df/86bffad6309f74f3ff85ea69344a078fc30003270c8df6894fca7a3c72ff/beautifulsoup4-4.6.3.tar.gz";
142 142 sha256 = "041dhalzjciw6qyzzq7a2k4h1yvyk76xigp35hv5ibnn448ydy4h";
143 143 };
144 144 meta = {
145 145 license = [ pkgs.lib.licenses.mit ];
146 146 };
147 147 };
148 148 "billiard" = super.buildPythonPackage {
149 149 name = "billiard-3.5.0.3";
150 150 doCheck = false;
151 151 src = fetchurl {
152 152 url = "https://files.pythonhosted.org/packages/39/ac/f5571210cca2e4f4532e38aaff242f26c8654c5e2436bee966c230647ccc/billiard-3.5.0.3.tar.gz";
153 153 sha256 = "1riwiiwgb141151md4ykx49qrz749akj5k8g290ji9bsqjyj4yqx";
154 154 };
155 155 meta = {
156 156 license = [ pkgs.lib.licenses.bsdOriginal ];
157 157 };
158 158 };
159 159 "bleach" = super.buildPythonPackage {
160 160 name = "bleach-3.1.0";
161 161 doCheck = false;
162 162 propagatedBuildInputs = [
163 163 self."six"
164 164 self."webencodings"
165 165 ];
166 166 src = fetchurl {
167 167 url = "https://files.pythonhosted.org/packages/78/5a/0df03e8735cd9c75167528299c738702437589b9c71a849489d00ffa82e8/bleach-3.1.0.tar.gz";
168 168 sha256 = "1yhrgrhkln8bd6gn3imj69g1h4xqah9gaz9q26crqr6gmmvpzprz";
169 169 };
170 170 meta = {
171 171 license = [ pkgs.lib.licenses.asl20 ];
172 172 };
173 173 };
174 174 "bumpversion" = super.buildPythonPackage {
175 175 name = "bumpversion-0.5.3";
176 176 doCheck = false;
177 177 src = fetchurl {
178 178 url = "https://files.pythonhosted.org/packages/14/41/8c9da3549f8e00c84f0432c3a8cf8ed6898374714676aab91501d48760db/bumpversion-0.5.3.tar.gz";
179 179 sha256 = "0zn7694yfipxg35ikkfh7kvgl2fissha3dnqad2c5bvsvmrwhi37";
180 180 };
181 181 meta = {
182 182 license = [ pkgs.lib.licenses.mit ];
183 183 };
184 184 };
185 185 "celery" = super.buildPythonPackage {
186 186 name = "celery-4.1.1";
187 187 doCheck = false;
188 188 propagatedBuildInputs = [
189 189 self."pytz"
190 190 self."billiard"
191 191 self."kombu"
192 192 ];
193 193 src = fetchurl {
194 194 url = "https://files.pythonhosted.org/packages/e9/cf/a4c0597effca20c57eb586324e41d1180bc8f13a933da41e0646cff69f02/celery-4.1.1.tar.gz";
195 195 sha256 = "1xbir4vw42n2ir9lanhwl7w69zpmj7lbi66fxm2b7pyvkcss7wni";
196 196 };
197 197 meta = {
198 198 license = [ pkgs.lib.licenses.bsdOriginal ];
199 199 };
200 200 };
201 201 "cffi" = super.buildPythonPackage {
202 202 name = "cffi-1.12.2";
203 203 doCheck = false;
204 204 propagatedBuildInputs = [
205 205 self."pycparser"
206 206 ];
207 207 src = fetchurl {
208 208 url = "https://files.pythonhosted.org/packages/64/7c/27367b38e6cc3e1f49f193deb761fe75cda9f95da37b67b422e62281fcac/cffi-1.12.2.tar.gz";
209 209 sha256 = "19qfks2djya8vix95bmg3xzipjb8w9b8mbj4j5k2hqkc8j58f4z1";
210 210 };
211 211 meta = {
212 212 license = [ pkgs.lib.licenses.mit ];
213 213 };
214 214 };
215 215 "chameleon" = super.buildPythonPackage {
216 216 name = "chameleon-2.24";
217 217 doCheck = false;
218 218 src = fetchurl {
219 219 url = "https://files.pythonhosted.org/packages/5a/9e/637379ffa13c5172b5c0e704833ffea6bf51cec7567f93fd6e903d53ed74/Chameleon-2.24.tar.gz";
220 220 sha256 = "0ykqr7syxfa6h9adjfnsv1gdsca2xzm22vmic8859n0f0j09abj5";
221 221 };
222 222 meta = {
223 223 license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ];
224 224 };
225 225 };
226 226 "channelstream" = super.buildPythonPackage {
227 227 name = "channelstream-0.5.2";
228 228 doCheck = false;
229 229 propagatedBuildInputs = [
230 230 self."gevent"
231 231 self."ws4py"
232 232 self."pyramid"
233 233 self."pyramid-jinja2"
234 234 self."itsdangerous"
235 235 self."requests"
236 236 self."six"
237 237 ];
238 238 src = fetchurl {
239 239 url = "https://files.pythonhosted.org/packages/2b/31/29a8e085cf5bf97fa88e7b947adabfc581a18a3463adf77fb6dada34a65f/channelstream-0.5.2.tar.gz";
240 240 sha256 = "1qbm4xdl5hfkja683x546bncg3rqq8qv79w1m1a1wd48cqqzb6rm";
241 241 };
242 242 meta = {
243 243 license = [ pkgs.lib.licenses.bsdOriginal ];
244 244 };
245 245 };
246 246 "click" = super.buildPythonPackage {
247 247 name = "click-7.0";
248 248 doCheck = false;
249 249 src = fetchurl {
250 250 url = "https://files.pythonhosted.org/packages/f8/5c/f60e9d8a1e77005f664b76ff8aeaee5bc05d0a91798afd7f53fc998dbc47/Click-7.0.tar.gz";
251 251 sha256 = "1mzjixd4vjbjvzb6vylki9w1556a9qmdh35kzmq6cign46av952v";
252 252 };
253 253 meta = {
254 254 license = [ pkgs.lib.licenses.bsdOriginal ];
255 255 };
256 256 };
257 257 "colander" = super.buildPythonPackage {
258 258 name = "colander-1.7.0";
259 259 doCheck = false;
260 260 propagatedBuildInputs = [
261 261 self."translationstring"
262 262 self."iso8601"
263 263 self."enum34"
264 264 ];
265 265 src = fetchurl {
266 266 url = "https://files.pythonhosted.org/packages/db/e4/74ab06f54211917b41865cafc987ce511e35503de48da9bfe9358a1bdc3e/colander-1.7.0.tar.gz";
267 267 sha256 = "1wl1bqab307lbbcjx81i28s3yl6dlm4rf15fxawkjb6j48x1cn6p";
268 268 };
269 269 meta = {
270 270 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
271 271 };
272 272 };
273 273 "configobj" = super.buildPythonPackage {
274 274 name = "configobj-5.0.6";
275 275 doCheck = false;
276 276 propagatedBuildInputs = [
277 277 self."six"
278 278 ];
279 279 src = fetchurl {
280 url = "https://code.rhodecode.com/upstream/configobj/archive/a11ff0a0bd4fbda9e3a91267e720f88329efb4a6.tar.gz?md5=9916c524ea11a6c418217af6b28d4b3c";
281 sha256 = "1hhcxirwvg58grlfr177b3awhbq8hlx1l3lh69ifl1ki7lfd1s1x";
280 url = "https://code.rhodecode.com/upstream/configobj/artifacts/download/0-012de99a-b1e1-4f64-a5c0-07a98a41b324.tar.gz?md5=6a513f51fe04b2c18cf84c1395a7c626";
281 sha256 = "0kqfrdfr14mw8yd8qwq14dv2xghpkjmd3yjsy8dfcbvpcc17xnxp";
282 282 };
283 283 meta = {
284 284 license = [ pkgs.lib.licenses.bsdOriginal ];
285 285 };
286 286 };
287 287 "configparser" = super.buildPythonPackage {
288 288 name = "configparser-3.7.4";
289 289 doCheck = false;
290 290 src = fetchurl {
291 291 url = "https://files.pythonhosted.org/packages/e2/1c/83fd53748d8245cb9a3399f705c251d3fc0ce7df04450aac1cfc49dd6a0f/configparser-3.7.4.tar.gz";
292 292 sha256 = "0xac32886ihs2xg7w1gppcq2sgin5qsm8lqwijs5xifq9w0x0q6s";
293 293 };
294 294 meta = {
295 295 license = [ pkgs.lib.licenses.mit ];
296 296 };
297 297 };
298 298 "cov-core" = super.buildPythonPackage {
299 299 name = "cov-core-1.15.0";
300 300 doCheck = false;
301 301 propagatedBuildInputs = [
302 302 self."coverage"
303 303 ];
304 304 src = fetchurl {
305 305 url = "https://files.pythonhosted.org/packages/4b/87/13e75a47b4ba1be06f29f6d807ca99638bedc6b57fa491cd3de891ca2923/cov-core-1.15.0.tar.gz";
306 306 sha256 = "0k3np9ymh06yv1ib96sb6wfsxjkqhmik8qfsn119vnhga9ywc52a";
307 307 };
308 308 meta = {
309 309 license = [ pkgs.lib.licenses.mit ];
310 310 };
311 311 };
312 312 "coverage" = super.buildPythonPackage {
313 313 name = "coverage-4.5.3";
314 314 doCheck = false;
315 315 src = fetchurl {
316 316 url = "https://files.pythonhosted.org/packages/82/70/2280b5b29a0352519bb95ab0ef1ea942d40466ca71c53a2085bdeff7b0eb/coverage-4.5.3.tar.gz";
317 317 sha256 = "02f6m073qdispn96rc616hg0rnmw1pgqzw3bgxwiwza4zf9hirlx";
318 318 };
319 319 meta = {
320 320 license = [ pkgs.lib.licenses.asl20 ];
321 321 };
322 322 };
323 323 "cryptography" = super.buildPythonPackage {
324 324 name = "cryptography-2.6.1";
325 325 doCheck = false;
326 326 propagatedBuildInputs = [
327 327 self."asn1crypto"
328 328 self."six"
329 329 self."cffi"
330 330 self."enum34"
331 331 self."ipaddress"
332 332 ];
333 333 src = fetchurl {
334 334 url = "https://files.pythonhosted.org/packages/07/ca/bc827c5e55918ad223d59d299fff92f3563476c3b00d0a9157d9c0217449/cryptography-2.6.1.tar.gz";
335 335 sha256 = "19iwz5avym5zl6jrrrkym1rdaa9h61j20ph4cswsqgv8xg5j3j16";
336 336 };
337 337 meta = {
338 338 license = [ pkgs.lib.licenses.bsdOriginal { fullName = "BSD or Apache License, Version 2.0"; } pkgs.lib.licenses.asl20 ];
339 339 };
340 340 };
341 341 "cssselect" = super.buildPythonPackage {
342 342 name = "cssselect-1.0.3";
343 343 doCheck = false;
344 344 src = fetchurl {
345 345 url = "https://files.pythonhosted.org/packages/52/ea/f31e1d2e9eb130fda2a631e22eac369dc644e8807345fbed5113f2d6f92b/cssselect-1.0.3.tar.gz";
346 346 sha256 = "011jqa2jhmydhi0iz4v1w3cr540z5zas8g2bw8brdw4s4b2qnv86";
347 347 };
348 348 meta = {
349 349 license = [ pkgs.lib.licenses.bsdOriginal ];
350 350 };
351 351 };
352 352 "decorator" = super.buildPythonPackage {
353 353 name = "decorator-4.1.2";
354 354 doCheck = false;
355 355 src = fetchurl {
356 356 url = "https://files.pythonhosted.org/packages/bb/e0/f6e41e9091e130bf16d4437dabbac3993908e4d6485ecbc985ef1352db94/decorator-4.1.2.tar.gz";
357 357 sha256 = "1d8npb11kxyi36mrvjdpcjij76l5zfyrz2f820brf0l0rcw4vdkw";
358 358 };
359 359 meta = {
360 360 license = [ pkgs.lib.licenses.bsdOriginal { fullName = "new BSD License"; } ];
361 361 };
362 362 };
363 363 "deform" = super.buildPythonPackage {
364 364 name = "deform-2.0.7";
365 365 doCheck = false;
366 366 propagatedBuildInputs = [
367 367 self."chameleon"
368 368 self."colander"
369 369 self."iso8601"
370 370 self."peppercorn"
371 371 self."translationstring"
372 372 self."zope.deprecation"
373 373 ];
374 374 src = fetchurl {
375 375 url = "https://files.pythonhosted.org/packages/cf/a1/bc234527b8f181de9acd80e796483c00007658d1e32b7de78f1c2e004d9a/deform-2.0.7.tar.gz";
376 376 sha256 = "0jnpi0zr2hjvbmiz6nm33yqv976dn9lf51vhlzqc0i75xcr9rwig";
377 377 };
378 378 meta = {
379 379 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
380 380 };
381 381 };
382 382 "defusedxml" = super.buildPythonPackage {
383 383 name = "defusedxml-0.6.0";
384 384 doCheck = false;
385 385 src = fetchurl {
386 386 url = "https://files.pythonhosted.org/packages/a4/5f/f8aa58ca0cf01cbcee728abc9d88bfeb74e95e6cb4334cfd5bed5673ea77/defusedxml-0.6.0.tar.gz";
387 387 sha256 = "1xbp8fivl3wlbyg2jrvs4lalaqv1xp9a9f29p75wdx2s2d6h717n";
388 388 };
389 389 meta = {
390 390 license = [ pkgs.lib.licenses.psfl ];
391 391 };
392 392 };
393 393 "dm.xmlsec.binding" = super.buildPythonPackage {
394 394 name = "dm.xmlsec.binding-1.3.7";
395 395 doCheck = false;
396 396 propagatedBuildInputs = [
397 397 self."setuptools"
398 398 self."lxml"
399 399 ];
400 400 src = fetchurl {
401 401 url = "https://files.pythonhosted.org/packages/2c/9e/7651982d50252692991acdae614af821fd6c79bc8dcd598ad71d55be8fc7/dm.xmlsec.binding-1.3.7.tar.gz";
402 402 sha256 = "03jjjscx1pz2nc0dwiw9nia02qbz1c6f0f9zkyr8fmvys2n5jkb3";
403 403 };
404 404 meta = {
405 405 license = [ pkgs.lib.licenses.bsdOriginal ];
406 406 };
407 407 };
408 408 "docutils" = super.buildPythonPackage {
409 409 name = "docutils-0.14";
410 410 doCheck = false;
411 411 src = fetchurl {
412 412 url = "https://files.pythonhosted.org/packages/84/f4/5771e41fdf52aabebbadecc9381d11dea0fa34e4759b4071244fa094804c/docutils-0.14.tar.gz";
413 413 sha256 = "0x22fs3pdmr42kvz6c654756wja305qv6cx1zbhwlagvxgr4xrji";
414 414 };
415 415 meta = {
416 416 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.publicDomain pkgs.lib.licenses.gpl1 { fullName = "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)"; } pkgs.lib.licenses.psfl ];
417 417 };
418 418 };
419 419 "dogpile.cache" = super.buildPythonPackage {
420 420 name = "dogpile.cache-0.7.1";
421 421 doCheck = false;
422 422 propagatedBuildInputs = [
423 423 self."decorator"
424 424 ];
425 425 src = fetchurl {
426 426 url = "https://files.pythonhosted.org/packages/84/3e/dbf1cfc5228f1d3dca80ef714db2c5aaec5cd9efaf54d7e3daef6bc48b19/dogpile.cache-0.7.1.tar.gz";
427 427 sha256 = "0caazmrzhnfqb5yrp8myhw61ny637jj69wcngrpbvi31jlcpy6v9";
428 428 };
429 429 meta = {
430 430 license = [ pkgs.lib.licenses.bsdOriginal ];
431 431 };
432 432 };
433 433 "dogpile.core" = super.buildPythonPackage {
434 434 name = "dogpile.core-0.4.1";
435 435 doCheck = false;
436 436 src = fetchurl {
437 437 url = "https://files.pythonhosted.org/packages/0e/77/e72abc04c22aedf874301861e5c1e761231c288b5de369c18be8f4b5c9bb/dogpile.core-0.4.1.tar.gz";
438 438 sha256 = "0xpdvg4kr1isfkrh1rfsh7za4q5a5s6l2kf9wpvndbwf3aqjyrdy";
439 439 };
440 440 meta = {
441 441 license = [ pkgs.lib.licenses.bsdOriginal ];
442 442 };
443 443 };
444 444 "ecdsa" = super.buildPythonPackage {
445 name = "ecdsa-0.13";
445 name = "ecdsa-0.13.2";
446 446 doCheck = false;
447 447 src = fetchurl {
448 url = "https://files.pythonhosted.org/packages/f9/e5/99ebb176e47f150ac115ffeda5fedb6a3dbb3c00c74a59fd84ddf12f5857/ecdsa-0.13.tar.gz";
449 sha256 = "1yj31j0asmrx4an9xvsaj2icdmzy6pw0glfpqrrkrphwdpi1xkv4";
448 url = "https://files.pythonhosted.org/packages/51/76/139bf6e9b7b6684d5891212cdbd9e0739f2bfc03f380a1a6ffa700f392ac/ecdsa-0.13.2.tar.gz";
449 sha256 = "116qaq7bh4lcynzi613960jhsnn19v0kmsqwahiwjfj14gx4y0sw";
450 450 };
451 451 meta = {
452 452 license = [ pkgs.lib.licenses.mit ];
453 453 };
454 454 };
455 455 "elasticsearch" = super.buildPythonPackage {
456 456 name = "elasticsearch-6.3.1";
457 457 doCheck = false;
458 458 propagatedBuildInputs = [
459 459 self."urllib3"
460 460 ];
461 461 src = fetchurl {
462 462 url = "https://files.pythonhosted.org/packages/9d/ce/c4664e8380e379a9402ecfbaf158e56396da90d520daba21cfa840e0eb71/elasticsearch-6.3.1.tar.gz";
463 463 sha256 = "12y93v0yn7a4xmf969239g8gb3l4cdkclfpbk1qc8hx5qkymrnma";
464 464 };
465 465 meta = {
466 466 license = [ pkgs.lib.licenses.asl20 ];
467 467 };
468 468 };
469 469 "elasticsearch-dsl" = super.buildPythonPackage {
470 470 name = "elasticsearch-dsl-6.3.1";
471 471 doCheck = false;
472 472 propagatedBuildInputs = [
473 473 self."six"
474 474 self."python-dateutil"
475 475 self."elasticsearch"
476 476 self."ipaddress"
477 477 ];
478 478 src = fetchurl {
479 479 url = "https://files.pythonhosted.org/packages/4c/0d/1549f50c591db6bb4e66cbcc8d34a6e537c3d89aa426b167c244fd46420a/elasticsearch-dsl-6.3.1.tar.gz";
480 480 sha256 = "1gh8a0shqi105k325hgwb9avrpdjh0mc6mxwfg9ba7g6lssb702z";
481 481 };
482 482 meta = {
483 483 license = [ pkgs.lib.licenses.asl20 ];
484 484 };
485 485 };
486 486 "elasticsearch1" = super.buildPythonPackage {
487 487 name = "elasticsearch1-1.10.0";
488 488 doCheck = false;
489 489 propagatedBuildInputs = [
490 490 self."urllib3"
491 491 ];
492 492 src = fetchurl {
493 493 url = "https://files.pythonhosted.org/packages/a6/eb/73e75f9681fa71e3157b8ee878534235d57f24ee64f0e77f8d995fb57076/elasticsearch1-1.10.0.tar.gz";
494 494 sha256 = "0g89444kd5zwql4vbvyrmi2m6l6dcj6ga98j4hqxyyyz6z20aki2";
495 495 };
496 496 meta = {
497 497 license = [ pkgs.lib.licenses.asl20 ];
498 498 };
499 499 };
500 500 "elasticsearch1-dsl" = super.buildPythonPackage {
501 501 name = "elasticsearch1-dsl-0.0.12";
502 502 doCheck = false;
503 503 propagatedBuildInputs = [
504 504 self."six"
505 505 self."python-dateutil"
506 506 self."elasticsearch1"
507 507 ];
508 508 src = fetchurl {
509 509 url = "https://files.pythonhosted.org/packages/eb/9d/785342775cb10eddc9b8d7457d618a423b4f0b89d8b2b2d1bc27190d71db/elasticsearch1-dsl-0.0.12.tar.gz";
510 510 sha256 = "0ig1ly39v93hba0z975wnhbmzwj28w6w1sqlr2g7cn5spp732bhk";
511 511 };
512 512 meta = {
513 513 license = [ pkgs.lib.licenses.asl20 ];
514 514 };
515 515 };
516 516 "elasticsearch2" = super.buildPythonPackage {
517 517 name = "elasticsearch2-2.5.0";
518 518 doCheck = false;
519 519 propagatedBuildInputs = [
520 520 self."urllib3"
521 521 ];
522 522 src = fetchurl {
523 523 url = "https://files.pythonhosted.org/packages/84/77/63cf63d4ba11d913b5278406f2a37b0712bec6fc85edfb6151a33eaeba25/elasticsearch2-2.5.0.tar.gz";
524 524 sha256 = "0ky0q16lbvz022yv6q3pix7aamf026p1y994537ccjf0p0dxnbxr";
525 525 };
526 526 meta = {
527 527 license = [ pkgs.lib.licenses.asl20 ];
528 528 };
529 529 };
530 530 "entrypoints" = super.buildPythonPackage {
531 531 name = "entrypoints-0.2.2";
532 532 doCheck = false;
533 533 propagatedBuildInputs = [
534 534 self."configparser"
535 535 ];
536 536 src = fetchurl {
537 url = "https://code.rhodecode.com/upstream/entrypoints/archive/96e6d645684e1af3d7df5b5272f3fe85a546b233.tar.gz?md5=7db37771aea9ac9fefe093e5d6987313";
538 sha256 = "0bihrdp8ahsys437kxdhk52gz6kib8rxjv71i93wkw7594fcaxll";
537 url = "https://code.rhodecode.com/upstream/entrypoints/artifacts/download/0-8e9ee9e4-c4db-409c-b07e-81568fd1832d.tar.gz?md5=3a027b8ff1d257b91fe257de6c43357d";
538 sha256 = "0qih72n2myclanplqipqxpgpj9d2yhff1pz5d02zq1cfqyd173w5";
539 539 };
540 540 meta = {
541 541 license = [ pkgs.lib.licenses.mit ];
542 542 };
543 543 };
544 544 "enum34" = super.buildPythonPackage {
545 545 name = "enum34-1.1.6";
546 546 doCheck = false;
547 547 src = fetchurl {
548 548 url = "https://files.pythonhosted.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz";
549 549 sha256 = "1cgm5ng2gcfrkrm3hc22brl6chdmv67b9zvva9sfs7gn7dwc9n4a";
550 550 };
551 551 meta = {
552 552 license = [ pkgs.lib.licenses.bsdOriginal ];
553 553 };
554 554 };
555 555 "formencode" = super.buildPythonPackage {
556 556 name = "formencode-1.2.4";
557 557 doCheck = false;
558 558 src = fetchurl {
559 559 url = "https://files.pythonhosted.org/packages/8e/59/0174271a6f004512e0201188593e6d319db139d14cb7490e488bbb078015/FormEncode-1.2.4.tar.gz";
560 560 sha256 = "1fgy04sdy4yry5xcjls3x3xy30dqwj58ycnkndim819jx0788w42";
561 561 };
562 562 meta = {
563 563 license = [ pkgs.lib.licenses.psfl ];
564 564 };
565 565 };
566 566 "funcsigs" = super.buildPythonPackage {
567 567 name = "funcsigs-1.0.2";
568 568 doCheck = false;
569 569 src = fetchurl {
570 570 url = "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz";
571 571 sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7";
572 572 };
573 573 meta = {
574 574 license = [ { fullName = "ASL"; } pkgs.lib.licenses.asl20 ];
575 575 };
576 576 };
577 577 "functools32" = super.buildPythonPackage {
578 578 name = "functools32-3.2.3.post2";
579 579 doCheck = false;
580 580 src = fetchurl {
581 581 url = "https://files.pythonhosted.org/packages/c5/60/6ac26ad05857c601308d8fb9e87fa36d0ebf889423f47c3502ef034365db/functools32-3.2.3-2.tar.gz";
582 582 sha256 = "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn";
583 583 };
584 584 meta = {
585 585 license = [ pkgs.lib.licenses.psfl ];
586 586 };
587 587 };
588 588 "future" = super.buildPythonPackage {
589 589 name = "future-0.14.3";
590 590 doCheck = false;
591 591 src = fetchurl {
592 592 url = "https://files.pythonhosted.org/packages/83/80/8ef3a11a15f8eaafafa0937b20c1b3f73527e69ab6b3fa1cf94a5a96aabb/future-0.14.3.tar.gz";
593 593 sha256 = "1savk7jx7hal032f522c5ajhh8fra6gmnadrj9adv5qxi18pv1b2";
594 594 };
595 595 meta = {
596 596 license = [ { fullName = "OSI Approved"; } pkgs.lib.licenses.mit ];
597 597 };
598 598 };
599 599 "futures" = super.buildPythonPackage {
600 600 name = "futures-3.0.2";
601 601 doCheck = false;
602 602 src = fetchurl {
603 603 url = "https://files.pythonhosted.org/packages/f8/e7/fc0fcbeb9193ba2d4de00b065e7fd5aecd0679e93ce95a07322b2b1434f4/futures-3.0.2.tar.gz";
604 604 sha256 = "0mz2pbgxbc2nbib1szifi07whjbfs4r02pv2z390z7p410awjgyw";
605 605 };
606 606 meta = {
607 607 license = [ pkgs.lib.licenses.bsdOriginal ];
608 608 };
609 609 };
610 610 "gevent" = super.buildPythonPackage {
611 611 name = "gevent-1.4.0";
612 612 doCheck = false;
613 613 propagatedBuildInputs = [
614 614 self."greenlet"
615 615 ];
616 616 src = fetchurl {
617 617 url = "https://files.pythonhosted.org/packages/ed/27/6c49b70808f569b66ec7fac2e78f076e9b204db9cf5768740cff3d5a07ae/gevent-1.4.0.tar.gz";
618 618 sha256 = "1lchr4akw2jkm5v4kz7bdm4wv3knkfhbfn9vkkz4s5yrkcxzmdqy";
619 619 };
620 620 meta = {
621 621 license = [ pkgs.lib.licenses.mit ];
622 622 };
623 623 };
624 624 "gnureadline" = super.buildPythonPackage {
625 625 name = "gnureadline-6.3.8";
626 626 doCheck = false;
627 627 src = fetchurl {
628 628 url = "https://files.pythonhosted.org/packages/50/64/86085c823cd78f9df9d8e33dce0baa71618016f8860460b82cf6610e1eb3/gnureadline-6.3.8.tar.gz";
629 629 sha256 = "0ddhj98x2nv45iz4aadk4b9m0b1kpsn1xhcbypn5cd556knhiqjq";
630 630 };
631 631 meta = {
632 632 license = [ { fullName = "GNU General Public License v3 (GPLv3)"; } pkgs.lib.licenses.gpl1 ];
633 633 };
634 634 };
635 635 "gprof2dot" = super.buildPythonPackage {
636 636 name = "gprof2dot-2017.9.19";
637 637 doCheck = false;
638 638 src = fetchurl {
639 639 url = "https://files.pythonhosted.org/packages/9d/36/f977122502979f3dfb50704979c9ed70e6b620787942b089bf1af15f5aba/gprof2dot-2017.9.19.tar.gz";
640 640 sha256 = "17ih23ld2nzgc3xwgbay911l6lh96jp1zshmskm17n1gg2i7mg6f";
641 641 };
642 642 meta = {
643 643 license = [ { fullName = "GNU Lesser General Public License v3 or later (LGPLv3+)"; } { fullName = "LGPL"; } ];
644 644 };
645 645 };
646 646 "greenlet" = super.buildPythonPackage {
647 647 name = "greenlet-0.4.15";
648 648 doCheck = false;
649 649 src = fetchurl {
650 650 url = "https://files.pythonhosted.org/packages/f8/e8/b30ae23b45f69aa3f024b46064c0ac8e5fcb4f22ace0dca8d6f9c8bbe5e7/greenlet-0.4.15.tar.gz";
651 651 sha256 = "1g4g1wwc472ds89zmqlpyan3fbnzpa8qm48z3z1y6mlk44z485ll";
652 652 };
653 653 meta = {
654 654 license = [ pkgs.lib.licenses.mit ];
655 655 };
656 656 };
657 657 "gunicorn" = super.buildPythonPackage {
658 658 name = "gunicorn-19.9.0";
659 659 doCheck = false;
660 660 src = fetchurl {
661 661 url = "https://files.pythonhosted.org/packages/47/52/68ba8e5e8ba251e54006a49441f7ccabca83b6bef5aedacb4890596c7911/gunicorn-19.9.0.tar.gz";
662 662 sha256 = "1wzlf4xmn6qjirh5w81l6i6kqjnab1n1qqkh7zsj1yb6gh4n49ps";
663 663 };
664 664 meta = {
665 665 license = [ pkgs.lib.licenses.mit ];
666 666 };
667 667 };
668 668 "hupper" = super.buildPythonPackage {
669 669 name = "hupper-1.6.1";
670 670 doCheck = false;
671 671 src = fetchurl {
672 672 url = "https://files.pythonhosted.org/packages/85/d9/e005d357b11249c5d70ddf5b7adab2e4c0da4e8b0531ff146917a04fe6c0/hupper-1.6.1.tar.gz";
673 673 sha256 = "0d3cvkc8ssgwk54wvhbifj56ry97qi10pfzwfk8vwzzcikbfp3zy";
674 674 };
675 675 meta = {
676 676 license = [ pkgs.lib.licenses.mit ];
677 677 };
678 678 };
679 679 "infrae.cache" = super.buildPythonPackage {
680 680 name = "infrae.cache-1.0.1";
681 681 doCheck = false;
682 682 propagatedBuildInputs = [
683 683 self."beaker"
684 684 self."repoze.lru"
685 685 ];
686 686 src = fetchurl {
687 687 url = "https://files.pythonhosted.org/packages/bb/f0/e7d5e984cf6592fd2807dc7bc44a93f9d18e04e6a61f87fdfb2622422d74/infrae.cache-1.0.1.tar.gz";
688 688 sha256 = "1dvqsjn8vw253wz9d1pz17j79mf4bs53dvp2qxck2qdp1am1njw4";
689 689 };
690 690 meta = {
691 691 license = [ pkgs.lib.licenses.zpl21 ];
692 692 };
693 693 };
694 694 "invoke" = super.buildPythonPackage {
695 695 name = "invoke-0.13.0";
696 696 doCheck = false;
697 697 src = fetchurl {
698 698 url = "https://files.pythonhosted.org/packages/47/bf/d07ef52fa1ac645468858bbac7cb95b246a972a045e821493d17d89c81be/invoke-0.13.0.tar.gz";
699 699 sha256 = "0794vhgxfmkh0vzkkg5cfv1w82g3jc3xr18wim29far9qpx9468s";
700 700 };
701 701 meta = {
702 702 license = [ pkgs.lib.licenses.bsdOriginal ];
703 703 };
704 704 };
705 705 "ipaddress" = super.buildPythonPackage {
706 706 name = "ipaddress-1.0.22";
707 707 doCheck = false;
708 708 src = fetchurl {
709 709 url = "https://files.pythonhosted.org/packages/97/8d/77b8cedcfbf93676148518036c6b1ce7f8e14bf07e95d7fd4ddcb8cc052f/ipaddress-1.0.22.tar.gz";
710 710 sha256 = "0b570bm6xqpjwqis15pvdy6lyvvzfndjvkynilcddjj5x98wfimi";
711 711 };
712 712 meta = {
713 713 license = [ pkgs.lib.licenses.psfl ];
714 714 };
715 715 };
716 716 "ipdb" = super.buildPythonPackage {
717 717 name = "ipdb-0.12";
718 718 doCheck = false;
719 719 propagatedBuildInputs = [
720 720 self."setuptools"
721 721 self."ipython"
722 722 ];
723 723 src = fetchurl {
724 724 url = "https://files.pythonhosted.org/packages/6d/43/c3c2e866a8803e196d6209595020a4a6db1a3c5d07c01455669497ae23d0/ipdb-0.12.tar.gz";
725 725 sha256 = "1khr2n7xfy8hg65kj1bsrjq9g7656pp0ybfa8abpbzpdawji3qnw";
726 726 };
727 727 meta = {
728 728 license = [ pkgs.lib.licenses.bsdOriginal ];
729 729 };
730 730 };
731 731 "ipython" = super.buildPythonPackage {
732 732 name = "ipython-5.1.0";
733 733 doCheck = false;
734 734 propagatedBuildInputs = [
735 735 self."setuptools"
736 736 self."decorator"
737 737 self."pickleshare"
738 738 self."simplegeneric"
739 739 self."traitlets"
740 740 self."prompt-toolkit"
741 741 self."pygments"
742 742 self."pexpect"
743 743 self."backports.shutil-get-terminal-size"
744 744 self."pathlib2"
745 745 self."pexpect"
746 746 ];
747 747 src = fetchurl {
748 748 url = "https://files.pythonhosted.org/packages/89/63/a9292f7cd9d0090a0f995e1167f3f17d5889dcbc9a175261719c513b9848/ipython-5.1.0.tar.gz";
749 749 sha256 = "0qdrf6aj9kvjczd5chj1my8y2iq09am9l8bb2a1334a52d76kx3y";
750 750 };
751 751 meta = {
752 752 license = [ pkgs.lib.licenses.bsdOriginal ];
753 753 };
754 754 };
755 755 "ipython-genutils" = super.buildPythonPackage {
756 756 name = "ipython-genutils-0.2.0";
757 757 doCheck = false;
758 758 src = fetchurl {
759 759 url = "https://files.pythonhosted.org/packages/e8/69/fbeffffc05236398ebfcfb512b6d2511c622871dca1746361006da310399/ipython_genutils-0.2.0.tar.gz";
760 760 sha256 = "1a4bc9y8hnvq6cp08qs4mckgm6i6ajpndp4g496rvvzcfmp12bpb";
761 761 };
762 762 meta = {
763 763 license = [ pkgs.lib.licenses.bsdOriginal ];
764 764 };
765 765 };
766 766 "iso8601" = super.buildPythonPackage {
767 767 name = "iso8601-0.1.12";
768 768 doCheck = false;
769 769 src = fetchurl {
770 770 url = "https://files.pythonhosted.org/packages/45/13/3db24895497345fb44c4248c08b16da34a9eb02643cea2754b21b5ed08b0/iso8601-0.1.12.tar.gz";
771 771 sha256 = "10nyvvnrhw2w3p09v1ica4lgj6f4g9j3kkfx17qmraiq3w7b5i29";
772 772 };
773 773 meta = {
774 774 license = [ pkgs.lib.licenses.mit ];
775 775 };
776 776 };
777 777 "isodate" = super.buildPythonPackage {
778 778 name = "isodate-0.6.0";
779 779 doCheck = false;
780 780 propagatedBuildInputs = [
781 781 self."six"
782 782 ];
783 783 src = fetchurl {
784 784 url = "https://files.pythonhosted.org/packages/b1/80/fb8c13a4cd38eb5021dc3741a9e588e4d1de88d895c1910c6fc8a08b7a70/isodate-0.6.0.tar.gz";
785 785 sha256 = "1n7jkz68kk5pwni540pr5zdh99bf6ywydk1p5pdrqisrawylldif";
786 786 };
787 787 meta = {
788 788 license = [ pkgs.lib.licenses.bsdOriginal ];
789 789 };
790 790 };
791 791 "itsdangerous" = super.buildPythonPackage {
792 792 name = "itsdangerous-0.24";
793 793 doCheck = false;
794 794 src = fetchurl {
795 795 url = "https://files.pythonhosted.org/packages/dc/b4/a60bcdba945c00f6d608d8975131ab3f25b22f2bcfe1dab221165194b2d4/itsdangerous-0.24.tar.gz";
796 796 sha256 = "06856q6x675ly542ig0plbqcyab6ksfzijlyf1hzhgg3sgwgrcyb";
797 797 };
798 798 meta = {
799 799 license = [ pkgs.lib.licenses.bsdOriginal ];
800 800 };
801 801 };
802 802 "jinja2" = super.buildPythonPackage {
803 803 name = "jinja2-2.9.6";
804 804 doCheck = false;
805 805 propagatedBuildInputs = [
806 806 self."markupsafe"
807 807 ];
808 808 src = fetchurl {
809 809 url = "https://files.pythonhosted.org/packages/90/61/f820ff0076a2599dd39406dcb858ecb239438c02ce706c8e91131ab9c7f1/Jinja2-2.9.6.tar.gz";
810 810 sha256 = "1zzrkywhziqffrzks14kzixz7nd4yh2vc0fb04a68vfd2ai03anx";
811 811 };
812 812 meta = {
813 813 license = [ pkgs.lib.licenses.bsdOriginal ];
814 814 };
815 815 };
816 816 "jsonschema" = super.buildPythonPackage {
817 817 name = "jsonschema-2.6.0";
818 818 doCheck = false;
819 819 propagatedBuildInputs = [
820 820 self."functools32"
821 821 ];
822 822 src = fetchurl {
823 823 url = "https://files.pythonhosted.org/packages/58/b9/171dbb07e18c6346090a37f03c7e74410a1a56123f847efed59af260a298/jsonschema-2.6.0.tar.gz";
824 824 sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg";
825 825 };
826 826 meta = {
827 827 license = [ pkgs.lib.licenses.mit ];
828 828 };
829 829 };
830 830 "jupyter-client" = super.buildPythonPackage {
831 831 name = "jupyter-client-5.0.0";
832 832 doCheck = false;
833 833 propagatedBuildInputs = [
834 834 self."traitlets"
835 835 self."jupyter-core"
836 836 self."pyzmq"
837 837 self."python-dateutil"
838 838 ];
839 839 src = fetchurl {
840 840 url = "https://files.pythonhosted.org/packages/e5/6f/65412ed462202b90134b7e761b0b7e7f949e07a549c1755475333727b3d0/jupyter_client-5.0.0.tar.gz";
841 841 sha256 = "0nxw4rqk4wsjhc87gjqd7pv89cb9dnimcfnmcmp85bmrvv1gjri7";
842 842 };
843 843 meta = {
844 844 license = [ pkgs.lib.licenses.bsdOriginal ];
845 845 };
846 846 };
847 847 "jupyter-core" = super.buildPythonPackage {
848 name = "jupyter-core-4.4.0";
848 name = "jupyter-core-4.5.0";
849 849 doCheck = false;
850 850 propagatedBuildInputs = [
851 851 self."traitlets"
852 852 ];
853 853 src = fetchurl {
854 url = "https://files.pythonhosted.org/packages/b6/2d/2804f4de3a95583f65e5dcb4d7c8c7183124882323758996e867f47e72af/jupyter_core-4.4.0.tar.gz";
855 sha256 = "1dy083rarba8prn9f9srxq3c7n7vyql02ycrqq306c40lr57aw5s";
854 url = "https://files.pythonhosted.org/packages/4a/de/ff4ca734656d17ebe0450807b59d728f45277e2e7f4b82bc9aae6cb82961/jupyter_core-4.5.0.tar.gz";
855 sha256 = "1xr4pbghwk5hayn5wwnhb7z95380r45p79gf5if5pi1akwg7qvic";
856 856 };
857 857 meta = {
858 858 license = [ pkgs.lib.licenses.bsdOriginal ];
859 859 };
860 860 };
861 861 "kombu" = super.buildPythonPackage {
862 862 name = "kombu-4.2.1";
863 863 doCheck = false;
864 864 propagatedBuildInputs = [
865 865 self."amqp"
866 866 ];
867 867 src = fetchurl {
868 868 url = "https://files.pythonhosted.org/packages/39/9f/556b988833abede4a80dbd18b2bdf4e8ff4486dd482ed45da961347e8ed2/kombu-4.2.1.tar.gz";
869 869 sha256 = "10lh3hncvw67fz0k5vgbx3yh9gjfpqdlia1f13i28cgnc1nfrbc6";
870 870 };
871 871 meta = {
872 872 license = [ pkgs.lib.licenses.bsdOriginal ];
873 873 };
874 874 };
875 875 "lxml" = super.buildPythonPackage {
876 876 name = "lxml-4.2.5";
877 877 doCheck = false;
878 878 src = fetchurl {
879 879 url = "https://files.pythonhosted.org/packages/4b/20/ddf5eb3bd5c57582d2b4652b4bbcf8da301bdfe5d805cb94e805f4d7464d/lxml-4.2.5.tar.gz";
880 880 sha256 = "0zw0y9hs0nflxhl9cs6ipwwh53szi3w2x06wl0k9cylyqac0cwin";
881 881 };
882 882 meta = {
883 883 license = [ pkgs.lib.licenses.bsdOriginal ];
884 884 };
885 885 };
886 886 "mako" = super.buildPythonPackage {
887 887 name = "mako-1.0.7";
888 888 doCheck = false;
889 889 propagatedBuildInputs = [
890 890 self."markupsafe"
891 891 ];
892 892 src = fetchurl {
893 893 url = "https://files.pythonhosted.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz";
894 894 sha256 = "1bi5gnr8r8dva06qpyx4kgjc6spm2k1y908183nbbaylggjzs0jf";
895 895 };
896 896 meta = {
897 897 license = [ pkgs.lib.licenses.mit ];
898 898 };
899 899 };
900 900 "markdown" = super.buildPythonPackage {
901 901 name = "markdown-2.6.11";
902 902 doCheck = false;
903 903 src = fetchurl {
904 904 url = "https://files.pythonhosted.org/packages/b3/73/fc5c850f44af5889192dff783b7b0d8f3fe8d30b65c8e3f78f8f0265fecf/Markdown-2.6.11.tar.gz";
905 905 sha256 = "108g80ryzykh8bj0i7jfp71510wrcixdi771lf2asyghgyf8cmm8";
906 906 };
907 907 meta = {
908 908 license = [ pkgs.lib.licenses.bsdOriginal ];
909 909 };
910 910 };
911 911 "markupsafe" = super.buildPythonPackage {
912 912 name = "markupsafe-1.1.0";
913 913 doCheck = false;
914 914 src = fetchurl {
915 915 url = "https://files.pythonhosted.org/packages/ac/7e/1b4c2e05809a4414ebce0892fe1e32c14ace86ca7d50c70f00979ca9b3a3/MarkupSafe-1.1.0.tar.gz";
916 916 sha256 = "1lxirjypbdd3l9jl4vliilhfnhy7c7f2vlldqg1b0i74khn375sf";
917 917 };
918 918 meta = {
919 919 license = [ pkgs.lib.licenses.bsdOriginal ];
920 920 };
921 921 };
922 922 "meld3" = super.buildPythonPackage {
923 923 name = "meld3-1.0.2";
924 924 doCheck = false;
925 925 src = fetchurl {
926 926 url = "https://files.pythonhosted.org/packages/45/a0/317c6422b26c12fe0161e936fc35f36552069ba8e6f7ecbd99bbffe32a5f/meld3-1.0.2.tar.gz";
927 927 sha256 = "0n4mkwlpsqnmn0dm0wm5hn9nkda0nafl0jdy5sdl5977znh59dzp";
928 928 };
929 929 meta = {
930 930 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
931 931 };
932 932 };
933 933 "mistune" = super.buildPythonPackage {
934 934 name = "mistune-0.8.4";
935 935 doCheck = false;
936 936 src = fetchurl {
937 937 url = "https://files.pythonhosted.org/packages/2d/a4/509f6e7783ddd35482feda27bc7f72e65b5e7dc910eca4ab2164daf9c577/mistune-0.8.4.tar.gz";
938 938 sha256 = "0vkmsh0x480rni51lhyvigfdf06b9247z868pk3bal1wnnfl58sr";
939 939 };
940 940 meta = {
941 941 license = [ pkgs.lib.licenses.bsdOriginal ];
942 942 };
943 943 };
944 944 "mock" = super.buildPythonPackage {
945 945 name = "mock-1.0.1";
946 946 doCheck = false;
947 947 src = fetchurl {
948 948 url = "https://files.pythonhosted.org/packages/a2/52/7edcd94f0afb721a2d559a5b9aae8af4f8f2c79bc63fdbe8a8a6c9b23bbe/mock-1.0.1.tar.gz";
949 949 sha256 = "0kzlsbki6q0awf89rc287f3aj8x431lrajf160a70z0ikhnxsfdq";
950 950 };
951 951 meta = {
952 952 license = [ pkgs.lib.licenses.bsdOriginal ];
953 953 };
954 954 };
955 955 "more-itertools" = super.buildPythonPackage {
956 956 name = "more-itertools-5.0.0";
957 957 doCheck = false;
958 958 propagatedBuildInputs = [
959 959 self."six"
960 960 ];
961 961 src = fetchurl {
962 962 url = "https://files.pythonhosted.org/packages/dd/26/30fc0d541d9fdf55faf5ba4b0fd68f81d5bd2447579224820ad525934178/more-itertools-5.0.0.tar.gz";
963 963 sha256 = "1r12cm6mcdwdzz7d47a6g4l437xsvapdlgyhqay3i2nrlv03da9q";
964 964 };
965 965 meta = {
966 966 license = [ pkgs.lib.licenses.mit ];
967 967 };
968 968 };
969 969 "msgpack-python" = super.buildPythonPackage {
970 970 name = "msgpack-python-0.5.6";
971 971 doCheck = false;
972 972 src = fetchurl {
973 973 url = "https://files.pythonhosted.org/packages/8a/20/6eca772d1a5830336f84aca1d8198e5a3f4715cd1c7fc36d3cc7f7185091/msgpack-python-0.5.6.tar.gz";
974 974 sha256 = "16wh8qgybmfh4pjp8vfv78mdlkxfmcasg78lzlnm6nslsfkci31p";
975 975 };
976 976 meta = {
977 977 license = [ pkgs.lib.licenses.asl20 ];
978 978 };
979 979 };
980 980 "mysql-python" = super.buildPythonPackage {
981 981 name = "mysql-python-1.2.5";
982 982 doCheck = false;
983 983 src = fetchurl {
984 984 url = "https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a202652828c73453cad/MySQL-python-1.2.5.zip";
985 985 sha256 = "0x0c2jg0bb3pp84njaqiic050qkyd7ymwhfvhipnimg58yv40441";
986 986 };
987 987 meta = {
988 988 license = [ pkgs.lib.licenses.gpl1 ];
989 989 };
990 990 };
991 991 "nbconvert" = super.buildPythonPackage {
992 992 name = "nbconvert-5.3.1";
993 993 doCheck = false;
994 994 propagatedBuildInputs = [
995 995 self."mistune"
996 996 self."jinja2"
997 997 self."pygments"
998 998 self."traitlets"
999 999 self."jupyter-core"
1000 1000 self."nbformat"
1001 1001 self."entrypoints"
1002 1002 self."bleach"
1003 1003 self."pandocfilters"
1004 1004 self."testpath"
1005 1005 ];
1006 1006 src = fetchurl {
1007 1007 url = "https://files.pythonhosted.org/packages/b9/a4/d0a0938ad6f5eeb4dea4e73d255c617ef94b0b2849d51194c9bbdb838412/nbconvert-5.3.1.tar.gz";
1008 1008 sha256 = "1f9dkvpx186xjm4xab0qbph588mncp4vqk3fmxrsnqs43mks9c8j";
1009 1009 };
1010 1010 meta = {
1011 1011 license = [ pkgs.lib.licenses.bsdOriginal ];
1012 1012 };
1013 1013 };
1014 1014 "nbformat" = super.buildPythonPackage {
1015 1015 name = "nbformat-4.4.0";
1016 1016 doCheck = false;
1017 1017 propagatedBuildInputs = [
1018 1018 self."ipython-genutils"
1019 1019 self."traitlets"
1020 1020 self."jsonschema"
1021 1021 self."jupyter-core"
1022 1022 ];
1023 1023 src = fetchurl {
1024 1024 url = "https://files.pythonhosted.org/packages/6e/0e/160754f7ae3e984863f585a3743b0ed1702043a81245907c8fae2d537155/nbformat-4.4.0.tar.gz";
1025 1025 sha256 = "00nlf08h8yc4q73nphfvfhxrcnilaqanb8z0mdy6nxk0vzq4wjgp";
1026 1026 };
1027 1027 meta = {
1028 1028 license = [ pkgs.lib.licenses.bsdOriginal ];
1029 1029 };
1030 1030 };
1031 1031 "packaging" = super.buildPythonPackage {
1032 1032 name = "packaging-15.2";
1033 1033 doCheck = false;
1034 1034 src = fetchurl {
1035 1035 url = "https://files.pythonhosted.org/packages/24/c4/185da1304f07047dc9e0c46c31db75c0351bd73458ac3efad7da3dbcfbe1/packaging-15.2.tar.gz";
1036 1036 sha256 = "1zn60w84bxvw6wypffka18ca66pa1k2cfrq3cq8fnsfja5m3k4ng";
1037 1037 };
1038 1038 meta = {
1039 1039 license = [ pkgs.lib.licenses.asl20 ];
1040 1040 };
1041 1041 };
1042 1042 "pandocfilters" = super.buildPythonPackage {
1043 1043 name = "pandocfilters-1.4.2";
1044 1044 doCheck = false;
1045 1045 src = fetchurl {
1046 1046 url = "https://files.pythonhosted.org/packages/4c/ea/236e2584af67bb6df960832731a6e5325fd4441de001767da328c33368ce/pandocfilters-1.4.2.tar.gz";
1047 1047 sha256 = "1a8d9b7s48gmq9zj0pmbyv2sivn5i7m6mybgpkk4jm5vd7hp1pdk";
1048 1048 };
1049 1049 meta = {
1050 1050 license = [ pkgs.lib.licenses.bsdOriginal ];
1051 1051 };
1052 1052 };
1053 1053 "paste" = super.buildPythonPackage {
1054 1054 name = "paste-3.0.8";
1055 1055 doCheck = false;
1056 1056 propagatedBuildInputs = [
1057 1057 self."six"
1058 1058 ];
1059 1059 src = fetchurl {
1060 1060 url = "https://files.pythonhosted.org/packages/66/65/e3acf1663438483c1f6ced0b6c6f3b90da9f0faacb0a6e2aa0f3f9f4b235/Paste-3.0.8.tar.gz";
1061 1061 sha256 = "05w1sh6ky4d7pmdb8nv82n13w22jcn3qsagg5ih3hjmbws9kkwf4";
1062 1062 };
1063 1063 meta = {
1064 1064 license = [ pkgs.lib.licenses.mit ];
1065 1065 };
1066 1066 };
1067 1067 "pastedeploy" = super.buildPythonPackage {
1068 1068 name = "pastedeploy-2.0.1";
1069 1069 doCheck = false;
1070 1070 src = fetchurl {
1071 1071 url = "https://files.pythonhosted.org/packages/19/a0/5623701df7e2478a68a1b685d1a84518024eef994cde7e4da8449a31616f/PasteDeploy-2.0.1.tar.gz";
1072 1072 sha256 = "02imfbbx1mi2h546f3sr37m47dk9qizaqhzzlhx8bkzxa6fzn8yl";
1073 1073 };
1074 1074 meta = {
1075 1075 license = [ pkgs.lib.licenses.mit ];
1076 1076 };
1077 1077 };
1078 1078 "pastescript" = super.buildPythonPackage {
1079 1079 name = "pastescript-3.1.0";
1080 1080 doCheck = false;
1081 1081 propagatedBuildInputs = [
1082 1082 self."paste"
1083 1083 self."pastedeploy"
1084 1084 self."six"
1085 1085 ];
1086 1086 src = fetchurl {
1087 1087 url = "https://files.pythonhosted.org/packages/9e/1d/14db1c283eb21a5d36b6ba1114c13b709629711e64acab653d9994fe346f/PasteScript-3.1.0.tar.gz";
1088 1088 sha256 = "02qcxjjr32ks7a6d4f533wl34ysc7yhwlrfcyqwqbzr52250v4fs";
1089 1089 };
1090 1090 meta = {
1091 1091 license = [ pkgs.lib.licenses.mit ];
1092 1092 };
1093 1093 };
1094 1094 "pathlib2" = super.buildPythonPackage {
1095 name = "pathlib2-2.3.3";
1095 name = "pathlib2-2.3.4";
1096 1096 doCheck = false;
1097 1097 propagatedBuildInputs = [
1098 1098 self."six"
1099 1099 self."scandir"
1100 1100 ];
1101 1101 src = fetchurl {
1102 url = "https://files.pythonhosted.org/packages/bf/d7/a2568f4596b75d2c6e2b4094a7e64f620decc7887f69a1f2811931ea15b9/pathlib2-2.3.3.tar.gz";
1103 sha256 = "0hpp92vqqgcd8h92msm9slv161b1q160igjwnkf2ag6cx0c96695";
1102 url = "https://files.pythonhosted.org/packages/b5/f4/9c7cc726ece2498b6c8b62d3262aa43f59039b953fe23c9964ac5e18d40b/pathlib2-2.3.4.tar.gz";
1103 sha256 = "1y0f9rkm1924zrc5dn4bwxlhgdkbml82lkcc28l5rgmr7d918q24";
1104 1104 };
1105 1105 meta = {
1106 1106 license = [ pkgs.lib.licenses.mit ];
1107 1107 };
1108 1108 };
1109 1109 "peppercorn" = super.buildPythonPackage {
1110 1110 name = "peppercorn-0.6";
1111 1111 doCheck = false;
1112 1112 src = fetchurl {
1113 1113 url = "https://files.pythonhosted.org/packages/e4/77/93085de7108cdf1a0b092ff443872a8f9442c736d7ddebdf2f27627935f4/peppercorn-0.6.tar.gz";
1114 1114 sha256 = "1ip4bfwcpwkq9hz2dai14k2cyabvwrnvcvrcmzxmqm04g8fnimwn";
1115 1115 };
1116 1116 meta = {
1117 1117 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1118 1118 };
1119 1119 };
1120 1120 "pexpect" = super.buildPythonPackage {
1121 1121 name = "pexpect-4.7.0";
1122 1122 doCheck = false;
1123 1123 propagatedBuildInputs = [
1124 1124 self."ptyprocess"
1125 1125 ];
1126 1126 src = fetchurl {
1127 1127 url = "https://files.pythonhosted.org/packages/1c/b1/362a0d4235496cb42c33d1d8732b5e2c607b0129ad5fdd76f5a583b9fcb3/pexpect-4.7.0.tar.gz";
1128 1128 sha256 = "1sv2rri15zwhds85a4kamwh9pj49qcxv7m4miyr4jfpfwv81yb4y";
1129 1129 };
1130 1130 meta = {
1131 1131 license = [ pkgs.lib.licenses.isc { fullName = "ISC License (ISCL)"; } ];
1132 1132 };
1133 1133 };
1134 1134 "pickleshare" = super.buildPythonPackage {
1135 1135 name = "pickleshare-0.7.5";
1136 1136 doCheck = false;
1137 1137 propagatedBuildInputs = [
1138 1138 self."pathlib2"
1139 1139 ];
1140 1140 src = fetchurl {
1141 1141 url = "https://files.pythonhosted.org/packages/d8/b6/df3c1c9b616e9c0edbc4fbab6ddd09df9535849c64ba51fcb6531c32d4d8/pickleshare-0.7.5.tar.gz";
1142 1142 sha256 = "1jmghg3c53yp1i8cm6pcrm280ayi8621rwyav9fac7awjr3kss47";
1143 1143 };
1144 1144 meta = {
1145 1145 license = [ pkgs.lib.licenses.mit ];
1146 1146 };
1147 1147 };
1148 1148 "plaster" = super.buildPythonPackage {
1149 1149 name = "plaster-1.0";
1150 1150 doCheck = false;
1151 1151 propagatedBuildInputs = [
1152 1152 self."setuptools"
1153 1153 ];
1154 1154 src = fetchurl {
1155 1155 url = "https://files.pythonhosted.org/packages/37/e1/56d04382d718d32751017d32f351214384e529b794084eee20bb52405563/plaster-1.0.tar.gz";
1156 1156 sha256 = "1hy8k0nv2mxq94y5aysk6hjk9ryb4bsd13g83m60hcyzxz3wflc3";
1157 1157 };
1158 1158 meta = {
1159 1159 license = [ pkgs.lib.licenses.mit ];
1160 1160 };
1161 1161 };
1162 1162 "plaster-pastedeploy" = super.buildPythonPackage {
1163 1163 name = "plaster-pastedeploy-0.7";
1164 1164 doCheck = false;
1165 1165 propagatedBuildInputs = [
1166 1166 self."pastedeploy"
1167 1167 self."plaster"
1168 1168 ];
1169 1169 src = fetchurl {
1170 1170 url = "https://files.pythonhosted.org/packages/99/69/2d3bc33091249266a1bd3cf24499e40ab31d54dffb4a7d76fe647950b98c/plaster_pastedeploy-0.7.tar.gz";
1171 1171 sha256 = "1zg7gcsvc1kzay1ry5p699rg2qavfsxqwl17mqxzr0gzw6j9679r";
1172 1172 };
1173 1173 meta = {
1174 1174 license = [ pkgs.lib.licenses.mit ];
1175 1175 };
1176 1176 };
1177 1177 "pluggy" = super.buildPythonPackage {
1178 1178 name = "pluggy-0.11.0";
1179 1179 doCheck = false;
1180 1180 src = fetchurl {
1181 1181 url = "https://files.pythonhosted.org/packages/0d/a1/862ab336e8128fde20981d2c1aa8506693412daf5083b1911d539412676b/pluggy-0.11.0.tar.gz";
1182 1182 sha256 = "10511a54dvafw1jrk75mrhml53c7b7w4yaw7241696lc2hfvr895";
1183 1183 };
1184 1184 meta = {
1185 1185 license = [ pkgs.lib.licenses.mit ];
1186 1186 };
1187 1187 };
1188 1188 "prompt-toolkit" = super.buildPythonPackage {
1189 1189 name = "prompt-toolkit-1.0.16";
1190 1190 doCheck = false;
1191 1191 propagatedBuildInputs = [
1192 1192 self."six"
1193 1193 self."wcwidth"
1194 1194 ];
1195 1195 src = fetchurl {
1196 1196 url = "https://files.pythonhosted.org/packages/f1/03/bb36771dc9fa7553ac4bdc639a9ecdf6fda0ff4176faf940d97e3c16e41d/prompt_toolkit-1.0.16.tar.gz";
1197 1197 sha256 = "1d65hm6nf0cbq0q0121m60zzy4s1fpg9fn761s1yxf08dridvkn1";
1198 1198 };
1199 1199 meta = {
1200 1200 license = [ pkgs.lib.licenses.bsdOriginal ];
1201 1201 };
1202 1202 };
1203 1203 "psutil" = super.buildPythonPackage {
1204 1204 name = "psutil-5.5.1";
1205 1205 doCheck = false;
1206 1206 src = fetchurl {
1207 1207 url = "https://files.pythonhosted.org/packages/c7/01/7c30b247cdc5ba29623faa5c8cf1f1bbf7e041783c340414b0ed7e067c64/psutil-5.5.1.tar.gz";
1208 1208 sha256 = "045qaqvn6k90bj5bcy259yrwcd2afgznaav3sfhphy9b8ambzkkj";
1209 1209 };
1210 1210 meta = {
1211 1211 license = [ pkgs.lib.licenses.bsdOriginal ];
1212 1212 };
1213 1213 };
1214 1214 "psycopg2" = super.buildPythonPackage {
1215 name = "psycopg2-2.8.2";
1215 name = "psycopg2-2.8.3";
1216 1216 doCheck = false;
1217 1217 src = fetchurl {
1218 url = "https://files.pythonhosted.org/packages/23/7e/93c325482c328619870b6cd09370f6dbe1148283daca65115cd63642e60f/psycopg2-2.8.2.tar.gz";
1219 sha256 = "122mn2z3r0zgs8jyq682jjjr6vq5690qmxqf22gj6g41dwdz5b2w";
1218 url = "https://files.pythonhosted.org/packages/5c/1c/6997288da181277a0c29bc39a5f9143ff20b8c99f2a7d059cfb55163e165/psycopg2-2.8.3.tar.gz";
1219 sha256 = "0ms4kx0p5n281l89awccix4d05ybmdngnjjpi9jbzd0rhf1nwyl9";
1220 1220 };
1221 1221 meta = {
1222 1222 license = [ pkgs.lib.licenses.zpl21 { fullName = "GNU Library or Lesser General Public License (LGPL)"; } { fullName = "LGPL with exceptions or ZPL"; } ];
1223 1223 };
1224 1224 };
1225 1225 "ptyprocess" = super.buildPythonPackage {
1226 1226 name = "ptyprocess-0.6.0";
1227 1227 doCheck = false;
1228 1228 src = fetchurl {
1229 1229 url = "https://files.pythonhosted.org/packages/7d/2d/e4b8733cf79b7309d84c9081a4ab558c89d8c89da5961bf4ddb050ca1ce0/ptyprocess-0.6.0.tar.gz";
1230 1230 sha256 = "1h4lcd3w5nrxnsk436ar7fwkiy5rfn5wj2xwy9l0r4mdqnf2jgwj";
1231 1231 };
1232 1232 meta = {
1233 1233 license = [ ];
1234 1234 };
1235 1235 };
1236 1236 "py" = super.buildPythonPackage {
1237 1237 name = "py-1.6.0";
1238 1238 doCheck = false;
1239 1239 src = fetchurl {
1240 1240 url = "https://files.pythonhosted.org/packages/4f/38/5f427d1eedae73063ce4da680d2bae72014995f9fdeaa57809df61c968cd/py-1.6.0.tar.gz";
1241 1241 sha256 = "1wcs3zv9wl5m5x7p16avqj2gsrviyb23yvc3pr330isqs0sh98q6";
1242 1242 };
1243 1243 meta = {
1244 1244 license = [ pkgs.lib.licenses.mit ];
1245 1245 };
1246 1246 };
1247 1247 "py-bcrypt" = super.buildPythonPackage {
1248 1248 name = "py-bcrypt-0.4";
1249 1249 doCheck = false;
1250 1250 src = fetchurl {
1251 1251 url = "https://files.pythonhosted.org/packages/68/b1/1c3068c5c4d2e35c48b38dcc865301ebfdf45f54507086ac65ced1fd3b3d/py-bcrypt-0.4.tar.gz";
1252 1252 sha256 = "0y6smdggwi5s72v6p1nn53dg6w05hna3d264cq6kas0lap73p8az";
1253 1253 };
1254 1254 meta = {
1255 1255 license = [ pkgs.lib.licenses.bsdOriginal ];
1256 1256 };
1257 1257 };
1258 1258 "py-gfm" = super.buildPythonPackage {
1259 1259 name = "py-gfm-0.1.4";
1260 1260 doCheck = false;
1261 1261 propagatedBuildInputs = [
1262 1262 self."setuptools"
1263 1263 self."markdown"
1264 1264 ];
1265 1265 src = fetchurl {
1266 1266 url = "https://files.pythonhosted.org/packages/06/ee/004a03a1d92bb386dae44f6dd087db541bc5093374f1637d4d4ae5596cc2/py-gfm-0.1.4.tar.gz";
1267 1267 sha256 = "0zip06g2isivx8fzgqd4n9qzsa22c25jas1rsb7m2rnjg72m0rzg";
1268 1268 };
1269 1269 meta = {
1270 1270 license = [ pkgs.lib.licenses.bsdOriginal ];
1271 1271 };
1272 1272 };
1273 1273 "pyasn1" = super.buildPythonPackage {
1274 1274 name = "pyasn1-0.4.5";
1275 1275 doCheck = false;
1276 1276 src = fetchurl {
1277 1277 url = "https://files.pythonhosted.org/packages/46/60/b7e32f6ff481b8a1f6c8f02b0fd9b693d1c92ddd2efb038ec050d99a7245/pyasn1-0.4.5.tar.gz";
1278 1278 sha256 = "1xqh3jh2nfi2bflk5a0vn59y3pp1vn54f3ksx652sid92gz2096s";
1279 1279 };
1280 1280 meta = {
1281 1281 license = [ pkgs.lib.licenses.bsdOriginal ];
1282 1282 };
1283 1283 };
1284 1284 "pyasn1-modules" = super.buildPythonPackage {
1285 1285 name = "pyasn1-modules-0.2.5";
1286 1286 doCheck = false;
1287 1287 propagatedBuildInputs = [
1288 1288 self."pyasn1"
1289 1289 ];
1290 1290 src = fetchurl {
1291 1291 url = "https://files.pythonhosted.org/packages/ec/0b/69620cb04a016e4a1e8e352e8a42717862129b574b3479adb2358a1f12f7/pyasn1-modules-0.2.5.tar.gz";
1292 1292 sha256 = "15nvfx0vnl8akdlv3k6s0n80vqvryj82bm040jdsn7wmyxl1ywpg";
1293 1293 };
1294 1294 meta = {
1295 1295 license = [ pkgs.lib.licenses.bsdOriginal ];
1296 1296 };
1297 1297 };
1298 1298 "pycparser" = super.buildPythonPackage {
1299 1299 name = "pycparser-2.19";
1300 1300 doCheck = false;
1301 1301 src = fetchurl {
1302 1302 url = "https://files.pythonhosted.org/packages/68/9e/49196946aee219aead1290e00d1e7fdeab8567783e83e1b9ab5585e6206a/pycparser-2.19.tar.gz";
1303 1303 sha256 = "1cr5dcj9628lkz1qlwq3fv97c25363qppkmcayqvd05dpy573259";
1304 1304 };
1305 1305 meta = {
1306 1306 license = [ pkgs.lib.licenses.bsdOriginal ];
1307 1307 };
1308 1308 };
1309 1309 "pycrypto" = super.buildPythonPackage {
1310 1310 name = "pycrypto-2.6.1";
1311 1311 doCheck = false;
1312 1312 src = fetchurl {
1313 1313 url = "https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz";
1314 1314 sha256 = "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj";
1315 1315 };
1316 1316 meta = {
1317 1317 license = [ pkgs.lib.licenses.publicDomain ];
1318 1318 };
1319 1319 };
1320 1320 "pycurl" = super.buildPythonPackage {
1321 1321 name = "pycurl-7.43.0.2";
1322 1322 doCheck = false;
1323 1323 src = fetchurl {
1324 1324 url = "https://files.pythonhosted.org/packages/e8/e4/0dbb8735407189f00b33d84122b9be52c790c7c3b25286826f4e1bdb7bde/pycurl-7.43.0.2.tar.gz";
1325 1325 sha256 = "1915kb04k1j4y6k1dx1sgnbddxrl9r1n4q928if2lkrdm73xy30g";
1326 1326 };
1327 1327 meta = {
1328 1328 license = [ pkgs.lib.licenses.mit { fullName = "LGPL/MIT"; } { fullName = "GNU Library or Lesser General Public License (LGPL)"; } ];
1329 1329 };
1330 1330 };
1331 1331 "pygments" = super.buildPythonPackage {
1332 name = "pygments-2.3.1";
1332 name = "pygments-2.4.2";
1333 1333 doCheck = false;
1334 1334 src = fetchurl {
1335 url = "https://files.pythonhosted.org/packages/64/69/413708eaf3a64a6abb8972644e0f20891a55e621c6759e2c3f3891e05d63/Pygments-2.3.1.tar.gz";
1336 sha256 = "0ji87g09jph8jqcvclgb02qvxasdnr9pzvk90rl66d90yqcxmyjz";
1335 url = "https://files.pythonhosted.org/packages/7e/ae/26808275fc76bf2832deb10d3a3ed3107bc4de01b85dcccbe525f2cd6d1e/Pygments-2.4.2.tar.gz";
1336 sha256 = "15v2sqm5g12bqa0c7wikfh9ck2nl97ayizy1hpqhmws5gqalq748";
1337 1337 };
1338 1338 meta = {
1339 1339 license = [ pkgs.lib.licenses.bsdOriginal ];
1340 1340 };
1341 1341 };
1342 1342 "pymysql" = super.buildPythonPackage {
1343 1343 name = "pymysql-0.8.1";
1344 1344 doCheck = false;
1345 1345 src = fetchurl {
1346 1346 url = "https://files.pythonhosted.org/packages/44/39/6bcb83cae0095a31b6be4511707fdf2009d3e29903a55a0494d3a9a2fac0/PyMySQL-0.8.1.tar.gz";
1347 1347 sha256 = "0a96crz55bw4h6myh833skrli7b0ck89m3x673y2z2ryy7zrpq9l";
1348 1348 };
1349 1349 meta = {
1350 1350 license = [ pkgs.lib.licenses.mit ];
1351 1351 };
1352 1352 };
1353 1353 "pyotp" = super.buildPythonPackage {
1354 1354 name = "pyotp-2.2.7";
1355 1355 doCheck = false;
1356 1356 src = fetchurl {
1357 1357 url = "https://files.pythonhosted.org/packages/b1/ab/477cda97b6ca7baced5106471cb1ac1fe698d1b035983b9f8ee3422989eb/pyotp-2.2.7.tar.gz";
1358 1358 sha256 = "00p69nw431f0s2ilg0hnd77p1l22m06p9rq4f8zfapmavnmzw3xy";
1359 1359 };
1360 1360 meta = {
1361 1361 license = [ pkgs.lib.licenses.mit ];
1362 1362 };
1363 1363 };
1364 1364 "pyparsing" = super.buildPythonPackage {
1365 1365 name = "pyparsing-2.3.0";
1366 1366 doCheck = false;
1367 1367 src = fetchurl {
1368 1368 url = "https://files.pythonhosted.org/packages/d0/09/3e6a5eeb6e04467b737d55f8bba15247ac0876f98fae659e58cd744430c6/pyparsing-2.3.0.tar.gz";
1369 1369 sha256 = "14k5v7n3xqw8kzf42x06bzp184spnlkya2dpjyflax6l3yrallzk";
1370 1370 };
1371 1371 meta = {
1372 1372 license = [ pkgs.lib.licenses.mit ];
1373 1373 };
1374 1374 };
1375 1375 "pyramid" = super.buildPythonPackage {
1376 1376 name = "pyramid-1.10.4";
1377 1377 doCheck = false;
1378 1378 propagatedBuildInputs = [
1379 1379 self."hupper"
1380 1380 self."plaster"
1381 1381 self."plaster-pastedeploy"
1382 1382 self."setuptools"
1383 1383 self."translationstring"
1384 1384 self."venusian"
1385 1385 self."webob"
1386 1386 self."zope.deprecation"
1387 1387 self."zope.interface"
1388 1388 self."repoze.lru"
1389 1389 ];
1390 1390 src = fetchurl {
1391 1391 url = "https://files.pythonhosted.org/packages/c2/43/1ae701c9c6bb3a434358e678a5e72c96e8aa55cf4cb1d2fa2041b5dd38b7/pyramid-1.10.4.tar.gz";
1392 1392 sha256 = "0rkxs1ajycg2zh1c94xlmls56mx5m161sn8112skj0amza6cn36q";
1393 1393 };
1394 1394 meta = {
1395 1395 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1396 1396 };
1397 1397 };
1398 "pyramid-beaker" = super.buildPythonPackage {
1399 name = "pyramid-beaker-0.8";
1400 doCheck = false;
1401 propagatedBuildInputs = [
1402 self."pyramid"
1403 self."beaker"
1404 ];
1405 src = fetchurl {
1406 url = "https://files.pythonhosted.org/packages/d9/6e/b85426e00fd3d57f4545f74e1c3828552d8700f13ededeef9233f7bca8be/pyramid_beaker-0.8.tar.gz";
1407 sha256 = "0hflx3qkcdml1mwpq53sz46s7jickpfn0zy0ns2c7j445j66bp3p";
1408 };
1409 meta = {
1410 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1411 };
1412 };
1413 1398 "pyramid-debugtoolbar" = super.buildPythonPackage {
1414 1399 name = "pyramid-debugtoolbar-4.5";
1415 1400 doCheck = false;
1416 1401 propagatedBuildInputs = [
1417 1402 self."pyramid"
1418 1403 self."pyramid-mako"
1419 1404 self."repoze.lru"
1420 1405 self."pygments"
1421 1406 self."ipaddress"
1422 1407 ];
1423 1408 src = fetchurl {
1424 1409 url = "https://files.pythonhosted.org/packages/14/28/1f240239af340d19ee271ac62958158c79edb01a44ad8c9885508dd003d2/pyramid_debugtoolbar-4.5.tar.gz";
1425 1410 sha256 = "0x2p3409pnx66n6dx5vc0mk2r1cp1ydr8mp120w44r9pwcngbibl";
1426 1411 };
1427 1412 meta = {
1428 1413 license = [ { fullName = "Repoze Public License"; } pkgs.lib.licenses.bsdOriginal ];
1429 1414 };
1430 1415 };
1431 1416 "pyramid-jinja2" = super.buildPythonPackage {
1432 1417 name = "pyramid-jinja2-2.7";
1433 1418 doCheck = false;
1434 1419 propagatedBuildInputs = [
1435 1420 self."pyramid"
1436 1421 self."zope.deprecation"
1437 1422 self."jinja2"
1438 1423 self."markupsafe"
1439 1424 ];
1440 1425 src = fetchurl {
1441 1426 url = "https://files.pythonhosted.org/packages/d8/80/d60a7233823de22ce77bd864a8a83736a1fe8b49884b08303a2e68b2c853/pyramid_jinja2-2.7.tar.gz";
1442 1427 sha256 = "1sz5s0pp5jqhf4w22w9527yz8hgdi4mhr6apd6vw1gm5clghh8aw";
1443 1428 };
1444 1429 meta = {
1445 1430 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1446 1431 };
1447 1432 };
1448 1433 "pyramid-mailer" = super.buildPythonPackage {
1449 1434 name = "pyramid-mailer-0.15.1";
1450 1435 doCheck = false;
1451 1436 propagatedBuildInputs = [
1452 1437 self."pyramid"
1453 1438 self."repoze.sendmail"
1454 1439 self."transaction"
1455 1440 ];
1456 1441 src = fetchurl {
1457 1442 url = "https://files.pythonhosted.org/packages/a0/f2/6febf5459dff4d7e653314d575469ad2e11b9d2af2c3606360e1c67202f2/pyramid_mailer-0.15.1.tar.gz";
1458 1443 sha256 = "16vg8jb203jgb7b0hd6wllfqvp542qh2ry1gjai2m6qpv5agy2pc";
1459 1444 };
1460 1445 meta = {
1461 1446 license = [ pkgs.lib.licenses.bsdOriginal ];
1462 1447 };
1463 1448 };
1464 1449 "pyramid-mako" = super.buildPythonPackage {
1465 1450 name = "pyramid-mako-1.0.2";
1466 1451 doCheck = false;
1467 1452 propagatedBuildInputs = [
1468 1453 self."pyramid"
1469 1454 self."mako"
1470 1455 ];
1471 1456 src = fetchurl {
1472 1457 url = "https://files.pythonhosted.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
1473 1458 sha256 = "18gk2vliq8z4acblsl6yzgbvnr9rlxjlcqir47km7kvlk1xri83d";
1474 1459 };
1475 1460 meta = {
1476 1461 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1477 1462 };
1478 1463 };
1479 1464 "pysqlite" = super.buildPythonPackage {
1480 1465 name = "pysqlite-2.8.3";
1481 1466 doCheck = false;
1482 1467 src = fetchurl {
1483 1468 url = "https://files.pythonhosted.org/packages/42/02/981b6703e3c83c5b25a829c6e77aad059f9481b0bbacb47e6e8ca12bd731/pysqlite-2.8.3.tar.gz";
1484 1469 sha256 = "1424gwq9sil2ffmnizk60q36vydkv8rxs6m7xs987kz8cdc37lqp";
1485 1470 };
1486 1471 meta = {
1487 1472 license = [ { fullName = "zlib/libpng License"; } { fullName = "zlib/libpng license"; } ];
1488 1473 };
1489 1474 };
1490 1475 "pytest" = super.buildPythonPackage {
1491 1476 name = "pytest-3.8.2";
1492 1477 doCheck = false;
1493 1478 propagatedBuildInputs = [
1494 1479 self."py"
1495 1480 self."six"
1496 1481 self."setuptools"
1497 1482 self."attrs"
1498 1483 self."more-itertools"
1499 1484 self."atomicwrites"
1500 1485 self."pluggy"
1501 1486 self."funcsigs"
1502 1487 self."pathlib2"
1503 1488 ];
1504 1489 src = fetchurl {
1505 1490 url = "https://files.pythonhosted.org/packages/5f/d2/7f77f406ac505abda02ab4afb50d06ebf304f6ea42fca34f8f37529106b2/pytest-3.8.2.tar.gz";
1506 1491 sha256 = "18nrwzn61kph2y6gxwfz9ms68rfvr9d4vcffsxng9p7jk9z18clk";
1507 1492 };
1508 1493 meta = {
1509 1494 license = [ pkgs.lib.licenses.mit ];
1510 1495 };
1511 1496 };
1512 1497 "pytest-cov" = super.buildPythonPackage {
1513 1498 name = "pytest-cov-2.6.0";
1514 1499 doCheck = false;
1515 1500 propagatedBuildInputs = [
1516 1501 self."pytest"
1517 1502 self."coverage"
1518 1503 ];
1519 1504 src = fetchurl {
1520 1505 url = "https://files.pythonhosted.org/packages/d9/e2/58f90a316fbd94dd50bf5c826a23f3f5d079fb3cc448c1e9f0e3c33a3d2a/pytest-cov-2.6.0.tar.gz";
1521 1506 sha256 = "0qnpp9y3ygx4jk4pf5ad71fh2skbvnr6gl54m7rg5qysnx4g0q73";
1522 1507 };
1523 1508 meta = {
1524 1509 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.mit ];
1525 1510 };
1526 1511 };
1527 1512 "pytest-profiling" = super.buildPythonPackage {
1528 1513 name = "pytest-profiling-1.3.0";
1529 1514 doCheck = false;
1530 1515 propagatedBuildInputs = [
1531 1516 self."six"
1532 1517 self."pytest"
1533 1518 self."gprof2dot"
1534 1519 ];
1535 1520 src = fetchurl {
1536 1521 url = "https://files.pythonhosted.org/packages/f5/34/4626126e041a51ef50a80d0619519b18d20aef249aac25b0d0fdd47e57ee/pytest-profiling-1.3.0.tar.gz";
1537 1522 sha256 = "08r5afx5z22yvpmsnl91l4amsy1yxn8qsmm61mhp06mz8zjs51kb";
1538 1523 };
1539 1524 meta = {
1540 1525 license = [ pkgs.lib.licenses.mit ];
1541 1526 };
1542 1527 };
1543 1528 "pytest-runner" = super.buildPythonPackage {
1544 1529 name = "pytest-runner-4.2";
1545 1530 doCheck = false;
1546 1531 src = fetchurl {
1547 1532 url = "https://files.pythonhosted.org/packages/9e/b7/fe6e8f87f9a756fd06722216f1b6698ccba4d269eac6329d9f0c441d0f93/pytest-runner-4.2.tar.gz";
1548 1533 sha256 = "1gkpyphawxz38ni1gdq1fmwyqcg02m7ypzqvv46z06crwdxi2gyj";
1549 1534 };
1550 1535 meta = {
1551 1536 license = [ pkgs.lib.licenses.mit ];
1552 1537 };
1553 1538 };
1554 1539 "pytest-sugar" = super.buildPythonPackage {
1555 1540 name = "pytest-sugar-0.9.1";
1556 1541 doCheck = false;
1557 1542 propagatedBuildInputs = [
1558 1543 self."pytest"
1559 1544 self."termcolor"
1560 1545 ];
1561 1546 src = fetchurl {
1562 1547 url = "https://files.pythonhosted.org/packages/3e/6a/a3f909083079d03bde11d06ab23088886bbe25f2c97fbe4bb865e2bf05bc/pytest-sugar-0.9.1.tar.gz";
1563 1548 sha256 = "0b4av40dv30727m54v211r0nzwjp2ajkjgxix6j484qjmwpw935b";
1564 1549 };
1565 1550 meta = {
1566 1551 license = [ pkgs.lib.licenses.bsdOriginal ];
1567 1552 };
1568 1553 };
1569 1554 "pytest-timeout" = super.buildPythonPackage {
1570 1555 name = "pytest-timeout-1.3.2";
1571 1556 doCheck = false;
1572 1557 propagatedBuildInputs = [
1573 1558 self."pytest"
1574 1559 ];
1575 1560 src = fetchurl {
1576 1561 url = "https://files.pythonhosted.org/packages/8c/3e/1b6a319d12ae7baa3acb7c18ff2c8630a09471a0319d43535c683b4d03eb/pytest-timeout-1.3.2.tar.gz";
1577 1562 sha256 = "09wnmzvnls2mnsdz7x3c3sk2zdp6jl4dryvyj5i8hqz16q2zq5qi";
1578 1563 };
1579 1564 meta = {
1580 1565 license = [ pkgs.lib.licenses.mit { fullName = "DFSG approved"; } ];
1581 1566 };
1582 1567 };
1583 1568 "python-dateutil" = super.buildPythonPackage {
1584 1569 name = "python-dateutil-2.8.0";
1585 1570 doCheck = false;
1586 1571 propagatedBuildInputs = [
1587 1572 self."six"
1588 1573 ];
1589 1574 src = fetchurl {
1590 1575 url = "https://files.pythonhosted.org/packages/ad/99/5b2e99737edeb28c71bcbec5b5dda19d0d9ef3ca3e92e3e925e7c0bb364c/python-dateutil-2.8.0.tar.gz";
1591 1576 sha256 = "17nsfhy4xdz1khrfxa61vd7pmvd5z0wa3zb6v4gb4kfnykv0b668";
1592 1577 };
1593 1578 meta = {
1594 1579 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.asl20 { fullName = "Dual License"; } ];
1595 1580 };
1596 1581 };
1597 1582 "python-editor" = super.buildPythonPackage {
1598 1583 name = "python-editor-1.0.4";
1599 1584 doCheck = false;
1600 1585 src = fetchurl {
1601 1586 url = "https://files.pythonhosted.org/packages/0a/85/78f4a216d28343a67b7397c99825cff336330893f00601443f7c7b2f2234/python-editor-1.0.4.tar.gz";
1602 1587 sha256 = "0yrjh8w72ivqxi4i7xsg5b1vz15x8fg51xra7c3bgfyxqnyadzai";
1603 1588 };
1604 1589 meta = {
1605 1590 license = [ pkgs.lib.licenses.asl20 { fullName = "Apache"; } ];
1606 1591 };
1607 1592 };
1608 1593 "python-ldap" = super.buildPythonPackage {
1609 1594 name = "python-ldap-3.1.0";
1610 1595 doCheck = false;
1611 1596 propagatedBuildInputs = [
1612 1597 self."pyasn1"
1613 1598 self."pyasn1-modules"
1614 1599 ];
1615 1600 src = fetchurl {
1616 1601 url = "https://files.pythonhosted.org/packages/7f/1c/28d721dff2fcd2fef9d55b40df63a00be26ec8a11e8c6fc612ae642f9cfd/python-ldap-3.1.0.tar.gz";
1617 1602 sha256 = "1i97nwfnraylyn0myxlf3vciicrf5h6fymrcff9c00k581wmx5s1";
1618 1603 };
1619 1604 meta = {
1620 1605 license = [ pkgs.lib.licenses.psfl ];
1621 1606 };
1622 1607 };
1623 1608 "python-memcached" = super.buildPythonPackage {
1624 1609 name = "python-memcached-1.59";
1625 1610 doCheck = false;
1626 1611 propagatedBuildInputs = [
1627 1612 self."six"
1628 1613 ];
1629 1614 src = fetchurl {
1630 1615 url = "https://files.pythonhosted.org/packages/90/59/5faf6e3cd8a568dd4f737ddae4f2e54204fd8c51f90bf8df99aca6c22318/python-memcached-1.59.tar.gz";
1631 1616 sha256 = "0kvyapavbirk2x3n1jx4yb9nyigrj1s3x15nm3qhpvhkpqvqdqm2";
1632 1617 };
1633 1618 meta = {
1634 1619 license = [ pkgs.lib.licenses.psfl ];
1635 1620 };
1636 1621 };
1637 1622 "python-pam" = super.buildPythonPackage {
1638 1623 name = "python-pam-1.8.4";
1639 1624 doCheck = false;
1640 1625 src = fetchurl {
1641 1626 url = "https://files.pythonhosted.org/packages/01/16/544d01cae9f28e0292dbd092b6b8b0bf222b528f362ee768a5bed2140111/python-pam-1.8.4.tar.gz";
1642 1627 sha256 = "16whhc0vr7gxsbzvsnq65nq8fs3wwmx755cavm8kkczdkz4djmn8";
1643 1628 };
1644 1629 meta = {
1645 1630 license = [ { fullName = "License :: OSI Approved :: MIT License"; } pkgs.lib.licenses.mit ];
1646 1631 };
1647 1632 };
1648 1633 "python-saml" = super.buildPythonPackage {
1649 1634 name = "python-saml-2.4.2";
1650 1635 doCheck = false;
1651 1636 propagatedBuildInputs = [
1652 1637 self."dm.xmlsec.binding"
1653 1638 self."isodate"
1654 1639 self."defusedxml"
1655 1640 ];
1656 1641 src = fetchurl {
1657 1642 url = "https://files.pythonhosted.org/packages/79/a8/a6611017e0883102fd5e2b73c9d90691b8134e38247c04ee1531d3dc647c/python-saml-2.4.2.tar.gz";
1658 1643 sha256 = "0dls4hwvf13yg7x5yfjrghbywg8g38vn5vr0rsf70hli3ydbfm43";
1659 1644 };
1660 1645 meta = {
1661 1646 license = [ pkgs.lib.licenses.mit ];
1662 1647 };
1663 1648 };
1664 1649 "pytz" = super.buildPythonPackage {
1665 1650 name = "pytz-2018.4";
1666 1651 doCheck = false;
1667 1652 src = fetchurl {
1668 1653 url = "https://files.pythonhosted.org/packages/10/76/52efda4ef98e7544321fd8d5d512e11739c1df18b0649551aeccfb1c8376/pytz-2018.4.tar.gz";
1669 1654 sha256 = "0jgpqx3kk2rhv81j1izjxvmx8d0x7hzs1857pgqnixic5wq2ar60";
1670 1655 };
1671 1656 meta = {
1672 1657 license = [ pkgs.lib.licenses.mit ];
1673 1658 };
1674 1659 };
1675 1660 "pyzmq" = super.buildPythonPackage {
1676 1661 name = "pyzmq-14.6.0";
1677 1662 doCheck = false;
1678 1663 src = fetchurl {
1679 1664 url = "https://files.pythonhosted.org/packages/8a/3b/5463d5a9d712cd8bbdac335daece0d69f6a6792da4e3dd89956c0db4e4e6/pyzmq-14.6.0.tar.gz";
1680 1665 sha256 = "1frmbjykvhmdg64g7sn20c9fpamrsfxwci1nhhg8q7jgz5pq0ikp";
1681 1666 };
1682 1667 meta = {
1683 1668 license = [ pkgs.lib.licenses.bsdOriginal { fullName = "LGPL+BSD"; } { fullName = "GNU Library or Lesser General Public License (LGPL)"; } ];
1684 1669 };
1685 1670 };
1686 1671 "redis" = super.buildPythonPackage {
1687 1672 name = "redis-2.10.6";
1688 1673 doCheck = false;
1689 1674 src = fetchurl {
1690 1675 url = "https://files.pythonhosted.org/packages/09/8d/6d34b75326bf96d4139a2ddd8e74b80840f800a0a79f9294399e212cb9a7/redis-2.10.6.tar.gz";
1691 1676 sha256 = "03vcgklykny0g0wpvqmy8p6azi2s078317wgb2xjv5m2rs9sjb52";
1692 1677 };
1693 1678 meta = {
1694 1679 license = [ pkgs.lib.licenses.mit ];
1695 1680 };
1696 1681 };
1697 1682 "repoze.lru" = super.buildPythonPackage {
1698 1683 name = "repoze.lru-0.7";
1699 1684 doCheck = false;
1700 1685 src = fetchurl {
1701 1686 url = "https://files.pythonhosted.org/packages/12/bc/595a77c4b5e204847fdf19268314ef59c85193a9dc9f83630fc459c0fee5/repoze.lru-0.7.tar.gz";
1702 1687 sha256 = "0xzz1aw2smy8hdszrq8yhnklx6w1r1mf55061kalw3iq35gafa84";
1703 1688 };
1704 1689 meta = {
1705 1690 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
1706 1691 };
1707 1692 };
1708 1693 "repoze.sendmail" = super.buildPythonPackage {
1709 1694 name = "repoze.sendmail-4.4.1";
1710 1695 doCheck = false;
1711 1696 propagatedBuildInputs = [
1712 1697 self."setuptools"
1713 1698 self."zope.interface"
1714 1699 self."transaction"
1715 1700 ];
1716 1701 src = fetchurl {
1717 1702 url = "https://files.pythonhosted.org/packages/12/4e/8ef1fd5c42765d712427b9c391419a77bd48877886d2cbc5e9f23c8cad9b/repoze.sendmail-4.4.1.tar.gz";
1718 1703 sha256 = "096ln02jr2afk7ab9j2czxqv2ryqq7m86ah572nqplx52iws73ks";
1719 1704 };
1720 1705 meta = {
1721 1706 license = [ pkgs.lib.licenses.zpl21 ];
1722 1707 };
1723 1708 };
1724 1709 "requests" = super.buildPythonPackage {
1725 1710 name = "requests-2.9.1";
1726 1711 doCheck = false;
1727 1712 src = fetchurl {
1728 1713 url = "https://files.pythonhosted.org/packages/f9/6d/07c44fb1ebe04d069459a189e7dab9e4abfe9432adcd4477367c25332748/requests-2.9.1.tar.gz";
1729 1714 sha256 = "0zsqrzlybf25xscgi7ja4s48y2abf9wvjkn47wh984qgs1fq2xy5";
1730 1715 };
1731 1716 meta = {
1732 1717 license = [ pkgs.lib.licenses.asl20 ];
1733 1718 };
1734 1719 };
1735 1720 "rhodecode-enterprise-ce" = super.buildPythonPackage {
1736 1721 name = "rhodecode-enterprise-ce-4.17.0";
1737 1722 buildInputs = [
1738 1723 self."pytest"
1739 1724 self."py"
1740 1725 self."pytest-cov"
1741 1726 self."pytest-sugar"
1742 1727 self."pytest-runner"
1743 1728 self."pytest-profiling"
1744 1729 self."pytest-timeout"
1745 1730 self."gprof2dot"
1746 1731 self."mock"
1747 1732 self."cov-core"
1748 1733 self."coverage"
1749 1734 self."webtest"
1750 1735 self."beautifulsoup4"
1751 1736 self."configobj"
1752 1737 ];
1753 1738 doCheck = true;
1754 1739 propagatedBuildInputs = [
1755 1740 self."amqp"
1756 1741 self."authomatic"
1757 1742 self."babel"
1758 1743 self."beaker"
1759 1744 self."bleach"
1760 1745 self."celery"
1761 1746 self."channelstream"
1762 1747 self."click"
1763 1748 self."colander"
1764 1749 self."configobj"
1765 1750 self."cssselect"
1766 1751 self."cryptography"
1767 1752 self."decorator"
1768 1753 self."deform"
1769 1754 self."docutils"
1770 1755 self."dogpile.cache"
1771 1756 self."dogpile.core"
1772 1757 self."formencode"
1773 1758 self."future"
1774 1759 self."futures"
1775 1760 self."infrae.cache"
1776 1761 self."iso8601"
1777 1762 self."itsdangerous"
1778 1763 self."kombu"
1779 1764 self."lxml"
1780 1765 self."mako"
1781 1766 self."markdown"
1782 1767 self."markupsafe"
1783 1768 self."msgpack-python"
1784 1769 self."pyotp"
1785 1770 self."packaging"
1771 self."pathlib2"
1786 1772 self."paste"
1787 1773 self."pastedeploy"
1788 1774 self."pastescript"
1789 1775 self."peppercorn"
1790 1776 self."psutil"
1791 1777 self."py-bcrypt"
1792 1778 self."pycurl"
1793 1779 self."pycrypto"
1794 1780 self."pygments"
1795 1781 self."pyparsing"
1796 self."pyramid-beaker"
1797 1782 self."pyramid-debugtoolbar"
1798 1783 self."pyramid-mako"
1799 1784 self."pyramid"
1800 1785 self."pyramid-mailer"
1801 1786 self."python-dateutil"
1802 1787 self."python-ldap"
1803 1788 self."python-memcached"
1804 1789 self."python-pam"
1805 1790 self."python-saml"
1806 1791 self."pytz"
1807 1792 self."tzlocal"
1808 1793 self."pyzmq"
1809 1794 self."py-gfm"
1810 1795 self."redis"
1811 1796 self."repoze.lru"
1812 1797 self."requests"
1813 1798 self."routes"
1814 1799 self."simplejson"
1815 1800 self."six"
1816 1801 self."sqlalchemy"
1817 1802 self."sshpubkeys"
1818 1803 self."subprocess32"
1819 1804 self."supervisor"
1820 1805 self."translationstring"
1821 1806 self."urllib3"
1822 1807 self."urlobject"
1823 1808 self."venusian"
1824 1809 self."weberror"
1825 1810 self."webhelpers2"
1826 1811 self."webhelpers"
1827 1812 self."webob"
1828 1813 self."whoosh"
1829 1814 self."wsgiref"
1830 1815 self."zope.cachedescriptors"
1831 1816 self."zope.deprecation"
1832 1817 self."zope.event"
1833 1818 self."zope.interface"
1834 1819 self."mysql-python"
1835 1820 self."pymysql"
1836 1821 self."pysqlite"
1837 1822 self."psycopg2"
1838 1823 self."nbconvert"
1839 1824 self."nbformat"
1840 1825 self."jupyter-client"
1841 1826 self."alembic"
1842 1827 self."invoke"
1843 1828 self."bumpversion"
1844 1829 self."gevent"
1845 1830 self."greenlet"
1846 1831 self."gunicorn"
1847 1832 self."waitress"
1848 1833 self."ipdb"
1849 1834 self."ipython"
1850 1835 self."rhodecode-tools"
1851 1836 self."appenlight-client"
1852 1837 self."pytest"
1853 1838 self."py"
1854 1839 self."pytest-cov"
1855 1840 self."pytest-sugar"
1856 1841 self."pytest-runner"
1857 1842 self."pytest-profiling"
1858 1843 self."pytest-timeout"
1859 1844 self."gprof2dot"
1860 1845 self."mock"
1861 1846 self."cov-core"
1862 1847 self."coverage"
1863 1848 self."webtest"
1864 1849 self."beautifulsoup4"
1865 1850 ];
1866 1851 src = ./.;
1867 1852 meta = {
1868 1853 license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ];
1869 1854 };
1870 1855 };
1871 1856 "rhodecode-tools" = super.buildPythonPackage {
1872 1857 name = "rhodecode-tools-1.2.1";
1873 1858 doCheck = false;
1874 1859 propagatedBuildInputs = [
1875 1860 self."click"
1876 1861 self."future"
1877 1862 self."six"
1878 1863 self."mako"
1879 1864 self."markupsafe"
1880 1865 self."requests"
1881 1866 self."urllib3"
1882 1867 self."whoosh"
1883 1868 self."elasticsearch"
1884 1869 self."elasticsearch-dsl"
1885 1870 self."elasticsearch2"
1886 1871 self."elasticsearch1-dsl"
1887 1872 ];
1888 1873 src = fetchurl {
1889 url = "https://code.rhodecode.com/rhodecode-tools-ce/archive/v1.2.1.tar.gz?md5=25bc2f7de1da318e547236d3fb463d28";
1890 sha256 = "1k8l3s4mvshza1zay6dfxprq54fyb5dc85dqdva9wa3f466y0adk";
1874 url = "https://code.rhodecode.com/rhodecode-tools-ce/artifacts/download/0-10ac93f4-bb7d-4b97-baea-68110743dd5a.tar.gz?md5=962dc77c06aceee62282b98d33149661";
1875 sha256 = "1vfhgf46inbx7jvlfx4fdzh3vz7lh37r291gzb5hx447pfm3qllg";
1891 1876 };
1892 1877 meta = {
1893 1878 license = [ { fullName = "Apache 2.0 and Proprietary"; } ];
1894 1879 };
1895 1880 };
1896 1881 "routes" = super.buildPythonPackage {
1897 1882 name = "routes-2.4.1";
1898 1883 doCheck = false;
1899 1884 propagatedBuildInputs = [
1900 1885 self."six"
1901 1886 self."repoze.lru"
1902 1887 ];
1903 1888 src = fetchurl {
1904 1889 url = "https://files.pythonhosted.org/packages/33/38/ea827837e68d9c7dde4cff7ec122a93c319f0effc08ce92a17095576603f/Routes-2.4.1.tar.gz";
1905 1890 sha256 = "1zamff3m0kc4vyfniyhxpkkcqv1rrgnmh37ykxv34nna1ws47vi6";
1906 1891 };
1907 1892 meta = {
1908 1893 license = [ pkgs.lib.licenses.mit ];
1909 1894 };
1910 1895 };
1911 1896 "scandir" = super.buildPythonPackage {
1912 1897 name = "scandir-1.10.0";
1913 1898 doCheck = false;
1914 1899 src = fetchurl {
1915 1900 url = "https://files.pythonhosted.org/packages/df/f5/9c052db7bd54d0cbf1bc0bb6554362bba1012d03e5888950a4f5c5dadc4e/scandir-1.10.0.tar.gz";
1916 1901 sha256 = "1bkqwmf056pkchf05ywbnf659wqlp6lljcdb0y88wr9f0vv32ijd";
1917 1902 };
1918 1903 meta = {
1919 1904 license = [ pkgs.lib.licenses.bsdOriginal { fullName = "New BSD License"; } ];
1920 1905 };
1921 1906 };
1922 1907 "setproctitle" = super.buildPythonPackage {
1923 1908 name = "setproctitle-1.1.10";
1924 1909 doCheck = false;
1925 1910 src = fetchurl {
1926 1911 url = "https://files.pythonhosted.org/packages/5a/0d/dc0d2234aacba6cf1a729964383e3452c52096dc695581248b548786f2b3/setproctitle-1.1.10.tar.gz";
1927 1912 sha256 = "163kplw9dcrw0lffq1bvli5yws3rngpnvrxrzdw89pbphjjvg0v2";
1928 1913 };
1929 1914 meta = {
1930 1915 license = [ pkgs.lib.licenses.bsdOriginal ];
1931 1916 };
1932 1917 };
1933 1918 "setuptools" = super.buildPythonPackage {
1934 1919 name = "setuptools-41.0.1";
1935 1920 doCheck = false;
1936 1921 src = fetchurl {
1937 1922 url = "https://files.pythonhosted.org/packages/1d/64/a18a487b4391a05b9c7f938b94a16d80305bf0369c6b0b9509e86165e1d3/setuptools-41.0.1.zip";
1938 1923 sha256 = "04sns22y2hhsrwfy1mha2lgslvpjsjsz8xws7h2rh5a7ylkd28m2";
1939 1924 };
1940 1925 meta = {
1941 1926 license = [ pkgs.lib.licenses.mit ];
1942 1927 };
1943 1928 };
1944 1929 "simplegeneric" = super.buildPythonPackage {
1945 1930 name = "simplegeneric-0.8.1";
1946 1931 doCheck = false;
1947 1932 src = fetchurl {
1948 1933 url = "https://files.pythonhosted.org/packages/3d/57/4d9c9e3ae9a255cd4e1106bb57e24056d3d0709fc01b2e3e345898e49d5b/simplegeneric-0.8.1.zip";
1949 1934 sha256 = "0wwi1c6md4vkbcsfsf8dklf3vr4mcdj4mpxkanwgb6jb1432x5yw";
1950 1935 };
1951 1936 meta = {
1952 1937 license = [ pkgs.lib.licenses.zpl21 ];
1953 1938 };
1954 1939 };
1955 1940 "simplejson" = super.buildPythonPackage {
1956 1941 name = "simplejson-3.16.0";
1957 1942 doCheck = false;
1958 1943 src = fetchurl {
1959 1944 url = "https://files.pythonhosted.org/packages/e3/24/c35fb1c1c315fc0fffe61ea00d3f88e85469004713dab488dee4f35b0aff/simplejson-3.16.0.tar.gz";
1960 1945 sha256 = "19cws1syk8jzq2pw43878dv6fjkb0ifvjpx0i9aajix6kc9jkwxi";
1961 1946 };
1962 1947 meta = {
1963 1948 license = [ { fullName = "Academic Free License (AFL)"; } pkgs.lib.licenses.mit ];
1964 1949 };
1965 1950 };
1966 1951 "six" = super.buildPythonPackage {
1967 1952 name = "six-1.11.0";
1968 1953 doCheck = false;
1969 1954 src = fetchurl {
1970 1955 url = "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz";
1971 1956 sha256 = "1scqzwc51c875z23phj48gircqjgnn3af8zy2izjwmnlxrxsgs3h";
1972 1957 };
1973 1958 meta = {
1974 1959 license = [ pkgs.lib.licenses.mit ];
1975 1960 };
1976 1961 };
1977 1962 "sqlalchemy" = super.buildPythonPackage {
1978 1963 name = "sqlalchemy-1.1.18";
1979 1964 doCheck = false;
1980 1965 src = fetchurl {
1981 1966 url = "https://files.pythonhosted.org/packages/cc/4d/96d93ff77cd67aca7618e402191eee3490d8f5f245d6ab7622d35fe504f4/SQLAlchemy-1.1.18.tar.gz";
1982 1967 sha256 = "1ab4ysip6irajfbxl9wy27kv76miaz8h6759hfx92499z4dcf3lb";
1983 1968 };
1984 1969 meta = {
1985 1970 license = [ pkgs.lib.licenses.mit ];
1986 1971 };
1987 1972 };
1988 1973 "sshpubkeys" = super.buildPythonPackage {
1989 1974 name = "sshpubkeys-3.1.0";
1990 1975 doCheck = false;
1991 1976 propagatedBuildInputs = [
1992 1977 self."cryptography"
1993 1978 self."ecdsa"
1994 1979 ];
1995 1980 src = fetchurl {
1996 1981 url = "https://files.pythonhosted.org/packages/00/23/f7508a12007c96861c3da811992f14283d79c819d71a217b3e12d5196649/sshpubkeys-3.1.0.tar.gz";
1997 1982 sha256 = "105g2li04nm1hb15a2y6hm9m9k7fbrkd5l3gy12w3kgcmsf3k25k";
1998 1983 };
1999 1984 meta = {
2000 1985 license = [ pkgs.lib.licenses.bsdOriginal ];
2001 1986 };
2002 1987 };
2003 1988 "subprocess32" = super.buildPythonPackage {
2004 name = "subprocess32-3.5.3";
1989 name = "subprocess32-3.5.4";
2005 1990 doCheck = false;
2006 1991 src = fetchurl {
2007 url = "https://files.pythonhosted.org/packages/be/2b/beeba583e9877e64db10b52a96915afc0feabf7144dcbf2a0d0ea68bf73d/subprocess32-3.5.3.tar.gz";
2008 sha256 = "1hr5fan8i719hmlmz73hf8rhq74014w07d8ryg7krvvf6692kj3b";
1992 url = "https://files.pythonhosted.org/packages/32/c8/564be4d12629b912ea431f1a50eb8b3b9d00f1a0b1ceff17f266be190007/subprocess32-3.5.4.tar.gz";
1993 sha256 = "17f7mvwx2271s1wrl0qac3wjqqnrqag866zs3qc8v5wp0k43fagb";
2009 1994 };
2010 1995 meta = {
2011 1996 license = [ pkgs.lib.licenses.psfl ];
2012 1997 };
2013 1998 };
2014 1999 "supervisor" = super.buildPythonPackage {
2015 name = "supervisor-4.0.2";
2000 name = "supervisor-4.0.3";
2016 2001 doCheck = false;
2017 2002 propagatedBuildInputs = [
2018 2003 self."meld3"
2019 2004 ];
2020 2005 src = fetchurl {
2021 url = "https://files.pythonhosted.org/packages/cb/02/95953c98a770803e42009f18c2eb361bc035ab6fb3cbb442ffcc94387eac/supervisor-4.0.2.tar.gz";
2022 sha256 = "0xg5c41wd51wnf2ihc47gwkwjf29zq2q44lcwx8di2gvliyla12n";
2006 url = "https://files.pythonhosted.org/packages/97/48/f38bf70bd9282d1a18d591616557cc1a77a1c627d57dff66ead65c891dc8/supervisor-4.0.3.tar.gz";
2007 sha256 = "17hla7mx6w5m5jzkkjxgqa8wpswqmfhbhf49f692hw78fg0ans7p";
2023 2008 };
2024 2009 meta = {
2025 2010 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
2026 2011 };
2027 2012 };
2028 2013 "tempita" = super.buildPythonPackage {
2029 2014 name = "tempita-0.5.2";
2030 2015 doCheck = false;
2031 2016 src = fetchurl {
2032 2017 url = "https://files.pythonhosted.org/packages/56/c8/8ed6eee83dbddf7b0fc64dd5d4454bc05e6ccaafff47991f73f2894d9ff4/Tempita-0.5.2.tar.gz";
2033 2018 sha256 = "177wwq45slfyajd8csy477bmdmzipyw0dm7i85k3akb7m85wzkna";
2034 2019 };
2035 2020 meta = {
2036 2021 license = [ pkgs.lib.licenses.mit ];
2037 2022 };
2038 2023 };
2039 2024 "termcolor" = super.buildPythonPackage {
2040 2025 name = "termcolor-1.1.0";
2041 2026 doCheck = false;
2042 2027 src = fetchurl {
2043 2028 url = "https://files.pythonhosted.org/packages/8a/48/a76be51647d0eb9f10e2a4511bf3ffb8cc1e6b14e9e4fab46173aa79f981/termcolor-1.1.0.tar.gz";
2044 2029 sha256 = "0fv1vq14rpqwgazxg4981904lfyp84mnammw7y046491cv76jv8x";
2045 2030 };
2046 2031 meta = {
2047 2032 license = [ pkgs.lib.licenses.mit ];
2048 2033 };
2049 2034 };
2050 2035 "testpath" = super.buildPythonPackage {
2051 2036 name = "testpath-0.4.2";
2052 2037 doCheck = false;
2053 2038 src = fetchurl {
2054 2039 url = "https://files.pythonhosted.org/packages/06/30/9a7e917066d851d8b4117e85794b5f14516419ea714a8a2681ec6aa8a981/testpath-0.4.2.tar.gz";
2055 2040 sha256 = "1y40hywscnnyb734pnzm55nd8r8kp1072bjxbil83gcd53cv755n";
2056 2041 };
2057 2042 meta = {
2058 2043 license = [ ];
2059 2044 };
2060 2045 };
2061 2046 "traitlets" = super.buildPythonPackage {
2062 2047 name = "traitlets-4.3.2";
2063 2048 doCheck = false;
2064 2049 propagatedBuildInputs = [
2065 2050 self."ipython-genutils"
2066 2051 self."six"
2067 2052 self."decorator"
2068 2053 self."enum34"
2069 2054 ];
2070 2055 src = fetchurl {
2071 2056 url = "https://files.pythonhosted.org/packages/a5/98/7f5ef2fe9e9e071813aaf9cb91d1a732e0a68b6c44a32b38cb8e14c3f069/traitlets-4.3.2.tar.gz";
2072 2057 sha256 = "0dbq7sx26xqz5ixs711k5nc88p8a0nqyz6162pwks5dpcz9d4jww";
2073 2058 };
2074 2059 meta = {
2075 2060 license = [ pkgs.lib.licenses.bsdOriginal ];
2076 2061 };
2077 2062 };
2078 2063 "transaction" = super.buildPythonPackage {
2079 2064 name = "transaction-2.4.0";
2080 2065 doCheck = false;
2081 2066 propagatedBuildInputs = [
2082 2067 self."zope.interface"
2083 2068 ];
2084 2069 src = fetchurl {
2085 2070 url = "https://files.pythonhosted.org/packages/9d/7d/0e8af0d059e052b9dcf2bb5a08aad20ae3e238746bdd3f8701a60969b363/transaction-2.4.0.tar.gz";
2086 2071 sha256 = "17wz1y524ca07vr03yddy8dv0gbscs06dbdywmllxv5rc725jq3j";
2087 2072 };
2088 2073 meta = {
2089 2074 license = [ pkgs.lib.licenses.zpl21 ];
2090 2075 };
2091 2076 };
2092 2077 "translationstring" = super.buildPythonPackage {
2093 2078 name = "translationstring-1.3";
2094 2079 doCheck = false;
2095 2080 src = fetchurl {
2096 2081 url = "https://files.pythonhosted.org/packages/5e/eb/bee578cc150b44c653b63f5ebe258b5d0d812ddac12497e5f80fcad5d0b4/translationstring-1.3.tar.gz";
2097 2082 sha256 = "0bdpcnd9pv0131dl08h4zbcwmgc45lyvq3pa224xwan5b3x4rr2f";
2098 2083 };
2099 2084 meta = {
2100 2085 license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ];
2101 2086 };
2102 2087 };
2103 2088 "tzlocal" = super.buildPythonPackage {
2104 2089 name = "tzlocal-1.5.1";
2105 2090 doCheck = false;
2106 2091 propagatedBuildInputs = [
2107 2092 self."pytz"
2108 2093 ];
2109 2094 src = fetchurl {
2110 2095 url = "https://files.pythonhosted.org/packages/cb/89/e3687d3ed99bc882793f82634e9824e62499fdfdc4b1ae39e211c5b05017/tzlocal-1.5.1.tar.gz";
2111 2096 sha256 = "0kiciwiqx0bv0fbc913idxibc4ygg4cb7f8rcpd9ij2shi4bigjf";
2112 2097 };
2113 2098 meta = {
2114 2099 license = [ pkgs.lib.licenses.mit ];
2115 2100 };
2116 2101 };
2117 2102 "urllib3" = super.buildPythonPackage {
2118 2103 name = "urllib3-1.24.1";
2119 2104 doCheck = false;
2120 2105 src = fetchurl {
2121 2106 url = "https://files.pythonhosted.org/packages/b1/53/37d82ab391393565f2f831b8eedbffd57db5a718216f82f1a8b4d381a1c1/urllib3-1.24.1.tar.gz";
2122 2107 sha256 = "08lwd9f3hqznyf32vnzwvp87pchx062nkbgyrf67rwlkgj0jk5fy";
2123 2108 };
2124 2109 meta = {
2125 2110 license = [ pkgs.lib.licenses.mit ];
2126 2111 };
2127 2112 };
2128 2113 "urlobject" = super.buildPythonPackage {
2129 2114 name = "urlobject-2.4.3";
2130 2115 doCheck = false;
2131 2116 src = fetchurl {
2132 2117 url = "https://files.pythonhosted.org/packages/e2/b8/1d0a916f4b34c4618846e6da0e4eeaa8fcb4a2f39e006434fe38acb74b34/URLObject-2.4.3.tar.gz";
2133 2118 sha256 = "1ahc8ficzfvr2avln71immfh4ls0zyv6cdaa5xmkdj5rd87f5cj7";
2134 2119 };
2135 2120 meta = {
2136 2121 license = [ pkgs.lib.licenses.publicDomain ];
2137 2122 };
2138 2123 };
2139 2124 "venusian" = super.buildPythonPackage {
2140 2125 name = "venusian-1.2.0";
2141 2126 doCheck = false;
2142 2127 src = fetchurl {
2143 2128 url = "https://files.pythonhosted.org/packages/7e/6f/40a9d43ac77cb51cb62be5b5662d170f43f8037bdc4eab56336c4ca92bb7/venusian-1.2.0.tar.gz";
2144 2129 sha256 = "0ghyx66g8ikx9nx1mnwqvdcqm11i1vlq0hnvwl50s48bp22q5v34";
2145 2130 };
2146 2131 meta = {
2147 2132 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
2148 2133 };
2149 2134 };
2150 2135 "vine" = super.buildPythonPackage {
2151 2136 name = "vine-1.3.0";
2152 2137 doCheck = false;
2153 2138 src = fetchurl {
2154 2139 url = "https://files.pythonhosted.org/packages/1c/e1/79fb8046e607dd6c2ad05c9b8ebac9d0bd31d086a08f02699e96fc5b3046/vine-1.3.0.tar.gz";
2155 2140 sha256 = "11ydsbhl1vabndc2r979dv61s6j2b0giq6dgvryifvq1m7bycghk";
2156 2141 };
2157 2142 meta = {
2158 2143 license = [ pkgs.lib.licenses.bsdOriginal ];
2159 2144 };
2160 2145 };
2161 2146 "waitress" = super.buildPythonPackage {
2162 name = "waitress-1.1.0";
2147 name = "waitress-1.3.0";
2163 2148 doCheck = false;
2164 2149 src = fetchurl {
2165 url = "https://files.pythonhosted.org/packages/3c/68/1c10dd5c556872ceebe88483b0436140048d39de83a84a06a8baa8136f4f/waitress-1.1.0.tar.gz";
2166 sha256 = "1a85gyji0kajc3p0s1pwwfm06w4wfxjkvvl4rnrz3h164kbd6g6k";
2150 url = "https://files.pythonhosted.org/packages/43/50/9890471320d5ad22761ae46661cf745f487b1c8c4ec49352b99e1078b970/waitress-1.3.0.tar.gz";
2151 sha256 = "09j5dzbbcxib7vdskhx39s1qsydlr4n2p2png71d7mjnr9pnwajf";
2167 2152 };
2168 2153 meta = {
2169 2154 license = [ pkgs.lib.licenses.zpl21 ];
2170 2155 };
2171 2156 };
2172 2157 "wcwidth" = super.buildPythonPackage {
2173 2158 name = "wcwidth-0.1.7";
2174 2159 doCheck = false;
2175 2160 src = fetchurl {
2176 2161 url = "https://files.pythonhosted.org/packages/55/11/e4a2bb08bb450fdbd42cc709dd40de4ed2c472cf0ccb9e64af22279c5495/wcwidth-0.1.7.tar.gz";
2177 2162 sha256 = "0pn6dflzm609m4r3i8ik5ni9ijjbb5fa3vg1n7hn6vkd49r77wrx";
2178 2163 };
2179 2164 meta = {
2180 2165 license = [ pkgs.lib.licenses.mit ];
2181 2166 };
2182 2167 };
2183 2168 "webencodings" = super.buildPythonPackage {
2184 2169 name = "webencodings-0.5.1";
2185 2170 doCheck = false;
2186 2171 src = fetchurl {
2187 2172 url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz";
2188 2173 sha256 = "08qrgrc4hrximb2gqnl69g01s93rhf2842jfxdjljc1dbwj1qsmk";
2189 2174 };
2190 2175 meta = {
2191 2176 license = [ pkgs.lib.licenses.bsdOriginal ];
2192 2177 };
2193 2178 };
2194 2179 "weberror" = super.buildPythonPackage {
2195 2180 name = "weberror-0.10.3";
2196 2181 doCheck = false;
2197 2182 propagatedBuildInputs = [
2198 2183 self."webob"
2199 2184 self."tempita"
2200 2185 self."pygments"
2201 2186 self."paste"
2202 2187 ];
2203 2188 src = fetchurl {
2204 2189 url = "https://files.pythonhosted.org/packages/35/76/e7e5c2ce7e9c7f31b54c1ff295a495886d1279a002557d74dd8957346a79/WebError-0.10.3.tar.gz";
2205 2190 sha256 = "0frg4kvycqpj5bi8asfqfs6bxsr2cvjvb6b56c4d1ai1z57kbjx6";
2206 2191 };
2207 2192 meta = {
2208 2193 license = [ pkgs.lib.licenses.mit ];
2209 2194 };
2210 2195 };
2211 2196 "webhelpers" = super.buildPythonPackage {
2212 2197 name = "webhelpers-1.3";
2213 2198 doCheck = false;
2214 2199 propagatedBuildInputs = [
2215 2200 self."markupsafe"
2216 2201 ];
2217 2202 src = fetchurl {
2218 2203 url = "https://files.pythonhosted.org/packages/ee/68/4d07672821d514184357f1552f2dad923324f597e722de3b016ca4f7844f/WebHelpers-1.3.tar.gz";
2219 2204 sha256 = "10x5i82qdkrvyw18gsybwggfhfpl869siaab89vnndi9x62g51pa";
2220 2205 };
2221 2206 meta = {
2222 2207 license = [ pkgs.lib.licenses.bsdOriginal ];
2223 2208 };
2224 2209 };
2225 2210 "webhelpers2" = super.buildPythonPackage {
2226 2211 name = "webhelpers2-2.0";
2227 2212 doCheck = false;
2228 2213 propagatedBuildInputs = [
2229 2214 self."markupsafe"
2230 2215 self."six"
2231 2216 ];
2232 2217 src = fetchurl {
2233 2218 url = "https://files.pythonhosted.org/packages/ff/30/56342c6ea522439e3662427c8d7b5e5b390dff4ff2dc92d8afcb8ab68b75/WebHelpers2-2.0.tar.gz";
2234 2219 sha256 = "0aphva1qmxh83n01p53f5fd43m4srzbnfbz5ajvbx9aj2aipwmcs";
2235 2220 };
2236 2221 meta = {
2237 2222 license = [ pkgs.lib.licenses.mit ];
2238 2223 };
2239 2224 };
2240 2225 "webob" = super.buildPythonPackage {
2241 2226 name = "webob-1.8.5";
2242 2227 doCheck = false;
2243 2228 src = fetchurl {
2244 2229 url = "https://files.pythonhosted.org/packages/9d/1a/0c89c070ee2829c934cb6c7082287c822e28236a4fcf90063e6be7c35532/WebOb-1.8.5.tar.gz";
2245 2230 sha256 = "11khpzaxc88q31v25ic330gsf56fwmbdc9b30br8mvp0fmwspah5";
2246 2231 };
2247 2232 meta = {
2248 2233 license = [ pkgs.lib.licenses.mit ];
2249 2234 };
2250 2235 };
2251 2236 "webtest" = super.buildPythonPackage {
2252 2237 name = "webtest-2.0.33";
2253 2238 doCheck = false;
2254 2239 propagatedBuildInputs = [
2255 2240 self."six"
2256 2241 self."webob"
2257 2242 self."waitress"
2258 2243 self."beautifulsoup4"
2259 2244 ];
2260 2245 src = fetchurl {
2261 2246 url = "https://files.pythonhosted.org/packages/a8/b0/ffc9413b637dbe26e291429bb0f6ed731e518d0cd03da28524a8fe2e8a8f/WebTest-2.0.33.tar.gz";
2262 2247 sha256 = "1l3z0cwqslsf4rcrhi2gr8kdfh74wn2dw76376i4g9i38gz8wd21";
2263 2248 };
2264 2249 meta = {
2265 2250 license = [ pkgs.lib.licenses.mit ];
2266 2251 };
2267 2252 };
2268 2253 "whoosh" = super.buildPythonPackage {
2269 2254 name = "whoosh-2.7.4";
2270 2255 doCheck = false;
2271 2256 src = fetchurl {
2272 2257 url = "https://files.pythonhosted.org/packages/25/2b/6beed2107b148edc1321da0d489afc4617b9ed317ef7b72d4993cad9b684/Whoosh-2.7.4.tar.gz";
2273 2258 sha256 = "10qsqdjpbc85fykc1vgcs8xwbgn4l2l52c8d83xf1q59pwyn79bw";
2274 2259 };
2275 2260 meta = {
2276 2261 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.bsd2 ];
2277 2262 };
2278 2263 };
2279 2264 "ws4py" = super.buildPythonPackage {
2280 2265 name = "ws4py-0.5.1";
2281 2266 doCheck = false;
2282 2267 src = fetchurl {
2283 2268 url = "https://files.pythonhosted.org/packages/53/20/4019a739b2eefe9282d3822ef6a225250af964b117356971bd55e274193c/ws4py-0.5.1.tar.gz";
2284 2269 sha256 = "10slbbf2jm4hpr92jx7kh7mhf48sjl01v2w4d8z3f1p0ybbp7l19";
2285 2270 };
2286 2271 meta = {
2287 2272 license = [ pkgs.lib.licenses.bsdOriginal ];
2288 2273 };
2289 2274 };
2290 2275 "wsgiref" = super.buildPythonPackage {
2291 2276 name = "wsgiref-0.1.2";
2292 2277 doCheck = false;
2293 2278 src = fetchurl {
2294 2279 url = "https://files.pythonhosted.org/packages/41/9e/309259ce8dff8c596e8c26df86dbc4e848b9249fd36797fd60be456f03fc/wsgiref-0.1.2.zip";
2295 2280 sha256 = "0y8fyjmpq7vwwm4x732w97qbkw78rjwal5409k04cw4m03411rn7";
2296 2281 };
2297 2282 meta = {
2298 2283 license = [ { fullName = "PSF or ZPL"; } ];
2299 2284 };
2300 2285 };
2301 2286 "zope.cachedescriptors" = super.buildPythonPackage {
2302 2287 name = "zope.cachedescriptors-4.3.1";
2303 2288 doCheck = false;
2304 2289 propagatedBuildInputs = [
2305 2290 self."setuptools"
2306 2291 ];
2307 2292 src = fetchurl {
2308 2293 url = "https://files.pythonhosted.org/packages/2f/89/ebe1890cc6d3291ebc935558fa764d5fffe571018dbbee200e9db78762cb/zope.cachedescriptors-4.3.1.tar.gz";
2309 2294 sha256 = "0jhr3m5p74c6r7k8iv0005b8bfsialih9d7zl5vx38rf5xq1lk8z";
2310 2295 };
2311 2296 meta = {
2312 2297 license = [ pkgs.lib.licenses.zpl21 ];
2313 2298 };
2314 2299 };
2315 2300 "zope.deprecation" = super.buildPythonPackage {
2316 2301 name = "zope.deprecation-4.4.0";
2317 2302 doCheck = false;
2318 2303 propagatedBuildInputs = [
2319 2304 self."setuptools"
2320 2305 ];
2321 2306 src = fetchurl {
2322 2307 url = "https://files.pythonhosted.org/packages/34/da/46e92d32d545dd067b9436279d84c339e8b16de2ca393d7b892bc1e1e9fd/zope.deprecation-4.4.0.tar.gz";
2323 2308 sha256 = "1pz2cv7gv9y1r3m0bdv7ks1alagmrn5msm5spwdzkb2by0w36i8d";
2324 2309 };
2325 2310 meta = {
2326 2311 license = [ pkgs.lib.licenses.zpl21 ];
2327 2312 };
2328 2313 };
2329 2314 "zope.event" = super.buildPythonPackage {
2330 2315 name = "zope.event-4.4";
2331 2316 doCheck = false;
2332 2317 propagatedBuildInputs = [
2333 2318 self."setuptools"
2334 2319 ];
2335 2320 src = fetchurl {
2336 2321 url = "https://files.pythonhosted.org/packages/4c/b2/51c0369adcf5be2334280eed230192ab3b03f81f8efda9ddea6f65cc7b32/zope.event-4.4.tar.gz";
2337 2322 sha256 = "1ksbc726av9xacml6jhcfyn828hlhb9xlddpx6fcvnlvmpmpvhk9";
2338 2323 };
2339 2324 meta = {
2340 2325 license = [ pkgs.lib.licenses.zpl21 ];
2341 2326 };
2342 2327 };
2343 2328 "zope.interface" = super.buildPythonPackage {
2344 2329 name = "zope.interface-4.6.0";
2345 2330 doCheck = false;
2346 2331 propagatedBuildInputs = [
2347 2332 self."setuptools"
2348 2333 ];
2349 2334 src = fetchurl {
2350 2335 url = "https://files.pythonhosted.org/packages/4e/d0/c9d16bd5b38de44a20c6dc5d5ed80a49626fafcb3db9f9efdc2a19026db6/zope.interface-4.6.0.tar.gz";
2351 2336 sha256 = "1rgh2x3rcl9r0v0499kf78xy86rnmanajf4ywmqb943wpk50sg8v";
2352 2337 };
2353 2338 meta = {
2354 2339 license = [ pkgs.lib.licenses.zpl21 ];
2355 2340 };
2356 2341 };
2357 2342
2358 2343 ### Test requirements
2359 2344
2360 2345
2361 2346 }
@@ -1,124 +1,124 b''
1 1 ## dependencies
2 2
3 3 amqp==2.3.1
4 4 # not released authomatic that has updated some oauth providers
5 https://code.rhodecode.com/upstream/authomatic/archive/90a9ce60cc405ae8a2bf5c3713acd5d78579a04e.tar.gz?md5=3c68720a1322b25254009518d1ff6801#egg=authomatic==0.1.0.post1
5 https://code.rhodecode.com/upstream/authomatic/artifacts/download/0-4fe9c041-a567-4f84-be4c-7efa2a606d3c.tar.gz?md5=f6bdc3c769688212db68233e8d2b0383#egg=authomatic==0.1.0.post1
6 6
7 7 babel==1.3
8 8 beaker==1.9.1
9 9 bleach==3.1.0
10 10 celery==4.1.1
11 11 channelstream==0.5.2
12 12 click==7.0
13 13 colander==1.7.0
14 14 # our custom configobj
15 https://code.rhodecode.com/upstream/configobj/archive/a11ff0a0bd4fbda9e3a91267e720f88329efb4a6.tar.gz?md5=9916c524ea11a6c418217af6b28d4b3c#egg=configobj==5.0.6
15 https://code.rhodecode.com/upstream/configobj/artifacts/download/0-012de99a-b1e1-4f64-a5c0-07a98a41b324.tar.gz?md5=6a513f51fe04b2c18cf84c1395a7c626#egg=configobj==5.0.6
16 16 cssselect==1.0.3
17 17 cryptography==2.6.1
18 18 decorator==4.1.2
19 19 deform==2.0.7
20 20 docutils==0.14.0
21 21 dogpile.cache==0.7.1
22 22 dogpile.core==0.4.1
23 23 formencode==1.2.4
24 24 future==0.14.3
25 25 futures==3.0.2
26 26 infrae.cache==1.0.1
27 27 iso8601==0.1.12
28 28 itsdangerous==0.24
29 29 kombu==4.2.1
30 30 lxml==4.2.5
31 31 mako==1.0.7
32 32 markdown==2.6.11
33 33 markupsafe==1.1.0
34 34 msgpack-python==0.5.6
35 35 pyotp==2.2.7
36 36 packaging==15.2
37 pathlib2==2.3.4
37 38 paste==3.0.8
38 39 pastedeploy==2.0.1
39 40 pastescript==3.1.0
40 41 peppercorn==0.6
41 42 psutil==5.5.1
42 43 py-bcrypt==0.4
43 44 pycurl==7.43.0.2
44 45 pycrypto==2.6.1
45 pygments==2.3.1
46 pygments==2.4.2
46 47 pyparsing==2.3.0
47 pyramid-beaker==0.8
48 48 pyramid-debugtoolbar==4.5.0
49 49 pyramid-mako==1.0.2
50 50 pyramid==1.10.4
51 51 pyramid_mailer==0.15.1
52 52 python-dateutil
53 53 python-ldap==3.1.0
54 54 python-memcached==1.59
55 55 python-pam==1.8.4
56 56 python-saml==2.4.2
57 57 pytz==2018.4
58 58 tzlocal==1.5.1
59 59 pyzmq==14.6.0
60 60 py-gfm==0.1.4
61 61 redis==2.10.6
62 62 repoze.lru==0.7
63 63 requests==2.9.1
64 64 routes==2.4.1
65 65 simplejson==3.16.0
66 66 six==1.11.0
67 67 sqlalchemy==1.1.18
68 68 sshpubkeys==3.1.0
69 subprocess32==3.5.3
70 supervisor==4.0.2
69 subprocess32==3.5.4
70 supervisor==4.0.3
71 71 translationstring==1.3
72 72 urllib3==1.24.1
73 73 urlobject==2.4.3
74 74 venusian==1.2.0
75 75 weberror==0.10.3
76 76 webhelpers2==2.0
77 77 webhelpers==1.3
78 78 webob==1.8.5
79 79 whoosh==2.7.4
80 80 wsgiref==0.1.2
81 81 zope.cachedescriptors==4.3.1
82 82 zope.deprecation==4.4.0
83 83 zope.event==4.4.0
84 84 zope.interface==4.6.0
85 85
86 86 # DB drivers
87 87 mysql-python==1.2.5
88 88 pymysql==0.8.1
89 89 pysqlite==2.8.3
90 psycopg2==2.8.2
90 psycopg2==2.8.3
91 91
92 92 # IPYTHON RENDERING
93 93 # entrypoints backport, pypi version doesn't support egg installs
94 https://code.rhodecode.com/upstream/entrypoints/archive/96e6d645684e1af3d7df5b5272f3fe85a546b233.tar.gz?md5=7db37771aea9ac9fefe093e5d6987313#egg=entrypoints==0.2.2.rhodecode-upstream1
94 https://code.rhodecode.com/upstream/entrypoints/artifacts/download/0-8e9ee9e4-c4db-409c-b07e-81568fd1832d.tar.gz?md5=3a027b8ff1d257b91fe257de6c43357d#egg=entrypoints==0.2.2.rhodecode-upstream1
95 95 nbconvert==5.3.1
96 96 nbformat==4.4.0
97 97 jupyter_client==5.0.0
98 98
99 99 ## cli tools
100 100 alembic==1.0.10
101 101 invoke==0.13.0
102 102 bumpversion==0.5.3
103 103
104 104 ## http servers
105 105 gevent==1.4.0
106 106 greenlet==0.4.15
107 107 gunicorn==19.9.0
108 waitress==1.1.0
108 waitress==1.3.0
109 109
110 110 ## debug
111 111 ipdb==0.12.0
112 112 ipython==5.1.0
113 113
114 114 ## rhodecode-tools, special case
115 https://code.rhodecode.com/rhodecode-tools-ce/archive/v1.2.1.tar.gz?md5=25bc2f7de1da318e547236d3fb463d28#egg=rhodecode-tools==1.2.1
115 https://code.rhodecode.com/rhodecode-tools-ce/artifacts/download/0-10ac93f4-bb7d-4b97-baea-68110743dd5a.tar.gz?md5=962dc77c06aceee62282b98d33149661#egg=rhodecode-tools==1.2.1
116 116
117 117 ## appenlight
118 118 appenlight-client==0.6.26
119 119
120 120 ## test related requirements
121 121 -r requirements_test.txt
122 122
123 123 ## uncomment to add the debug libraries
124 124 #-r requirements_debug.txt
@@ -1,19 +1,19 b''
1 1 # contains not directly required libraries we want to pin the version.
2 2
3 3 atomicwrites==1.2.1
4 4 attrs==18.2.0
5 5 billiard==3.5.0.3
6 6 chameleon==2.24
7 7 cffi==1.12.2
8 ecdsa==0.13
8 ecdsa==0.13.2
9 9 hupper==1.6.1
10 10 gnureadline==6.3.8
11 11 jinja2==2.9.6
12 12 jsonschema==2.6.0
13 pathlib2==2.3.3
14 13 pyramid-jinja2==2.7
14 pluggy==0.11.0
15 15 setproctitle==1.1.10
16 16 scandir==1.10.0
17 17 tempita==0.5.2
18 18 vine==1.3.0
19 configparser==3.7.4 No newline at end of file
19 configparser==3.7.4
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from rhodecode/templates/changelog/changelog.mako to rhodecode/templates/commits/changelog.mako
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from rhodecode/templates/changelog/changelog_elements.mako to rhodecode/templates/commits/changelog_elements.mako
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from rhodecode/templates/changelog/changelog_file_history.mako to rhodecode/templates/commits/changelog_file_history.mako
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from rhodecode/templates/files/files_detail.mako to rhodecode/templates/files/files_source_header.mako
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from rhodecode/templates/files/file_tree_detail.mako to rhodecode/templates/files/files_tree_header.mako
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now