##// END OF EJS Templates
frontend: use webpack instead of vulcanize
ergo -
r3171:b9c8d2ad default
parent child Browse files
Show More
@@ -0,0 +1,7 b''
1 import '../../../../../bower_components/iron-ajax/iron-ajax.html';
2 import './root-styles.gen.html';
3 import './channelstream-connection/channelstream-connection.html';
4 import './rhodecode-toast/rhodecode-toast.html';
5 import './rhodecode-toggle/rhodecode-toggle.html';
6 import './rhodecode-unsafe-html/rhodecode-unsafe-html.html';
7 import './rhodecode-app/rhodecode-app.html';
@@ -0,0 +1,69 b''
1 /* webpack.config.js */
2 require('style-loader');
3 require('css-loader');
4 var path = require('path');
5
6 const projectName = 'rhodecode-components';
7 let destinationDirectory = path.join(process.cwd(), 'rhodecode', 'public', 'js')
8
9 if (process.env.RC_STATIC_DIR) {
10 destinationDirectory = process.env.RC_STATIC_DIR;
11 }
12
13 module.exports = {
14 // Tell Webpack which file kicks off our app.
15 entry: {
16 main: path.resolve(__dirname, 'rhodecode/public/js/src/components/index.js'),
17 },
18 output: {
19 filename: 'rhodecode-components.js',
20 path: path.resolve(destinationDirectory)
21 },
22 // Tell Webpack which directories to look in to resolve import statements.
23 // Normally Webpack will look in node_modules by default but since we’re overriding
24 // the property we’ll need to tell it to look there in addition to the
25 // bower_components folder.
26 resolve: {
27 modules: [
28 path.resolve(__dirname, 'node_modules'),
29 path.resolve(__dirname, 'bower_components')
30 ]
31 },
32 // These rules tell Webpack how to process different module types.
33 // Remember, *everything* is a module in Webpack. That includes
34 // CSS, and (thanks to our loader) HTML.
35 module: {
36 rules: [
37 {
38 // If you see a file that ends in .html, send it to these loaders.
39 test: /\.html$/,
40 // This is an example of chained loaders in Webpack.
41 // Chained loaders run last to first. So it will run
42 // polymer-webpack-loader, and hand the output to
43 // babel-loader. This let's us transpile JS in our `<script>` elements.
44 use: [
45 {loader: 'babel-loader'},
46 {loader: 'polymer-webpack-loader',
47 options: {
48 processStyleLinks: true,
49 }
50 }
51 ],
52 },
53 {
54 // If you see a file that ends in .js, just send it to the babel-loader.
55 test: /\.js$/,
56 use: 'babel-loader'
57 // Optionally exclude node_modules from transpilation except for polymer-webpack-loader:
58 // exclude: /node_modules\/(?!polymer-webpack-loader\/).*/
59 },
60 // this is required because of bug:
61 // https://github.com/webpack-contrib/polymer-webpack-loader/issues/49
62 {
63 test: /intl-messageformat.min.js/,
64 use: 'imports-loader?this=>window'
65 }
66 ]
67 },
68 plugins: []
69 };
@@ -45,6 +45,7 b' syntax: regexp'
45 ^rhodecode/public/js/rhodecode-components.html$
45 ^rhodecode/public/js/rhodecode-components.html$
46 ^rhodecode/public/js/scripts.js$
46 ^rhodecode/public/js/scripts.js$
47 ^rhodecode/public/js/rhodecode-components.js$
47 ^rhodecode/public/js/rhodecode-components.js$
48 ^rhodecode/public/js/app-bundle.js$
48 ^rhodecode/public/js/src/components/root-styles.gen.html$
49 ^rhodecode/public/js/src/components/root-styles.gen.html$
49 ^rhodecode/public/js/vendors/webcomponentsjs/
50 ^rhodecode/public/js/vendors/webcomponentsjs/
50 ^rhodecode\.db$
51 ^rhodecode\.db$
@@ -1,4 +1,12 b''
1 var gruntConfig = require('./grunt_config.json');
1 var gruntConfig = require('./grunt_config.json');
2 var webpackConfig = require('./webpack.config');
3 gruntConfig["webpack"] = {
4 options: {
5 stats: !process.env.NODE_ENV || process.env.NODE_ENV === 'development'
6 },
7 prod: webpackConfig,
8 dev: Object.assign({ watch: false }, webpackConfig)
9 };
2
10
3 module.exports = function(grunt) {
11 module.exports = function(grunt) {
4 grunt.initConfig(gruntConfig);
12 grunt.initConfig(gruntConfig);
@@ -7,8 +15,7 b' module.exports = function(grunt) {'
7 grunt.loadNpmTasks('grunt-contrib-concat');
15 grunt.loadNpmTasks('grunt-contrib-concat');
8 grunt.loadNpmTasks('grunt-contrib-watch');
16 grunt.loadNpmTasks('grunt-contrib-watch');
9 grunt.loadNpmTasks('grunt-contrib-jshint');
17 grunt.loadNpmTasks('grunt-contrib-jshint');
10 grunt.loadNpmTasks('grunt-vulcanize');
11 grunt.loadNpmTasks('grunt-contrib-copy');
18 grunt.loadNpmTasks('grunt-contrib-copy');
12
19 grunt.loadNpmTasks('grunt-webpack');
13 grunt.registerTask('default', ['less:production', 'less:components', 'concat:polymercss', 'copy', 'concat:dist', 'vulcanize']);
20 grunt.registerTask('default', ['less:production', 'less:components', 'concat:polymercss', 'copy', 'webpack', 'concat:dist']);
14 };
21 };
@@ -93,7 +93,8 b''
93 "<%= dirs.js.src %>/rhodecode/tooltips.js",
93 "<%= dirs.js.src %>/rhodecode/tooltips.js",
94 "<%= dirs.js.src %>/rhodecode/users.js",
94 "<%= dirs.js.src %>/rhodecode/users.js",
95 "<%= dirs.js.src %>/rhodecode/appenlight.js",
95 "<%= dirs.js.src %>/rhodecode/appenlight.js",
96 "<%= dirs.js.src %>/rhodecode.js"
96 "<%= dirs.js.src %>/rhodecode.js",
97 "<%= dirs.js.dest %>/rhodecode-components.js"
97 ],
98 ],
98 "dest": "<%= dirs.js.dest %>/scripts.js",
99 "dest": "<%= dirs.js.dest %>/scripts.js",
99 "nonull": true
100 "nonull": true
@@ -146,7 +147,7 b''
146 "less:development",
147 "less:development",
147 "less:components",
148 "less:components",
148 "concat:polymercss",
149 "concat:polymercss",
149 "vulcanize",
150 "webpack",
150 "concat:dist"
151 "concat:dist"
151 ]
152 ]
152 },
153 },
@@ -159,7 +160,7 b''
159 "tasks": [
160 "tasks": [
160 "less:components",
161 "less:components",
161 "concat:polymercss",
162 "concat:polymercss",
162 "vulcanize",
163 "webpack",
163 "concat:dist"
164 "concat:dist"
164 ]
165 ]
165 }
166 }
@@ -171,18 +172,5 b''
171 "jshintrc": ".jshintrc"
172 "jshintrc": ".jshintrc"
172 }
173 }
173 }
174 }
174 },
175 "vulcanize": {
176 "default": {
177 "options": {
178 "abspath": "",
179 "inlineScripts": true,
180 "inlineCss": true,
181 "stripComments": true
182 },
183 "files": {
184 "<%= dirs.js.dest %>/rhodecode-components.html": "<%= dirs.js.src %>/components/shared-components.html"
185 }
186 }
187 }
175 }
188 }
176 }
@@ -21,16 +21,30 b''
21 "grunt-contrib-jshint": "^0.12.0",
21 "grunt-contrib-jshint": "^0.12.0",
22 "grunt-contrib-less": "^1.1.0",
22 "grunt-contrib-less": "^1.1.0",
23 "grunt-contrib-watch": "^0.6.1",
23 "grunt-contrib-watch": "^0.6.1",
24 "grunt-vulcanize": "^1.0.0",
24 "grunt-webpack": "^3.1.3",
25 "jquery": "1.11.3",
25 "jquery": "1.11.3",
26 "jshint": "^2.9.1-rc3",
26 "jshint": "^2.9.1-rc3",
27 "moment": "^2.18.1",
27 "moment": "^2.18.1",
28 "mousetrap": "^1.6.1",
28 "mousetrap": "^1.6.1",
29 "qrious": "^4.0.2",
29 "qrious": "^4.0.2",
30 "sticky-sidebar": "3.3.1",
30 "sticky-sidebar": "3.3.1",
31 "vulcanize": "^1.16.0",
32 "waypoints": "4.0.1",
31 "waypoints": "4.0.1",
33 "webpack": "4.23.1",
32 "webpack": "4.23.1",
34 "webpack-cli": "3.1.2"
33 "webpack-cli": "3.1.2",
34 "babel-core": "^6.26.3",
35 "babel-loader": "^7.1.2",
36 "babel-plugin-transform-object-rest-spread": "^6.26.0",
37 "babel-preset-env": "^1.6.0",
38 "copy-webpack-plugin": "^4.4.2",
39 "css-loader": "^0.28.11",
40 "exports-loader": "^0.6.4",
41 "html-loader": "^0.4.4",
42 "html-webpack-plugin": "^3.2.0",
43 "imports-loader": "^0.7.1",
44 "polymer-webpack-loader": "^2.0.1",
45 "style-loader": "^0.21.0",
46 "webpack-uglify-js-plugin": "^1.1.9",
47 "raw-loader": "1.0.0-beta.0",
48 "ts-loader": "^1.3.3"
35 }
49 }
36 }
50 }
This diff has been collapsed as it changes many lines, (3040 lines changed) Show them Hide them
@@ -13,31 +13,22 b' let'
13 sha1 = "e7365648c1b42136a59c7d5040637b3b5c83b614";
13 sha1 = "e7365648c1b42136a59c7d5040637b3b5c83b614";
14 };
14 };
15 };
15 };
16 "@types/node-4.9.0" = {
16 "@types/node-6.14.0" = {
17 name = "_at_types_slash_node";
18 packageName = "@types/node";
19 version = "4.9.0";
20 src = fetchurl {
21 url = "https://registry.npmjs.org/@types/node/-/node-4.9.0.tgz";
22 sha512 = "xUFkZ+er9gUGw0x9qyfmr/Th0LuX6IB0m7HrRMB6sO6vcBVRFZ/3YV1EeiOC2fG50RX09avDfKwGBHOnPVxFeg==";
23 };
24 };
25 "@types/node-6.0.118" = {
26 name = "_at_types_slash_node";
17 name = "_at_types_slash_node";
27 packageName = "@types/node";
18 packageName = "@types/node";
28 version = "6.0.118";
19 version = "6.14.0";
29 src = fetchurl {
20 src = fetchurl {
30 url = "https://registry.npmjs.org/@types/node/-/node-6.0.118.tgz";
21 url = "https://registry.npmjs.org/@types/node/-/node-6.14.0.tgz";
31 sha512 = "N33cKXGSqhOYaPiT4xUGsYlPPDwFtQM/6QxJxuMXA/7BcySW+lkn2yigWP7vfs4daiL/7NJNU6DMCqg5N4B+xQ==";
22 sha512 = "6tQyh4Q4B5pECcXBOQDZ5KjyBIxRZGzrweGPM47sAYTdVG4+7R+2EGMTmp0h6ZwgqHrFRCeg2gdhsG9xXEl2Sg==";
32 };
23 };
33 };
24 };
34 "@types/parse5-0.0.31" = {
25 "@types/parse5-2.2.34" = {
35 name = "_at_types_slash_parse5";
26 name = "_at_types_slash_parse5";
36 packageName = "@types/parse5";
27 packageName = "@types/parse5";
37 version = "0.0.31";
28 version = "2.2.34";
38 src = fetchurl {
29 src = fetchurl {
39 url = "https://registry.npmjs.org/@types/parse5/-/parse5-0.0.31.tgz";
30 url = "https://registry.npmjs.org/@types/parse5/-/parse5-2.2.34.tgz";
40 sha1 = "e827a493a443b156e1b582a2e4c3bdc0040f2ee7";
31 sha1 = "e3870a10e82735a720f62d71dcd183ba78ef3a9d";
41 };
32 };
42 };
33 };
43 "@webassemblyjs/ast-1.7.10" = {
34 "@webassemblyjs/ast-1.7.10" = {
@@ -292,6 +283,24 b' let'
292 sha1 = "e86b819c602cf8821ad637413698f1dec021847a";
283 sha1 = "e86b819c602cf8821ad637413698f1dec021847a";
293 };
284 };
294 };
285 };
286 "align-text-0.1.4" = {
287 name = "align-text";
288 packageName = "align-text";
289 version = "0.1.4";
290 src = fetchurl {
291 url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
292 sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
293 };
294 };
295 "alphanum-sort-1.0.2" = {
296 name = "alphanum-sort";
297 packageName = "alphanum-sort";
298 version = "1.0.2";
299 src = fetchurl {
300 url = "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz";
301 sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3";
302 };
303 };
295 "amdefine-1.0.1" = {
304 "amdefine-1.0.1" = {
296 name = "amdefine";
305 name = "amdefine";
297 packageName = "amdefine";
306 packageName = "amdefine";
@@ -392,6 +401,15 b' let'
392 sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
401 sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
393 };
402 };
394 };
403 };
404 "argparse-1.0.10" = {
405 name = "argparse";
406 packageName = "argparse";
407 version = "1.0.10";
408 src = fetchurl {
409 url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
410 sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
411 };
412 };
395 "arr-diff-4.0.0" = {
413 "arr-diff-4.0.0" = {
396 name = "arr-diff";
414 name = "arr-diff";
397 packageName = "arr-diff";
415 packageName = "arr-diff";
@@ -437,6 +455,24 b' let'
437 sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
455 sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==";
438 };
456 };
439 };
457 };
458 "array-union-1.0.2" = {
459 name = "array-union";
460 packageName = "array-union";
461 version = "1.0.2";
462 src = fetchurl {
463 url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
464 sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
465 };
466 };
467 "array-uniq-1.0.3" = {
468 name = "array-uniq";
469 packageName = "array-uniq";
470 version = "1.0.3";
471 src = fetchurl {
472 url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
473 sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
474 };
475 };
440 "array-unique-0.3.2" = {
476 "array-unique-0.3.2" = {
441 name = "array-unique";
477 name = "array-unique";
442 packageName = "array-unique";
478 packageName = "array-unique";
@@ -446,6 +482,15 b' let'
446 sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
482 sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
447 };
483 };
448 };
484 };
485 "arrify-1.0.1" = {
486 name = "arrify";
487 packageName = "arrify";
488 version = "1.0.1";
489 src = fetchurl {
490 url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz";
491 sha1 = "898508da2226f380df904728456849c1501a4b0d";
492 };
493 };
449 "asap-2.0.6" = {
494 "asap-2.0.6" = {
450 name = "asap";
495 name = "asap";
451 packageName = "asap";
496 packageName = "asap";
@@ -509,6 +554,15 b' let'
509 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
554 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
510 };
555 };
511 };
556 };
557 "ast-types-0.9.6" = {
558 name = "ast-types";
559 packageName = "ast-types";
560 version = "0.9.6";
561 src = fetchurl {
562 url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz";
563 sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
564 };
565 };
512 "async-0.1.22" = {
566 "async-0.1.22" = {
513 name = "async";
567 name = "async";
514 packageName = "async";
568 packageName = "async";
@@ -572,6 +626,15 b' let'
572 sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
626 sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
573 };
627 };
574 };
628 };
629 "autoprefixer-6.7.7" = {
630 name = "autoprefixer";
631 packageName = "autoprefixer";
632 version = "6.7.7";
633 src = fetchurl {
634 url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz";
635 sha1 = "1dbd1c835658e35ce3f9984099db00585c782014";
636 };
637 };
575 "aws-sign2-0.6.0" = {
638 "aws-sign2-0.6.0" = {
576 name = "aws-sign2";
639 name = "aws-sign2";
577 packageName = "aws-sign2";
640 packageName = "aws-sign2";
@@ -590,13 +653,463 b' let'
590 sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
653 sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==";
591 };
654 };
592 };
655 };
593 "babel-polyfill-6.26.0" = {
656 "babel-code-frame-6.26.0" = {
594 name = "babel-polyfill";
657 name = "babel-code-frame";
595 packageName = "babel-polyfill";
658 packageName = "babel-code-frame";
659 version = "6.26.0";
660 src = fetchurl {
661 url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
662 sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
663 };
664 };
665 "babel-core-6.26.3" = {
666 name = "babel-core";
667 packageName = "babel-core";
668 version = "6.26.3";
669 src = fetchurl {
670 url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz";
671 sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==";
672 };
673 };
674 "babel-generator-6.26.1" = {
675 name = "babel-generator";
676 packageName = "babel-generator";
677 version = "6.26.1";
678 src = fetchurl {
679 url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz";
680 sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==";
681 };
682 };
683 "babel-helper-builder-binary-assignment-operator-visitor-6.24.1" = {
684 name = "babel-helper-builder-binary-assignment-operator-visitor";
685 packageName = "babel-helper-builder-binary-assignment-operator-visitor";
686 version = "6.24.1";
687 src = fetchurl {
688 url = "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz";
689 sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664";
690 };
691 };
692 "babel-helper-call-delegate-6.24.1" = {
693 name = "babel-helper-call-delegate";
694 packageName = "babel-helper-call-delegate";
695 version = "6.24.1";
696 src = fetchurl {
697 url = "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz";
698 sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d";
699 };
700 };
701 "babel-helper-define-map-6.26.0" = {
702 name = "babel-helper-define-map";
703 packageName = "babel-helper-define-map";
704 version = "6.26.0";
705 src = fetchurl {
706 url = "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz";
707 sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f";
708 };
709 };
710 "babel-helper-explode-assignable-expression-6.24.1" = {
711 name = "babel-helper-explode-assignable-expression";
712 packageName = "babel-helper-explode-assignable-expression";
713 version = "6.24.1";
714 src = fetchurl {
715 url = "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz";
716 sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa";
717 };
718 };
719 "babel-helper-function-name-6.24.1" = {
720 name = "babel-helper-function-name";
721 packageName = "babel-helper-function-name";
722 version = "6.24.1";
723 src = fetchurl {
724 url = "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz";
725 sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9";
726 };
727 };
728 "babel-helper-get-function-arity-6.24.1" = {
729 name = "babel-helper-get-function-arity";
730 packageName = "babel-helper-get-function-arity";
731 version = "6.24.1";
732 src = fetchurl {
733 url = "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz";
734 sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d";
735 };
736 };
737 "babel-helper-hoist-variables-6.24.1" = {
738 name = "babel-helper-hoist-variables";
739 packageName = "babel-helper-hoist-variables";
740 version = "6.24.1";
741 src = fetchurl {
742 url = "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz";
743 sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76";
744 };
745 };
746 "babel-helper-optimise-call-expression-6.24.1" = {
747 name = "babel-helper-optimise-call-expression";
748 packageName = "babel-helper-optimise-call-expression";
749 version = "6.24.1";
750 src = fetchurl {
751 url = "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz";
752 sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257";
753 };
754 };
755 "babel-helper-regex-6.26.0" = {
756 name = "babel-helper-regex";
757 packageName = "babel-helper-regex";
758 version = "6.26.0";
759 src = fetchurl {
760 url = "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz";
761 sha1 = "325c59f902f82f24b74faceed0363954f6495e72";
762 };
763 };
764 "babel-helper-remap-async-to-generator-6.24.1" = {
765 name = "babel-helper-remap-async-to-generator";
766 packageName = "babel-helper-remap-async-to-generator";
767 version = "6.24.1";
768 src = fetchurl {
769 url = "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz";
770 sha1 = "5ec581827ad723fecdd381f1c928390676e4551b";
771 };
772 };
773 "babel-helper-replace-supers-6.24.1" = {
774 name = "babel-helper-replace-supers";
775 packageName = "babel-helper-replace-supers";
776 version = "6.24.1";
777 src = fetchurl {
778 url = "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz";
779 sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a";
780 };
781 };
782 "babel-helpers-6.24.1" = {
783 name = "babel-helpers";
784 packageName = "babel-helpers";
785 version = "6.24.1";
786 src = fetchurl {
787 url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz";
788 sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
789 };
790 };
791 "babel-loader-7.1.5" = {
792 name = "babel-loader";
793 packageName = "babel-loader";
794 version = "7.1.5";
795 src = fetchurl {
796 url = "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz";
797 sha512 = "iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==";
798 };
799 };
800 "babel-messages-6.23.0" = {
801 name = "babel-messages";
802 packageName = "babel-messages";
803 version = "6.23.0";
804 src = fetchurl {
805 url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz";
806 sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
807 };
808 };
809 "babel-plugin-check-es2015-constants-6.22.0" = {
810 name = "babel-plugin-check-es2015-constants";
811 packageName = "babel-plugin-check-es2015-constants";
812 version = "6.22.0";
813 src = fetchurl {
814 url = "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz";
815 sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a";
816 };
817 };
818 "babel-plugin-syntax-async-functions-6.13.0" = {
819 name = "babel-plugin-syntax-async-functions";
820 packageName = "babel-plugin-syntax-async-functions";
821 version = "6.13.0";
822 src = fetchurl {
823 url = "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz";
824 sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95";
825 };
826 };
827 "babel-plugin-syntax-exponentiation-operator-6.13.0" = {
828 name = "babel-plugin-syntax-exponentiation-operator";
829 packageName = "babel-plugin-syntax-exponentiation-operator";
830 version = "6.13.0";
831 src = fetchurl {
832 url = "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz";
833 sha1 = "9ee7e8337290da95288201a6a57f4170317830de";
834 };
835 };
836 "babel-plugin-syntax-object-rest-spread-6.13.0" = {
837 name = "babel-plugin-syntax-object-rest-spread";
838 packageName = "babel-plugin-syntax-object-rest-spread";
839 version = "6.13.0";
840 src = fetchurl {
841 url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz";
842 sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
843 };
844 };
845 "babel-plugin-syntax-trailing-function-commas-6.22.0" = {
846 name = "babel-plugin-syntax-trailing-function-commas";
847 packageName = "babel-plugin-syntax-trailing-function-commas";
848 version = "6.22.0";
849 src = fetchurl {
850 url = "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz";
851 sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3";
852 };
853 };
854 "babel-plugin-transform-async-to-generator-6.24.1" = {
855 name = "babel-plugin-transform-async-to-generator";
856 packageName = "babel-plugin-transform-async-to-generator";
857 version = "6.24.1";
858 src = fetchurl {
859 url = "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz";
860 sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761";
861 };
862 };
863 "babel-plugin-transform-es2015-arrow-functions-6.22.0" = {
864 name = "babel-plugin-transform-es2015-arrow-functions";
865 packageName = "babel-plugin-transform-es2015-arrow-functions";
866 version = "6.22.0";
867 src = fetchurl {
868 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz";
869 sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221";
870 };
871 };
872 "babel-plugin-transform-es2015-block-scoped-functions-6.22.0" = {
873 name = "babel-plugin-transform-es2015-block-scoped-functions";
874 packageName = "babel-plugin-transform-es2015-block-scoped-functions";
875 version = "6.22.0";
876 src = fetchurl {
877 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz";
878 sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141";
879 };
880 };
881 "babel-plugin-transform-es2015-block-scoping-6.26.0" = {
882 name = "babel-plugin-transform-es2015-block-scoping";
883 packageName = "babel-plugin-transform-es2015-block-scoping";
596 version = "6.26.0";
884 version = "6.26.0";
597 src = fetchurl {
885 src = fetchurl {
598 url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz";
886 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz";
599 sha1 = "379937abc67d7895970adc621f284cd966cf2153";
887 sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f";
888 };
889 };
890 "babel-plugin-transform-es2015-classes-6.24.1" = {
891 name = "babel-plugin-transform-es2015-classes";
892 packageName = "babel-plugin-transform-es2015-classes";
893 version = "6.24.1";
894 src = fetchurl {
895 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz";
896 sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db";
897 };
898 };
899 "babel-plugin-transform-es2015-computed-properties-6.24.1" = {
900 name = "babel-plugin-transform-es2015-computed-properties";
901 packageName = "babel-plugin-transform-es2015-computed-properties";
902 version = "6.24.1";
903 src = fetchurl {
904 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz";
905 sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3";
906 };
907 };
908 "babel-plugin-transform-es2015-destructuring-6.23.0" = {
909 name = "babel-plugin-transform-es2015-destructuring";
910 packageName = "babel-plugin-transform-es2015-destructuring";
911 version = "6.23.0";
912 src = fetchurl {
913 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
914 sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
915 };
916 };
917 "babel-plugin-transform-es2015-duplicate-keys-6.24.1" = {
918 name = "babel-plugin-transform-es2015-duplicate-keys";
919 packageName = "babel-plugin-transform-es2015-duplicate-keys";
920 version = "6.24.1";
921 src = fetchurl {
922 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz";
923 sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e";
924 };
925 };
926 "babel-plugin-transform-es2015-for-of-6.23.0" = {
927 name = "babel-plugin-transform-es2015-for-of";
928 packageName = "babel-plugin-transform-es2015-for-of";
929 version = "6.23.0";
930 src = fetchurl {
931 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz";
932 sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691";
933 };
934 };
935 "babel-plugin-transform-es2015-function-name-6.24.1" = {
936 name = "babel-plugin-transform-es2015-function-name";
937 packageName = "babel-plugin-transform-es2015-function-name";
938 version = "6.24.1";
939 src = fetchurl {
940 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz";
941 sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b";
942 };
943 };
944 "babel-plugin-transform-es2015-literals-6.22.0" = {
945 name = "babel-plugin-transform-es2015-literals";
946 packageName = "babel-plugin-transform-es2015-literals";
947 version = "6.22.0";
948 src = fetchurl {
949 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz";
950 sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e";
951 };
952 };
953 "babel-plugin-transform-es2015-modules-amd-6.24.1" = {
954 name = "babel-plugin-transform-es2015-modules-amd";
955 packageName = "babel-plugin-transform-es2015-modules-amd";
956 version = "6.24.1";
957 src = fetchurl {
958 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz";
959 sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154";
960 };
961 };
962 "babel-plugin-transform-es2015-modules-commonjs-6.26.2" = {
963 name = "babel-plugin-transform-es2015-modules-commonjs";
964 packageName = "babel-plugin-transform-es2015-modules-commonjs";
965 version = "6.26.2";
966 src = fetchurl {
967 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz";
968 sha512 = "CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==";
969 };
970 };
971 "babel-plugin-transform-es2015-modules-systemjs-6.24.1" = {
972 name = "babel-plugin-transform-es2015-modules-systemjs";
973 packageName = "babel-plugin-transform-es2015-modules-systemjs";
974 version = "6.24.1";
975 src = fetchurl {
976 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz";
977 sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23";
978 };
979 };
980 "babel-plugin-transform-es2015-modules-umd-6.24.1" = {
981 name = "babel-plugin-transform-es2015-modules-umd";
982 packageName = "babel-plugin-transform-es2015-modules-umd";
983 version = "6.24.1";
984 src = fetchurl {
985 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz";
986 sha1 = "ac997e6285cd18ed6176adb607d602344ad38468";
987 };
988 };
989 "babel-plugin-transform-es2015-object-super-6.24.1" = {
990 name = "babel-plugin-transform-es2015-object-super";
991 packageName = "babel-plugin-transform-es2015-object-super";
992 version = "6.24.1";
993 src = fetchurl {
994 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz";
995 sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d";
996 };
997 };
998 "babel-plugin-transform-es2015-parameters-6.24.1" = {
999 name = "babel-plugin-transform-es2015-parameters";
1000 packageName = "babel-plugin-transform-es2015-parameters";
1001 version = "6.24.1";
1002 src = fetchurl {
1003 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz";
1004 sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b";
1005 };
1006 };
1007 "babel-plugin-transform-es2015-shorthand-properties-6.24.1" = {
1008 name = "babel-plugin-transform-es2015-shorthand-properties";
1009 packageName = "babel-plugin-transform-es2015-shorthand-properties";
1010 version = "6.24.1";
1011 src = fetchurl {
1012 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz";
1013 sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0";
1014 };
1015 };
1016 "babel-plugin-transform-es2015-spread-6.22.0" = {
1017 name = "babel-plugin-transform-es2015-spread";
1018 packageName = "babel-plugin-transform-es2015-spread";
1019 version = "6.22.0";
1020 src = fetchurl {
1021 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz";
1022 sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1";
1023 };
1024 };
1025 "babel-plugin-transform-es2015-sticky-regex-6.24.1" = {
1026 name = "babel-plugin-transform-es2015-sticky-regex";
1027 packageName = "babel-plugin-transform-es2015-sticky-regex";
1028 version = "6.24.1";
1029 src = fetchurl {
1030 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz";
1031 sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc";
1032 };
1033 };
1034 "babel-plugin-transform-es2015-template-literals-6.22.0" = {
1035 name = "babel-plugin-transform-es2015-template-literals";
1036 packageName = "babel-plugin-transform-es2015-template-literals";
1037 version = "6.22.0";
1038 src = fetchurl {
1039 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz";
1040 sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d";
1041 };
1042 };
1043 "babel-plugin-transform-es2015-typeof-symbol-6.23.0" = {
1044 name = "babel-plugin-transform-es2015-typeof-symbol";
1045 packageName = "babel-plugin-transform-es2015-typeof-symbol";
1046 version = "6.23.0";
1047 src = fetchurl {
1048 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz";
1049 sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372";
1050 };
1051 };
1052 "babel-plugin-transform-es2015-unicode-regex-6.24.1" = {
1053 name = "babel-plugin-transform-es2015-unicode-regex";
1054 packageName = "babel-plugin-transform-es2015-unicode-regex";
1055 version = "6.24.1";
1056 src = fetchurl {
1057 url = "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz";
1058 sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9";
1059 };
1060 };
1061 "babel-plugin-transform-exponentiation-operator-6.24.1" = {
1062 name = "babel-plugin-transform-exponentiation-operator";
1063 packageName = "babel-plugin-transform-exponentiation-operator";
1064 version = "6.24.1";
1065 src = fetchurl {
1066 url = "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz";
1067 sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e";
1068 };
1069 };
1070 "babel-plugin-transform-object-rest-spread-6.26.0" = {
1071 name = "babel-plugin-transform-object-rest-spread";
1072 packageName = "babel-plugin-transform-object-rest-spread";
1073 version = "6.26.0";
1074 src = fetchurl {
1075 url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
1076 sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
1077 };
1078 };
1079 "babel-plugin-transform-regenerator-6.26.0" = {
1080 name = "babel-plugin-transform-regenerator";
1081 packageName = "babel-plugin-transform-regenerator";
1082 version = "6.26.0";
1083 src = fetchurl {
1084 url = "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz";
1085 sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f";
1086 };
1087 };
1088 "babel-plugin-transform-strict-mode-6.24.1" = {
1089 name = "babel-plugin-transform-strict-mode";
1090 packageName = "babel-plugin-transform-strict-mode";
1091 version = "6.24.1";
1092 src = fetchurl {
1093 url = "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz";
1094 sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758";
1095 };
1096 };
1097 "babel-preset-env-1.7.0" = {
1098 name = "babel-preset-env";
1099 packageName = "babel-preset-env";
1100 version = "1.7.0";
1101 src = fetchurl {
1102 url = "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz";
1103 sha512 = "9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==";
1104 };
1105 };
1106 "babel-register-6.26.0" = {
1107 name = "babel-register";
1108 packageName = "babel-register";
1109 version = "6.26.0";
1110 src = fetchurl {
1111 url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
1112 sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
600 };
1113 };
601 };
1114 };
602 "babel-runtime-6.26.0" = {
1115 "babel-runtime-6.26.0" = {
@@ -608,6 +1121,51 b' let'
608 sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
1121 sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
609 };
1122 };
610 };
1123 };
1124 "babel-template-6.26.0" = {
1125 name = "babel-template";
1126 packageName = "babel-template";
1127 version = "6.26.0";
1128 src = fetchurl {
1129 url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
1130 sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
1131 };
1132 };
1133 "babel-traverse-6.26.0" = {
1134 name = "babel-traverse";
1135 packageName = "babel-traverse";
1136 version = "6.26.0";
1137 src = fetchurl {
1138 url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
1139 sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
1140 };
1141 };
1142 "babel-types-6.26.0" = {
1143 name = "babel-types";
1144 packageName = "babel-types";
1145 version = "6.26.0";
1146 src = fetchurl {
1147 url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
1148 sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
1149 };
1150 };
1151 "babylon-6.18.0" = {
1152 name = "babylon";
1153 packageName = "babylon";
1154 version = "6.18.0";
1155 src = fetchurl {
1156 url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
1157 sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==";
1158 };
1159 };
1160 "balanced-match-0.4.2" = {
1161 name = "balanced-match";
1162 packageName = "balanced-match";
1163 version = "0.4.2";
1164 src = fetchurl {
1165 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz";
1166 sha1 = "cb3f3e3c732dc0f01ee70b403f302e61d7709838";
1167 };
1168 };
611 "balanced-match-1.0.0" = {
1169 "balanced-match-1.0.0" = {
612 name = "balanced-match";
1170 name = "balanced-match";
613 packageName = "balanced-match";
1171 packageName = "balanced-match";
@@ -680,6 +1238,15 b' let'
680 sha512 = "ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==";
1238 sha512 = "ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==";
681 };
1239 };
682 };
1240 };
1241 "boolbase-1.0.0" = {
1242 name = "boolbase";
1243 packageName = "boolbase";
1244 version = "1.0.0";
1245 src = fetchurl {
1246 url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz";
1247 sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
1248 };
1249 };
683 "boom-2.10.1" = {
1250 "boom-2.10.1" = {
684 name = "boom";
1251 name = "boom";
685 packageName = "boom";
1252 packageName = "boom";
@@ -779,6 +1346,24 b' let'
779 sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
1346 sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
780 };
1347 };
781 };
1348 };
1349 "browserslist-1.7.7" = {
1350 name = "browserslist";
1351 packageName = "browserslist";
1352 version = "1.7.7";
1353 src = fetchurl {
1354 url = "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz";
1355 sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9";
1356 };
1357 };
1358 "browserslist-3.2.8" = {
1359 name = "browserslist";
1360 packageName = "browserslist";
1361 version = "3.2.8";
1362 src = fetchurl {
1363 url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz";
1364 sha512 = "WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==";
1365 };
1366 };
782 "buffer-4.9.1" = {
1367 "buffer-4.9.1" = {
783 name = "buffer";
1368 name = "buffer";
784 packageName = "buffer";
1369 packageName = "buffer";
@@ -833,6 +1418,24 b' let'
833 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
1418 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==";
834 };
1419 };
835 };
1420 };
1421 "camel-case-3.0.0" = {
1422 name = "camel-case";
1423 packageName = "camel-case";
1424 version = "3.0.0";
1425 src = fetchurl {
1426 url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz";
1427 sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73";
1428 };
1429 };
1430 "camelcase-1.2.1" = {
1431 name = "camelcase";
1432 packageName = "camelcase";
1433 version = "1.2.1";
1434 src = fetchurl {
1435 url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
1436 sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
1437 };
1438 };
836 "camelcase-4.1.0" = {
1439 "camelcase-4.1.0" = {
837 name = "camelcase";
1440 name = "camelcase";
838 packageName = "camelcase";
1441 packageName = "camelcase";
@@ -842,6 +1445,33 b' let'
842 sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
1445 sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
843 };
1446 };
844 };
1447 };
1448 "caniuse-api-1.6.1" = {
1449 name = "caniuse-api";
1450 packageName = "caniuse-api";
1451 version = "1.6.1";
1452 src = fetchurl {
1453 url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz";
1454 sha1 = "b534e7c734c4f81ec5fbe8aca2ad24354b962c6c";
1455 };
1456 };
1457 "caniuse-db-1.0.30000899" = {
1458 name = "caniuse-db";
1459 packageName = "caniuse-db";
1460 version = "1.0.30000899";
1461 src = fetchurl {
1462 url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000899.tgz";
1463 sha512 = "MSCUohyoLU4/PGapapw/PLQkmQ+sFgzX6e3tM6ue8HX9HW9rBD5gRiAYKhC8r0QkvUE0pWTA8Ze6f3jrzBizVg==";
1464 };
1465 };
1466 "caniuse-lite-1.0.30000899" = {
1467 name = "caniuse-lite";
1468 packageName = "caniuse-lite";
1469 version = "1.0.30000899";
1470 src = fetchurl {
1471 url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000899.tgz";
1472 sha512 = "enC3zKfUCJxxwvUIsBkbHd54CtJw1KtIWvrK0JZxWD/fEN2knHaai45lndJ4xXAkyRAPyk60J3yagkKDWhfeMA==";
1473 };
1474 };
845 "caseless-0.12.0" = {
1475 "caseless-0.12.0" = {
846 name = "caseless";
1476 name = "caseless";
847 packageName = "caseless";
1477 packageName = "caseless";
@@ -851,6 +1481,15 b' let'
851 sha1 = "1b681c21ff84033c826543090689420d187151dc";
1481 sha1 = "1b681c21ff84033c826543090689420d187151dc";
852 };
1482 };
853 };
1483 };
1484 "center-align-0.1.3" = {
1485 name = "center-align";
1486 packageName = "center-align";
1487 version = "0.1.3";
1488 src = fetchurl {
1489 url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
1490 sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
1491 };
1492 };
854 "chalk-0.5.1" = {
1493 "chalk-0.5.1" = {
855 name = "chalk";
1494 name = "chalk";
856 packageName = "chalk";
1495 packageName = "chalk";
@@ -914,6 +1553,15 b' let'
914 sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==";
1553 sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==";
915 };
1554 };
916 };
1555 };
1556 "clap-1.2.3" = {
1557 name = "clap";
1558 packageName = "clap";
1559 version = "1.2.3";
1560 src = fetchurl {
1561 url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz";
1562 sha512 = "4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==";
1563 };
1564 };
917 "class-utils-0.3.6" = {
1565 "class-utils-0.3.6" = {
918 name = "class-utils";
1566 name = "class-utils";
919 packageName = "class-utils";
1567 packageName = "class-utils";
@@ -923,6 +1571,15 b' let'
923 sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
1571 sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
924 };
1572 };
925 };
1573 };
1574 "clean-css-4.2.1" = {
1575 name = "clean-css";
1576 packageName = "clean-css";
1577 version = "4.2.1";
1578 src = fetchurl {
1579 url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz";
1580 sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==";
1581 };
1582 };
926 "cli-1.0.1" = {
1583 "cli-1.0.1" = {
927 name = "cli";
1584 name = "cli";
928 packageName = "cli";
1585 packageName = "cli";
@@ -941,6 +1598,15 b' let'
941 sha512 = "7yhQBmtN+uYZmfRjjVjKa0dZdWuabzpSKGtyQZN+9C8xlC788SSJjOHWh7tzurfwTqTD5UDYAhIv5fRJg3sHjQ==";
1598 sha512 = "7yhQBmtN+uYZmfRjjVjKa0dZdWuabzpSKGtyQZN+9C8xlC788SSJjOHWh7tzurfwTqTD5UDYAhIv5fRJg3sHjQ==";
942 };
1599 };
943 };
1600 };
1601 "cliui-2.1.0" = {
1602 name = "cliui";
1603 packageName = "cliui";
1604 version = "2.1.0";
1605 src = fetchurl {
1606 url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
1607 sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
1608 };
1609 };
944 "cliui-4.1.0" = {
1610 "cliui-4.1.0" = {
945 name = "cliui";
1611 name = "cliui";
946 packageName = "cliui";
1612 packageName = "cliui";
@@ -959,6 +1625,15 b' let'
959 sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
1625 sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e";
960 };
1626 };
961 };
1627 };
1628 "clone-2.1.2" = {
1629 name = "clone";
1630 packageName = "clone";
1631 version = "2.1.2";
1632 src = fetchurl {
1633 url = "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz";
1634 sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f";
1635 };
1636 };
962 "co-4.6.0" = {
1637 "co-4.6.0" = {
963 name = "co";
1638 name = "co";
964 packageName = "co";
1639 packageName = "co";
@@ -968,6 +1643,15 b' let'
968 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
1643 sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
969 };
1644 };
970 };
1645 };
1646 "coa-1.0.4" = {
1647 name = "coa";
1648 packageName = "coa";
1649 version = "1.0.4";
1650 src = fetchurl {
1651 url = "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz";
1652 sha1 = "a9ef153660d6a86a8bdec0289a5c684d217432fd";
1653 };
1654 };
971 "code-point-at-1.1.0" = {
1655 "code-point-at-1.1.0" = {
972 name = "code-point-at";
1656 name = "code-point-at";
973 packageName = "code-point-at";
1657 packageName = "code-point-at";
@@ -995,6 +1679,15 b' let'
995 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
1679 sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
996 };
1680 };
997 };
1681 };
1682 "color-0.11.4" = {
1683 name = "color";
1684 packageName = "color";
1685 version = "0.11.4";
1686 src = fetchurl {
1687 url = "https://registry.npmjs.org/color/-/color-0.11.4.tgz";
1688 sha1 = "6d7b5c74fb65e841cd48792ad1ed5e07b904d764";
1689 };
1690 };
998 "color-convert-1.9.3" = {
1691 "color-convert-1.9.3" = {
999 name = "color-convert";
1692 name = "color-convert";
1000 packageName = "color-convert";
1693 packageName = "color-convert";
@@ -1013,6 +1706,24 b' let'
1013 sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
1706 sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
1014 };
1707 };
1015 };
1708 };
1709 "color-string-0.3.0" = {
1710 name = "color-string";
1711 packageName = "color-string";
1712 version = "0.3.0";
1713 src = fetchurl {
1714 url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz";
1715 sha1 = "27d46fb67025c5c2fa25993bfbf579e47841b991";
1716 };
1717 };
1718 "colormin-1.1.2" = {
1719 name = "colormin";
1720 packageName = "colormin";
1721 version = "1.1.2";
1722 src = fetchurl {
1723 url = "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz";
1724 sha1 = "ea2f7420a72b96881a38aae59ec124a6f7298133";
1725 };
1726 };
1016 "colors-0.6.2" = {
1727 "colors-0.6.2" = {
1017 name = "colors";
1728 name = "colors";
1018 packageName = "colors";
1729 packageName = "colors";
@@ -1031,6 +1742,24 b' let'
1031 sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
1742 sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
1032 };
1743 };
1033 };
1744 };
1745 "colors-1.1.2" = {
1746 name = "colors";
1747 packageName = "colors";
1748 version = "1.1.2";
1749 src = fetchurl {
1750 url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
1751 sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
1752 };
1753 };
1754 "colors-1.3.2" = {
1755 name = "colors";
1756 packageName = "colors";
1757 version = "1.3.2";
1758 src = fetchurl {
1759 url = "https://registry.npmjs.org/colors/-/colors-1.3.2.tgz";
1760 sha512 = "rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ==";
1761 };
1762 };
1034 "combined-stream-1.0.7" = {
1763 "combined-stream-1.0.7" = {
1035 name = "combined-stream";
1764 name = "combined-stream";
1036 packageName = "combined-stream";
1765 packageName = "combined-stream";
@@ -1049,6 +1778,15 b' let'
1049 sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==";
1778 sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==";
1050 };
1779 };
1051 };
1780 };
1781 "commander-2.17.1" = {
1782 name = "commander";
1783 packageName = "commander";
1784 version = "2.17.1";
1785 src = fetchurl {
1786 url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz";
1787 sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==";
1788 };
1789 };
1052 "commondir-1.0.1" = {
1790 "commondir-1.0.1" = {
1053 name = "commondir";
1791 name = "commondir";
1054 packageName = "commondir";
1792 packageName = "commondir";
@@ -1103,6 +1841,15 b' let'
1103 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
1841 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
1104 };
1842 };
1105 };
1843 };
1844 "convert-source-map-1.6.0" = {
1845 name = "convert-source-map";
1846 packageName = "convert-source-map";
1847 version = "1.6.0";
1848 src = fetchurl {
1849 url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz";
1850 sha512 = "eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==";
1851 };
1852 };
1106 "copy-concurrently-1.0.5" = {
1853 "copy-concurrently-1.0.5" = {
1107 name = "copy-concurrently";
1854 name = "copy-concurrently";
1108 packageName = "copy-concurrently";
1855 packageName = "copy-concurrently";
@@ -1121,6 +1868,15 b' let'
1121 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
1868 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
1122 };
1869 };
1123 };
1870 };
1871 "copy-webpack-plugin-4.5.4" = {
1872 name = "copy-webpack-plugin";
1873 packageName = "copy-webpack-plugin";
1874 version = "4.5.4";
1875 src = fetchurl {
1876 url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-4.5.4.tgz";
1877 sha512 = "0lstlEyj74OAtYMrDxlNZsU7cwFijAI3Ofz2fD6Mpo9r4xCv4yegfa3uHIKvZY1NSuOtE9nvG6TAhJ+uz9gDaQ==";
1878 };
1879 };
1124 "core-js-2.5.7" = {
1880 "core-js-2.5.7" = {
1125 name = "core-js";
1881 name = "core-js";
1126 packageName = "core-js";
1882 packageName = "core-js";
@@ -1166,15 +1922,6 b' let'
1166 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
1922 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==";
1167 };
1923 };
1168 };
1924 };
1169 "crisper-1.2.0" = {
1170 name = "crisper";
1171 packageName = "crisper";
1172 version = "1.2.0";
1173 src = fetchurl {
1174 url = "https://registry.npmjs.org/crisper/-/crisper-1.2.0.tgz";
1175 sha1 = "9a91f597d71f6110294e076ad44dbb3408568e46";
1176 };
1177 };
1178 "cross-spawn-6.0.5" = {
1925 "cross-spawn-6.0.5" = {
1179 name = "cross-spawn";
1926 name = "cross-spawn";
1180 packageName = "cross-spawn";
1927 packageName = "cross-spawn";
@@ -1202,6 +1949,78 b' let'
1202 sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
1949 sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==";
1203 };
1950 };
1204 };
1951 };
1952 "css-color-names-0.0.4" = {
1953 name = "css-color-names";
1954 packageName = "css-color-names";
1955 version = "0.0.4";
1956 src = fetchurl {
1957 url = "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz";
1958 sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0";
1959 };
1960 };
1961 "css-loader-0.28.11" = {
1962 name = "css-loader";
1963 packageName = "css-loader";
1964 version = "0.28.11";
1965 src = fetchurl {
1966 url = "https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz";
1967 sha512 = "wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==";
1968 };
1969 };
1970 "css-select-1.2.0" = {
1971 name = "css-select";
1972 packageName = "css-select";
1973 version = "1.2.0";
1974 src = fetchurl {
1975 url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz";
1976 sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
1977 };
1978 };
1979 "css-selector-tokenizer-0.7.0" = {
1980 name = "css-selector-tokenizer";
1981 packageName = "css-selector-tokenizer";
1982 version = "0.7.0";
1983 src = fetchurl {
1984 url = "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz";
1985 sha1 = "e6988474ae8c953477bf5e7efecfceccd9cf4c86";
1986 };
1987 };
1988 "css-what-2.1.2" = {
1989 name = "css-what";
1990 packageName = "css-what";
1991 version = "2.1.2";
1992 src = fetchurl {
1993 url = "https://registry.npmjs.org/css-what/-/css-what-2.1.2.tgz";
1994 sha512 = "wan8dMWQ0GUeF7DGEPVjhHemVW/vy6xUYmFzRY8RYqgA0JtXC9rJmbScBjqSu6dg9q0lwPQy6ZAmJVr3PPTvqQ==";
1995 };
1996 };
1997 "cssesc-0.1.0" = {
1998 name = "cssesc";
1999 packageName = "cssesc";
2000 version = "0.1.0";
2001 src = fetchurl {
2002 url = "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz";
2003 sha1 = "c814903e45623371a0477b40109aaafbeeaddbb4";
2004 };
2005 };
2006 "cssnano-3.10.0" = {
2007 name = "cssnano";
2008 packageName = "cssnano";
2009 version = "3.10.0";
2010 src = fetchurl {
2011 url = "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz";
2012 sha1 = "4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38";
2013 };
2014 };
2015 "csso-2.3.2" = {
2016 name = "csso";
2017 packageName = "csso";
2018 version = "2.3.2";
2019 src = fetchurl {
2020 url = "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz";
2021 sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85";
2022 };
2023 };
1205 "cycle-1.0.3" = {
2024 "cycle-1.0.3" = {
1206 name = "cycle";
2025 name = "cycle";
1207 packageName = "cycle";
2026 packageName = "cycle";
@@ -1265,6 +2084,15 b' let'
1265 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
2084 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
1266 };
2085 };
1267 };
2086 };
2087 "decamelize-1.2.0" = {
2088 name = "decamelize";
2089 packageName = "decamelize";
2090 version = "1.2.0";
2091 src = fetchurl {
2092 url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
2093 sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
2094 };
2095 };
1268 "decamelize-2.0.0" = {
2096 "decamelize-2.0.0" = {
1269 name = "decamelize";
2097 name = "decamelize";
1270 packageName = "decamelize";
2098 packageName = "decamelize";
@@ -1283,13 +2111,22 b' let'
1283 sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
2111 sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
1284 };
2112 };
1285 };
2113 };
1286 "deep-is-0.1.3" = {
2114 "deep-for-each-2.0.3" = {
1287 name = "deep-is";
2115 name = "deep-for-each";
1288 packageName = "deep-is";
2116 packageName = "deep-for-each";
1289 version = "0.1.3";
2117 version = "2.0.3";
1290 src = fetchurl {
2118 src = fetchurl {
1291 url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz";
2119 url = "https://registry.npmjs.org/deep-for-each/-/deep-for-each-2.0.3.tgz";
1292 sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
2120 sha512 = "Y9mu+rplGcNZ7veer+5rqcdI9w3aPb7/WyE/nYnsuPevaE2z5YuC2u7/Gz/hIKsa0zo8sE8gKoBimSNsO/sr+A==";
2121 };
2122 };
2123 "define-properties-1.1.3" = {
2124 name = "define-properties";
2125 packageName = "define-properties";
2126 version = "1.1.3";
2127 src = fetchurl {
2128 url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz";
2129 sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==";
1293 };
2130 };
1294 };
2131 };
1295 "define-property-0.2.5" = {
2132 "define-property-0.2.5" = {
@@ -1319,6 +2156,15 b' let'
1319 sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
2156 sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==";
1320 };
2157 };
1321 };
2158 };
2159 "defined-1.0.0" = {
2160 name = "defined";
2161 packageName = "defined";
2162 version = "1.0.0";
2163 src = fetchurl {
2164 url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz";
2165 sha1 = "c98d9bcef75674188e110969151199e39b1fa693";
2166 };
2167 };
1322 "delayed-stream-1.0.0" = {
2168 "delayed-stream-1.0.0" = {
1323 name = "delayed-stream";
2169 name = "delayed-stream";
1324 packageName = "delayed-stream";
2170 packageName = "delayed-stream";
@@ -1355,6 +2201,15 b' let'
1355 sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
2201 sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
1356 };
2202 };
1357 };
2203 };
2204 "detect-indent-4.0.0" = {
2205 name = "detect-indent";
2206 packageName = "detect-indent";
2207 version = "4.0.0";
2208 src = fetchurl {
2209 url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz";
2210 sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
2211 };
2212 };
1358 "diffie-hellman-5.0.3" = {
2213 "diffie-hellman-5.0.3" = {
1359 name = "diffie-hellman";
2214 name = "diffie-hellman";
1360 packageName = "diffie-hellman";
2215 packageName = "diffie-hellman";
@@ -1364,13 +2219,22 b' let'
1364 sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==";
2219 sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==";
1365 };
2220 };
1366 };
2221 };
1367 "doctrine-0.7.2" = {
2222 "dir-glob-2.0.0" = {
1368 name = "doctrine";
2223 name = "dir-glob";
1369 packageName = "doctrine";
2224 packageName = "dir-glob";
1370 version = "0.7.2";
2225 version = "2.0.0";
1371 src = fetchurl {
2226 src = fetchurl {
1372 url = "https://registry.npmjs.org/doctrine/-/doctrine-0.7.2.tgz";
2227 url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz";
1373 sha1 = "7cb860359ba3be90e040b26b729ce4bfa654c523";
2228 sha512 = "37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==";
2229 };
2230 };
2231 "dom-converter-0.2.0" = {
2232 name = "dom-converter";
2233 packageName = "dom-converter";
2234 version = "0.2.0";
2235 src = fetchurl {
2236 url = "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz";
2237 sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==";
1374 };
2238 };
1375 };
2239 };
1376 "dom-serializer-0.1.0" = {
2240 "dom-serializer-0.1.0" = {
@@ -1382,22 +2246,13 b' let'
1382 sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82";
2246 sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82";
1383 };
2247 };
1384 };
2248 };
1385 "dom5-1.1.0" = {
2249 "dom5-2.3.0" = {
1386 name = "dom5";
2250 name = "dom5";
1387 packageName = "dom5";
2251 packageName = "dom5";
1388 version = "1.1.0";
2252 version = "2.3.0";
1389 src = fetchurl {
2253 src = fetchurl {
1390 url = "https://registry.npmjs.org/dom5/-/dom5-1.1.0.tgz";
2254 url = "https://registry.npmjs.org/dom5/-/dom5-2.3.0.tgz";
1391 sha1 = "3a0c7700c083ab4c4d26938a78b0f0c6dcc37794";
2255 sha1 = "f8204975bd0dacbbe5b58a8a93ffc1fed0ffcd2a";
1392 };
1393 };
1394 "dom5-1.3.6" = {
1395 name = "dom5";
1396 packageName = "dom5";
1397 version = "1.3.6";
1398 src = fetchurl {
1399 url = "https://registry.npmjs.org/dom5/-/dom5-1.3.6.tgz";
1400 sha1 = "a7088a9fc5f3b08dc9f6eda4c7abaeb241945e0d";
1401 };
2256 };
1402 };
2257 };
1403 "domain-browser-1.2.0" = {
2258 "domain-browser-1.2.0" = {
@@ -1427,6 +2282,15 b' let'
1427 sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2";
2282 sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2";
1428 };
2283 };
1429 };
2284 };
2285 "domhandler-2.1.0" = {
2286 name = "domhandler";
2287 packageName = "domhandler";
2288 version = "2.1.0";
2289 src = fetchurl {
2290 url = "https://registry.npmjs.org/domhandler/-/domhandler-2.1.0.tgz";
2291 sha1 = "d2646f5e57f6c3bab11cf6cb05d3c0acf7412594";
2292 };
2293 };
1430 "domhandler-2.3.0" = {
2294 "domhandler-2.3.0" = {
1431 name = "domhandler";
2295 name = "domhandler";
1432 packageName = "domhandler";
2296 packageName = "domhandler";
@@ -1436,6 +2300,15 b' let'
1436 sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738";
2300 sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738";
1437 };
2301 };
1438 };
2302 };
2303 "domutils-1.1.6" = {
2304 name = "domutils";
2305 packageName = "domutils";
2306 version = "1.1.6";
2307 src = fetchurl {
2308 url = "https://registry.npmjs.org/domutils/-/domutils-1.1.6.tgz";
2309 sha1 = "bddc3de099b9a2efacc51c623f28f416ecc57485";
2310 };
2311 };
1439 "domutils-1.5.1" = {
2312 "domutils-1.5.1" = {
1440 name = "domutils";
2313 name = "domutils";
1441 packageName = "domutils";
2314 packageName = "domutils";
@@ -1463,6 +2336,15 b' let'
1463 sha1 = "3a83a904e54353287874c564b7549386849a98c9";
2336 sha1 = "3a83a904e54353287874c564b7549386849a98c9";
1464 };
2337 };
1465 };
2338 };
2339 "electron-to-chromium-1.3.82" = {
2340 name = "electron-to-chromium";
2341 packageName = "electron-to-chromium";
2342 version = "1.3.82";
2343 src = fetchurl {
2344 url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.82.tgz";
2345 sha512 = "NI4nB2IWGcU4JVT1AE8kBb/dFor4zjLHMLsOROPahppeHrR0FG5uslxMmkp/thO1MvPjM2xhlKoY29/I60s0ew==";
2346 };
2347 };
1466 "elliptic-6.4.1" = {
2348 "elliptic-6.4.1" = {
1467 name = "elliptic";
2349 name = "elliptic";
1468 packageName = "elliptic";
2350 packageName = "elliptic";
@@ -1490,6 +2372,15 b' let'
1490 sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==";
2372 sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==";
1491 };
2373 };
1492 };
2374 };
2375 "enhanced-resolve-3.4.1" = {
2376 name = "enhanced-resolve";
2377 packageName = "enhanced-resolve";
2378 version = "3.4.1";
2379 src = fetchurl {
2380 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz";
2381 sha1 = "0421e339fd71419b3da13d129b3979040230476e";
2382 };
2383 };
1493 "enhanced-resolve-4.1.0" = {
2384 "enhanced-resolve-4.1.0" = {
1494 name = "enhanced-resolve";
2385 name = "enhanced-resolve";
1495 packageName = "enhanced-resolve";
2386 packageName = "enhanced-resolve";
@@ -1526,13 +2417,22 b' let'
1526 sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
2417 sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
1527 };
2418 };
1528 };
2419 };
1529 "es6-promise-2.3.0" = {
2420 "es-abstract-1.12.0" = {
1530 name = "es6-promise";
2421 name = "es-abstract";
1531 packageName = "es6-promise";
2422 packageName = "es-abstract";
1532 version = "2.3.0";
2423 version = "1.12.0";
1533 src = fetchurl {
2424 src = fetchurl {
1534 url = "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz";
2425 url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz";
1535 sha1 = "96edb9f2fdb01995822b263dd8aadab6748181bc";
2426 sha512 = "C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==";
2427 };
2428 };
2429 "es-to-primitive-1.2.0" = {
2430 name = "es-to-primitive";
2431 packageName = "es-to-primitive";
2432 version = "1.2.0";
2433 src = fetchurl {
2434 url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz";
2435 sha512 = "qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==";
1536 };
2436 };
1537 };
2437 };
1538 "es6-promise-4.2.5" = {
2438 "es6-promise-4.2.5" = {
@@ -1544,6 +2444,15 b' let'
1544 sha512 = "n6wvpdE43VFtJq+lUDYDBFUwV8TZbuGXLV4D6wKafg13ldznKsyEvatubnmUe31zcvelSzOHF+XbaT+Bl9ObDg==";
2444 sha512 = "n6wvpdE43VFtJq+lUDYDBFUwV8TZbuGXLV4D6wKafg13ldznKsyEvatubnmUe31zcvelSzOHF+XbaT+Bl9ObDg==";
1545 };
2445 };
1546 };
2446 };
2447 "es6-templates-0.2.3" = {
2448 name = "es6-templates";
2449 packageName = "es6-templates";
2450 version = "0.2.3";
2451 src = fetchurl {
2452 url = "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz";
2453 sha1 = "5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4";
2454 };
2455 };
1547 "escape-string-regexp-1.0.5" = {
2456 "escape-string-regexp-1.0.5" = {
1548 name = "escape-string-regexp";
2457 name = "escape-string-regexp";
1549 packageName = "escape-string-regexp";
2458 packageName = "escape-string-regexp";
@@ -1553,15 +2462,6 b' let'
1553 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
2462 sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
1554 };
2463 };
1555 };
2464 };
1556 "escodegen-1.11.0" = {
1557 name = "escodegen";
1558 packageName = "escodegen";
1559 version = "1.11.0";
1560 src = fetchurl {
1561 url = "https://registry.npmjs.org/escodegen/-/escodegen-1.11.0.tgz";
1562 sha512 = "IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw==";
1563 };
1564 };
1565 "eslint-scope-4.0.0" = {
2465 "eslint-scope-4.0.0" = {
1566 name = "eslint-scope";
2466 name = "eslint-scope";
1567 packageName = "eslint-scope";
2467 packageName = "eslint-scope";
@@ -1589,6 +2489,15 b' let'
1589 sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
2489 sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
1590 };
2490 };
1591 };
2491 };
2492 "esprima-2.7.3" = {
2493 name = "esprima";
2494 packageName = "esprima";
2495 version = "2.7.3";
2496 src = fetchurl {
2497 url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz";
2498 sha1 = "96e3b70d5779f6ad49cd032673d1c312767ba581";
2499 };
2500 };
1592 "esprima-3.1.3" = {
2501 "esprima-3.1.3" = {
1593 name = "esprima";
2502 name = "esprima";
1594 packageName = "esprima";
2503 packageName = "esprima";
@@ -1607,15 +2516,6 b' let'
1607 sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==";
2516 sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==";
1608 };
2517 };
1609 };
2518 };
1610 "estraverse-3.1.0" = {
1611 name = "estraverse";
1612 packageName = "estraverse";
1613 version = "3.1.0";
1614 src = fetchurl {
1615 url = "https://registry.npmjs.org/estraverse/-/estraverse-3.1.0.tgz";
1616 sha1 = "15e28a446b8b82bc700ccc8b96c78af4da0d6cba";
1617 };
1618 };
1619 "estraverse-4.2.0" = {
2519 "estraverse-4.2.0" = {
1620 name = "estraverse";
2520 name = "estraverse";
1621 packageName = "estraverse";
2521 packageName = "estraverse";
@@ -1625,15 +2525,6 b' let'
1625 sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13";
2525 sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13";
1626 };
2526 };
1627 };
2527 };
1628 "esutils-1.1.6" = {
1629 name = "esutils";
1630 packageName = "esutils";
1631 version = "1.1.6";
1632 src = fetchurl {
1633 url = "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz";
1634 sha1 = "c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375";
1635 };
1636 };
1637 "esutils-2.0.2" = {
2528 "esutils-2.0.2" = {
1638 name = "esutils";
2529 name = "esutils";
1639 packageName = "esutils";
2530 packageName = "esutils";
@@ -1796,13 +2687,13 b' let'
1796 sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
2687 sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
1797 };
2688 };
1798 };
2689 };
1799 "fast-levenshtein-2.0.6" = {
2690 "fastparse-1.1.1" = {
1800 name = "fast-levenshtein";
2691 name = "fastparse";
1801 packageName = "fast-levenshtein";
2692 packageName = "fastparse";
1802 version = "2.0.6";
2693 version = "1.1.1";
1803 src = fetchurl {
2694 src = fetchurl {
1804 url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
2695 url = "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz";
1805 sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
2696 sha1 = "d1e2643b38a94d7583b479060e6c4affc94071f8";
1806 };
2697 };
1807 };
2698 };
1808 "favico.js-0.3.10" = {
2699 "favico.js-0.3.10" = {
@@ -1913,6 +2804,15 b' let'
1913 sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7";
2804 sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7";
1914 };
2805 };
1915 };
2806 };
2807 "flatten-1.0.2" = {
2808 name = "flatten";
2809 packageName = "flatten";
2810 version = "1.0.2";
2811 src = fetchurl {
2812 url = "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz";
2813 sha1 = "dae46a9d78fbe25292258cc1e780a41d95c03782";
2814 };
2815 };
1916 "flush-write-stream-1.0.3" = {
2816 "flush-write-stream-1.0.3" = {
1917 name = "flush-write-stream";
2817 name = "flush-write-stream";
1918 packageName = "flush-write-stream";
2818 packageName = "flush-write-stream";
@@ -2012,6 +2912,15 b' let'
2012 sha512 = "z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==";
2912 sha512 = "z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==";
2013 };
2913 };
2014 };
2914 };
2915 "function-bind-1.1.1" = {
2916 name = "function-bind";
2917 packageName = "function-bind";
2918 version = "1.1.1";
2919 src = fetchurl {
2920 url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
2921 sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
2922 };
2923 };
2015 "gaze-0.5.2" = {
2924 "gaze-0.5.2" = {
2016 name = "gaze";
2925 name = "gaze";
2017 packageName = "gaze";
2926 packageName = "gaze";
@@ -2129,6 +3038,24 b' let'
2129 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
3038 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
2130 };
3039 };
2131 };
3040 };
3041 "globals-9.18.0" = {
3042 name = "globals";
3043 packageName = "globals";
3044 version = "9.18.0";
3045 src = fetchurl {
3046 url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz";
3047 sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==";
3048 };
3049 };
3050 "globby-7.1.1" = {
3051 name = "globby";
3052 packageName = "globby";
3053 version = "7.1.1";
3054 src = fetchurl {
3055 url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz";
3056 sha1 = "fb2ccff9401f8600945dfada97440cca972b8680";
3057 };
3058 };
2132 "globule-0.1.0" = {
3059 "globule-0.1.0" = {
2133 name = "globule";
3060 name = "globule";
2134 packageName = "globule";
3061 packageName = "globule";
@@ -2264,13 +3191,13 b' let'
2264 sha1 = "93324884dbf7e37a9ff7c026dff451d94a9e554b";
3191 sha1 = "93324884dbf7e37a9ff7c026dff451d94a9e554b";
2265 };
3192 };
2266 };
3193 };
2267 "grunt-vulcanize-1.0.0" = {
3194 "grunt-webpack-3.1.3" = {
2268 name = "grunt-vulcanize";
3195 name = "grunt-webpack";
2269 packageName = "grunt-vulcanize";
3196 packageName = "grunt-webpack";
2270 version = "1.0.0";
3197 version = "3.1.3";
2271 src = fetchurl {
3198 src = fetchurl {
2272 url = "https://registry.npmjs.org/grunt-vulcanize/-/grunt-vulcanize-1.0.0.tgz";
3199 url = "https://registry.npmjs.org/grunt-webpack/-/grunt-webpack-3.1.3.tgz";
2273 sha1 = "f4d6cfef274f8216c06f6c290e7dbb3b9e9e3b0f";
3200 sha512 = "SaZ8K8lG4iTxs7ClZxOWCf3kxqS2y+Eel8SbaEGgBKwhAp6e45beIu+vhBZRLX3vonKML2kjemKsQ21REaqNFQ==";
2274 };
3201 };
2275 };
3202 };
2276 "har-schema-1.0.5" = {
3203 "har-schema-1.0.5" = {
@@ -2291,6 +3218,15 b' let'
2291 sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
3218 sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
2292 };
3219 };
2293 };
3220 };
3221 "has-1.0.3" = {
3222 name = "has";
3223 packageName = "has";
3224 version = "1.0.3";
3225 src = fetchurl {
3226 url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz";
3227 sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==";
3228 };
3229 };
2294 "has-ansi-0.1.0" = {
3230 "has-ansi-0.1.0" = {
2295 name = "has-ansi";
3231 name = "has-ansi";
2296 packageName = "has-ansi";
3232 packageName = "has-ansi";
@@ -2309,6 +3245,15 b' let'
2309 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
3245 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
2310 };
3246 };
2311 };
3247 };
3248 "has-flag-1.0.0" = {
3249 name = "has-flag";
3250 packageName = "has-flag";
3251 version = "1.0.0";
3252 src = fetchurl {
3253 url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz";
3254 sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa";
3255 };
3256 };
2312 "has-flag-3.0.0" = {
3257 "has-flag-3.0.0" = {
2313 name = "has-flag";
3258 name = "has-flag";
2314 packageName = "has-flag";
3259 packageName = "has-flag";
@@ -2318,6 +3263,15 b' let'
2318 sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
3263 sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd";
2319 };
3264 };
2320 };
3265 };
3266 "has-symbols-1.0.0" = {
3267 name = "has-symbols";
3268 packageName = "has-symbols";
3269 version = "1.0.0";
3270 src = fetchurl {
3271 url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz";
3272 sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44";
3273 };
3274 };
2321 "has-value-0.3.1" = {
3275 "has-value-0.3.1" = {
2322 name = "has-value";
3276 name = "has-value";
2323 packageName = "has-value";
3277 packageName = "has-value";
@@ -2390,6 +3344,15 b' let'
2390 sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
3344 sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
2391 };
3345 };
2392 };
3346 };
3347 "he-1.2.0" = {
3348 name = "he";
3349 packageName = "he";
3350 version = "1.2.0";
3351 src = fetchurl {
3352 url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz";
3353 sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==";
3354 };
3355 };
2393 "hmac-drbg-1.0.1" = {
3356 "hmac-drbg-1.0.1" = {
2394 name = "hmac-drbg";
3357 name = "hmac-drbg";
2395 packageName = "hmac-drbg";
3358 packageName = "hmac-drbg";
@@ -2408,6 +3371,15 b' let'
2408 sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
3371 sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
2409 };
3372 };
2410 };
3373 };
3374 "home-or-tmp-2.0.0" = {
3375 name = "home-or-tmp";
3376 packageName = "home-or-tmp";
3377 version = "2.0.0";
3378 src = fetchurl {
3379 url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
3380 sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
3381 };
3382 };
2411 "homedir-polyfill-1.0.1" = {
3383 "homedir-polyfill-1.0.1" = {
2412 name = "homedir-polyfill";
3384 name = "homedir-polyfill";
2413 packageName = "homedir-polyfill";
3385 packageName = "homedir-polyfill";
@@ -2426,6 +3398,60 b' let'
2426 sha1 = "b834f723cc4a242aa65963459df6d984c5d3d959";
3398 sha1 = "b834f723cc4a242aa65963459df6d984c5d3d959";
2427 };
3399 };
2428 };
3400 };
3401 "html-comment-regex-1.1.2" = {
3402 name = "html-comment-regex";
3403 packageName = "html-comment-regex";
3404 version = "1.1.2";
3405 src = fetchurl {
3406 url = "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz";
3407 sha512 = "P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==";
3408 };
3409 };
3410 "html-loader-0.4.5" = {
3411 name = "html-loader";
3412 packageName = "html-loader";
3413 version = "0.4.5";
3414 src = fetchurl {
3415 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.4.5.tgz";
3416 sha1 = "5fbcd87cd63a5c49a7fce2fe56f425e05729c68c";
3417 };
3418 };
3419 "html-loader-0.5.5" = {
3420 name = "html-loader";
3421 packageName = "html-loader";
3422 version = "0.5.5";
3423 src = fetchurl {
3424 url = "https://registry.npmjs.org/html-loader/-/html-loader-0.5.5.tgz";
3425 sha512 = "7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==";
3426 };
3427 };
3428 "html-minifier-3.5.21" = {
3429 name = "html-minifier";
3430 packageName = "html-minifier";
3431 version = "3.5.21";
3432 src = fetchurl {
3433 url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz";
3434 sha512 = "LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==";
3435 };
3436 };
3437 "html-webpack-plugin-3.2.0" = {
3438 name = "html-webpack-plugin";
3439 packageName = "html-webpack-plugin";
3440 version = "3.2.0";
3441 src = fetchurl {
3442 url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz";
3443 sha1 = "b01abbd723acaaa7b37b6af4492ebda03d9dd37b";
3444 };
3445 };
3446 "htmlparser2-3.3.0" = {
3447 name = "htmlparser2";
3448 packageName = "htmlparser2";
3449 version = "3.3.0";
3450 src = fetchurl {
3451 url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.3.0.tgz";
3452 sha1 = "cc70d05a59f6542e43f0e685c982e14c924a9efe";
3453 };
3454 };
2429 "htmlparser2-3.8.3" = {
3455 "htmlparser2-3.8.3" = {
2430 name = "htmlparser2";
3456 name = "htmlparser2";
2431 packageName = "htmlparser2";
3457 packageName = "htmlparser2";
@@ -2453,15 +3479,6 b' let'
2453 sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
3479 sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
2454 };
3480 };
2455 };
3481 };
2456 "hydrolysis-1.25.0" = {
2457 name = "hydrolysis";
2458 packageName = "hydrolysis";
2459 version = "1.25.0";
2460 src = fetchurl {
2461 url = "https://registry.npmjs.org/hydrolysis/-/hydrolysis-1.25.0.tgz";
2462 sha1 = "a4fb14a37a1e03b0db52d8aaa57c682272a14d84";
2463 };
2464 };
2465 "iconv-lite-0.2.11" = {
3482 "iconv-lite-0.2.11" = {
2466 name = "iconv-lite";
3483 name = "iconv-lite";
2467 packageName = "iconv-lite";
3484 packageName = "iconv-lite";
@@ -2471,6 +3488,24 b' let'
2471 sha1 = "1ce60a3a57864a292d1321ff4609ca4bb965adc8";
3488 sha1 = "1ce60a3a57864a292d1321ff4609ca4bb965adc8";
2472 };
3489 };
2473 };
3490 };
3491 "icss-replace-symbols-1.1.0" = {
3492 name = "icss-replace-symbols";
3493 packageName = "icss-replace-symbols";
3494 version = "1.1.0";
3495 src = fetchurl {
3496 url = "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz";
3497 sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded";
3498 };
3499 };
3500 "icss-utils-2.1.0" = {
3501 name = "icss-utils";
3502 packageName = "icss-utils";
3503 version = "2.1.0";
3504 src = fetchurl {
3505 url = "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz";
3506 sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962";
3507 };
3508 };
2474 "ieee754-1.1.12" = {
3509 "ieee754-1.1.12" = {
2475 name = "ieee754";
3510 name = "ieee754";
2476 packageName = "ieee754";
3511 packageName = "ieee754";
@@ -2489,6 +3524,15 b' let'
2489 sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
3524 sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
2490 };
3525 };
2491 };
3526 };
3527 "ignore-3.3.10" = {
3528 name = "ignore";
3529 packageName = "ignore";
3530 version = "3.3.10";
3531 src = fetchurl {
3532 url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz";
3533 sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==";
3534 };
3535 };
2492 "image-size-0.5.5" = {
3536 "image-size-0.5.5" = {
2493 name = "image-size";
3537 name = "image-size";
2494 packageName = "image-size";
3538 packageName = "image-size";
@@ -2507,6 +3551,15 b' let'
2507 sha512 = "b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==";
3551 sha512 = "b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==";
2508 };
3552 };
2509 };
3553 };
3554 "imports-loader-0.7.1" = {
3555 name = "imports-loader";
3556 packageName = "imports-loader";
3557 version = "0.7.1";
3558 src = fetchurl {
3559 url = "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz";
3560 sha1 = "f204b5f34702a32c1db7d48d89d5e867a0441253";
3561 };
3562 };
2510 "imurmurhash-0.1.4" = {
3563 "imurmurhash-0.1.4" = {
2511 name = "imurmurhash";
3564 name = "imurmurhash";
2512 packageName = "imurmurhash";
3565 packageName = "imurmurhash";
@@ -2516,6 +3569,15 b' let'
2516 sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
3569 sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
2517 };
3570 };
2518 };
3571 };
3572 "indexes-of-1.0.1" = {
3573 name = "indexes-of";
3574 packageName = "indexes-of";
3575 version = "1.0.1";
3576 src = fetchurl {
3577 url = "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz";
3578 sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607";
3579 };
3580 };
2519 "indexof-0.0.1" = {
3581 "indexof-0.0.1" = {
2520 name = "indexof";
3582 name = "indexof";
2521 packageName = "indexof";
3583 packageName = "indexof";
@@ -2579,6 +3641,15 b' let'
2579 sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
3641 sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
2580 };
3642 };
2581 };
3643 };
3644 "invariant-2.2.4" = {
3645 name = "invariant";
3646 packageName = "invariant";
3647 version = "2.2.4";
3648 src = fetchurl {
3649 url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz";
3650 sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==";
3651 };
3652 };
2582 "invert-kv-2.0.0" = {
3653 "invert-kv-2.0.0" = {
2583 name = "invert-kv";
3654 name = "invert-kv";
2584 packageName = "invert-kv";
3655 packageName = "invert-kv";
@@ -2597,6 +3668,15 b' let'
2597 sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
3668 sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==";
2598 };
3669 };
2599 };
3670 };
3671 "is-absolute-url-2.1.0" = {
3672 name = "is-absolute-url";
3673 packageName = "is-absolute-url";
3674 version = "2.1.0";
3675 src = fetchurl {
3676 url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz";
3677 sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6";
3678 };
3679 };
2600 "is-accessor-descriptor-0.1.6" = {
3680 "is-accessor-descriptor-0.1.6" = {
2601 name = "is-accessor-descriptor";
3681 name = "is-accessor-descriptor";
2602 packageName = "is-accessor-descriptor";
3682 packageName = "is-accessor-descriptor";
@@ -2633,6 +3713,15 b' let'
2633 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
3713 sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
2634 };
3714 };
2635 };
3715 };
3716 "is-callable-1.1.4" = {
3717 name = "is-callable";
3718 packageName = "is-callable";
3719 version = "1.1.4";
3720 src = fetchurl {
3721 url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz";
3722 sha512 = "r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==";
3723 };
3724 };
2636 "is-data-descriptor-0.1.4" = {
3725 "is-data-descriptor-0.1.4" = {
2637 name = "is-data-descriptor";
3726 name = "is-data-descriptor";
2638 packageName = "is-data-descriptor";
3727 packageName = "is-data-descriptor";
@@ -2651,6 +3740,15 b' let'
2651 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
3740 sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
2652 };
3741 };
2653 };
3742 };
3743 "is-date-object-1.0.1" = {
3744 name = "is-date-object";
3745 packageName = "is-date-object";
3746 version = "1.0.1";
3747 src = fetchurl {
3748 url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz";
3749 sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16";
3750 };
3751 };
2654 "is-descriptor-0.1.6" = {
3752 "is-descriptor-0.1.6" = {
2655 name = "is-descriptor";
3753 name = "is-descriptor";
2656 packageName = "is-descriptor";
3754 packageName = "is-descriptor";
@@ -2696,6 +3794,15 b' let'
2696 sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
3794 sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
2697 };
3795 };
2698 };
3796 };
3797 "is-finite-1.0.2" = {
3798 name = "is-finite";
3799 packageName = "is-finite";
3800 version = "1.0.2";
3801 src = fetchurl {
3802 url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz";
3803 sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
3804 };
3805 };
2699 "is-fullwidth-code-point-1.0.0" = {
3806 "is-fullwidth-code-point-1.0.0" = {
2700 name = "is-fullwidth-code-point";
3807 name = "is-fullwidth-code-point";
2701 packageName = "is-fullwidth-code-point";
3808 packageName = "is-fullwidth-code-point";
@@ -2741,6 +3848,15 b' let'
2741 sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
3848 sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
2742 };
3849 };
2743 };
3850 };
3851 "is-plain-obj-1.1.0" = {
3852 name = "is-plain-obj";
3853 packageName = "is-plain-obj";
3854 version = "1.1.0";
3855 src = fetchurl {
3856 url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
3857 sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
3858 };
3859 };
2744 "is-plain-object-2.0.4" = {
3860 "is-plain-object-2.0.4" = {
2745 name = "is-plain-object";
3861 name = "is-plain-object";
2746 packageName = "is-plain-object";
3862 packageName = "is-plain-object";
@@ -2750,6 +3866,15 b' let'
2750 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
3866 sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
2751 };
3867 };
2752 };
3868 };
3869 "is-regex-1.0.4" = {
3870 name = "is-regex";
3871 packageName = "is-regex";
3872 version = "1.0.4";
3873 src = fetchurl {
3874 url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz";
3875 sha1 = "5517489b547091b0930e095654ced25ee97e9491";
3876 };
3877 };
2753 "is-relative-1.0.0" = {
3878 "is-relative-1.0.0" = {
2754 name = "is-relative";
3879 name = "is-relative";
2755 packageName = "is-relative";
3880 packageName = "is-relative";
@@ -2768,6 +3893,24 b' let'
2768 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
3893 sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
2769 };
3894 };
2770 };
3895 };
3896 "is-svg-2.1.0" = {
3897 name = "is-svg";
3898 packageName = "is-svg";
3899 version = "2.1.0";
3900 src = fetchurl {
3901 url = "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz";
3902 sha1 = "cf61090da0d9efbcab8722deba6f032208dbb0e9";
3903 };
3904 };
3905 "is-symbol-1.0.2" = {
3906 name = "is-symbol";
3907 packageName = "is-symbol";
3908 version = "1.0.2";
3909 src = fetchurl {
3910 url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz";
3911 sha512 = "HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==";
3912 };
3913 };
2771 "is-typedarray-1.0.0" = {
3914 "is-typedarray-1.0.0" = {
2772 name = "is-typedarray";
3915 name = "is-typedarray";
2773 packageName = "is-typedarray";
3916 packageName = "is-typedarray";
@@ -2858,6 +4001,24 b' let'
2858 sha1 = "dd8b74278b27102d29df63eae28308a8cfa1b583";
4001 sha1 = "dd8b74278b27102d29df63eae28308a8cfa1b583";
2859 };
4002 };
2860 };
4003 };
4004 "js-base64-2.4.9" = {
4005 name = "js-base64";
4006 packageName = "js-base64";
4007 version = "2.4.9";
4008 src = fetchurl {
4009 url = "https://registry.npmjs.org/js-base64/-/js-base64-2.4.9.tgz";
4010 sha512 = "xcinL3AuDJk7VSzsHgb9DvvIXayBbadtMZ4HFPx8rUszbW1MuNMlwYVC4zzCZ6e1sqZpnNS5ZFYOhXqA39T7LQ==";
4011 };
4012 };
4013 "js-tokens-3.0.2" = {
4014 name = "js-tokens";
4015 packageName = "js-tokens";
4016 version = "3.0.2";
4017 src = fetchurl {
4018 url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz";
4019 sha1 = "9866df395102130e38f7f996bceb65443209c25b";
4020 };
4021 };
2861 "js-yaml-2.0.5" = {
4022 "js-yaml-2.0.5" = {
2862 name = "js-yaml";
4023 name = "js-yaml";
2863 packageName = "js-yaml";
4024 packageName = "js-yaml";
@@ -2867,6 +4028,15 b' let'
2867 sha1 = "a25ae6509999e97df278c6719da11bd0687743a8";
4028 sha1 = "a25ae6509999e97df278c6719da11bd0687743a8";
2868 };
4029 };
2869 };
4030 };
4031 "js-yaml-3.7.0" = {
4032 name = "js-yaml";
4033 packageName = "js-yaml";
4034 version = "3.7.0";
4035 src = fetchurl {
4036 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz";
4037 sha1 = "5c967ddd837a9bfdca5f2de84253abe8a1c03b80";
4038 };
4039 };
2870 "jsbn-0.1.1" = {
4040 "jsbn-0.1.1" = {
2871 name = "jsbn";
4041 name = "jsbn";
2872 packageName = "jsbn";
4042 packageName = "jsbn";
@@ -2876,6 +4046,24 b' let'
2876 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
4046 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
2877 };
4047 };
2878 };
4048 };
4049 "jsesc-0.5.0" = {
4050 name = "jsesc";
4051 packageName = "jsesc";
4052 version = "0.5.0";
4053 src = fetchurl {
4054 url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz";
4055 sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d";
4056 };
4057 };
4058 "jsesc-1.3.0" = {
4059 name = "jsesc";
4060 packageName = "jsesc";
4061 version = "1.3.0";
4062 src = fetchurl {
4063 url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz";
4064 sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
4065 };
4066 };
2879 "jshint-2.9.6" = {
4067 "jshint-2.9.6" = {
2880 name = "jshint";
4068 name = "jshint";
2881 packageName = "jshint";
4069 packageName = "jshint";
@@ -3020,6 +4208,15 b' let'
3020 sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439";
4208 sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439";
3021 };
4209 };
3022 };
4210 };
4211 "lazy-cache-1.0.4" = {
4212 name = "lazy-cache";
4213 packageName = "lazy-cache";
4214 version = "1.0.4";
4215 src = fetchurl {
4216 url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
4217 sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
4218 };
4219 };
3023 "lcid-2.0.0" = {
4220 "lcid-2.0.0" = {
3024 name = "lcid";
4221 name = "lcid";
3025 packageName = "lcid";
4222 packageName = "lcid";
@@ -3038,15 +4235,6 b' let'
3038 sha512 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==";
4235 sha512 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ==";
3039 };
4236 };
3040 };
4237 };
3041 "levn-0.3.0" = {
3042 name = "levn";
3043 packageName = "levn";
3044 version = "0.3.0";
3045 src = fetchurl {
3046 url = "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz";
3047 sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee";
3048 };
3049 };
3050 "liftoff-2.5.0" = {
4238 "liftoff-2.5.0" = {
3051 name = "liftoff";
4239 name = "liftoff";
3052 packageName = "liftoff";
4240 packageName = "liftoff";
@@ -3065,6 +4253,15 b' let'
3065 sha512 = "By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw==";
4253 sha512 = "By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw==";
3066 };
4254 };
3067 };
4255 };
4256 "loader-utils-0.2.17" = {
4257 name = "loader-utils";
4258 packageName = "loader-utils";
4259 version = "0.2.17";
4260 src = fetchurl {
4261 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz";
4262 sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348";
4263 };
4264 };
3068 "loader-utils-1.1.0" = {
4265 "loader-utils-1.1.0" = {
3069 name = "loader-utils";
4266 name = "loader-utils";
3070 packageName = "loader-utils";
4267 packageName = "loader-utils";
@@ -3128,6 +4325,15 b' let'
3128 sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==";
4325 sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==";
3129 };
4326 };
3130 };
4327 };
4328 "lodash.camelcase-4.3.0" = {
4329 name = "lodash.camelcase";
4330 packageName = "lodash.camelcase";
4331 version = "4.3.0";
4332 src = fetchurl {
4333 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz";
4334 sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6";
4335 };
4336 };
3131 "lodash.debounce-4.0.8" = {
4337 "lodash.debounce-4.0.8" = {
3132 name = "lodash.debounce";
4338 name = "lodash.debounce";
3133 packageName = "lodash.debounce";
4339 packageName = "lodash.debounce";
@@ -3137,6 +4343,60 b' let'
3137 sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af";
4343 sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af";
3138 };
4344 };
3139 };
4345 };
4346 "lodash.isplainobject-4.0.6" = {
4347 name = "lodash.isplainobject";
4348 packageName = "lodash.isplainobject";
4349 version = "4.0.6";
4350 src = fetchurl {
4351 url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz";
4352 sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb";
4353 };
4354 };
4355 "lodash.memoize-4.1.2" = {
4356 name = "lodash.memoize";
4357 packageName = "lodash.memoize";
4358 version = "4.1.2";
4359 src = fetchurl {
4360 url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz";
4361 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe";
4362 };
4363 };
4364 "lodash.uniq-4.5.0" = {
4365 name = "lodash.uniq";
4366 packageName = "lodash.uniq";
4367 version = "4.5.0";
4368 src = fetchurl {
4369 url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
4370 sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
4371 };
4372 };
4373 "longest-1.0.1" = {
4374 name = "longest";
4375 packageName = "longest";
4376 version = "1.0.1";
4377 src = fetchurl {
4378 url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
4379 sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
4380 };
4381 };
4382 "loose-envify-1.4.0" = {
4383 name = "loose-envify";
4384 packageName = "loose-envify";
4385 version = "1.4.0";
4386 src = fetchurl {
4387 url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz";
4388 sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==";
4389 };
4390 };
4391 "lower-case-1.1.4" = {
4392 name = "lower-case";
4393 packageName = "lower-case";
4394 version = "1.1.4";
4395 src = fetchurl {
4396 url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz";
4397 sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac";
4398 };
4399 };
3140 "lru-cache-2.7.3" = {
4400 "lru-cache-2.7.3" = {
3141 name = "lru-cache";
4401 name = "lru-cache";
3142 packageName = "lru-cache";
4402 packageName = "lru-cache";
@@ -3200,6 +4460,15 b' let'
3200 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
4460 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
3201 };
4461 };
3202 };
4462 };
4463 "math-expression-evaluator-1.2.17" = {
4464 name = "math-expression-evaluator";
4465 packageName = "math-expression-evaluator";
4466 version = "1.2.17";
4467 src = fetchurl {
4468 url = "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz";
4469 sha1 = "de819fdbcd84dccd8fae59c6aeb79615b9d266ac";
4470 };
4471 };
3203 "md5.js-1.3.5" = {
4472 "md5.js-1.3.5" = {
3204 name = "md5.js";
4473 name = "md5.js";
3205 packageName = "md5.js";
4474 packageName = "md5.js";
@@ -3434,6 +4703,15 b' let'
3434 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
4703 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
3435 };
4704 };
3436 };
4705 };
4706 "no-case-2.3.2" = {
4707 name = "no-case";
4708 packageName = "no-case";
4709 version = "2.3.2";
4710 src = fetchurl {
4711 url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz";
4712 sha512 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==";
4713 };
4714 };
3437 "node-libs-browser-2.1.0" = {
4715 "node-libs-browser-2.1.0" = {
3438 name = "node-libs-browser";
4716 name = "node-libs-browser";
3439 packageName = "node-libs-browser";
4717 packageName = "node-libs-browser";
@@ -3461,15 +4739,6 b' let'
3461 sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
4739 sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
3462 };
4740 };
3463 };
4741 };
3464 "nopt-3.0.6" = {
3465 name = "nopt";
3466 packageName = "nopt";
3467 version = "3.0.6";
3468 src = fetchurl {
3469 url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
3470 sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
3471 };
3472 };
3473 "nopt-4.0.1" = {
4742 "nopt-4.0.1" = {
3474 name = "nopt";
4743 name = "nopt";
3475 packageName = "nopt";
4744 packageName = "nopt";
@@ -3497,6 +4766,24 b' let'
3497 sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
4766 sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
3498 };
4767 };
3499 };
4768 };
4769 "normalize-range-0.1.2" = {
4770 name = "normalize-range";
4771 packageName = "normalize-range";
4772 version = "0.1.2";
4773 src = fetchurl {
4774 url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz";
4775 sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942";
4776 };
4777 };
4778 "normalize-url-1.9.1" = {
4779 name = "normalize-url";
4780 packageName = "normalize-url";
4781 version = "1.9.1";
4782 src = fetchurl {
4783 url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz";
4784 sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c";
4785 };
4786 };
3500 "npm-run-path-2.0.2" = {
4787 "npm-run-path-2.0.2" = {
3501 name = "npm-run-path";
4788 name = "npm-run-path";
3502 packageName = "npm-run-path";
4789 packageName = "npm-run-path";
@@ -3506,6 +4793,24 b' let'
3506 sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
4793 sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
3507 };
4794 };
3508 };
4795 };
4796 "nth-check-1.0.2" = {
4797 name = "nth-check";
4798 packageName = "nth-check";
4799 version = "1.0.2";
4800 src = fetchurl {
4801 url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz";
4802 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==";
4803 };
4804 };
4805 "num2fraction-1.2.2" = {
4806 name = "num2fraction";
4807 packageName = "num2fraction";
4808 version = "1.2.2";
4809 src = fetchurl {
4810 url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz";
4811 sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede";
4812 };
4813 };
3509 "number-is-nan-1.0.1" = {
4814 "number-is-nan-1.0.1" = {
3510 name = "number-is-nan";
4815 name = "number-is-nan";
3511 packageName = "number-is-nan";
4816 packageName = "number-is-nan";
@@ -3524,6 +4829,15 b' let'
3524 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
4829 sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
3525 };
4830 };
3526 };
4831 };
4832 "object-assign-4.1.1" = {
4833 name = "object-assign";
4834 packageName = "object-assign";
4835 version = "4.1.1";
4836 src = fetchurl {
4837 url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
4838 sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
4839 };
4840 };
3527 "object-copy-0.1.0" = {
4841 "object-copy-0.1.0" = {
3528 name = "object-copy";
4842 name = "object-copy";
3529 packageName = "object-copy";
4843 packageName = "object-copy";
@@ -3533,6 +4847,15 b' let'
3533 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
4847 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
3534 };
4848 };
3535 };
4849 };
4850 "object-keys-1.0.12" = {
4851 name = "object-keys";
4852 packageName = "object-keys";
4853 version = "1.0.12";
4854 src = fetchurl {
4855 url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz";
4856 sha512 = "FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==";
4857 };
4858 };
3536 "object-visit-1.0.1" = {
4859 "object-visit-1.0.1" = {
3537 name = "object-visit";
4860 name = "object-visit";
3538 packageName = "object-visit";
4861 packageName = "object-visit";
@@ -3551,6 +4874,15 b' let'
3551 sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
4874 sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
3552 };
4875 };
3553 };
4876 };
4877 "object.getownpropertydescriptors-2.0.3" = {
4878 name = "object.getownpropertydescriptors";
4879 packageName = "object.getownpropertydescriptors";
4880 version = "2.0.3";
4881 src = fetchurl {
4882 url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz";
4883 sha1 = "8758c846f5b407adab0f236e0986f14b051caa16";
4884 };
4885 };
3554 "object.map-1.0.1" = {
4886 "object.map-1.0.1" = {
3555 name = "object.map";
4887 name = "object.map";
3556 packageName = "object.map";
4888 packageName = "object.map";
@@ -3578,15 +4910,6 b' let'
3578 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
4910 sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
3579 };
4911 };
3580 };
4912 };
3581 "optionator-0.8.2" = {
3582 name = "optionator";
3583 packageName = "optionator";
3584 version = "0.8.2";
3585 src = fetchurl {
3586 url = "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz";
3587 sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64";
3588 };
3589 };
3590 "os-browserify-0.3.0" = {
4913 "os-browserify-0.3.0" = {
3591 name = "os-browserify";
4914 name = "os-browserify";
3592 packageName = "os-browserify";
4915 packageName = "os-browserify";
@@ -3731,6 +5054,15 b' let'
3731 sha1 = "d410f065b05da23081fcd10f28854c29bda33b06";
5054 sha1 = "d410f065b05da23081fcd10f28854c29bda33b06";
3732 };
5055 };
3733 };
5056 };
5057 "param-case-2.1.1" = {
5058 name = "param-case";
5059 packageName = "param-case";
5060 version = "2.1.1";
5061 src = fetchurl {
5062 url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz";
5063 sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247";
5064 };
5065 };
3734 "parse-asn1-5.1.1" = {
5066 "parse-asn1-5.1.1" = {
3735 name = "parse-asn1";
5067 name = "parse-asn1";
3736 packageName = "parse-asn1";
5068 packageName = "parse-asn1";
@@ -3758,13 +5090,31 b' let'
3758 sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
5090 sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
3759 };
5091 };
3760 };
5092 };
3761 "parse5-1.5.1" = {
5093 "parse5-2.2.3" = {
5094 name = "parse5";
5095 packageName = "parse5";
5096 version = "2.2.3";
5097 src = fetchurl {
5098 url = "https://registry.npmjs.org/parse5/-/parse5-2.2.3.tgz";
5099 sha1 = "0c4fc41c1000c5e6b93d48b03f8083837834e9f6";
5100 };
5101 };
5102 "parse5-3.0.3" = {
3762 name = "parse5";
5103 name = "parse5";
3763 packageName = "parse5";
5104 packageName = "parse5";
3764 version = "1.5.1";
5105 version = "3.0.3";
3765 src = fetchurl {
5106 src = fetchurl {
3766 url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz";
5107 url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz";
3767 sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94";
5108 sha512 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==";
5109 };
5110 };
5111 "parse5-utils-2.0.0" = {
5112 name = "parse5-utils";
5113 packageName = "parse5-utils";
5114 version = "2.0.0";
5115 src = fetchurl {
5116 url = "https://registry.npmjs.org/parse5-utils/-/parse5-utils-2.0.0.tgz";
5117 sha1 = "c926c1764e2431a450a5941f302db9beaec9d78a";
3768 };
5118 };
3769 };
5119 };
3770 "pascalcase-0.1.1" = {
5120 "pascalcase-0.1.1" = {
@@ -3830,15 +5180,6 b' let'
3830 sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
5180 sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
3831 };
5181 };
3832 };
5182 };
3833 "path-posix-1.0.0" = {
3834 name = "path-posix";
3835 packageName = "path-posix";
3836 version = "1.0.0";
3837 src = fetchurl {
3838 url = "https://registry.npmjs.org/path-posix/-/path-posix-1.0.0.tgz";
3839 sha1 = "06b26113f56beab042545a23bfa88003ccac260f";
3840 };
3841 };
3842 "path-root-0.1.1" = {
5183 "path-root-0.1.1" = {
3843 name = "path-root";
5184 name = "path-root";
3844 packageName = "path-root";
5185 packageName = "path-root";
@@ -3857,6 +5198,15 b' let'
3857 sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
5198 sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
3858 };
5199 };
3859 };
5200 };
5201 "path-type-3.0.0" = {
5202 name = "path-type";
5203 packageName = "path-type";
5204 version = "3.0.0";
5205 src = fetchurl {
5206 url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
5207 sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==";
5208 };
5209 };
3860 "pbkdf2-3.0.17" = {
5210 "pbkdf2-3.0.17" = {
3861 name = "pbkdf2";
5211 name = "pbkdf2";
3862 packageName = "pbkdf2";
5212 packageName = "pbkdf2";
@@ -3947,6 +5297,15 b' let'
3947 sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==";
5297 sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==";
3948 };
5298 };
3949 };
5299 };
5300 "polymer-webpack-loader-2.0.3" = {
5301 name = "polymer-webpack-loader";
5302 packageName = "polymer-webpack-loader";
5303 version = "2.0.3";
5304 src = fetchurl {
5305 url = "https://registry.npmjs.org/polymer-webpack-loader/-/polymer-webpack-loader-2.0.3.tgz";
5306 sha512 = "3SR+/qVAGeVKltvsSMA+euGdLwj8ZZJnwd5NvXRvbdQ7yO57sdcTpRw3d34pTc9YTZxncW/kozuI/9bHjr/rdg==";
5307 };
5308 };
3950 "posix-character-classes-0.1.1" = {
5309 "posix-character-classes-0.1.1" = {
3951 name = "posix-character-classes";
5310 name = "posix-character-classes";
3952 packageName = "posix-character-classes";
5311 packageName = "posix-character-classes";
@@ -3956,13 +5315,337 b' let'
3956 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
5315 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
3957 };
5316 };
3958 };
5317 };
3959 "prelude-ls-1.1.2" = {
5318 "postcss-5.2.18" = {
3960 name = "prelude-ls";
5319 name = "postcss";
3961 packageName = "prelude-ls";
5320 packageName = "postcss";
3962 version = "1.1.2";
5321 version = "5.2.18";
3963 src = fetchurl {
5322 src = fetchurl {
3964 url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz";
5323 url = "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz";
3965 sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54";
5324 sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==";
5325 };
5326 };
5327 "postcss-6.0.23" = {
5328 name = "postcss";
5329 packageName = "postcss";
5330 version = "6.0.23";
5331 src = fetchurl {
5332 url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz";
5333 sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==";
5334 };
5335 };
5336 "postcss-calc-5.3.1" = {
5337 name = "postcss-calc";
5338 packageName = "postcss-calc";
5339 version = "5.3.1";
5340 src = fetchurl {
5341 url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz";
5342 sha1 = "77bae7ca928ad85716e2fda42f261bf7c1d65b5e";
5343 };
5344 };
5345 "postcss-colormin-2.2.2" = {
5346 name = "postcss-colormin";
5347 packageName = "postcss-colormin";
5348 version = "2.2.2";
5349 src = fetchurl {
5350 url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz";
5351 sha1 = "6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b";
5352 };
5353 };
5354 "postcss-convert-values-2.6.1" = {
5355 name = "postcss-convert-values";
5356 packageName = "postcss-convert-values";
5357 version = "2.6.1";
5358 src = fetchurl {
5359 url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz";
5360 sha1 = "bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d";
5361 };
5362 };
5363 "postcss-discard-comments-2.0.4" = {
5364 name = "postcss-discard-comments";
5365 packageName = "postcss-discard-comments";
5366 version = "2.0.4";
5367 src = fetchurl {
5368 url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz";
5369 sha1 = "befe89fafd5b3dace5ccce51b76b81514be00e3d";
5370 };
5371 };
5372 "postcss-discard-duplicates-2.1.0" = {
5373 name = "postcss-discard-duplicates";
5374 packageName = "postcss-discard-duplicates";
5375 version = "2.1.0";
5376 src = fetchurl {
5377 url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz";
5378 sha1 = "b9abf27b88ac188158a5eb12abcae20263b91932";
5379 };
5380 };
5381 "postcss-discard-empty-2.1.0" = {
5382 name = "postcss-discard-empty";
5383 packageName = "postcss-discard-empty";
5384 version = "2.1.0";
5385 src = fetchurl {
5386 url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz";
5387 sha1 = "d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5";
5388 };
5389 };
5390 "postcss-discard-overridden-0.1.1" = {
5391 name = "postcss-discard-overridden";
5392 packageName = "postcss-discard-overridden";
5393 version = "0.1.1";
5394 src = fetchurl {
5395 url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz";
5396 sha1 = "8b1eaf554f686fb288cd874c55667b0aa3668d58";
5397 };
5398 };
5399 "postcss-discard-unused-2.2.3" = {
5400 name = "postcss-discard-unused";
5401 packageName = "postcss-discard-unused";
5402 version = "2.2.3";
5403 src = fetchurl {
5404 url = "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz";
5405 sha1 = "bce30b2cc591ffc634322b5fb3464b6d934f4433";
5406 };
5407 };
5408 "postcss-filter-plugins-2.0.3" = {
5409 name = "postcss-filter-plugins";
5410 packageName = "postcss-filter-plugins";
5411 version = "2.0.3";
5412 src = fetchurl {
5413 url = "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz";
5414 sha512 = "T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==";
5415 };
5416 };
5417 "postcss-merge-idents-2.1.7" = {
5418 name = "postcss-merge-idents";
5419 packageName = "postcss-merge-idents";
5420 version = "2.1.7";
5421 src = fetchurl {
5422 url = "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz";
5423 sha1 = "4c5530313c08e1d5b3bbf3d2bbc747e278eea270";
5424 };
5425 };
5426 "postcss-merge-longhand-2.0.2" = {
5427 name = "postcss-merge-longhand";
5428 packageName = "postcss-merge-longhand";
5429 version = "2.0.2";
5430 src = fetchurl {
5431 url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz";
5432 sha1 = "23d90cd127b0a77994915332739034a1a4f3d658";
5433 };
5434 };
5435 "postcss-merge-rules-2.1.2" = {
5436 name = "postcss-merge-rules";
5437 packageName = "postcss-merge-rules";
5438 version = "2.1.2";
5439 src = fetchurl {
5440 url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz";
5441 sha1 = "d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721";
5442 };
5443 };
5444 "postcss-message-helpers-2.0.0" = {
5445 name = "postcss-message-helpers";
5446 packageName = "postcss-message-helpers";
5447 version = "2.0.0";
5448 src = fetchurl {
5449 url = "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz";
5450 sha1 = "a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e";
5451 };
5452 };
5453 "postcss-minify-font-values-1.0.5" = {
5454 name = "postcss-minify-font-values";
5455 packageName = "postcss-minify-font-values";
5456 version = "1.0.5";
5457 src = fetchurl {
5458 url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz";
5459 sha1 = "4b58edb56641eba7c8474ab3526cafd7bbdecb69";
5460 };
5461 };
5462 "postcss-minify-gradients-1.0.5" = {
5463 name = "postcss-minify-gradients";
5464 packageName = "postcss-minify-gradients";
5465 version = "1.0.5";
5466 src = fetchurl {
5467 url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz";
5468 sha1 = "5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1";
5469 };
5470 };
5471 "postcss-minify-params-1.2.2" = {
5472 name = "postcss-minify-params";
5473 packageName = "postcss-minify-params";
5474 version = "1.2.2";
5475 src = fetchurl {
5476 url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz";
5477 sha1 = "ad2ce071373b943b3d930a3fa59a358c28d6f1f3";
5478 };
5479 };
5480 "postcss-minify-selectors-2.1.1" = {
5481 name = "postcss-minify-selectors";
5482 packageName = "postcss-minify-selectors";
5483 version = "2.1.1";
5484 src = fetchurl {
5485 url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz";
5486 sha1 = "b2c6a98c0072cf91b932d1a496508114311735bf";
5487 };
5488 };
5489 "postcss-modules-extract-imports-1.2.0" = {
5490 name = "postcss-modules-extract-imports";
5491 packageName = "postcss-modules-extract-imports";
5492 version = "1.2.0";
5493 src = fetchurl {
5494 url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz";
5495 sha1 = "66140ecece38ef06bf0d3e355d69bf59d141ea85";
5496 };
5497 };
5498 "postcss-modules-local-by-default-1.2.0" = {
5499 name = "postcss-modules-local-by-default";
5500 packageName = "postcss-modules-local-by-default";
5501 version = "1.2.0";
5502 src = fetchurl {
5503 url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz";
5504 sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069";
5505 };
5506 };
5507 "postcss-modules-scope-1.1.0" = {
5508 name = "postcss-modules-scope";
5509 packageName = "postcss-modules-scope";
5510 version = "1.1.0";
5511 src = fetchurl {
5512 url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz";
5513 sha1 = "d6ea64994c79f97b62a72b426fbe6056a194bb90";
5514 };
5515 };
5516 "postcss-modules-values-1.3.0" = {
5517 name = "postcss-modules-values";
5518 packageName = "postcss-modules-values";
5519 version = "1.3.0";
5520 src = fetchurl {
5521 url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz";
5522 sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20";
5523 };
5524 };
5525 "postcss-normalize-charset-1.1.1" = {
5526 name = "postcss-normalize-charset";
5527 packageName = "postcss-normalize-charset";
5528 version = "1.1.1";
5529 src = fetchurl {
5530 url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz";
5531 sha1 = "ef9ee71212d7fe759c78ed162f61ed62b5cb93f1";
5532 };
5533 };
5534 "postcss-normalize-url-3.0.8" = {
5535 name = "postcss-normalize-url";
5536 packageName = "postcss-normalize-url";
5537 version = "3.0.8";
5538 src = fetchurl {
5539 url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz";
5540 sha1 = "108f74b3f2fcdaf891a2ffa3ea4592279fc78222";
5541 };
5542 };
5543 "postcss-ordered-values-2.2.3" = {
5544 name = "postcss-ordered-values";
5545 packageName = "postcss-ordered-values";
5546 version = "2.2.3";
5547 src = fetchurl {
5548 url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz";
5549 sha1 = "eec6c2a67b6c412a8db2042e77fe8da43f95c11d";
5550 };
5551 };
5552 "postcss-reduce-idents-2.4.0" = {
5553 name = "postcss-reduce-idents";
5554 packageName = "postcss-reduce-idents";
5555 version = "2.4.0";
5556 src = fetchurl {
5557 url = "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz";
5558 sha1 = "c2c6d20cc958284f6abfbe63f7609bf409059ad3";
5559 };
5560 };
5561 "postcss-reduce-initial-1.0.1" = {
5562 name = "postcss-reduce-initial";
5563 packageName = "postcss-reduce-initial";
5564 version = "1.0.1";
5565 src = fetchurl {
5566 url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz";
5567 sha1 = "68f80695f045d08263a879ad240df8dd64f644ea";
5568 };
5569 };
5570 "postcss-reduce-transforms-1.0.4" = {
5571 name = "postcss-reduce-transforms";
5572 packageName = "postcss-reduce-transforms";
5573 version = "1.0.4";
5574 src = fetchurl {
5575 url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz";
5576 sha1 = "ff76f4d8212437b31c298a42d2e1444025771ae1";
5577 };
5578 };
5579 "postcss-selector-parser-2.2.3" = {
5580 name = "postcss-selector-parser";
5581 packageName = "postcss-selector-parser";
5582 version = "2.2.3";
5583 src = fetchurl {
5584 url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz";
5585 sha1 = "f9437788606c3c9acee16ffe8d8b16297f27bb90";
5586 };
5587 };
5588 "postcss-svgo-2.1.6" = {
5589 name = "postcss-svgo";
5590 packageName = "postcss-svgo";
5591 version = "2.1.6";
5592 src = fetchurl {
5593 url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz";
5594 sha1 = "b6df18aa613b666e133f08adb5219c2684ac108d";
5595 };
5596 };
5597 "postcss-unique-selectors-2.0.2" = {
5598 name = "postcss-unique-selectors";
5599 packageName = "postcss-unique-selectors";
5600 version = "2.0.2";
5601 src = fetchurl {
5602 url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz";
5603 sha1 = "981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d";
5604 };
5605 };
5606 "postcss-value-parser-3.3.1" = {
5607 name = "postcss-value-parser";
5608 packageName = "postcss-value-parser";
5609 version = "3.3.1";
5610 src = fetchurl {
5611 url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz";
5612 sha512 = "pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==";
5613 };
5614 };
5615 "postcss-zindex-2.2.0" = {
5616 name = "postcss-zindex";
5617 packageName = "postcss-zindex";
5618 version = "2.2.0";
5619 src = fetchurl {
5620 url = "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz";
5621 sha1 = "d2109ddc055b91af67fc4cb3b025946639d2af22";
5622 };
5623 };
5624 "prepend-http-1.0.4" = {
5625 name = "prepend-http";
5626 packageName = "prepend-http";
5627 version = "1.0.4";
5628 src = fetchurl {
5629 url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
5630 sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
5631 };
5632 };
5633 "pretty-error-2.1.1" = {
5634 name = "pretty-error";
5635 packageName = "pretty-error";
5636 version = "2.1.1";
5637 src = fetchurl {
5638 url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz";
5639 sha1 = "5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3";
5640 };
5641 };
5642 "private-0.1.8" = {
5643 name = "private";
5644 packageName = "private";
5645 version = "0.1.8";
5646 src = fetchurl {
5647 url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz";
5648 sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==";
3966 };
5649 };
3967 };
5650 };
3968 "process-0.11.10" = {
5651 "process-0.11.10" = {
@@ -4082,6 +5765,15 b' let'
4082 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
5765 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==";
4083 };
5766 };
4084 };
5767 };
5768 "q-1.5.1" = {
5769 name = "q";
5770 packageName = "q";
5771 version = "1.5.1";
5772 src = fetchurl {
5773 url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz";
5774 sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7";
5775 };
5776 };
4085 "qrious-4.0.2" = {
5777 "qrious-4.0.2" = {
4086 name = "qrious";
5778 name = "qrious";
4087 packageName = "qrious";
5779 packageName = "qrious";
@@ -4109,6 +5801,15 b' let'
4109 sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
5801 sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
4110 };
5802 };
4111 };
5803 };
5804 "query-string-4.3.4" = {
5805 name = "query-string";
5806 packageName = "query-string";
5807 version = "4.3.4";
5808 src = fetchurl {
5809 url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz";
5810 sha1 = "bbb693b9ca915c232515b228b1a02b609043dbeb";
5811 };
5812 };
4112 "querystring-0.2.0" = {
5813 "querystring-0.2.0" = {
4113 name = "querystring";
5814 name = "querystring";
4114 packageName = "querystring";
5815 packageName = "querystring";
@@ -4145,6 +5846,24 b' let'
4145 sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==";
5846 sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==";
4146 };
5847 };
4147 };
5848 };
5849 "raw-loader-1.0.0-beta.0" = {
5850 name = "raw-loader";
5851 packageName = "raw-loader";
5852 version = "1.0.0-beta.0";
5853 src = fetchurl {
5854 url = "https://registry.npmjs.org/raw-loader/-/raw-loader-1.0.0-beta.0.tgz";
5855 sha512 = "guh4ZNAf96f+CDwfnPbFeFiO5YcfPllUmZrgcoOmx6iqZPq+DcKbnyjPuBxEAtQ3tqqd++qChsQfQB+VBzFT0Q==";
5856 };
5857 };
5858 "readable-stream-1.0.34" = {
5859 name = "readable-stream";
5860 packageName = "readable-stream";
5861 version = "1.0.34";
5862 src = fetchurl {
5863 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz";
5864 sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c";
5865 };
5866 };
4148 "readable-stream-1.1.14" = {
5867 "readable-stream-1.1.14" = {
4149 name = "readable-stream";
5868 name = "readable-stream";
4150 packageName = "readable-stream";
5869 packageName = "readable-stream";
@@ -4172,6 +5891,15 b' let'
4172 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
5891 sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==";
4173 };
5892 };
4174 };
5893 };
5894 "recast-0.11.23" = {
5895 name = "recast";
5896 packageName = "recast";
5897 version = "0.11.23";
5898 src = fetchurl {
5899 url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
5900 sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
5901 };
5902 };
4175 "rechoir-0.6.2" = {
5903 "rechoir-0.6.2" = {
4176 name = "rechoir";
5904 name = "rechoir";
4177 packageName = "rechoir";
5905 packageName = "rechoir";
@@ -4181,13 +5909,31 b' let'
4181 sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
5909 sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
4182 };
5910 };
4183 };
5911 };
4184 "regenerator-runtime-0.10.5" = {
5912 "reduce-css-calc-1.3.0" = {
4185 name = "regenerator-runtime";
5913 name = "reduce-css-calc";
4186 packageName = "regenerator-runtime";
5914 packageName = "reduce-css-calc";
4187 version = "0.10.5";
5915 version = "1.3.0";
4188 src = fetchurl {
5916 src = fetchurl {
4189 url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
5917 url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz";
4190 sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
5918 sha1 = "747c914e049614a4c9cfbba629871ad1d2927716";
5919 };
5920 };
5921 "reduce-function-call-1.0.2" = {
5922 name = "reduce-function-call";
5923 packageName = "reduce-function-call";
5924 version = "1.0.2";
5925 src = fetchurl {
5926 url = "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz";
5927 sha1 = "5a200bf92e0e37751752fe45b0ab330fd4b6be99";
5928 };
5929 };
5930 "regenerate-1.4.0" = {
5931 name = "regenerate";
5932 packageName = "regenerate";
5933 version = "1.4.0";
5934 src = fetchurl {
5935 url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz";
5936 sha512 = "1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==";
4191 };
5937 };
4192 };
5938 };
4193 "regenerator-runtime-0.11.1" = {
5939 "regenerator-runtime-0.11.1" = {
@@ -4199,6 +5945,15 b' let'
4199 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
5945 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==";
4200 };
5946 };
4201 };
5947 };
5948 "regenerator-transform-0.10.1" = {
5949 name = "regenerator-transform";
5950 packageName = "regenerator-transform";
5951 version = "0.10.1";
5952 src = fetchurl {
5953 url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz";
5954 sha512 = "PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==";
5955 };
5956 };
4202 "regex-not-1.0.2" = {
5957 "regex-not-1.0.2" = {
4203 name = "regex-not";
5958 name = "regex-not";
4204 packageName = "regex-not";
5959 packageName = "regex-not";
@@ -4208,6 +5963,51 b' let'
4208 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
5963 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
4209 };
5964 };
4210 };
5965 };
5966 "regexpu-core-1.0.0" = {
5967 name = "regexpu-core";
5968 packageName = "regexpu-core";
5969 version = "1.0.0";
5970 src = fetchurl {
5971 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz";
5972 sha1 = "86a763f58ee4d7c2f6b102e4764050de7ed90c6b";
5973 };
5974 };
5975 "regexpu-core-2.0.0" = {
5976 name = "regexpu-core";
5977 packageName = "regexpu-core";
5978 version = "2.0.0";
5979 src = fetchurl {
5980 url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz";
5981 sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240";
5982 };
5983 };
5984 "regjsgen-0.2.0" = {
5985 name = "regjsgen";
5986 packageName = "regjsgen";
5987 version = "0.2.0";
5988 src = fetchurl {
5989 url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz";
5990 sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7";
5991 };
5992 };
5993 "regjsparser-0.1.5" = {
5994 name = "regjsparser";
5995 packageName = "regjsparser";
5996 version = "0.1.5";
5997 src = fetchurl {
5998 url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz";
5999 sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c";
6000 };
6001 };
6002 "relateurl-0.2.7" = {
6003 name = "relateurl";
6004 packageName = "relateurl";
6005 version = "0.2.7";
6006 src = fetchurl {
6007 url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz";
6008 sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9";
6009 };
6010 };
4211 "remove-trailing-separator-1.1.0" = {
6011 "remove-trailing-separator-1.1.0" = {
4212 name = "remove-trailing-separator";
6012 name = "remove-trailing-separator";
4213 packageName = "remove-trailing-separator";
6013 packageName = "remove-trailing-separator";
@@ -4217,6 +6017,15 b' let'
4217 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
6017 sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
4218 };
6018 };
4219 };
6019 };
6020 "renderkid-2.0.2" = {
6021 name = "renderkid";
6022 packageName = "renderkid";
6023 version = "2.0.2";
6024 src = fetchurl {
6025 url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.2.tgz";
6026 sha512 = "FsygIxevi1jSiPY9h7vZmBFUbAOcbYm9UwyiLNdVsLRs/5We9Ob5NMPbGYUTWiLq5L+ezlVdE0A8bbME5CWTpg==";
6027 };
6028 };
4220 "repeat-element-1.1.3" = {
6029 "repeat-element-1.1.3" = {
4221 name = "repeat-element";
6030 name = "repeat-element";
4222 packageName = "repeat-element";
6031 packageName = "repeat-element";
@@ -4235,6 +6044,15 b' let'
4235 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
6044 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
4236 };
6045 };
4237 };
6046 };
6047 "repeating-2.0.1" = {
6048 name = "repeating";
6049 packageName = "repeating";
6050 version = "2.0.1";
6051 src = fetchurl {
6052 url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
6053 sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
6054 };
6055 };
4238 "request-2.81.0" = {
6056 "request-2.81.0" = {
4239 name = "request";
6057 name = "request";
4240 packageName = "request";
6058 packageName = "request";
@@ -4325,6 +6143,15 b' let'
4325 sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
6143 sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
4326 };
6144 };
4327 };
6145 };
6146 "right-align-0.1.3" = {
6147 name = "right-align";
6148 packageName = "right-align";
6149 version = "0.1.3";
6150 src = fetchurl {
6151 url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
6152 sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
6153 };
6154 };
4328 "rimraf-2.2.8" = {
6155 "rimraf-2.2.8" = {
4329 name = "rimraf";
6156 name = "rimraf";
4330 packageName = "rimraf";
6157 packageName = "rimraf";
@@ -4388,6 +6215,15 b' let'
4388 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
6215 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
4389 };
6216 };
4390 };
6217 };
6218 "sax-1.2.4" = {
6219 name = "sax";
6220 packageName = "sax";
6221 version = "1.2.4";
6222 src = fetchurl {
6223 url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
6224 sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==";
6225 };
6226 };
4391 "schema-utils-0.4.7" = {
6227 "schema-utils-0.4.7" = {
4392 name = "schema-utils";
6228 name = "schema-utils";
4393 packageName = "schema-utils";
6229 packageName = "schema-utils";
@@ -4514,6 +6350,15 b' let'
4514 sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
6350 sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
4515 };
6351 };
4516 };
6352 };
6353 "slash-1.0.0" = {
6354 name = "slash";
6355 packageName = "slash";
6356 version = "1.0.0";
6357 src = fetchurl {
6358 url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
6359 sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
6360 };
6361 };
4517 "snapdragon-0.8.2" = {
6362 "snapdragon-0.8.2" = {
4518 name = "snapdragon";
6363 name = "snapdragon";
4519 packageName = "snapdragon";
6364 packageName = "snapdragon";
@@ -4550,6 +6395,24 b' let'
4550 sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
6395 sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
4551 };
6396 };
4552 };
6397 };
6398 "sort-keys-1.1.2" = {
6399 name = "sort-keys";
6400 packageName = "sort-keys";
6401 version = "1.1.2";
6402 src = fetchurl {
6403 url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz";
6404 sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad";
6405 };
6406 };
6407 "source-list-map-0.1.8" = {
6408 name = "source-list-map";
6409 packageName = "source-list-map";
6410 version = "0.1.8";
6411 src = fetchurl {
6412 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz";
6413 sha1 = "c550b2ab5427f6b3f21f5afead88c4f5587b2106";
6414 };
6415 };
4553 "source-list-map-2.0.1" = {
6416 "source-list-map-2.0.1" = {
4554 name = "source-list-map";
6417 name = "source-list-map";
4555 packageName = "source-list-map";
6418 packageName = "source-list-map";
@@ -4568,6 +6431,15 b' let'
4568 sha1 = "8586fb9a5a005e5b501e21cd18b6f21b457ad1f9";
6431 sha1 = "8586fb9a5a005e5b501e21cd18b6f21b457ad1f9";
4569 };
6432 };
4570 };
6433 };
6434 "source-map-0.4.4" = {
6435 name = "source-map";
6436 packageName = "source-map";
6437 version = "0.4.4";
6438 src = fetchurl {
6439 url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz";
6440 sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
6441 };
6442 };
4571 "source-map-0.5.7" = {
6443 "source-map-0.5.7" = {
4572 name = "source-map";
6444 name = "source-map";
4573 packageName = "source-map";
6445 packageName = "source-map";
@@ -4595,6 +6467,15 b' let'
4595 sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==";
6467 sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==";
4596 };
6468 };
4597 };
6469 };
6470 "source-map-support-0.4.18" = {
6471 name = "source-map-support";
6472 packageName = "source-map-support";
6473 version = "0.4.18";
6474 src = fetchurl {
6475 url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz";
6476 sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==";
6477 };
6478 };
4598 "source-map-url-0.4.0" = {
6479 "source-map-url-0.4.0" = {
4599 name = "source-map-url";
6480 name = "source-map-url";
4600 packageName = "source-map-url";
6481 packageName = "source-map-url";
@@ -4622,6 +6503,15 b' let'
4622 sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
6503 sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==";
4623 };
6504 };
4624 };
6505 };
6506 "sprintf-js-1.0.3" = {
6507 name = "sprintf-js";
6508 packageName = "sprintf-js";
6509 version = "1.0.3";
6510 src = fetchurl {
6511 url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
6512 sha1 = "04e6926f662895354f3dd015203633b857297e2c";
6513 };
6514 };
4625 "sshpk-1.15.1" = {
6515 "sshpk-1.15.1" = {
4626 name = "sshpk";
6516 name = "sshpk";
4627 packageName = "sshpk";
6517 packageName = "sshpk";
@@ -4703,6 +6593,15 b' let'
4703 sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
6593 sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
4704 };
6594 };
4705 };
6595 };
6596 "strict-uri-encode-1.1.0" = {
6597 name = "strict-uri-encode";
6598 packageName = "strict-uri-encode";
6599 version = "1.1.0";
6600 src = fetchurl {
6601 url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz";
6602 sha1 = "279b225df1d582b1f54e65addd4352e18faa0713";
6603 };
6604 };
4706 "string-width-1.0.2" = {
6605 "string-width-1.0.2" = {
4707 name = "string-width";
6606 name = "string-width";
4708 packageName = "string-width";
6607 packageName = "string-width";
@@ -4793,6 +6692,15 b' let'
4793 sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
6692 sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
4794 };
6693 };
4795 };
6694 };
6695 "style-loader-0.21.0" = {
6696 name = "style-loader";
6697 packageName = "style-loader";
6698 version = "0.21.0";
6699 src = fetchurl {
6700 url = "https://registry.npmjs.org/style-loader/-/style-loader-0.21.0.tgz";
6701 sha512 = "T+UNsAcl3Yg+BsPKs1vd22Fr8sVT+CJMtzqc6LEw9bbJZb43lm9GoeIfUcDEefBSWC0BhYbcdupV1GtI4DGzxg==";
6702 };
6703 };
4796 "supports-color-0.2.0" = {
6704 "supports-color-0.2.0" = {
4797 name = "supports-color";
6705 name = "supports-color";
4798 packageName = "supports-color";
6706 packageName = "supports-color";
@@ -4811,6 +6719,15 b' let'
4811 sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
6719 sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
4812 };
6720 };
4813 };
6721 };
6722 "supports-color-3.2.3" = {
6723 name = "supports-color";
6724 packageName = "supports-color";
6725 version = "3.2.3";
6726 src = fetchurl {
6727 url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz";
6728 sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6";
6729 };
6730 };
4814 "supports-color-5.5.0" = {
6731 "supports-color-5.5.0" = {
4815 name = "supports-color";
6732 name = "supports-color";
4816 packageName = "supports-color";
6733 packageName = "supports-color";
@@ -4820,6 +6737,24 b' let'
4820 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==";
6737 sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==";
4821 };
6738 };
4822 };
6739 };
6740 "svgo-0.7.2" = {
6741 name = "svgo";
6742 packageName = "svgo";
6743 version = "0.7.2";
6744 src = fetchurl {
6745 url = "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz";
6746 sha1 = "9f5772413952135c6fefbf40afe6a4faa88b4bb5";
6747 };
6748 };
6749 "tapable-0.2.8" = {
6750 name = "tapable";
6751 packageName = "tapable";
6752 version = "0.2.8";
6753 src = fetchurl {
6754 url = "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz";
6755 sha1 = "99372a5c999bf2df160afc0d74bed4f47948cd22";
6756 };
6757 };
4823 "tapable-1.1.0" = {
6758 "tapable-1.1.0" = {
4824 name = "tapable";
6759 name = "tapable";
4825 packageName = "tapable";
6760 packageName = "tapable";
@@ -4892,6 +6827,15 b' let'
4892 sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
6827 sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
4893 };
6828 };
4894 };
6829 };
6830 "to-fast-properties-1.0.3" = {
6831 name = "to-fast-properties";
6832 packageName = "to-fast-properties";
6833 version = "1.0.3";
6834 src = fetchurl {
6835 url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
6836 sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
6837 };
6838 };
4895 "to-object-path-0.3.0" = {
6839 "to-object-path-0.3.0" = {
4896 name = "to-object-path";
6840 name = "to-object-path";
4897 packageName = "to-object-path";
6841 packageName = "to-object-path";
@@ -4919,6 +6863,15 b' let'
4919 sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
6863 sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
4920 };
6864 };
4921 };
6865 };
6866 "toposort-1.0.7" = {
6867 name = "toposort";
6868 packageName = "toposort";
6869 version = "1.0.7";
6870 src = fetchurl {
6871 url = "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz";
6872 sha1 = "2e68442d9f64ec720b8cc89e6443ac6caa950029";
6873 };
6874 };
4922 "tough-cookie-2.3.4" = {
6875 "tough-cookie-2.3.4" = {
4923 name = "tough-cookie";
6876 name = "tough-cookie";
4924 packageName = "tough-cookie";
6877 packageName = "tough-cookie";
@@ -4928,6 +6881,24 b' let'
4928 sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
6881 sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==";
4929 };
6882 };
4930 };
6883 };
6884 "trim-right-1.0.1" = {
6885 name = "trim-right";
6886 packageName = "trim-right";
6887 version = "1.0.1";
6888 src = fetchurl {
6889 url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz";
6890 sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
6891 };
6892 };
6893 "ts-loader-1.3.3" = {
6894 name = "ts-loader";
6895 packageName = "ts-loader";
6896 version = "1.3.3";
6897 src = fetchurl {
6898 url = "https://registry.npmjs.org/ts-loader/-/ts-loader-1.3.3.tgz";
6899 sha1 = "30c6203e1e66b841a88701ed8858f1725d94b026";
6900 };
6901 };
4931 "tslib-1.9.3" = {
6902 "tslib-1.9.3" = {
4932 name = "tslib";
6903 name = "tslib";
4933 packageName = "tslib";
6904 packageName = "tslib";
@@ -4964,15 +6935,6 b' let'
4964 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
6935 sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
4965 };
6936 };
4966 };
6937 };
4967 "type-check-0.3.2" = {
4968 name = "type-check";
4969 packageName = "type-check";
4970 version = "0.3.2";
4971 src = fetchurl {
4972 url = "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz";
4973 sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72";
4974 };
4975 };
4976 "typedarray-0.0.6" = {
6938 "typedarray-0.0.6" = {
4977 name = "typedarray";
6939 name = "typedarray";
4978 packageName = "typedarray";
6940 packageName = "typedarray";
@@ -4991,6 +6953,33 b' let'
4991 sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww==";
6953 sha512 = "rPzPisCzW68Okj1zNrfa2dR9uEm43SevDmpR6FChoZABFk9dANGnzzBMgHYUXI3609//63fnVkyQ1SQmAMyjww==";
4992 };
6954 };
4993 };
6955 };
6956 "uglify-js-2.8.29" = {
6957 name = "uglify-js";
6958 packageName = "uglify-js";
6959 version = "2.8.29";
6960 src = fetchurl {
6961 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz";
6962 sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
6963 };
6964 };
6965 "uglify-js-3.4.9" = {
6966 name = "uglify-js";
6967 packageName = "uglify-js";
6968 version = "3.4.9";
6969 src = fetchurl {
6970 url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz";
6971 sha512 = "8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==";
6972 };
6973 };
6974 "uglify-to-browserify-1.0.2" = {
6975 name = "uglify-to-browserify";
6976 packageName = "uglify-to-browserify";
6977 version = "1.0.2";
6978 src = fetchurl {
6979 url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
6980 sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
6981 };
6982 };
4994 "uglifyjs-webpack-plugin-1.3.0" = {
6983 "uglifyjs-webpack-plugin-1.3.0" = {
4995 name = "uglifyjs-webpack-plugin";
6984 name = "uglifyjs-webpack-plugin";
4996 packageName = "uglifyjs-webpack-plugin";
6985 packageName = "uglifyjs-webpack-plugin";
@@ -5063,6 +7052,24 b' let'
5063 sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
7052 sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
5064 };
7053 };
5065 };
7054 };
7055 "uniq-1.0.1" = {
7056 name = "uniq";
7057 packageName = "uniq";
7058 version = "1.0.1";
7059 src = fetchurl {
7060 url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz";
7061 sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff";
7062 };
7063 };
7064 "uniqs-2.0.0" = {
7065 name = "uniqs";
7066 packageName = "uniqs";
7067 version = "2.0.0";
7068 src = fetchurl {
7069 url = "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz";
7070 sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02";
7071 };
7072 };
5066 "unique-filename-1.1.1" = {
7073 "unique-filename-1.1.1" = {
5067 name = "unique-filename";
7074 name = "unique-filename";
5068 packageName = "unique-filename";
7075 packageName = "unique-filename";
@@ -5099,6 +7106,15 b' let'
5099 sha512 = "bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==";
7106 sha512 = "bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==";
5100 };
7107 };
5101 };
7108 };
7109 "upper-case-1.1.3" = {
7110 name = "upper-case";
7111 packageName = "upper-case";
7112 version = "1.1.3";
7113 src = fetchurl {
7114 url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz";
7115 sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598";
7116 };
7117 };
5102 "uri-js-4.2.2" = {
7118 "uri-js-4.2.2" = {
5103 name = "uri-js";
7119 name = "uri-js";
5104 packageName = "uri-js";
7120 packageName = "uri-js";
@@ -5162,6 +7178,24 b' let'
5162 sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
7178 sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
5163 };
7179 };
5164 };
7180 };
7181 "util.promisify-1.0.0" = {
7182 name = "util.promisify";
7183 packageName = "util.promisify";
7184 version = "1.0.0";
7185 src = fetchurl {
7186 url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz";
7187 sha512 = "i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==";
7188 };
7189 };
7190 "utila-0.4.0" = {
7191 name = "utila";
7192 packageName = "utila";
7193 version = "0.4.0";
7194 src = fetchurl {
7195 url = "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz";
7196 sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c";
7197 };
7198 };
5165 "uuid-3.3.2" = {
7199 "uuid-3.3.2" = {
5166 name = "uuid";
7200 name = "uuid";
5167 packageName = "uuid";
7201 packageName = "uuid";
@@ -5189,6 +7223,15 b' let'
5189 sha512 = "6sgSKoFw1UpUPd3cFdF7QGnrH6tDeBgW1F3v9gy8gLY0mlbiBXq8soy8aQpY6xeeCjH5K+JvC62Acp7gtl7wWA==";
7223 sha512 = "6sgSKoFw1UpUPd3cFdF7QGnrH6tDeBgW1F3v9gy8gLY0mlbiBXq8soy8aQpY6xeeCjH5K+JvC62Acp7gtl7wWA==";
5190 };
7224 };
5191 };
7225 };
7226 "vendors-1.0.2" = {
7227 name = "vendors";
7228 packageName = "vendors";
7229 version = "1.0.2";
7230 src = fetchurl {
7231 url = "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz";
7232 sha512 = "w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ==";
7233 };
7234 };
5192 "verror-1.10.0" = {
7235 "verror-1.10.0" = {
5193 name = "verror";
7236 name = "verror";
5194 packageName = "verror";
7237 packageName = "verror";
@@ -5207,15 +7250,6 b' let'
5207 sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73";
7250 sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73";
5208 };
7251 };
5209 };
7252 };
5210 "vulcanize-1.16.0" = {
5211 name = "vulcanize";
5212 packageName = "vulcanize";
5213 version = "1.16.0";
5214 src = fetchurl {
5215 url = "https://registry.npmjs.org/vulcanize/-/vulcanize-1.16.0.tgz";
5216 sha512 = "TYlFljSc896b5+0FmMiw0JAMrHNBiHx0IAFC/dQR3Dxdb9Nx43ohm6wMWTlPXQn4sk/0WkqfgoAA6SLxyvPCLQ==";
5217 };
5218 };
5219 "watchpack-1.6.0" = {
7253 "watchpack-1.6.0" = {
5220 name = "watchpack";
7254 name = "watchpack";
5221 packageName = "watchpack";
7255 packageName = "watchpack";
@@ -5252,6 +7286,15 b' let'
5252 sha512 = "Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ==";
7286 sha512 = "Cnqo7CeqeSvC6PTdts+dywNi5CRlIPbLx1AoUPK2T6vC1YAugMG3IOoO9DmEscd+Dghw7uRlnzV1KwOe5IrtgQ==";
5253 };
7287 };
5254 };
7288 };
7289 "webpack-core-0.6.9" = {
7290 name = "webpack-core";
7291 packageName = "webpack-core";
7292 version = "0.6.9";
7293 src = fetchurl {
7294 url = "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz";
7295 sha1 = "fc571588c8558da77be9efb6debdc5a3b172bdc2";
7296 };
7297 };
5255 "webpack-sources-1.3.0" = {
7298 "webpack-sources-1.3.0" = {
5256 name = "webpack-sources";
7299 name = "webpack-sources";
5257 packageName = "webpack-sources";
7300 packageName = "webpack-sources";
@@ -5261,6 +7304,24 b' let'
5261 sha512 = "OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==";
7304 sha512 = "OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==";
5262 };
7305 };
5263 };
7306 };
7307 "webpack-uglify-js-plugin-1.1.9" = {
7308 name = "webpack-uglify-js-plugin";
7309 packageName = "webpack-uglify-js-plugin";
7310 version = "1.1.9";
7311 src = fetchurl {
7312 url = "https://registry.npmjs.org/webpack-uglify-js-plugin/-/webpack-uglify-js-plugin-1.1.9.tgz";
7313 sha1 = "ecd4c27843a4ac17ee318f45229cdf1d2fb5e103";
7314 };
7315 };
7316 "whet.extend-0.9.9" = {
7317 name = "whet.extend";
7318 packageName = "whet.extend";
7319 version = "0.9.9";
7320 src = fetchurl {
7321 url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz";
7322 sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1";
7323 };
7324 };
5264 "which-1.0.9" = {
7325 "which-1.0.9" = {
5265 name = "which";
7326 name = "which";
5266 packageName = "which";
7327 packageName = "which";
@@ -5288,6 +7349,15 b' let'
5288 sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
7349 sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
5289 };
7350 };
5290 };
7351 };
7352 "window-size-0.1.0" = {
7353 name = "window-size";
7354 packageName = "window-size";
7355 version = "0.1.0";
7356 src = fetchurl {
7357 url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
7358 sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
7359 };
7360 };
5291 "winston-2.4.4" = {
7361 "winston-2.4.4" = {
5292 name = "winston";
7362 name = "winston";
5293 packageName = "winston";
7363 packageName = "winston";
@@ -5297,13 +7367,13 b' let'
5297 sha512 = "NBo2Pepn4hK4V01UfcWcDlmiVTs7VTB1h7bgnB0rgP146bYhMxX0ypCz3lBOfNxCO4Zuek7yeT+y/zM1OfMw4Q==";
7367 sha512 = "NBo2Pepn4hK4V01UfcWcDlmiVTs7VTB1h7bgnB0rgP146bYhMxX0ypCz3lBOfNxCO4Zuek7yeT+y/zM1OfMw4Q==";
5298 };
7368 };
5299 };
7369 };
5300 "wordwrap-1.0.0" = {
7370 "wordwrap-0.0.2" = {
5301 name = "wordwrap";
7371 name = "wordwrap";
5302 packageName = "wordwrap";
7372 packageName = "wordwrap";
5303 version = "1.0.0";
7373 version = "0.0.2";
5304 src = fetchurl {
7374 src = fetchurl {
5305 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz";
7375 url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
5306 sha1 = "27584810891456a4171c8d0226441ade90cbcaeb";
7376 sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
5307 };
7377 };
5308 };
7378 };
5309 "worker-farm-1.6.0" = {
7379 "worker-farm-1.6.0" = {
@@ -5378,6 +7448,15 b' let'
5378 sha512 = "e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==";
7448 sha512 = "e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ==";
5379 };
7449 };
5380 };
7450 };
7451 "yargs-3.10.0" = {
7452 name = "yargs";
7453 packageName = "yargs";
7454 version = "3.10.0";
7455 src = fetchurl {
7456 url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
7457 sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
7458 };
7459 };
5381 "yargs-parser-10.1.0" = {
7460 "yargs-parser-10.1.0" = {
5382 name = "yargs-parser";
7461 name = "yargs-parser";
5383 packageName = "yargs-parser";
7462 packageName = "yargs-parser";
@@ -5404,12 +7483,8 b' let'
5404 src = ./..;
7483 src = ./..;
5405 dependencies = [
7484 dependencies = [
5406 sources."@types/clone-0.1.30"
7485 sources."@types/clone-0.1.30"
5407 sources."@types/node-4.9.0"
7486 sources."@types/node-6.14.0"
5408 (sources."@types/parse5-0.0.31" // {
7487 sources."@types/parse5-2.2.34"
5409 dependencies = [
5410 sources."@types/node-6.0.118"
5411 ];
5412 })
5413 sources."@webassemblyjs/ast-1.7.10"
7488 sources."@webassemblyjs/ast-1.7.10"
5414 sources."@webassemblyjs/floating-point-hex-parser-1.7.10"
7489 sources."@webassemblyjs/floating-point-hex-parser-1.7.10"
5415 sources."@webassemblyjs/helper-api-error-1.7.10"
7490 sources."@webassemblyjs/helper-api-error-1.7.10"
@@ -5431,15 +7506,21 b' let'
5431 sources."@xtuc/ieee754-1.2.0"
7506 sources."@xtuc/ieee754-1.2.0"
5432 sources."@xtuc/long-4.2.1"
7507 sources."@xtuc/long-4.2.1"
5433 sources."abbrev-1.1.1"
7508 sources."abbrev-1.1.1"
5434 sources."acorn-3.3.0"
7509 sources."acorn-5.7.3"
5435 (sources."acorn-dynamic-import-3.0.0" // {
7510 sources."acorn-dynamic-import-3.0.0"
5436 dependencies = [
7511 (sources."acorn-jsx-3.0.1" // {
5437 sources."acorn-5.7.3"
7512 dependencies = [
5438 ];
7513 sources."acorn-3.3.0"
5439 })
7514 ];
5440 sources."acorn-jsx-3.0.1"
7515 })
5441 sources."ajv-4.11.8"
7516 sources."ajv-4.11.8"
5442 sources."ajv-keywords-3.2.0"
7517 sources."ajv-keywords-3.2.0"
7518 (sources."align-text-0.1.4" // {
7519 dependencies = [
7520 sources."kind-of-3.2.2"
7521 ];
7522 })
7523 sources."alphanum-sort-1.0.2"
5443 sources."amdefine-1.0.1"
7524 sources."amdefine-1.0.1"
5444 sources."ansi-regex-0.2.1"
7525 sources."ansi-regex-0.2.1"
5445 sources."ansi-styles-1.1.0"
7526 sources."ansi-styles-1.1.0"
@@ -5456,7 +7537,10 b' let'
5456 sources."arr-union-3.1.0"
7537 sources."arr-union-3.1.0"
5457 sources."array-each-1.0.1"
7538 sources."array-each-1.0.1"
5458 sources."array-slice-1.1.0"
7539 sources."array-slice-1.1.0"
7540 sources."array-union-1.0.2"
7541 sources."array-uniq-1.0.3"
5459 sources."array-unique-0.3.2"
7542 sources."array-unique-0.3.2"
7543 sources."arrify-1.0.1"
5460 sources."asap-2.0.6"
7544 sources."asap-2.0.6"
5461 sources."asn1-0.2.4"
7545 sources."asn1-0.2.4"
5462 sources."asn1.js-4.10.1"
7546 sources."asn1.js-4.10.1"
@@ -5468,18 +7552,120 b' let'
5468 })
7552 })
5469 sources."assert-plus-0.2.0"
7553 sources."assert-plus-0.2.0"
5470 sources."assign-symbols-1.0.0"
7554 sources."assign-symbols-1.0.0"
7555 sources."ast-types-0.9.6"
5471 sources."async-0.1.22"
7556 sources."async-0.1.22"
5472 sources."async-each-1.0.1"
7557 sources."async-each-1.0.1"
5473 sources."asynckit-0.4.0"
7558 sources."asynckit-0.4.0"
5474 sources."atob-2.1.2"
7559 sources."atob-2.1.2"
7560 (sources."autoprefixer-6.7.7" // {
7561 dependencies = [
7562 sources."browserslist-1.7.7"
7563 ];
7564 })
5475 sources."aws-sign2-0.6.0"
7565 sources."aws-sign2-0.6.0"
5476 sources."aws4-1.8.0"
7566 sources."aws4-1.8.0"
5477 sources."babel-polyfill-6.26.0"
7567 (sources."babel-code-frame-6.26.0" // {
5478 (sources."babel-runtime-6.26.0" // {
7568 dependencies = [
5479 dependencies = [
7569 sources."ansi-regex-2.1.1"
5480 sources."regenerator-runtime-0.11.1"
7570 sources."ansi-styles-2.2.1"
5481 ];
7571 sources."chalk-1.1.3"
5482 })
7572 sources."has-ansi-2.0.0"
7573 sources."strip-ansi-3.0.1"
7574 sources."supports-color-2.0.0"
7575 ];
7576 })
7577 (sources."babel-core-6.26.3" // {
7578 dependencies = [
7579 sources."lodash-4.17.11"
7580 sources."minimatch-3.0.4"
7581 ];
7582 })
7583 (sources."babel-generator-6.26.1" // {
7584 dependencies = [
7585 sources."lodash-4.17.11"
7586 ];
7587 })
7588 sources."babel-helper-builder-binary-assignment-operator-visitor-6.24.1"
7589 sources."babel-helper-call-delegate-6.24.1"
7590 (sources."babel-helper-define-map-6.26.0" // {
7591 dependencies = [
7592 sources."lodash-4.17.11"
7593 ];
7594 })
7595 sources."babel-helper-explode-assignable-expression-6.24.1"
7596 sources."babel-helper-function-name-6.24.1"
7597 sources."babel-helper-get-function-arity-6.24.1"
7598 sources."babel-helper-hoist-variables-6.24.1"
7599 sources."babel-helper-optimise-call-expression-6.24.1"
7600 (sources."babel-helper-regex-6.26.0" // {
7601 dependencies = [
7602 sources."lodash-4.17.11"
7603 ];
7604 })
7605 sources."babel-helper-remap-async-to-generator-6.24.1"
7606 sources."babel-helper-replace-supers-6.24.1"
7607 sources."babel-helpers-6.24.1"
7608 sources."babel-loader-7.1.5"
7609 sources."babel-messages-6.23.0"
7610 sources."babel-plugin-check-es2015-constants-6.22.0"
7611 sources."babel-plugin-syntax-async-functions-6.13.0"
7612 sources."babel-plugin-syntax-exponentiation-operator-6.13.0"
7613 sources."babel-plugin-syntax-object-rest-spread-6.13.0"
7614 sources."babel-plugin-syntax-trailing-function-commas-6.22.0"
7615 sources."babel-plugin-transform-async-to-generator-6.24.1"
7616 sources."babel-plugin-transform-es2015-arrow-functions-6.22.0"
7617 sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0"
7618 (sources."babel-plugin-transform-es2015-block-scoping-6.26.0" // {
7619 dependencies = [
7620 sources."lodash-4.17.11"
7621 ];
7622 })
7623 sources."babel-plugin-transform-es2015-classes-6.24.1"
7624 sources."babel-plugin-transform-es2015-computed-properties-6.24.1"
7625 sources."babel-plugin-transform-es2015-destructuring-6.23.0"
7626 sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1"
7627 sources."babel-plugin-transform-es2015-for-of-6.23.0"
7628 sources."babel-plugin-transform-es2015-function-name-6.24.1"
7629 sources."babel-plugin-transform-es2015-literals-6.22.0"
7630 sources."babel-plugin-transform-es2015-modules-amd-6.24.1"
7631 sources."babel-plugin-transform-es2015-modules-commonjs-6.26.2"
7632 sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1"
7633 sources."babel-plugin-transform-es2015-modules-umd-6.24.1"
7634 sources."babel-plugin-transform-es2015-object-super-6.24.1"
7635 sources."babel-plugin-transform-es2015-parameters-6.24.1"
7636 sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1"
7637 sources."babel-plugin-transform-es2015-spread-6.22.0"
7638 sources."babel-plugin-transform-es2015-sticky-regex-6.24.1"
7639 sources."babel-plugin-transform-es2015-template-literals-6.22.0"
7640 sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0"
7641 sources."babel-plugin-transform-es2015-unicode-regex-6.24.1"
7642 sources."babel-plugin-transform-exponentiation-operator-6.24.1"
7643 sources."babel-plugin-transform-object-rest-spread-6.26.0"
7644 sources."babel-plugin-transform-regenerator-6.26.0"
7645 sources."babel-plugin-transform-strict-mode-6.24.1"
7646 sources."babel-preset-env-1.7.0"
7647 (sources."babel-register-6.26.0" // {
7648 dependencies = [
7649 sources."lodash-4.17.11"
7650 ];
7651 })
7652 sources."babel-runtime-6.26.0"
7653 (sources."babel-template-6.26.0" // {
7654 dependencies = [
7655 sources."lodash-4.17.11"
7656 ];
7657 })
7658 (sources."babel-traverse-6.26.0" // {
7659 dependencies = [
7660 sources."lodash-4.17.11"
7661 ];
7662 })
7663 (sources."babel-types-6.26.0" // {
7664 dependencies = [
7665 sources."lodash-4.17.11"
7666 ];
7667 })
7668 sources."babylon-6.18.0"
5483 sources."balanced-match-1.0.0"
7669 sources."balanced-match-1.0.0"
5484 (sources."base-0.11.2" // {
7670 (sources."base-0.11.2" // {
5485 dependencies = [
7671 dependencies = [
@@ -5492,6 +7678,7 b' let'
5492 sources."binary-extensions-1.12.0"
7678 sources."binary-extensions-1.12.0"
5493 sources."bluebird-3.5.2"
7679 sources."bluebird-3.5.2"
5494 sources."bn.js-4.11.8"
7680 sources."bn.js-4.11.8"
7681 sources."boolbase-1.0.0"
5495 sources."boom-2.10.1"
7682 sources."boom-2.10.1"
5496 sources."bower-1.8.4"
7683 sources."bower-1.8.4"
5497 sources."brace-expansion-1.1.11"
7684 sources."brace-expansion-1.1.11"
@@ -5507,6 +7694,7 b' let'
5507 sources."browserify-rsa-4.0.1"
7694 sources."browserify-rsa-4.0.1"
5508 sources."browserify-sign-4.0.4"
7695 sources."browserify-sign-4.0.4"
5509 sources."browserify-zlib-0.2.0"
7696 sources."browserify-zlib-0.2.0"
7697 sources."browserslist-3.2.8"
5510 sources."buffer-4.9.1"
7698 sources."buffer-4.9.1"
5511 sources."buffer-from-1.1.1"
7699 sources."buffer-from-1.1.1"
5512 sources."buffer-xor-1.0.3"
7700 sources."buffer-xor-1.0.3"
@@ -5521,8 +7709,17 b' let'
5521 ];
7709 ];
5522 })
7710 })
5523 sources."cache-base-1.0.1"
7711 sources."cache-base-1.0.1"
7712 sources."camel-case-3.0.0"
5524 sources."camelcase-4.1.0"
7713 sources."camelcase-4.1.0"
7714 (sources."caniuse-api-1.6.1" // {
7715 dependencies = [
7716 sources."browserslist-1.7.7"
7717 ];
7718 })
7719 sources."caniuse-db-1.0.30000899"
7720 sources."caniuse-lite-1.0.30000899"
5525 sources."caseless-0.12.0"
7721 sources."caseless-0.12.0"
7722 sources."center-align-0.1.3"
5526 sources."chalk-0.5.1"
7723 sources."chalk-0.5.1"
5527 (sources."chokidar-2.0.4" // {
7724 (sources."chokidar-2.0.4" // {
5528 dependencies = [
7725 dependencies = [
@@ -5532,6 +7729,16 b' let'
5532 sources."chownr-1.1.1"
7729 sources."chownr-1.1.1"
5533 sources."chrome-trace-event-1.0.0"
7730 sources."chrome-trace-event-1.0.0"
5534 sources."cipher-base-1.0.4"
7731 sources."cipher-base-1.0.4"
7732 (sources."clap-1.2.3" // {
7733 dependencies = [
7734 sources."ansi-regex-2.1.1"
7735 sources."ansi-styles-2.2.1"
7736 sources."chalk-1.1.3"
7737 sources."has-ansi-2.0.0"
7738 sources."strip-ansi-3.0.1"
7739 sources."supports-color-2.0.0"
7740 ];
7741 })
5535 (sources."class-utils-0.3.6" // {
7742 (sources."class-utils-0.3.6" // {
5536 dependencies = [
7743 dependencies = [
5537 sources."define-property-0.2.5"
7744 sources."define-property-0.2.5"
@@ -5549,6 +7756,11 b' let'
5549 sources."kind-of-5.1.0"
7756 sources."kind-of-5.1.0"
5550 ];
7757 ];
5551 })
7758 })
7759 (sources."clean-css-4.2.1" // {
7760 dependencies = [
7761 sources."source-map-0.6.1"
7762 ];
7763 })
5552 (sources."cli-1.0.1" // {
7764 (sources."cli-1.0.1" // {
5553 dependencies = [
7765 dependencies = [
5554 sources."glob-7.1.3"
7766 sources."glob-7.1.3"
@@ -5564,11 +7776,15 b' let'
5564 })
7776 })
5565 sources."clone-1.0.4"
7777 sources."clone-1.0.4"
5566 sources."co-4.6.0"
7778 sources."co-4.6.0"
7779 sources."coa-1.0.4"
5567 sources."code-point-at-1.1.0"
7780 sources."code-point-at-1.1.0"
5568 sources."coffee-script-1.3.3"
7781 sources."coffee-script-1.3.3"
5569 sources."collection-visit-1.0.0"
7782 sources."collection-visit-1.0.0"
7783 sources."color-0.11.4"
5570 sources."color-convert-1.9.3"
7784 sources."color-convert-1.9.3"
5571 sources."color-name-1.1.3"
7785 sources."color-name-1.1.3"
7786 sources."color-string-0.3.0"
7787 sources."colormin-1.1.2"
5572 sources."colors-0.6.2"
7788 sources."colors-0.6.2"
5573 sources."combined-stream-1.0.7"
7789 sources."combined-stream-1.0.7"
5574 sources."commander-2.14.1"
7790 sources."commander-2.14.1"
@@ -5583,6 +7799,7 b' let'
5583 })
7799 })
5584 sources."console-browserify-1.1.0"
7800 sources."console-browserify-1.1.0"
5585 sources."constants-browserify-1.0.0"
7801 sources."constants-browserify-1.0.0"
7802 sources."convert-source-map-1.6.0"
5586 (sources."copy-concurrently-1.0.5" // {
7803 (sources."copy-concurrently-1.0.5" // {
5587 dependencies = [
7804 dependencies = [
5588 sources."glob-7.1.3"
7805 sources."glob-7.1.3"
@@ -5591,16 +7808,17 b' let'
5591 ];
7808 ];
5592 })
7809 })
5593 sources."copy-descriptor-0.1.1"
7810 sources."copy-descriptor-0.1.1"
7811 (sources."copy-webpack-plugin-4.5.4" // {
7812 dependencies = [
7813 sources."is-glob-4.0.0"
7814 sources."minimatch-3.0.4"
7815 ];
7816 })
5594 sources."core-js-2.5.7"
7817 sources."core-js-2.5.7"
5595 sources."core-util-is-1.0.2"
7818 sources."core-util-is-1.0.2"
5596 sources."create-ecdh-4.0.3"
7819 sources."create-ecdh-4.0.3"
5597 sources."create-hash-1.2.0"
7820 sources."create-hash-1.2.0"
5598 sources."create-hmac-1.1.7"
7821 sources."create-hmac-1.1.7"
5599 (sources."crisper-1.2.0" // {
5600 dependencies = [
5601 sources."nopt-3.0.6"
5602 ];
5603 })
5604 (sources."cross-spawn-6.0.5" // {
7822 (sources."cross-spawn-6.0.5" // {
5605 dependencies = [
7823 dependencies = [
5606 sources."which-1.3.1"
7824 sources."which-1.3.1"
@@ -5608,6 +7826,22 b' let'
5608 })
7826 })
5609 sources."cryptiles-2.0.5"
7827 sources."cryptiles-2.0.5"
5610 sources."crypto-browserify-3.12.0"
7828 sources."crypto-browserify-3.12.0"
7829 sources."css-color-names-0.0.4"
7830 sources."css-loader-0.28.11"
7831 sources."css-select-1.2.0"
7832 (sources."css-selector-tokenizer-0.7.0" // {
7833 dependencies = [
7834 sources."regexpu-core-1.0.0"
7835 ];
7836 })
7837 sources."css-what-2.1.2"
7838 sources."cssesc-0.1.0"
7839 (sources."cssnano-3.10.0" // {
7840 dependencies = [
7841 sources."decamelize-1.2.0"
7842 ];
7843 })
7844 sources."csso-2.3.2"
5611 sources."cycle-1.0.3"
7845 sources."cycle-1.0.3"
5612 sources."cyclist-0.2.2"
7846 sources."cyclist-0.2.2"
5613 (sources."dashdash-1.14.1" // {
7847 (sources."dashdash-1.14.1" // {
@@ -5620,25 +7854,30 b' let'
5620 sources."debug-2.6.9"
7854 sources."debug-2.6.9"
5621 sources."decamelize-2.0.0"
7855 sources."decamelize-2.0.0"
5622 sources."decode-uri-component-0.2.0"
7856 sources."decode-uri-component-0.2.0"
5623 sources."deep-is-0.1.3"
7857 sources."deep-for-each-2.0.3"
7858 sources."define-properties-1.1.3"
5624 sources."define-property-2.0.2"
7859 sources."define-property-2.0.2"
7860 sources."defined-1.0.0"
5625 sources."delayed-stream-1.0.0"
7861 sources."delayed-stream-1.0.0"
5626 sources."delegate-3.2.0"
7862 sources."delegate-3.2.0"
5627 sources."des.js-1.0.0"
7863 sources."des.js-1.0.0"
5628 sources."detect-file-1.0.0"
7864 sources."detect-file-1.0.0"
7865 sources."detect-indent-4.0.0"
5629 sources."diffie-hellman-5.0.3"
7866 sources."diffie-hellman-5.0.3"
5630 (sources."doctrine-0.7.2" // {
7867 sources."dir-glob-2.0.0"
5631 dependencies = [
7868 sources."dom-converter-0.2.0"
5632 sources."isarray-0.0.1"
5633 ];
5634 })
5635 (sources."dom-serializer-0.1.0" // {
7869 (sources."dom-serializer-0.1.0" // {
5636 dependencies = [
7870 dependencies = [
5637 sources."domelementtype-1.1.3"
7871 sources."domelementtype-1.1.3"
5638 sources."entities-1.1.2"
7872 sources."entities-1.1.2"
5639 ];
7873 ];
5640 })
7874 })
5641 sources."dom5-1.3.6"
7875 (sources."dom5-2.3.0" // {
7876 dependencies = [
7877 sources."clone-2.1.2"
7878 sources."parse5-2.2.3"
7879 ];
7880 })
5642 sources."domain-browser-1.2.0"
7881 sources."domain-browser-1.2.0"
5643 sources."domelementtype-1.3.0"
7882 sources."domelementtype-1.3.0"
5644 sources."domhandler-2.3.0"
7883 sources."domhandler-2.3.0"
@@ -5650,6 +7889,7 b' let'
5650 ];
7889 ];
5651 })
7890 })
5652 sources."ecc-jsbn-0.1.2"
7891 sources."ecc-jsbn-0.1.2"
7892 sources."electron-to-chromium-1.3.82"
5653 sources."elliptic-6.4.1"
7893 sources."elliptic-6.4.1"
5654 sources."emojis-list-2.1.0"
7894 sources."emojis-list-2.1.0"
5655 sources."end-of-stream-1.4.1"
7895 sources."end-of-stream-1.4.1"
@@ -5660,34 +7900,17 b' let'
5660 })
7900 })
5661 sources."entities-1.0.0"
7901 sources."entities-1.0.0"
5662 sources."errno-0.1.7"
7902 sources."errno-0.1.7"
7903 sources."es-abstract-1.12.0"
7904 sources."es-to-primitive-1.2.0"
5663 sources."es6-promise-4.2.5"
7905 sources."es6-promise-4.2.5"
7906 sources."es6-templates-0.2.3"
5664 sources."escape-string-regexp-1.0.5"
7907 sources."escape-string-regexp-1.0.5"
5665 (sources."escodegen-1.11.0" // {
7908 sources."eslint-scope-4.0.0"
5666 dependencies = [
7909 sources."espree-3.5.4"
5667 sources."esprima-3.1.3"
5668 sources."estraverse-4.2.0"
5669 sources."esutils-2.0.2"
5670 sources."source-map-0.6.1"
5671 ];
5672 })
5673 (sources."eslint-scope-4.0.0" // {
5674 dependencies = [
5675 sources."estraverse-4.2.0"
5676 ];
5677 })
5678 (sources."espree-3.5.4" // {
5679 dependencies = [
5680 sources."acorn-5.7.3"
5681 ];
5682 })
5683 sources."esprima-1.0.4"
7910 sources."esprima-1.0.4"
5684 (sources."esrecurse-4.2.1" // {
7911 sources."esrecurse-4.2.1"
5685 dependencies = [
7912 sources."estraverse-4.2.0"
5686 sources."estraverse-4.2.0"
7913 sources."esutils-2.0.2"
5687 ];
5688 })
5689 sources."estraverse-3.1.0"
5690 sources."esutils-1.1.6"
5691 sources."eventemitter2-0.4.14"
7914 sources."eventemitter2-0.4.14"
5692 sources."events-1.1.1"
7915 sources."events-1.1.1"
5693 sources."evp_bytestokey-1.0.3"
7916 sources."evp_bytestokey-1.0.3"
@@ -5730,7 +7953,7 b' let'
5730 sources."eyes-0.1.8"
7953 sources."eyes-0.1.8"
5731 sources."fast-deep-equal-2.0.1"
7954 sources."fast-deep-equal-2.0.1"
5732 sources."fast-json-stable-stringify-2.0.0"
7955 sources."fast-json-stable-stringify-2.0.0"
5733 sources."fast-levenshtein-2.0.6"
7956 sources."fastparse-1.1.1"
5734 sources."favico.js-0.3.10"
7957 sources."favico.js-0.3.10"
5735 sources."faye-websocket-0.4.4"
7958 sources."faye-websocket-0.4.4"
5736 sources."fd-slicer-1.0.1"
7959 sources."fd-slicer-1.0.1"
@@ -5751,6 +7974,7 b' let'
5751 })
7974 })
5752 sources."fined-1.1.0"
7975 sources."fined-1.1.0"
5753 sources."flagged-respawn-1.0.0"
7976 sources."flagged-respawn-1.0.0"
7977 sources."flatten-1.0.2"
5754 (sources."flush-write-stream-1.0.3" // {
7978 (sources."flush-write-stream-1.0.3" // {
5755 dependencies = [
7979 dependencies = [
5756 sources."readable-stream-2.3.6"
7980 sources."readable-stream-2.3.6"
@@ -5780,6 +8004,7 b' let'
5780 })
8004 })
5781 sources."fs.realpath-1.0.0"
8005 sources."fs.realpath-1.0.0"
5782 sources."fsevents-1.2.4"
8006 sources."fsevents-1.2.4"
8007 sources."function-bind-1.1.1"
5783 sources."gaze-0.5.2"
8008 sources."gaze-0.5.2"
5784 sources."get-caller-file-1.0.3"
8009 sources."get-caller-file-1.0.3"
5785 sources."get-stream-3.0.0"
8010 sources."get-stream-3.0.0"
@@ -5803,6 +8028,13 b' let'
5803 sources."which-1.3.1"
8028 sources."which-1.3.1"
5804 ];
8029 ];
5805 })
8030 })
8031 sources."globals-9.18.0"
8032 (sources."globby-7.1.1" // {
8033 dependencies = [
8034 sources."glob-7.1.3"
8035 sources."minimatch-3.0.4"
8036 ];
8037 })
5806 (sources."globule-0.1.0" // {
8038 (sources."globule-0.1.0" // {
5807 dependencies = [
8039 dependencies = [
5808 sources."lodash-1.0.2"
8040 sources."lodash-1.0.2"
@@ -5864,11 +8096,17 b' let'
5864 ];
8096 ];
5865 })
8097 })
5866 sources."grunt-legacy-util-0.2.0"
8098 sources."grunt-legacy-util-0.2.0"
5867 sources."grunt-vulcanize-1.0.0"
8099 (sources."grunt-webpack-3.1.3" // {
8100 dependencies = [
8101 sources."lodash-4.17.11"
8102 ];
8103 })
5868 sources."har-schema-1.0.5"
8104 sources."har-schema-1.0.5"
5869 sources."har-validator-4.2.1"
8105 sources."har-validator-4.2.1"
8106 sources."has-1.0.3"
5870 sources."has-ansi-0.1.0"
8107 sources."has-ansi-0.1.0"
5871 sources."has-flag-3.0.0"
8108 sources."has-flag-3.0.0"
8109 sources."has-symbols-1.0.0"
5872 sources."has-value-1.0.0"
8110 sources."has-value-1.0.0"
5873 (sources."has-values-1.0.0" // {
8111 (sources."has-values-1.0.0" // {
5874 dependencies = [
8112 dependencies = [
@@ -5879,21 +8117,42 b' let'
5879 sources."hash.js-1.1.5"
8117 sources."hash.js-1.1.5"
5880 sources."hasha-2.2.0"
8118 sources."hasha-2.2.0"
5881 sources."hawk-3.1.3"
8119 sources."hawk-3.1.3"
8120 sources."he-1.2.0"
5882 sources."hmac-drbg-1.0.1"
8121 sources."hmac-drbg-1.0.1"
5883 sources."hoek-2.16.3"
8122 sources."hoek-2.16.3"
8123 sources."home-or-tmp-2.0.0"
5884 sources."homedir-polyfill-1.0.1"
8124 sources."homedir-polyfill-1.0.1"
5885 sources."hooker-0.2.3"
8125 sources."hooker-0.2.3"
8126 sources."html-comment-regex-1.1.2"
8127 sources."html-loader-0.4.5"
8128 (sources."html-minifier-3.5.21" // {
8129 dependencies = [
8130 sources."commander-2.17.1"
8131 ];
8132 })
8133 (sources."html-webpack-plugin-3.2.0" // {
8134 dependencies = [
8135 sources."loader-utils-0.2.17"
8136 sources."lodash-4.17.11"
8137 ];
8138 })
5886 sources."htmlparser2-3.8.3"
8139 sources."htmlparser2-3.8.3"
5887 sources."http-signature-1.1.1"
8140 sources."http-signature-1.1.1"
5888 sources."https-browserify-1.0.0"
8141 sources."https-browserify-1.0.0"
5889 (sources."hydrolysis-1.25.0" // {
5890 dependencies = [
5891 sources."dom5-1.1.0"
5892 ];
5893 })
5894 sources."iconv-lite-0.2.11"
8142 sources."iconv-lite-0.2.11"
8143 sources."icss-replace-symbols-1.1.0"
8144 (sources."icss-utils-2.1.0" // {
8145 dependencies = [
8146 sources."ansi-styles-3.2.1"
8147 sources."chalk-2.4.1"
8148 sources."postcss-6.0.23"
8149 sources."source-map-0.6.1"
8150 sources."supports-color-5.5.0"
8151 ];
8152 })
5895 sources."ieee754-1.1.12"
8153 sources."ieee754-1.1.12"
5896 sources."iferr-0.1.5"
8154 sources."iferr-0.1.5"
8155 sources."ignore-3.3.10"
5897 sources."image-size-0.5.5"
8156 sources."image-size-0.5.5"
5898 (sources."import-local-2.0.0" // {
8157 (sources."import-local-2.0.0" // {
5899 dependencies = [
8158 dependencies = [
@@ -5905,21 +8164,28 b' let'
5905 sources."pkg-dir-3.0.0"
8164 sources."pkg-dir-3.0.0"
5906 ];
8165 ];
5907 })
8166 })
8167 sources."imports-loader-0.7.1"
5908 sources."imurmurhash-0.1.4"
8168 sources."imurmurhash-0.1.4"
8169 sources."indexes-of-1.0.1"
5909 sources."indexof-0.0.1"
8170 sources."indexof-0.0.1"
5910 sources."inflight-1.0.6"
8171 sources."inflight-1.0.6"
5911 sources."inherits-2.0.3"
8172 sources."inherits-2.0.3"
5912 sources."ini-1.3.5"
8173 sources."ini-1.3.5"
5913 sources."interpret-1.1.0"
8174 sources."interpret-1.1.0"
8175 sources."invariant-2.2.4"
5914 sources."invert-kv-2.0.0"
8176 sources."invert-kv-2.0.0"
5915 sources."is-absolute-1.0.0"
8177 sources."is-absolute-1.0.0"
8178 sources."is-absolute-url-2.1.0"
5916 sources."is-accessor-descriptor-1.0.0"
8179 sources."is-accessor-descriptor-1.0.0"
5917 sources."is-binary-path-1.0.1"
8180 sources."is-binary-path-1.0.1"
5918 sources."is-buffer-1.1.6"
8181 sources."is-buffer-1.1.6"
8182 sources."is-callable-1.1.4"
5919 sources."is-data-descriptor-1.0.0"
8183 sources."is-data-descriptor-1.0.0"
8184 sources."is-date-object-1.0.1"
5920 sources."is-descriptor-1.0.2"
8185 sources."is-descriptor-1.0.2"
5921 sources."is-extendable-0.1.1"
8186 sources."is-extendable-0.1.1"
5922 sources."is-extglob-2.1.1"
8187 sources."is-extglob-2.1.1"
8188 sources."is-finite-1.0.2"
5923 sources."is-fullwidth-code-point-1.0.0"
8189 sources."is-fullwidth-code-point-1.0.0"
5924 sources."is-glob-3.1.0"
8190 sources."is-glob-3.1.0"
5925 (sources."is-number-3.0.0" // {
8191 (sources."is-number-3.0.0" // {
@@ -5927,9 +8193,13 b' let'
5927 sources."kind-of-3.2.2"
8193 sources."kind-of-3.2.2"
5928 ];
8194 ];
5929 })
8195 })
8196 sources."is-plain-obj-1.1.0"
5930 sources."is-plain-object-2.0.4"
8197 sources."is-plain-object-2.0.4"
8198 sources."is-regex-1.0.4"
5931 sources."is-relative-1.0.0"
8199 sources."is-relative-1.0.0"
5932 sources."is-stream-1.1.0"
8200 sources."is-stream-1.1.0"
8201 sources."is-svg-2.1.0"
8202 sources."is-symbol-1.0.2"
5933 sources."is-typedarray-1.0.0"
8203 sources."is-typedarray-1.0.0"
5934 sources."is-unc-path-1.0.0"
8204 sources."is-unc-path-1.0.0"
5935 sources."is-windows-1.0.2"
8205 sources."is-windows-1.0.2"
@@ -5938,8 +8208,11 b' let'
5938 sources."isobject-3.0.1"
8208 sources."isobject-3.0.1"
5939 sources."isstream-0.1.2"
8209 sources."isstream-0.1.2"
5940 sources."jquery-1.11.3"
8210 sources."jquery-1.11.3"
8211 sources."js-base64-2.4.9"
8212 sources."js-tokens-3.0.2"
5941 sources."js-yaml-2.0.5"
8213 sources."js-yaml-2.0.5"
5942 sources."jsbn-0.1.1"
8214 sources."jsbn-0.1.1"
8215 sources."jsesc-1.3.0"
5943 (sources."jshint-2.9.6" // {
8216 (sources."jshint-2.9.6" // {
5944 dependencies = [
8217 dependencies = [
5945 sources."lodash-4.17.11"
8218 sources."lodash-4.17.11"
@@ -5970,13 +8243,13 b' let'
5970 sources."graceful-fs-4.1.11"
8243 sources."graceful-fs-4.1.11"
5971 ];
8244 ];
5972 })
8245 })
8246 sources."lazy-cache-1.0.4"
5973 sources."lcid-2.0.0"
8247 sources."lcid-2.0.0"
5974 (sources."less-2.7.3" // {
8248 (sources."less-2.7.3" // {
5975 dependencies = [
8249 dependencies = [
5976 sources."graceful-fs-4.1.11"
8250 sources."graceful-fs-4.1.11"
5977 ];
8251 ];
5978 })
8252 })
5979 sources."levn-0.3.0"
5980 (sources."liftoff-2.5.0" // {
8253 (sources."liftoff-2.5.0" // {
5981 dependencies = [
8254 dependencies = [
5982 sources."findup-sync-2.0.0"
8255 sources."findup-sync-2.0.0"
@@ -5986,13 +8259,21 b' let'
5986 sources."loader-utils-1.1.0"
8259 sources."loader-utils-1.1.0"
5987 sources."locate-path-2.0.0"
8260 sources."locate-path-2.0.0"
5988 sources."lodash-0.9.2"
8261 sources."lodash-0.9.2"
8262 sources."lodash.camelcase-4.3.0"
5989 sources."lodash.debounce-4.0.8"
8263 sources."lodash.debounce-4.0.8"
8264 sources."lodash.isplainobject-4.0.6"
8265 sources."lodash.memoize-4.1.2"
8266 sources."lodash.uniq-4.5.0"
8267 sources."longest-1.0.1"
8268 sources."loose-envify-1.4.0"
8269 sources."lower-case-1.1.4"
5990 sources."lru-cache-2.7.3"
8270 sources."lru-cache-2.7.3"
5991 sources."make-dir-1.3.0"
8271 sources."make-dir-1.3.0"
5992 sources."make-iterator-1.0.1"
8272 sources."make-iterator-1.0.1"
5993 sources."map-age-cleaner-0.1.2"
8273 sources."map-age-cleaner-0.1.2"
5994 sources."map-cache-0.2.2"
8274 sources."map-cache-0.2.2"
5995 sources."map-visit-1.0.0"
8275 sources."map-visit-1.0.0"
8276 sources."math-expression-evaluator-1.2.17"
5996 sources."md5.js-1.3.5"
8277 sources."md5.js-1.3.5"
5997 sources."mem-4.0.0"
8278 sources."mem-4.0.0"
5998 (sources."memory-fs-0.4.1" // {
8279 (sources."memory-fs-0.4.1" // {
@@ -6032,6 +8313,7 b' let'
6032 sources."nanomatch-1.2.13"
8313 sources."nanomatch-1.2.13"
6033 sources."neo-async-2.6.0"
8314 sources."neo-async-2.6.0"
6034 sources."nice-try-1.0.5"
8315 sources."nice-try-1.0.5"
8316 sources."no-case-2.3.2"
6035 (sources."node-libs-browser-2.1.0" // {
8317 (sources."node-libs-browser-2.1.0" // {
6036 dependencies = [
8318 dependencies = [
6037 sources."readable-stream-2.3.6"
8319 sources."readable-stream-2.3.6"
@@ -6045,9 +8327,14 b' let'
6045 ];
8327 ];
6046 })
8328 })
6047 sources."normalize-path-2.1.1"
8329 sources."normalize-path-2.1.1"
8330 sources."normalize-range-0.1.2"
8331 sources."normalize-url-1.9.1"
6048 sources."npm-run-path-2.0.2"
8332 sources."npm-run-path-2.0.2"
8333 sources."nth-check-1.0.2"
8334 sources."num2fraction-1.2.2"
6049 sources."number-is-nan-1.0.1"
8335 sources."number-is-nan-1.0.1"
6050 sources."oauth-sign-0.8.2"
8336 sources."oauth-sign-0.8.2"
8337 sources."object-assign-4.1.1"
6051 (sources."object-copy-0.1.0" // {
8338 (sources."object-copy-0.1.0" // {
6052 dependencies = [
8339 dependencies = [
6053 sources."define-property-0.2.5"
8340 sources."define-property-0.2.5"
@@ -6061,12 +8348,13 b' let'
6061 sources."kind-of-3.2.2"
8348 sources."kind-of-3.2.2"
6062 ];
8349 ];
6063 })
8350 })
8351 sources."object-keys-1.0.12"
6064 sources."object-visit-1.0.1"
8352 sources."object-visit-1.0.1"
6065 sources."object.defaults-1.1.0"
8353 sources."object.defaults-1.1.0"
8354 sources."object.getownpropertydescriptors-2.0.3"
6066 sources."object.map-1.0.1"
8355 sources."object.map-1.0.1"
6067 sources."object.pick-1.3.0"
8356 sources."object.pick-1.3.0"
6068 sources."once-1.4.0"
8357 sources."once-1.4.0"
6069 sources."optionator-0.8.2"
6070 sources."os-browserify-0.3.0"
8358 sources."os-browserify-0.3.0"
6071 sources."os-homedir-1.0.2"
8359 sources."os-homedir-1.0.2"
6072 sources."os-locale-3.0.1"
8360 sources."os-locale-3.0.1"
@@ -6085,10 +8373,16 b' let'
6085 sources."string_decoder-1.1.1"
8373 sources."string_decoder-1.1.1"
6086 ];
8374 ];
6087 })
8375 })
8376 sources."param-case-2.1.1"
6088 sources."parse-asn1-5.1.1"
8377 sources."parse-asn1-5.1.1"
6089 sources."parse-filepath-1.0.2"
8378 sources."parse-filepath-1.0.2"
6090 sources."parse-passwd-1.0.0"
8379 sources."parse-passwd-1.0.0"
6091 sources."parse5-1.5.1"
8380 sources."parse5-3.0.3"
8381 (sources."parse5-utils-2.0.0" // {
8382 dependencies = [
8383 sources."parse5-2.2.3"
8384 ];
8385 })
6092 sources."pascalcase-0.1.1"
8386 sources."pascalcase-0.1.1"
6093 sources."path-browserify-0.0.0"
8387 sources."path-browserify-0.0.0"
6094 sources."path-dirname-1.0.2"
8388 sources."path-dirname-1.0.2"
@@ -6096,9 +8390,9 b' let'
6096 sources."path-is-absolute-1.0.1"
8390 sources."path-is-absolute-1.0.1"
6097 sources."path-key-2.0.1"
8391 sources."path-key-2.0.1"
6098 sources."path-parse-1.0.6"
8392 sources."path-parse-1.0.6"
6099 sources."path-posix-1.0.0"
6100 sources."path-root-0.1.1"
8393 sources."path-root-0.1.1"
6101 sources."path-root-regex-0.1.2"
8394 sources."path-root-regex-0.1.2"
8395 sources."path-type-3.0.0"
6102 sources."pbkdf2-3.0.17"
8396 sources."pbkdf2-3.0.17"
6103 sources."pend-1.2.0"
8397 sources."pend-1.2.0"
6104 sources."performance-now-0.2.0"
8398 sources."performance-now-0.2.0"
@@ -6112,8 +8406,106 b' let'
6112 sources."pinkie-2.0.4"
8406 sources."pinkie-2.0.4"
6113 sources."pinkie-promise-2.0.1"
8407 sources."pinkie-promise-2.0.1"
6114 sources."pkg-dir-2.0.0"
8408 sources."pkg-dir-2.0.0"
8409 (sources."polymer-webpack-loader-2.0.3" // {
8410 dependencies = [
8411 sources."ansi-styles-3.2.1"
8412 sources."chalk-2.4.1"
8413 sources."html-loader-0.5.5"
8414 (sources."postcss-6.0.23" // {
8415 dependencies = [
8416 sources."source-map-0.6.1"
8417 ];
8418 })
8419 sources."supports-color-5.5.0"
8420 ];
8421 })
6115 sources."posix-character-classes-0.1.1"
8422 sources."posix-character-classes-0.1.1"
6116 sources."prelude-ls-1.1.2"
8423 (sources."postcss-5.2.18" // {
8424 dependencies = [
8425 sources."ansi-regex-2.1.1"
8426 sources."ansi-styles-2.2.1"
8427 (sources."chalk-1.1.3" // {
8428 dependencies = [
8429 sources."supports-color-2.0.0"
8430 ];
8431 })
8432 sources."has-ansi-2.0.0"
8433 sources."has-flag-1.0.0"
8434 sources."strip-ansi-3.0.1"
8435 sources."supports-color-3.2.3"
8436 ];
8437 })
8438 sources."postcss-calc-5.3.1"
8439 sources."postcss-colormin-2.2.2"
8440 sources."postcss-convert-values-2.6.1"
8441 sources."postcss-discard-comments-2.0.4"
8442 sources."postcss-discard-duplicates-2.1.0"
8443 sources."postcss-discard-empty-2.1.0"
8444 sources."postcss-discard-overridden-0.1.1"
8445 sources."postcss-discard-unused-2.2.3"
8446 sources."postcss-filter-plugins-2.0.3"
8447 sources."postcss-merge-idents-2.1.7"
8448 sources."postcss-merge-longhand-2.0.2"
8449 (sources."postcss-merge-rules-2.1.2" // {
8450 dependencies = [
8451 sources."browserslist-1.7.7"
8452 ];
8453 })
8454 sources."postcss-message-helpers-2.0.0"
8455 sources."postcss-minify-font-values-1.0.5"
8456 sources."postcss-minify-gradients-1.0.5"
8457 sources."postcss-minify-params-1.2.2"
8458 sources."postcss-minify-selectors-2.1.1"
8459 (sources."postcss-modules-extract-imports-1.2.0" // {
8460 dependencies = [
8461 sources."ansi-styles-3.2.1"
8462 sources."chalk-2.4.1"
8463 sources."postcss-6.0.23"
8464 sources."source-map-0.6.1"
8465 sources."supports-color-5.5.0"
8466 ];
8467 })
8468 (sources."postcss-modules-local-by-default-1.2.0" // {
8469 dependencies = [
8470 sources."ansi-styles-3.2.1"
8471 sources."chalk-2.4.1"
8472 sources."postcss-6.0.23"
8473 sources."source-map-0.6.1"
8474 sources."supports-color-5.5.0"
8475 ];
8476 })
8477 (sources."postcss-modules-scope-1.1.0" // {
8478 dependencies = [
8479 sources."ansi-styles-3.2.1"
8480 sources."chalk-2.4.1"
8481 sources."postcss-6.0.23"
8482 sources."source-map-0.6.1"
8483 sources."supports-color-5.5.0"
8484 ];
8485 })
8486 (sources."postcss-modules-values-1.3.0" // {
8487 dependencies = [
8488 sources."ansi-styles-3.2.1"
8489 sources."chalk-2.4.1"
8490 sources."postcss-6.0.23"
8491 sources."source-map-0.6.1"
8492 sources."supports-color-5.5.0"
8493 ];
8494 })
8495 sources."postcss-normalize-charset-1.1.1"
8496 sources."postcss-normalize-url-3.0.8"
8497 sources."postcss-ordered-values-2.2.3"
8498 sources."postcss-reduce-idents-2.4.0"
8499 sources."postcss-reduce-initial-1.0.1"
8500 sources."postcss-reduce-transforms-1.0.4"
8501 sources."postcss-selector-parser-2.2.3"
8502 sources."postcss-svgo-2.1.6"
8503 sources."postcss-unique-selectors-2.0.2"
8504 sources."postcss-value-parser-3.3.1"
8505 sources."postcss-zindex-2.2.0"
8506 sources."prepend-http-1.0.4"
8507 sources."pretty-error-2.1.1"
8508 sources."private-0.1.8"
6117 sources."process-0.11.10"
8509 sources."process-0.11.10"
6118 sources."process-nextick-args-2.0.0"
8510 sources."process-nextick-args-2.0.0"
6119 sources."progress-1.1.8"
8511 sources."progress-1.1.8"
@@ -6125,12 +8517,15 b' let'
6125 sources."pump-2.0.1"
8517 sources."pump-2.0.1"
6126 sources."pumpify-1.5.1"
8518 sources."pumpify-1.5.1"
6127 sources."punycode-1.4.1"
8519 sources."punycode-1.4.1"
8520 sources."q-1.5.1"
6128 sources."qrious-4.0.2"
8521 sources."qrious-4.0.2"
6129 sources."qs-6.4.0"
8522 sources."qs-6.4.0"
8523 sources."query-string-4.3.4"
6130 sources."querystring-0.2.0"
8524 sources."querystring-0.2.0"
6131 sources."querystring-es3-0.2.1"
8525 sources."querystring-es3-0.2.1"
6132 sources."randombytes-2.0.6"
8526 sources."randombytes-2.0.6"
6133 sources."randomfill-1.0.4"
8527 sources."randomfill-1.0.4"
8528 sources."raw-loader-1.0.0-beta.0"
6134 (sources."readable-stream-1.1.14" // {
8529 (sources."readable-stream-1.1.14" // {
6135 dependencies = [
8530 dependencies = [
6136 sources."isarray-0.0.1"
8531 sources."isarray-0.0.1"
@@ -6143,12 +8538,49 b' let'
6143 sources."string_decoder-1.1.1"
8538 sources."string_decoder-1.1.1"
6144 ];
8539 ];
6145 })
8540 })
8541 (sources."recast-0.11.23" // {
8542 dependencies = [
8543 sources."esprima-3.1.3"
8544 ];
8545 })
6146 sources."rechoir-0.6.2"
8546 sources."rechoir-0.6.2"
6147 sources."regenerator-runtime-0.10.5"
8547 (sources."reduce-css-calc-1.3.0" // {
8548 dependencies = [
8549 sources."balanced-match-0.4.2"
8550 ];
8551 })
8552 (sources."reduce-function-call-1.0.2" // {
8553 dependencies = [
8554 sources."balanced-match-0.4.2"
8555 ];
8556 })
8557 sources."regenerate-1.4.0"
8558 sources."regenerator-runtime-0.11.1"
8559 sources."regenerator-transform-0.10.1"
6148 sources."regex-not-1.0.2"
8560 sources."regex-not-1.0.2"
8561 sources."regexpu-core-2.0.0"
8562 sources."regjsgen-0.2.0"
8563 (sources."regjsparser-0.1.5" // {
8564 dependencies = [
8565 sources."jsesc-0.5.0"
8566 ];
8567 })
8568 sources."relateurl-0.2.7"
6149 sources."remove-trailing-separator-1.1.0"
8569 sources."remove-trailing-separator-1.1.0"
8570 (sources."renderkid-2.0.2" // {
8571 dependencies = [
8572 sources."ansi-regex-2.1.1"
8573 sources."domhandler-2.1.0"
8574 sources."domutils-1.1.6"
8575 sources."htmlparser2-3.3.0"
8576 sources."isarray-0.0.1"
8577 sources."readable-stream-1.0.34"
8578 sources."strip-ansi-3.0.1"
8579 ];
8580 })
6150 sources."repeat-element-1.1.3"
8581 sources."repeat-element-1.1.3"
6151 sources."repeat-string-1.6.1"
8582 sources."repeat-string-1.6.1"
8583 sources."repeating-2.0.1"
6152 sources."request-2.81.0"
8584 sources."request-2.81.0"
6153 sources."request-progress-2.0.1"
8585 sources."request-progress-2.0.1"
6154 sources."require-directory-2.1.1"
8586 sources."require-directory-2.1.1"
@@ -6159,12 +8591,14 b' let'
6159 sources."resolve-from-3.0.0"
8591 sources."resolve-from-3.0.0"
6160 sources."resolve-url-0.2.1"
8592 sources."resolve-url-0.2.1"
6161 sources."ret-0.1.15"
8593 sources."ret-0.1.15"
8594 sources."right-align-0.1.3"
6162 sources."rimraf-2.2.8"
8595 sources."rimraf-2.2.8"
6163 sources."ripemd160-2.0.2"
8596 sources."ripemd160-2.0.2"
6164 sources."run-queue-1.0.3"
8597 sources."run-queue-1.0.3"
6165 sources."safe-buffer-5.1.2"
8598 sources."safe-buffer-5.1.2"
6166 sources."safe-regex-1.1.0"
8599 sources."safe-regex-1.1.0"
6167 sources."safer-buffer-2.1.2"
8600 sources."safer-buffer-2.1.2"
8601 sources."sax-1.2.4"
6168 (sources."schema-utils-0.4.7" // {
8602 (sources."schema-utils-0.4.7" // {
6169 dependencies = [
8603 dependencies = [
6170 sources."ajv-6.5.4"
8604 sources."ajv-6.5.4"
@@ -6186,6 +8620,7 b' let'
6186 sources."shelljs-0.3.0"
8620 sources."shelljs-0.3.0"
6187 sources."sigmund-1.0.1"
8621 sources."sigmund-1.0.1"
6188 sources."signal-exit-3.0.2"
8622 sources."signal-exit-3.0.2"
8623 sources."slash-1.0.0"
6189 (sources."snapdragon-0.8.2" // {
8624 (sources."snapdragon-0.8.2" // {
6190 dependencies = [
8625 dependencies = [
6191 sources."define-property-0.2.5"
8626 sources."define-property-0.2.5"
@@ -6215,12 +8650,15 b' let'
6215 ];
8650 ];
6216 })
8651 })
6217 sources."sntp-1.0.9"
8652 sources."sntp-1.0.9"
8653 sources."sort-keys-1.1.2"
6218 sources."source-list-map-2.0.1"
8654 sources."source-list-map-2.0.1"
6219 sources."source-map-0.5.7"
8655 sources."source-map-0.5.7"
6220 sources."source-map-resolve-0.5.2"
8656 sources."source-map-resolve-0.5.2"
8657 sources."source-map-support-0.4.18"
6221 sources."source-map-url-0.4.0"
8658 sources."source-map-url-0.4.0"
6222 sources."split-1.0.1"
8659 sources."split-1.0.1"
6223 sources."split-string-3.1.0"
8660 sources."split-string-3.1.0"
8661 sources."sprintf-js-1.0.3"
6224 (sources."sshpk-1.15.1" // {
8662 (sources."sshpk-1.15.1" // {
6225 dependencies = [
8663 dependencies = [
6226 sources."assert-plus-1.0.0"
8664 sources."assert-plus-1.0.0"
@@ -6260,6 +8698,7 b' let'
6260 ];
8698 ];
6261 })
8699 })
6262 sources."stream-shift-1.0.0"
8700 sources."stream-shift-1.0.0"
8701 sources."strict-uri-encode-1.1.0"
6263 (sources."string-width-2.1.1" // {
8702 (sources."string-width-2.1.1" // {
6264 dependencies = [
8703 dependencies = [
6265 sources."ansi-regex-3.0.0"
8704 sources."ansi-regex-3.0.0"
@@ -6272,7 +8711,16 b' let'
6272 sources."strip-ansi-0.3.0"
8711 sources."strip-ansi-0.3.0"
6273 sources."strip-eof-1.0.0"
8712 sources."strip-eof-1.0.0"
6274 sources."strip-json-comments-1.0.4"
8713 sources."strip-json-comments-1.0.4"
8714 sources."style-loader-0.21.0"
6275 sources."supports-color-0.2.0"
8715 sources."supports-color-0.2.0"
8716 (sources."svgo-0.7.2" // {
8717 dependencies = [
8718 sources."argparse-1.0.10"
8719 sources."colors-1.1.2"
8720 sources."esprima-2.7.3"
8721 sources."js-yaml-3.7.0"
8722 ];
8723 })
6276 sources."tapable-1.1.0"
8724 sources."tapable-1.1.0"
6277 sources."throttleit-1.0.0"
8725 sources."throttleit-1.0.0"
6278 sources."through-2.3.8"
8726 sources."through-2.3.8"
@@ -6291,6 +8739,7 b' let'
6291 ];
8739 ];
6292 })
8740 })
6293 sources."to-arraybuffer-1.0.1"
8741 sources."to-arraybuffer-1.0.1"
8742 sources."to-fast-properties-1.0.3"
6294 (sources."to-object-path-0.3.0" // {
8743 (sources."to-object-path-0.3.0" // {
6295 dependencies = [
8744 dependencies = [
6296 sources."kind-of-3.2.2"
8745 sources."kind-of-3.2.2"
@@ -6298,18 +8747,35 b' let'
6298 })
8747 })
6299 sources."to-regex-3.0.2"
8748 sources."to-regex-3.0.2"
6300 sources."to-regex-range-2.1.1"
8749 sources."to-regex-range-2.1.1"
8750 sources."toposort-1.0.7"
6301 sources."tough-cookie-2.3.4"
8751 sources."tough-cookie-2.3.4"
8752 sources."trim-right-1.0.1"
8753 (sources."ts-loader-1.3.3" // {
8754 dependencies = [
8755 sources."colors-1.3.2"
8756 sources."enhanced-resolve-3.4.1"
8757 sources."graceful-fs-4.1.11"
8758 sources."loader-utils-0.2.17"
8759 sources."tapable-0.2.8"
8760 ];
8761 })
6302 sources."tslib-1.9.3"
8762 sources."tslib-1.9.3"
6303 sources."tty-browserify-0.0.0"
8763 sources."tty-browserify-0.0.0"
6304 sources."tunnel-agent-0.6.0"
8764 sources."tunnel-agent-0.6.0"
6305 sources."tweetnacl-0.14.5"
8765 sources."tweetnacl-0.14.5"
6306 sources."type-check-0.3.2"
6307 sources."typedarray-0.0.6"
8766 sources."typedarray-0.0.6"
6308 (sources."uglify-es-3.3.10" // {
8767 (sources."uglify-es-3.3.10" // {
6309 dependencies = [
8768 dependencies = [
6310 sources."source-map-0.6.1"
8769 sources."source-map-0.6.1"
6311 ];
8770 ];
6312 })
8771 })
8772 (sources."uglify-js-3.4.9" // {
8773 dependencies = [
8774 sources."commander-2.17.1"
8775 sources."source-map-0.6.1"
8776 ];
8777 })
8778 sources."uglify-to-browserify-1.0.2"
6313 (sources."uglifyjs-webpack-plugin-1.3.0" // {
8779 (sources."uglifyjs-webpack-plugin-1.3.0" // {
6314 dependencies = [
8780 dependencies = [
6315 sources."source-map-0.6.1"
8781 sources."source-map-0.6.1"
@@ -6325,6 +8791,8 b' let'
6325 sources."set-value-0.4.3"
8791 sources."set-value-0.4.3"
6326 ];
8792 ];
6327 })
8793 })
8794 sources."uniq-1.0.1"
8795 sources."uniqs-2.0.0"
6328 sources."unique-filename-1.1.1"
8796 sources."unique-filename-1.1.1"
6329 sources."unique-slug-2.0.1"
8797 sources."unique-slug-2.0.1"
6330 (sources."unset-value-1.0.0" // {
8798 (sources."unset-value-1.0.0" // {
@@ -6338,6 +8806,7 b' let'
6338 ];
8806 ];
6339 })
8807 })
6340 sources."upath-1.1.0"
8808 sources."upath-1.1.0"
8809 sources."upper-case-1.1.3"
6341 (sources."uri-js-4.2.2" // {
8810 (sources."uri-js-4.2.2" // {
6342 dependencies = [
8811 dependencies = [
6343 sources."punycode-2.1.1"
8812 sources."punycode-2.1.1"
@@ -6352,21 +8821,18 b' let'
6352 sources."use-3.1.1"
8821 sources."use-3.1.1"
6353 sources."util-0.10.4"
8822 sources."util-0.10.4"
6354 sources."util-deprecate-1.0.2"
8823 sources."util-deprecate-1.0.2"
8824 sources."util.promisify-1.0.0"
8825 sources."utila-0.4.0"
6355 sources."uuid-3.3.2"
8826 sources."uuid-3.3.2"
6356 sources."v8-compile-cache-2.0.2"
8827 sources."v8-compile-cache-2.0.2"
6357 sources."v8flags-3.0.2"
8828 sources."v8flags-3.0.2"
8829 sources."vendors-1.0.2"
6358 (sources."verror-1.10.0" // {
8830 (sources."verror-1.10.0" // {
6359 dependencies = [
8831 dependencies = [
6360 sources."assert-plus-1.0.0"
8832 sources."assert-plus-1.0.0"
6361 ];
8833 ];
6362 })
8834 })
6363 sources."vm-browserify-0.0.4"
8835 sources."vm-browserify-0.0.4"
6364 (sources."vulcanize-1.16.0" // {
6365 dependencies = [
6366 sources."es6-promise-2.3.0"
6367 sources."nopt-3.0.6"
6368 ];
6369 })
6370 (sources."watchpack-1.6.0" // {
8836 (sources."watchpack-1.6.0" // {
6371 dependencies = [
8837 dependencies = [
6372 sources."graceful-fs-4.1.11"
8838 sources."graceful-fs-4.1.11"
@@ -6375,7 +8841,6 b' let'
6375 sources."waypoints-4.0.1"
8841 sources."waypoints-4.0.1"
6376 (sources."webpack-4.23.1" // {
8842 (sources."webpack-4.23.1" // {
6377 dependencies = [
8843 dependencies = [
6378 sources."acorn-5.7.3"
6379 sources."ajv-6.5.4"
8844 sources."ajv-6.5.4"
6380 ];
8845 ];
6381 })
8846 })
@@ -6386,20 +8851,43 b' let'
6386 sources."supports-color-5.5.0"
8851 sources."supports-color-5.5.0"
6387 ];
8852 ];
6388 })
8853 })
8854 (sources."webpack-core-0.6.9" // {
8855 dependencies = [
8856 sources."source-list-map-0.1.8"
8857 sources."source-map-0.4.4"
8858 ];
8859 })
6389 (sources."webpack-sources-1.3.0" // {
8860 (sources."webpack-sources-1.3.0" // {
6390 dependencies = [
8861 dependencies = [
6391 sources."source-map-0.6.1"
8862 sources."source-map-0.6.1"
6392 ];
8863 ];
6393 })
8864 })
8865 (sources."webpack-uglify-js-plugin-1.1.9" // {
8866 dependencies = [
8867 sources."ansi-regex-2.1.1"
8868 sources."ansi-styles-2.2.1"
8869 sources."camelcase-1.2.1"
8870 sources."chalk-1.1.3"
8871 sources."cliui-2.1.0"
8872 sources."decamelize-1.2.0"
8873 sources."has-ansi-2.0.0"
8874 sources."strip-ansi-3.0.1"
8875 sources."supports-color-2.0.0"
8876 sources."uglify-js-2.8.29"
8877 sources."yargs-3.10.0"
8878 ];
8879 })
8880 sources."whet.extend-0.9.9"
6394 sources."which-1.0.9"
8881 sources."which-1.0.9"
6395 sources."which-module-2.0.0"
8882 sources."which-module-2.0.0"
8883 sources."window-size-0.1.0"
6396 (sources."winston-2.4.4" // {
8884 (sources."winston-2.4.4" // {
6397 dependencies = [
8885 dependencies = [
6398 sources."async-1.0.0"
8886 sources."async-1.0.0"
6399 sources."colors-1.0.3"
8887 sources."colors-1.0.3"
6400 ];
8888 ];
6401 })
8889 })
6402 sources."wordwrap-1.0.0"
8890 sources."wordwrap-0.0.2"
6403 sources."worker-farm-1.6.0"
8891 sources."worker-farm-1.6.0"
6404 (sources."wrap-ansi-2.1.0" // {
8892 (sources."wrap-ansi-2.1.0" // {
6405 dependencies = [
8893 dependencies = [
@@ -63,7 +63,6 b' class TestHomeController(TestController)'
63 {'beaker.session.secret': 'test-rc-uytcxaz'})
63 {'beaker.session.secret': 'test-rc-uytcxaz'})
64 response.mustcontain('style.css?ver={0}'.format(rhodecode_version_hash))
64 response.mustcontain('style.css?ver={0}'.format(rhodecode_version_hash))
65 response.mustcontain('scripts.js?ver={0}'.format(rhodecode_version_hash))
65 response.mustcontain('scripts.js?ver={0}'.format(rhodecode_version_hash))
66 response.mustcontain('hodecode-components.html?ver={0}'.format(rhodecode_version_hash))
67
66
68 def test_index_contains_backend_specific_details(self, backend):
67 def test_index_contains_backend_specific_details(self, backend):
69 self.log_user()
68 self.log_user()
@@ -14,7 +14,7 b''
14 <rhodecode-favicon></rhodecode-favicon>
14 <rhodecode-favicon></rhodecode-favicon>
15 </template>
15 </template>
16 <script>
16 <script>
17 ccLog = Logger.get('RhodeCodeApp');
17 var ccLog = Logger.get('RhodeCodeApp');
18 ccLog.setLevel(Logger.OFF);
18 ccLog.setLevel(Logger.OFF);
19
19
20 var rhodeCodeApp = Polymer({
20 var rhodeCodeApp = Polymer({
@@ -3,8 +3,85 b''
3 <link rel="import" href="../rhodecode-unsafe-html/rhodecode-unsafe-html.html">
3 <link rel="import" href="../rhodecode-unsafe-html/rhodecode-unsafe-html.html">
4 <dom-module id="rhodecode-toast">
4 <dom-module id="rhodecode-toast">
5 <template>
5 <template>
6 <style include="shared-styles"></style>
6 <style include="shared-styles">
7 <link rel="stylesheet" href="rhodecode-toast.css">
7 /* inset border for buttons - does not work in ie */
8 /* rounded borders */
9 /* rounded borders - bottom only */
10 /* rounded borders - top only */
11 /* text shadow */
12 /* centers text in a circle - input diameter of circle and color */
13 /* pill version of the circle */
14 .absolute-center {
15 margin: auto;
16 position: absolute;
17 top: 0;
18 left: 0;
19 bottom: 0;
20 right: 0;
21 }
22 .top-left-rounded-corner {
23 -webkit-border-top-left-radius: 2px;
24 -khtml-border-radius-topleft: 2px;
25 border-top-left-radius: 2px;
26 }
27 .top-right-rounded-corner {
28 -webkit-border-top-right-radius: 2px;
29 -khtml-border-radius-topright: 2px;
30 border-top-right-radius: 2px;
31 }
32 .bottom-left-rounded-corner {
33 -webkit-border-bottom-left-radius: 2px;
34 -khtml-border-radius-bottomleft: 2px;
35 border-bottom-left-radius: 2px;
36 }
37 .bottom-right-rounded-corner {
38 -webkit-border-bottom-right-radius: 2px;
39 -khtml-border-radius-bottomright: 2px;
40 border-bottom-right-radius: 2px;
41 }
42 .top-left-rounded-corner-mid {
43 -webkit-border-top-left-radius: 2px;
44 -khtml-border-radius-topleft: 2px;
45 border-top-left-radius: 2px;
46 }
47 .top-right-rounded-corner-mid {
48 -webkit-border-top-right-radius: 2px;
49 -khtml-border-radius-topright: 2px;
50 border-top-right-radius: 2px;
51 }
52 .bottom-left-rounded-corner-mid {
53 -webkit-border-bottom-left-radius: 2px;
54 -khtml-border-radius-bottomleft: 2px;
55 border-bottom-left-radius: 2px;
56 }
57 .bottom-right-rounded-corner-mid {
58 -webkit-border-bottom-right-radius: 2px;
59 -khtml-border-radius-bottomright: 2px;
60 border-bottom-right-radius: 2px;
61 }
62 .alert {
63 margin: 10px 0;
64 }
65 .toast-close {
66 margin: 0;
67 float: right;
68 cursor: pointer;
69 }
70 .toast-message-holder {
71 background: rgba(255, 255, 255, 0.25);
72 }
73 .toast-message-holder.fixed {
74 position: fixed;
75 padding: 10px 0;
76 margin-left: 10px;
77 margin-right: 10px;
78 top: 0;
79 left: 0;
80 right: 0;
81 z-index: 100;
82 }
83 </style>
84
8 <template is="dom-if" if="[[hasToasts]]">
85 <template is="dom-if" if="[[hasToasts]]">
9 <div class$="container toast-message-holder [[conditionalClass(isFixed)]]">
86 <div class$="container toast-message-holder [[conditionalClass(isFixed)]]">
10 <template is="dom-repeat" items="[[toasts]]">
87 <template is="dom-repeat" items="[[toasts]]">
@@ -4,8 +4,19 b''
4
4
5 <dom-module id="rhodecode-toggle">
5 <dom-module id="rhodecode-toggle">
6
6
7 <style include="shared-styles"></style>
7 <style include="shared-styles">
8 <link rel="stylesheet" href="rhodecode-toggle.css">
8 .rc-toggle {
9 float: left;
10 position: relative;
11 }
12 .rc-toggle paper-spinner {
13 position: absolute;
14 top: 0;
15 left: -30px;
16 width: 20px;
17 height: 20px;
18 }
19 </style>
9
20
10 <template>
21 <template>
11 <div class="rc-toggle">
22 <div class="rc-toggle">
@@ -1,3 +1,3 b''
1 <dom-module id="root-styles">
1 <dom-module id="shared-styles">
2 <template>
2 <template>
3 <style>
3 <style>
@@ -101,7 +101,6 b" c.template_context['default_user'] = {"
101 <script> var alertMessagePayloads = ${h.flash.json_alerts(request=request)|n}; </script>
101 <script> var alertMessagePayloads = ${h.flash.json_alerts(request=request)|n}; </script>
102 ## avoide escaping the %N
102 ## avoide escaping the %N
103 <script language="javascript" type="text/javascript" src="${h.asset('js/scripts.js', ver=c.rhodecode_version_hash)}"></script>
103 <script language="javascript" type="text/javascript" src="${h.asset('js/scripts.js', ver=c.rhodecode_version_hash)}"></script>
104 <link rel="import" href="${h.asset('js/rhodecode-components.html', ver=c.rhodecode_version_hash)}">
105 <script>CodeMirror.modeURL = "${h.asset('') + 'js/mode/%N/%N.js?ver='+c.rhodecode_version_hash}";</script>
104 <script>CodeMirror.modeURL = "${h.asset('') + 'js/mode/%N/%N.js?ver='+c.rhodecode_version_hash}";</script>
106
105
107
106
@@ -1,11 +0,0 b''
1 <link rel="import" href="../../../../../../bower_components/polymer/polymer.html">
2 <dom-module id="rhodecode-legacy-js">
3 <template>
4 <script src="../../../scripts.js"></script>
5 </template>
6 <script>
7 Polymer({
8 is: 'rhodecode-legacy-js',
9 });
10 </script>
11 </dom-module>
@@ -1,8 +0,0 b''
1 <!-- required for stamped out templates that might use common elements -->
2 <link rel="import" href="../../../../../bower_components/iron-ajax/iron-ajax.html">
3 <link rel="import" href="shared-styles.html">
4 <link rel="import" href="channelstream-connection/channelstream-connection.html">
5 <link rel="import" href="rhodecode-toast/rhodecode-toast.html">
6 <link rel="import" href="rhodecode-toggle/rhodecode-toggle.html">
7 <link rel="import" href="rhodecode-unsafe-html/rhodecode-unsafe-html.html">
8 <link rel="import" href="rhodecode-app/rhodecode-app.html">
@@ -1,5 +0,0 b''
1 <dom-module id="shared-styles">
2 <template>
3 <link rel="stylesheet" href="../../../css/style-polymer.css">
4 </template>
5 </dom-module>
General Comments 0
You need to be logged in to leave comments. Login now