##// 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 };
@@ -1,67 +1,68 b''
1 syntax: glob
1 syntax: glob
2 *.egg
2 *.egg
3 *.egg-info
3 *.egg-info
4 *.idea
4 *.idea
5 *.orig
5 *.orig
6 *.pyc
6 *.pyc
7 *.sqlite-journal
7 *.sqlite-journal
8 *.swp
8 *.swp
9 *.tox
9 *.tox
10 *.DS_Store*
10 *.DS_Store*
11 rhodecode/public/js/src/components/**/*.css
11 rhodecode/public/js/src/components/**/*.css
12
12
13 syntax: regexp
13 syntax: regexp
14
14
15 #.filename
15 #.filename
16 ^\.settings$
16 ^\.settings$
17 ^\.project$
17 ^\.project$
18 ^\.pydevproject$
18 ^\.pydevproject$
19 ^\.coverage$
19 ^\.coverage$
20 ^\.cache.*$
20 ^\.cache.*$
21 ^\.rhodecode$
21 ^\.rhodecode$
22
22
23 ^rcextensions
23 ^rcextensions
24 ^.dev
24 ^.dev
25 ^._dev
25 ^._dev
26 ^build/
26 ^build/
27 ^bower_components/
27 ^bower_components/
28 ^coverage\.xml$
28 ^coverage\.xml$
29 ^data$
29 ^data$
30 ^\.eggs/
30 ^\.eggs/
31 ^configs/data$
31 ^configs/data$
32 ^dev.ini$
32 ^dev.ini$
33 ^acceptance_tests/dev.*\.ini$
33 ^acceptance_tests/dev.*\.ini$
34 ^dist/
34 ^dist/
35 ^fabfile.py
35 ^fabfile.py
36 ^htmlcov
36 ^htmlcov
37 ^junit\.xml$
37 ^junit\.xml$
38 ^node_modules/
38 ^node_modules/
39 ^node_binaries/
39 ^node_binaries/
40 ^pylint.log$
40 ^pylint.log$
41 ^rcextensions/
41 ^rcextensions/
42 ^result$
42 ^result$
43 ^rhodecode/public/css/style.css$
43 ^rhodecode/public/css/style.css$
44 ^rhodecode/public/css/style-polymer.css$
44 ^rhodecode/public/css/style-polymer.css$
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$
51 ^rhodecode\.log$
52 ^rhodecode\.log$
52 ^rhodecode_dev\.log$
53 ^rhodecode_dev\.log$
53 ^test\.db$
54 ^test\.db$
54
55
55 # ac-tests
56 # ac-tests
56 ^acceptance_tests/\.cache.*$
57 ^acceptance_tests/\.cache.*$
57 ^acceptance_tests/externals
58 ^acceptance_tests/externals
58 ^acceptance_tests/ghostdriver.log$
59 ^acceptance_tests/ghostdriver.log$
59 ^acceptance_tests/local(_.+)?\.ini$
60 ^acceptance_tests/local(_.+)?\.ini$
60
61
61 # docs
62 # docs
62 ^docs/_build$
63 ^docs/_build$
63 ^docs/result$
64 ^docs/result$
64 ^docs-internal/_build$
65 ^docs-internal/_build$
65
66
66 # Cythonized things
67 # Cythonized things
67 ^rhodecode/.*\.(c|so)$
68 ^rhodecode/.*\.(c|so)$
@@ -1,14 +1,21 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);
5
13
6 grunt.loadNpmTasks('grunt-contrib-less');
14 grunt.loadNpmTasks('grunt-contrib-less');
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 };
@@ -1,188 +1,176 b''
1 {
1 {
2 "dirs": {
2 "dirs": {
3 "css": {
3 "css": {
4 "src":"rhodecode/public/css",
4 "src":"rhodecode/public/css",
5 "dest":"rhodecode/public/css"
5 "dest":"rhodecode/public/css"
6 },
6 },
7 "js": {
7 "js": {
8 "src": "rhodecode/public/js/src",
8 "src": "rhodecode/public/js/src",
9 "src_rc": "rhodecode/public/js/rhodecode",
9 "src_rc": "rhodecode/public/js/rhodecode",
10 "dest": "rhodecode/public/js",
10 "dest": "rhodecode/public/js",
11 "bower": "bower_components",
11 "bower": "bower_components",
12 "node_modules": "node_modules"
12 "node_modules": "node_modules"
13 }
13 }
14 },
14 },
15 "copy": {
15 "copy": {
16 "main": {
16 "main": {
17 "expand": true,
17 "expand": true,
18 "cwd": "bower_components",
18 "cwd": "bower_components",
19 "src": "webcomponentsjs/webcomponents*.*",
19 "src": "webcomponentsjs/webcomponents*.*",
20 "dest": "<%= dirs.js.dest %>/vendors"
20 "dest": "<%= dirs.js.dest %>/vendors"
21 }
21 }
22 },
22 },
23 "concat": {
23 "concat": {
24 "polymercss": {
24 "polymercss": {
25 "src": [
25 "src": [
26 "<%= dirs.js.src %>/components/root-styles-prefix.html",
26 "<%= dirs.js.src %>/components/root-styles-prefix.html",
27 "<%= dirs.css.src %>/style-polymer.css",
27 "<%= dirs.css.src %>/style-polymer.css",
28 "<%= dirs.js.src %>/components/root-styles-suffix.html"
28 "<%= dirs.js.src %>/components/root-styles-suffix.html"
29 ],
29 ],
30 "dest": "<%= dirs.js.dest %>/src/components/root-styles.gen.html",
30 "dest": "<%= dirs.js.dest %>/src/components/root-styles.gen.html",
31 "nonull": true
31 "nonull": true
32 },
32 },
33 "dist": {
33 "dist": {
34 "src": [
34 "src": [
35 "<%= dirs.js.node_modules %>/jquery/dist/jquery.min.js",
35 "<%= dirs.js.node_modules %>/jquery/dist/jquery.min.js",
36 "<%= dirs.js.node_modules %>/mousetrap/mousetrap.min.js",
36 "<%= dirs.js.node_modules %>/mousetrap/mousetrap.min.js",
37 "<%= dirs.js.node_modules %>/moment/min/moment.min.js",
37 "<%= dirs.js.node_modules %>/moment/min/moment.min.js",
38 "<%= dirs.js.node_modules %>/clipboard/dist/clipboard.min.js",
38 "<%= dirs.js.node_modules %>/clipboard/dist/clipboard.min.js",
39 "<%= dirs.js.node_modules %>/favico.js/favico-0.3.10.min.js",
39 "<%= dirs.js.node_modules %>/favico.js/favico-0.3.10.min.js",
40 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/sticky-sidebar.min.js",
40 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/sticky-sidebar.min.js",
41 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/jquery.sticky-sidebar.min.js",
41 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/jquery.sticky-sidebar.min.js",
42 "<%= dirs.js.node_modules %>/waypoints/lib/noframework.waypoints.min.js",
42 "<%= dirs.js.node_modules %>/waypoints/lib/noframework.waypoints.min.js",
43 "<%= dirs.js.node_modules %>/waypoints/lib/jquery.waypoints.min.js",
43 "<%= dirs.js.node_modules %>/waypoints/lib/jquery.waypoints.min.js",
44 "<%= dirs.js.node_modules %>/appenlight-client/appenlight-client.min.js",
44 "<%= dirs.js.node_modules %>/appenlight-client/appenlight-client.min.js",
45 "<%= dirs.js.src %>/logging.js",
45 "<%= dirs.js.src %>/logging.js",
46 "<%= dirs.js.src %>/bootstrap.js",
46 "<%= dirs.js.src %>/bootstrap.js",
47 "<%= dirs.js.src %>/i18n_utils.js",
47 "<%= dirs.js.src %>/i18n_utils.js",
48 "<%= dirs.js.src %>/deform.js",
48 "<%= dirs.js.src %>/deform.js",
49 "<%= dirs.js.src %>/ejs.js",
49 "<%= dirs.js.src %>/ejs.js",
50 "<%= dirs.js.src %>/ejs_templates/utils.js",
50 "<%= dirs.js.src %>/ejs_templates/utils.js",
51 "<%= dirs.js.src %>/plugins/jquery.pjax.js",
51 "<%= dirs.js.src %>/plugins/jquery.pjax.js",
52 "<%= dirs.js.src %>/plugins/jquery.dataTables.js",
52 "<%= dirs.js.src %>/plugins/jquery.dataTables.js",
53 "<%= dirs.js.src %>/plugins/flavoured_checkbox.js",
53 "<%= dirs.js.src %>/plugins/flavoured_checkbox.js",
54 "<%= dirs.js.src %>/plugins/jquery.auto-grow-input.js",
54 "<%= dirs.js.src %>/plugins/jquery.auto-grow-input.js",
55 "<%= dirs.js.src %>/plugins/jquery.autocomplete.js",
55 "<%= dirs.js.src %>/plugins/jquery.autocomplete.js",
56 "<%= dirs.js.src %>/plugins/jquery.debounce.js",
56 "<%= dirs.js.src %>/plugins/jquery.debounce.js",
57 "<%= dirs.js.src %>/plugins/jquery.mark.js",
57 "<%= dirs.js.src %>/plugins/jquery.mark.js",
58 "<%= dirs.js.src %>/plugins/jquery.timeago.js",
58 "<%= dirs.js.src %>/plugins/jquery.timeago.js",
59 "<%= dirs.js.src %>/plugins/jquery.timeago-extension.js",
59 "<%= dirs.js.src %>/plugins/jquery.timeago-extension.js",
60 "<%= dirs.js.src %>/select2/select2.js",
60 "<%= dirs.js.src %>/select2/select2.js",
61 "<%= dirs.js.src %>/codemirror/codemirror.js",
61 "<%= dirs.js.src %>/codemirror/codemirror.js",
62 "<%= dirs.js.src %>/codemirror/codemirror_loadmode.js",
62 "<%= dirs.js.src %>/codemirror/codemirror_loadmode.js",
63 "<%= dirs.js.src %>/codemirror/codemirror_hint.js",
63 "<%= dirs.js.src %>/codemirror/codemirror_hint.js",
64 "<%= dirs.js.src %>/codemirror/codemirror_overlay.js",
64 "<%= dirs.js.src %>/codemirror/codemirror_overlay.js",
65 "<%= dirs.js.src %>/codemirror/codemirror_placeholder.js",
65 "<%= dirs.js.src %>/codemirror/codemirror_placeholder.js",
66 "<%= dirs.js.src %>/codemirror/codemirror_simplemode.js",
66 "<%= dirs.js.src %>/codemirror/codemirror_simplemode.js",
67 "<%= dirs.js.dest %>/mode/meta.js",
67 "<%= dirs.js.dest %>/mode/meta.js",
68 "<%= dirs.js.dest %>/mode/meta_ext.js",
68 "<%= dirs.js.dest %>/mode/meta_ext.js",
69 "<%= dirs.js.src_rc %>/i18n/select2/translations.js",
69 "<%= dirs.js.src_rc %>/i18n/select2/translations.js",
70 "<%= dirs.js.src %>/rhodecode/utils/array.js",
70 "<%= dirs.js.src %>/rhodecode/utils/array.js",
71 "<%= dirs.js.src %>/rhodecode/utils/string.js",
71 "<%= dirs.js.src %>/rhodecode/utils/string.js",
72 "<%= dirs.js.src %>/rhodecode/utils/pyroutes.js",
72 "<%= dirs.js.src %>/rhodecode/utils/pyroutes.js",
73 "<%= dirs.js.src %>/rhodecode/utils/ajax.js",
73 "<%= dirs.js.src %>/rhodecode/utils/ajax.js",
74 "<%= dirs.js.src %>/rhodecode/utils/autocomplete.js",
74 "<%= dirs.js.src %>/rhodecode/utils/autocomplete.js",
75 "<%= dirs.js.src %>/rhodecode/utils/colorgenerator.js",
75 "<%= dirs.js.src %>/rhodecode/utils/colorgenerator.js",
76 "<%= dirs.js.src %>/rhodecode/utils/ie.js",
76 "<%= dirs.js.src %>/rhodecode/utils/ie.js",
77 "<%= dirs.js.src %>/rhodecode/utils/os.js",
77 "<%= dirs.js.src %>/rhodecode/utils/os.js",
78 "<%= dirs.js.src %>/rhodecode/utils/topics.js",
78 "<%= dirs.js.src %>/rhodecode/utils/topics.js",
79 "<%= dirs.js.src %>/rhodecode/init.js",
79 "<%= dirs.js.src %>/rhodecode/init.js",
80 "<%= dirs.js.src %>/rhodecode/changelog.js",
80 "<%= dirs.js.src %>/rhodecode/changelog.js",
81 "<%= dirs.js.src %>/rhodecode/codemirror.js",
81 "<%= dirs.js.src %>/rhodecode/codemirror.js",
82 "<%= dirs.js.src %>/rhodecode/comments.js",
82 "<%= dirs.js.src %>/rhodecode/comments.js",
83 "<%= dirs.js.src %>/rhodecode/constants.js",
83 "<%= dirs.js.src %>/rhodecode/constants.js",
84 "<%= dirs.js.src %>/rhodecode/files.js",
84 "<%= dirs.js.src %>/rhodecode/files.js",
85 "<%= dirs.js.src %>/rhodecode/followers.js",
85 "<%= dirs.js.src %>/rhodecode/followers.js",
86 "<%= dirs.js.src %>/rhodecode/menus.js",
86 "<%= dirs.js.src %>/rhodecode/menus.js",
87 "<%= dirs.js.src %>/rhodecode/notifications.js",
87 "<%= dirs.js.src %>/rhodecode/notifications.js",
88 "<%= dirs.js.src %>/rhodecode/permissions.js",
88 "<%= dirs.js.src %>/rhodecode/permissions.js",
89 "<%= dirs.js.src %>/rhodecode/pjax.js",
89 "<%= dirs.js.src %>/rhodecode/pjax.js",
90 "<%= dirs.js.src %>/rhodecode/pullrequests.js",
90 "<%= dirs.js.src %>/rhodecode/pullrequests.js",
91 "<%= dirs.js.src %>/rhodecode/settings.js",
91 "<%= dirs.js.src %>/rhodecode/settings.js",
92 "<%= dirs.js.src %>/rhodecode/select2_widgets.js",
92 "<%= dirs.js.src %>/rhodecode/select2_widgets.js",
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
100 }
101 }
101 },
102 },
102 "less": {
103 "less": {
103 "development": {
104 "development": {
104 "options": {
105 "options": {
105 "compress": false,
106 "compress": false,
106 "yuicompress": false,
107 "yuicompress": false,
107 "optimization": 0
108 "optimization": 0
108 },
109 },
109 "files": {
110 "files": {
110 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
111 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
111 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
112 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
112 }
113 }
113 },
114 },
114 "production": {
115 "production": {
115 "options": {
116 "options": {
116 "compress": true,
117 "compress": true,
117 "yuicompress": true,
118 "yuicompress": true,
118 "optimization": 2
119 "optimization": 2
119 },
120 },
120 "files": {
121 "files": {
121 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
122 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
122 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
123 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
123 }
124 }
124 },
125 },
125 "components": {
126 "components": {
126 "files": [
127 "files": [
127 {
128 {
128 "cwd": "<%= dirs.js.src %>/components/",
129 "cwd": "<%= dirs.js.src %>/components/",
129 "dest": "<%= dirs.js.src %>/components/",
130 "dest": "<%= dirs.js.src %>/components/",
130 "src": [
131 "src": [
131 "**/*.less"
132 "**/*.less"
132 ],
133 ],
133 "expand": true,
134 "expand": true,
134 "ext": ".css"
135 "ext": ".css"
135 }
136 }
136 ]
137 ]
137 }
138 }
138 },
139 },
139 "watch": {
140 "watch": {
140 "less": {
141 "less": {
141 "files": [
142 "files": [
142 "<%= dirs.css.src %>/**/*.less",
143 "<%= dirs.css.src %>/**/*.less",
143 "<%= dirs.js.src %>/components/**/*.less"
144 "<%= dirs.js.src %>/components/**/*.less"
144 ],
145 ],
145 "tasks": [
146 "tasks": [
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 },
153 "js": {
154 "js": {
154 "files": [
155 "files": [
155 "!<%= dirs.js.src %>/components/root-styles.gen.html",
156 "!<%= dirs.js.src %>/components/root-styles.gen.html",
156 "<%= dirs.js.src %>/**/*.js",
157 "<%= dirs.js.src %>/**/*.js",
157 "<%= dirs.js.src %>/components/**/*.html"
158 "<%= dirs.js.src %>/components/**/*.html"
158 ],
159 ],
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 }
166 },
167 },
167 "jshint": {
168 "jshint": {
168 "rhodecode": {
169 "rhodecode": {
169 "src": "<%= dirs.js.src %>/rhodecode/**/*.js",
170 "src": "<%= dirs.js.src %>/rhodecode/**/*.js",
170 "options": {
171 "options": {
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 }
@@ -1,36 +1,50 b''
1 {
1 {
2 "name": "rhodecode-enterprise",
2 "name": "rhodecode-enterprise",
3 "version": "1.0.0",
3 "version": "1.0.0",
4 "private": true,
4 "private": true,
5 "description" : "RhodeCode JS packaged",
5 "description" : "RhodeCode JS packaged",
6 "license": "SEE LICENSE IN LICENSE.txt",
6 "license": "SEE LICENSE IN LICENSE.txt",
7 "repository" : {
7 "repository" : {
8 "type" : "hg",
8 "type" : "hg",
9 "url" : "https://code.rhodecode.com/rhodecode-enterprise-ce"
9 "url" : "https://code.rhodecode.com/rhodecode-enterprise-ce"
10 },
10 },
11 "devDependencies": {
11 "devDependencies": {
12 "appenlight-client": "git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1",
12 "appenlight-client": "git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1",
13 "bower": "^1.8.4",
13 "bower": "^1.8.4",
14 "clipboard": "^2.0.1",
14 "clipboard": "^2.0.1",
15 "exports-loader": "^0.6.4",
15 "exports-loader": "^0.6.4",
16 "favico.js": "^0.3.10",
16 "favico.js": "^0.3.10",
17 "grunt": "^0.4.5",
17 "grunt": "^0.4.5",
18 "grunt-cli": "^1.3.1",
18 "grunt-cli": "^1.3.1",
19 "grunt-contrib-concat": "^0.5.1",
19 "grunt-contrib-concat": "^0.5.1",
20 "grunt-contrib-copy": "^1.0.0",
20 "grunt-contrib-copy": "^1.0.0",
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
@@ -1,6441 +1,8929 b''
1 # This file has been generated by node2nix 1.6.0. Do not edit!
1 # This file has been generated by node2nix 1.6.0. Do not edit!
2
2
3 {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
3 {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
4
4
5 let
5 let
6 sources = {
6 sources = {
7 "@types/clone-0.1.30" = {
7 "@types/clone-0.1.30" = {
8 name = "_at_types_slash_clone";
8 name = "_at_types_slash_clone";
9 packageName = "@types/clone";
9 packageName = "@types/clone";
10 version = "0.1.30";
10 version = "0.1.30";
11 src = fetchurl {
11 src = fetchurl {
12 url = "https://registry.npmjs.org/@types/clone/-/clone-0.1.30.tgz";
12 url = "https://registry.npmjs.org/@types/clone/-/clone-0.1.30.tgz";
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" = {
44 name = "_at_webassemblyjs_slash_ast";
35 name = "_at_webassemblyjs_slash_ast";
45 packageName = "@webassemblyjs/ast";
36 packageName = "@webassemblyjs/ast";
46 version = "1.7.10";
37 version = "1.7.10";
47 src = fetchurl {
38 src = fetchurl {
48 url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.10.tgz";
39 url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.10.tgz";
49 sha512 = "wTUeaByYN2EA6qVqhbgavtGc7fLTOx0glG2IBsFlrFG51uXIGlYBTyIZMf4SPLo3v1bgV/7lBN3l7Z0R6Hswew==";
40 sha512 = "wTUeaByYN2EA6qVqhbgavtGc7fLTOx0glG2IBsFlrFG51uXIGlYBTyIZMf4SPLo3v1bgV/7lBN3l7Z0R6Hswew==";
50 };
41 };
51 };
42 };
52 "@webassemblyjs/floating-point-hex-parser-1.7.10" = {
43 "@webassemblyjs/floating-point-hex-parser-1.7.10" = {
53 name = "_at_webassemblyjs_slash_floating-point-hex-parser";
44 name = "_at_webassemblyjs_slash_floating-point-hex-parser";
54 packageName = "@webassemblyjs/floating-point-hex-parser";
45 packageName = "@webassemblyjs/floating-point-hex-parser";
55 version = "1.7.10";
46 version = "1.7.10";
56 src = fetchurl {
47 src = fetchurl {
57 url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.10.tgz";
48 url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.10.tgz";
58 sha512 = "gMsGbI6I3p/P1xL2UxqhNh1ga2HCsx5VBB2i5VvJFAaqAjd2PBTRULc3BpTydabUQEGlaZCzEUQhLoLG7TvEYQ==";
49 sha512 = "gMsGbI6I3p/P1xL2UxqhNh1ga2HCsx5VBB2i5VvJFAaqAjd2PBTRULc3BpTydabUQEGlaZCzEUQhLoLG7TvEYQ==";
59 };
50 };
60 };
51 };
61 "@webassemblyjs/helper-api-error-1.7.10" = {
52 "@webassemblyjs/helper-api-error-1.7.10" = {
62 name = "_at_webassemblyjs_slash_helper-api-error";
53 name = "_at_webassemblyjs_slash_helper-api-error";
63 packageName = "@webassemblyjs/helper-api-error";
54 packageName = "@webassemblyjs/helper-api-error";
64 version = "1.7.10";
55 version = "1.7.10";
65 src = fetchurl {
56 src = fetchurl {
66 url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.10.tgz";
57 url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.10.tgz";
67 sha512 = "DoYRlPWtuw3yd5BOr9XhtrmB6X1enYF0/54yNvQWGXZEPDF5PJVNI7zQ7gkcKfTESzp8bIBWailaFXEK/jjCsw==";
58 sha512 = "DoYRlPWtuw3yd5BOr9XhtrmB6X1enYF0/54yNvQWGXZEPDF5PJVNI7zQ7gkcKfTESzp8bIBWailaFXEK/jjCsw==";
68 };
59 };
69 };
60 };
70 "@webassemblyjs/helper-buffer-1.7.10" = {
61 "@webassemblyjs/helper-buffer-1.7.10" = {
71 name = "_at_webassemblyjs_slash_helper-buffer";
62 name = "_at_webassemblyjs_slash_helper-buffer";
72 packageName = "@webassemblyjs/helper-buffer";
63 packageName = "@webassemblyjs/helper-buffer";
73 version = "1.7.10";
64 version = "1.7.10";
74 src = fetchurl {
65 src = fetchurl {
75 url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.10.tgz";
66 url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.10.tgz";
76 sha512 = "+RMU3dt/dPh4EpVX4u5jxsOlw22tp3zjqE0m3ftU2tsYxnPULb4cyHlgaNd2KoWuwasCQqn8Mhr+TTdbtj3LlA==";
67 sha512 = "+RMU3dt/dPh4EpVX4u5jxsOlw22tp3zjqE0m3ftU2tsYxnPULb4cyHlgaNd2KoWuwasCQqn8Mhr+TTdbtj3LlA==";
77 };
68 };
78 };
69 };
79 "@webassemblyjs/helper-code-frame-1.7.10" = {
70 "@webassemblyjs/helper-code-frame-1.7.10" = {
80 name = "_at_webassemblyjs_slash_helper-code-frame";
71 name = "_at_webassemblyjs_slash_helper-code-frame";
81 packageName = "@webassemblyjs/helper-code-frame";
72 packageName = "@webassemblyjs/helper-code-frame";
82 version = "1.7.10";
73 version = "1.7.10";
83 src = fetchurl {
74 src = fetchurl {
84 url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.10.tgz";
75 url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.10.tgz";
85 sha512 = "UiytbpKAULOEab2hUZK2ywXen4gWJVrgxtwY3Kn+eZaaSWaRM8z/7dAXRSoamhKFiBh1uaqxzE/XD9BLlug3gw==";
76 sha512 = "UiytbpKAULOEab2hUZK2ywXen4gWJVrgxtwY3Kn+eZaaSWaRM8z/7dAXRSoamhKFiBh1uaqxzE/XD9BLlug3gw==";
86 };
77 };
87 };
78 };
88 "@webassemblyjs/helper-fsm-1.7.10" = {
79 "@webassemblyjs/helper-fsm-1.7.10" = {
89 name = "_at_webassemblyjs_slash_helper-fsm";
80 name = "_at_webassemblyjs_slash_helper-fsm";
90 packageName = "@webassemblyjs/helper-fsm";
81 packageName = "@webassemblyjs/helper-fsm";
91 version = "1.7.10";
82 version = "1.7.10";
92 src = fetchurl {
83 src = fetchurl {
93 url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.10.tgz";
84 url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.10.tgz";
94 sha512 = "w2vDtUK9xeSRtt5+RnnlRCI7wHEvLjF0XdnxJpgx+LJOvklTZPqWkuy/NhwHSLP19sm9H8dWxKeReMR7sCkGZA==";
85 sha512 = "w2vDtUK9xeSRtt5+RnnlRCI7wHEvLjF0XdnxJpgx+LJOvklTZPqWkuy/NhwHSLP19sm9H8dWxKeReMR7sCkGZA==";
95 };
86 };
96 };
87 };
97 "@webassemblyjs/helper-module-context-1.7.10" = {
88 "@webassemblyjs/helper-module-context-1.7.10" = {
98 name = "_at_webassemblyjs_slash_helper-module-context";
89 name = "_at_webassemblyjs_slash_helper-module-context";
99 packageName = "@webassemblyjs/helper-module-context";
90 packageName = "@webassemblyjs/helper-module-context";
100 version = "1.7.10";
91 version = "1.7.10";
101 src = fetchurl {
92 src = fetchurl {
102 url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.10.tgz";
93 url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.10.tgz";
103 sha512 = "yE5x/LzZ3XdPdREmJijxzfrf+BDRewvO0zl8kvORgSWmxpRrkqY39KZSq6TSgIWBxkK4SrzlS3BsMCv2s1FpsQ==";
94 sha512 = "yE5x/LzZ3XdPdREmJijxzfrf+BDRewvO0zl8kvORgSWmxpRrkqY39KZSq6TSgIWBxkK4SrzlS3BsMCv2s1FpsQ==";
104 };
95 };
105 };
96 };
106 "@webassemblyjs/helper-wasm-bytecode-1.7.10" = {
97 "@webassemblyjs/helper-wasm-bytecode-1.7.10" = {
107 name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
98 name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
108 packageName = "@webassemblyjs/helper-wasm-bytecode";
99 packageName = "@webassemblyjs/helper-wasm-bytecode";
109 version = "1.7.10";
100 version = "1.7.10";
110 src = fetchurl {
101 src = fetchurl {
111 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.10.tgz";
102 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.10.tgz";
112 sha512 = "u5qy4SJ/OrxKxZqJ9N3qH4ZQgHaAzsopsYwLvoWJY6Q33r8PhT3VPyNMaJ7ZFoqzBnZlCcS/0f4Sp8WBxylXfg==";
103 sha512 = "u5qy4SJ/OrxKxZqJ9N3qH4ZQgHaAzsopsYwLvoWJY6Q33r8PhT3VPyNMaJ7ZFoqzBnZlCcS/0f4Sp8WBxylXfg==";
113 };
104 };
114 };
105 };
115 "@webassemblyjs/helper-wasm-section-1.7.10" = {
106 "@webassemblyjs/helper-wasm-section-1.7.10" = {
116 name = "_at_webassemblyjs_slash_helper-wasm-section";
107 name = "_at_webassemblyjs_slash_helper-wasm-section";
117 packageName = "@webassemblyjs/helper-wasm-section";
108 packageName = "@webassemblyjs/helper-wasm-section";
118 version = "1.7.10";
109 version = "1.7.10";
119 src = fetchurl {
110 src = fetchurl {
120 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.10.tgz";
111 url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.10.tgz";
121 sha512 = "Ecvww6sCkcjatcyctUrn22neSJHLN/TTzolMGG/N7S9rpbsTZ8c6Bl98GpSpV77EvzNijiNRHBG0+JO99qKz6g==";
112 sha512 = "Ecvww6sCkcjatcyctUrn22neSJHLN/TTzolMGG/N7S9rpbsTZ8c6Bl98GpSpV77EvzNijiNRHBG0+JO99qKz6g==";
122 };
113 };
123 };
114 };
124 "@webassemblyjs/ieee754-1.7.10" = {
115 "@webassemblyjs/ieee754-1.7.10" = {
125 name = "_at_webassemblyjs_slash_ieee754";
116 name = "_at_webassemblyjs_slash_ieee754";
126 packageName = "@webassemblyjs/ieee754";
117 packageName = "@webassemblyjs/ieee754";
127 version = "1.7.10";
118 version = "1.7.10";
128 src = fetchurl {
119 src = fetchurl {
129 url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.10.tgz";
120 url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.10.tgz";
130 sha512 = "HRcWcY+YWt4+s/CvQn+vnSPfRaD4KkuzQFt5MNaELXXHSjelHlSEA8ZcqT69q0GTIuLWZ6JaoKar4yWHVpZHsQ==";
121 sha512 = "HRcWcY+YWt4+s/CvQn+vnSPfRaD4KkuzQFt5MNaELXXHSjelHlSEA8ZcqT69q0GTIuLWZ6JaoKar4yWHVpZHsQ==";
131 };
122 };
132 };
123 };
133 "@webassemblyjs/leb128-1.7.10" = {
124 "@webassemblyjs/leb128-1.7.10" = {
134 name = "_at_webassemblyjs_slash_leb128";
125 name = "_at_webassemblyjs_slash_leb128";
135 packageName = "@webassemblyjs/leb128";
126 packageName = "@webassemblyjs/leb128";
136 version = "1.7.10";
127 version = "1.7.10";
137 src = fetchurl {
128 src = fetchurl {
138 url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.10.tgz";
129 url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.10.tgz";
139 sha512 = "og8MciYlA8hvzCLR71hCuZKPbVBfLQeHv7ImKZ4nlyxrYbG7uJHYtHiHu6OV9SqrGuD03H/HtXC4Bgdjfm9FHw==";
130 sha512 = "og8MciYlA8hvzCLR71hCuZKPbVBfLQeHv7ImKZ4nlyxrYbG7uJHYtHiHu6OV9SqrGuD03H/HtXC4Bgdjfm9FHw==";
140 };
131 };
141 };
132 };
142 "@webassemblyjs/utf8-1.7.10" = {
133 "@webassemblyjs/utf8-1.7.10" = {
143 name = "_at_webassemblyjs_slash_utf8";
134 name = "_at_webassemblyjs_slash_utf8";
144 packageName = "@webassemblyjs/utf8";
135 packageName = "@webassemblyjs/utf8";
145 version = "1.7.10";
136 version = "1.7.10";
146 src = fetchurl {
137 src = fetchurl {
147 url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.10.tgz";
138 url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.10.tgz";
148 sha512 = "Ng6Pxv6siyZp635xCSnH3mKmIFgqWPCcGdoo0GBYgyGdxu7cUj4agV7Uu1a8REP66UYUFXJLudeGgd4RvuJAnQ==";
139 sha512 = "Ng6Pxv6siyZp635xCSnH3mKmIFgqWPCcGdoo0GBYgyGdxu7cUj4agV7Uu1a8REP66UYUFXJLudeGgd4RvuJAnQ==";
149 };
140 };
150 };
141 };
151 "@webassemblyjs/wasm-edit-1.7.10" = {
142 "@webassemblyjs/wasm-edit-1.7.10" = {
152 name = "_at_webassemblyjs_slash_wasm-edit";
143 name = "_at_webassemblyjs_slash_wasm-edit";
153 packageName = "@webassemblyjs/wasm-edit";
144 packageName = "@webassemblyjs/wasm-edit";
154 version = "1.7.10";
145 version = "1.7.10";
155 src = fetchurl {
146 src = fetchurl {
156 url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.10.tgz";
147 url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.10.tgz";
157 sha512 = "e9RZFQlb+ZuYcKRcW9yl+mqX/Ycj9+3/+ppDI8nEE/NCY6FoK8f3dKBcfubYV/HZn44b+ND4hjh+4BYBt+sDnA==";
148 sha512 = "e9RZFQlb+ZuYcKRcW9yl+mqX/Ycj9+3/+ppDI8nEE/NCY6FoK8f3dKBcfubYV/HZn44b+ND4hjh+4BYBt+sDnA==";
158 };
149 };
159 };
150 };
160 "@webassemblyjs/wasm-gen-1.7.10" = {
151 "@webassemblyjs/wasm-gen-1.7.10" = {
161 name = "_at_webassemblyjs_slash_wasm-gen";
152 name = "_at_webassemblyjs_slash_wasm-gen";
162 packageName = "@webassemblyjs/wasm-gen";
153 packageName = "@webassemblyjs/wasm-gen";
163 version = "1.7.10";
154 version = "1.7.10";
164 src = fetchurl {
155 src = fetchurl {
165 url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.10.tgz";
156 url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.10.tgz";
166 sha512 = "M0lb6cO2Y0PzDye/L39PqwV+jvO+2YxEG5ax+7dgq7EwXdAlpOMx1jxyXJTScQoeTpzOPIb+fLgX/IkLF8h2yw==";
157 sha512 = "M0lb6cO2Y0PzDye/L39PqwV+jvO+2YxEG5ax+7dgq7EwXdAlpOMx1jxyXJTScQoeTpzOPIb+fLgX/IkLF8h2yw==";
167 };
158 };
168 };
159 };
169 "@webassemblyjs/wasm-opt-1.7.10" = {
160 "@webassemblyjs/wasm-opt-1.7.10" = {
170 name = "_at_webassemblyjs_slash_wasm-opt";
161 name = "_at_webassemblyjs_slash_wasm-opt";
171 packageName = "@webassemblyjs/wasm-opt";
162 packageName = "@webassemblyjs/wasm-opt";
172 version = "1.7.10";
163 version = "1.7.10";
173 src = fetchurl {
164 src = fetchurl {
174 url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.10.tgz";
165 url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.10.tgz";
175 sha512 = "R66IHGCdicgF5ZliN10yn5HaC7vwYAqrSVJGjtJJQp5+QNPBye6heWdVH/at40uh0uoaDN/UVUfXK0gvuUqtVg==";
166 sha512 = "R66IHGCdicgF5ZliN10yn5HaC7vwYAqrSVJGjtJJQp5+QNPBye6heWdVH/at40uh0uoaDN/UVUfXK0gvuUqtVg==";
176 };
167 };
177 };
168 };
178 "@webassemblyjs/wasm-parser-1.7.10" = {
169 "@webassemblyjs/wasm-parser-1.7.10" = {
179 name = "_at_webassemblyjs_slash_wasm-parser";
170 name = "_at_webassemblyjs_slash_wasm-parser";
180 packageName = "@webassemblyjs/wasm-parser";
171 packageName = "@webassemblyjs/wasm-parser";
181 version = "1.7.10";
172 version = "1.7.10";
182 src = fetchurl {
173 src = fetchurl {
183 url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.10.tgz";
174 url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.10.tgz";
184 sha512 = "AEv8mkXVK63n/iDR3T693EzoGPnNAwKwT3iHmKJNBrrALAhhEjuPzo/lTE4U7LquEwyvg5nneSNdTdgrBaGJcA==";
175 sha512 = "AEv8mkXVK63n/iDR3T693EzoGPnNAwKwT3iHmKJNBrrALAhhEjuPzo/lTE4U7LquEwyvg5nneSNdTdgrBaGJcA==";
185 };
176 };
186 };
177 };
187 "@webassemblyjs/wast-parser-1.7.10" = {
178 "@webassemblyjs/wast-parser-1.7.10" = {
188 name = "_at_webassemblyjs_slash_wast-parser";
179 name = "_at_webassemblyjs_slash_wast-parser";
189 packageName = "@webassemblyjs/wast-parser";
180 packageName = "@webassemblyjs/wast-parser";
190 version = "1.7.10";
181 version = "1.7.10";
191 src = fetchurl {
182 src = fetchurl {
192 url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.10.tgz";
183 url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.10.tgz";
193 sha512 = "YTPEtOBljkCL0VjDp4sHe22dAYSm3ZwdJ9+2NTGdtC7ayNvuip1wAhaAS8Zt9Q6SW9E5Jf5PX7YE3XWlrzR9cw==";
184 sha512 = "YTPEtOBljkCL0VjDp4sHe22dAYSm3ZwdJ9+2NTGdtC7ayNvuip1wAhaAS8Zt9Q6SW9E5Jf5PX7YE3XWlrzR9cw==";
194 };
185 };
195 };
186 };
196 "@webassemblyjs/wast-printer-1.7.10" = {
187 "@webassemblyjs/wast-printer-1.7.10" = {
197 name = "_at_webassemblyjs_slash_wast-printer";
188 name = "_at_webassemblyjs_slash_wast-printer";
198 packageName = "@webassemblyjs/wast-printer";
189 packageName = "@webassemblyjs/wast-printer";
199 version = "1.7.10";
190 version = "1.7.10";
200 src = fetchurl {
191 src = fetchurl {
201 url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.10.tgz";
192 url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.10.tgz";
202 sha512 = "mJ3QKWtCchL1vhU/kZlJnLPuQZnlDOdZsyP0bbLWPGdYsQDnSBvyTLhzwBA3QAMlzEL9V4JHygEmK6/OTEyytA==";
193 sha512 = "mJ3QKWtCchL1vhU/kZlJnLPuQZnlDOdZsyP0bbLWPGdYsQDnSBvyTLhzwBA3QAMlzEL9V4JHygEmK6/OTEyytA==";
203 };
194 };
204 };
195 };
205 "@xtuc/ieee754-1.2.0" = {
196 "@xtuc/ieee754-1.2.0" = {
206 name = "_at_xtuc_slash_ieee754";
197 name = "_at_xtuc_slash_ieee754";
207 packageName = "@xtuc/ieee754";
198 packageName = "@xtuc/ieee754";
208 version = "1.2.0";
199 version = "1.2.0";
209 src = fetchurl {
200 src = fetchurl {
210 url = "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz";
201 url = "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz";
211 sha512 = "DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==";
202 sha512 = "DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==";
212 };
203 };
213 };
204 };
214 "@xtuc/long-4.2.1" = {
205 "@xtuc/long-4.2.1" = {
215 name = "_at_xtuc_slash_long";
206 name = "_at_xtuc_slash_long";
216 packageName = "@xtuc/long";
207 packageName = "@xtuc/long";
217 version = "4.2.1";
208 version = "4.2.1";
218 src = fetchurl {
209 src = fetchurl {
219 url = "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz";
210 url = "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz";
220 sha512 = "FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==";
211 sha512 = "FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==";
221 };
212 };
222 };
213 };
223 "abbrev-1.1.1" = {
214 "abbrev-1.1.1" = {
224 name = "abbrev";
215 name = "abbrev";
225 packageName = "abbrev";
216 packageName = "abbrev";
226 version = "1.1.1";
217 version = "1.1.1";
227 src = fetchurl {
218 src = fetchurl {
228 url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
219 url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
229 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
220 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==";
230 };
221 };
231 };
222 };
232 "acorn-3.3.0" = {
223 "acorn-3.3.0" = {
233 name = "acorn";
224 name = "acorn";
234 packageName = "acorn";
225 packageName = "acorn";
235 version = "3.3.0";
226 version = "3.3.0";
236 src = fetchurl {
227 src = fetchurl {
237 url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
228 url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
238 sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
229 sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
239 };
230 };
240 };
231 };
241 "acorn-5.7.3" = {
232 "acorn-5.7.3" = {
242 name = "acorn";
233 name = "acorn";
243 packageName = "acorn";
234 packageName = "acorn";
244 version = "5.7.3";
235 version = "5.7.3";
245 src = fetchurl {
236 src = fetchurl {
246 url = "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz";
237 url = "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz";
247 sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==";
238 sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==";
248 };
239 };
249 };
240 };
250 "acorn-dynamic-import-3.0.0" = {
241 "acorn-dynamic-import-3.0.0" = {
251 name = "acorn-dynamic-import";
242 name = "acorn-dynamic-import";
252 packageName = "acorn-dynamic-import";
243 packageName = "acorn-dynamic-import";
253 version = "3.0.0";
244 version = "3.0.0";
254 src = fetchurl {
245 src = fetchurl {
255 url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz";
246 url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz";
256 sha512 = "zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==";
247 sha512 = "zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==";
257 };
248 };
258 };
249 };
259 "acorn-jsx-3.0.1" = {
250 "acorn-jsx-3.0.1" = {
260 name = "acorn-jsx";
251 name = "acorn-jsx";
261 packageName = "acorn-jsx";
252 packageName = "acorn-jsx";
262 version = "3.0.1";
253 version = "3.0.1";
263 src = fetchurl {
254 src = fetchurl {
264 url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
255 url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
265 sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
256 sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
266 };
257 };
267 };
258 };
268 "ajv-4.11.8" = {
259 "ajv-4.11.8" = {
269 name = "ajv";
260 name = "ajv";
270 packageName = "ajv";
261 packageName = "ajv";
271 version = "4.11.8";
262 version = "4.11.8";
272 src = fetchurl {
263 src = fetchurl {
273 url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
264 url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
274 sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
265 sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
275 };
266 };
276 };
267 };
277 "ajv-6.5.4" = {
268 "ajv-6.5.4" = {
278 name = "ajv";
269 name = "ajv";
279 packageName = "ajv";
270 packageName = "ajv";
280 version = "6.5.4";
271 version = "6.5.4";
281 src = fetchurl {
272 src = fetchurl {
282 url = "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz";
273 url = "https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz";
283 sha512 = "4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==";
274 sha512 = "4Wyjt8+t6YszqaXnLDfMmG/8AlO5Zbcsy3ATHncCzjW/NoPzAId8AK6749Ybjmdt+kUY1gP60fCu46oDxPv/mg==";
284 };
275 };
285 };
276 };
286 "ajv-keywords-3.2.0" = {
277 "ajv-keywords-3.2.0" = {
287 name = "ajv-keywords";
278 name = "ajv-keywords";
288 packageName = "ajv-keywords";
279 packageName = "ajv-keywords";
289 version = "3.2.0";
280 version = "3.2.0";
290 src = fetchurl {
281 src = fetchurl {
291 url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz";
282 url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz";
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";
298 version = "1.0.1";
307 version = "1.0.1";
299 src = fetchurl {
308 src = fetchurl {
300 url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
309 url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
301 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
310 sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
302 };
311 };
303 };
312 };
304 "ansi-regex-0.2.1" = {
313 "ansi-regex-0.2.1" = {
305 name = "ansi-regex";
314 name = "ansi-regex";
306 packageName = "ansi-regex";
315 packageName = "ansi-regex";
307 version = "0.2.1";
316 version = "0.2.1";
308 src = fetchurl {
317 src = fetchurl {
309 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
318 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
310 sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
319 sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
311 };
320 };
312 };
321 };
313 "ansi-regex-2.1.1" = {
322 "ansi-regex-2.1.1" = {
314 name = "ansi-regex";
323 name = "ansi-regex";
315 packageName = "ansi-regex";
324 packageName = "ansi-regex";
316 version = "2.1.1";
325 version = "2.1.1";
317 src = fetchurl {
326 src = fetchurl {
318 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
327 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
319 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
328 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
320 };
329 };
321 };
330 };
322 "ansi-regex-3.0.0" = {
331 "ansi-regex-3.0.0" = {
323 name = "ansi-regex";
332 name = "ansi-regex";
324 packageName = "ansi-regex";
333 packageName = "ansi-regex";
325 version = "3.0.0";
334 version = "3.0.0";
326 src = fetchurl {
335 src = fetchurl {
327 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
336 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
328 sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
337 sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
329 };
338 };
330 };
339 };
331 "ansi-styles-1.1.0" = {
340 "ansi-styles-1.1.0" = {
332 name = "ansi-styles";
341 name = "ansi-styles";
333 packageName = "ansi-styles";
342 packageName = "ansi-styles";
334 version = "1.1.0";
343 version = "1.1.0";
335 src = fetchurl {
344 src = fetchurl {
336 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
345 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
337 sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
346 sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
338 };
347 };
339 };
348 };
340 "ansi-styles-2.2.1" = {
349 "ansi-styles-2.2.1" = {
341 name = "ansi-styles";
350 name = "ansi-styles";
342 packageName = "ansi-styles";
351 packageName = "ansi-styles";
343 version = "2.2.1";
352 version = "2.2.1";
344 src = fetchurl {
353 src = fetchurl {
345 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
354 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
346 sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
355 sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
347 };
356 };
348 };
357 };
349 "ansi-styles-3.2.1" = {
358 "ansi-styles-3.2.1" = {
350 name = "ansi-styles";
359 name = "ansi-styles";
351 packageName = "ansi-styles";
360 packageName = "ansi-styles";
352 version = "3.2.1";
361 version = "3.2.1";
353 src = fetchurl {
362 src = fetchurl {
354 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
363 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz";
355 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
364 sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
356 };
365 };
357 };
366 };
358 "anymatch-2.0.0" = {
367 "anymatch-2.0.0" = {
359 name = "anymatch";
368 name = "anymatch";
360 packageName = "anymatch";
369 packageName = "anymatch";
361 version = "2.0.0";
370 version = "2.0.0";
362 src = fetchurl {
371 src = fetchurl {
363 url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
372 url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
364 sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
373 sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==";
365 };
374 };
366 };
375 };
367 "appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1" = {
376 "appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1" = {
368 name = "appenlight-client";
377 name = "appenlight-client";
369 packageName = "appenlight-client";
378 packageName = "appenlight-client";
370 version = "0.5.1";
379 version = "0.5.1";
371 src = fetchgit {
380 src = fetchgit {
372 url = "https://git@github.com/AppEnlight/appenlight-client-js.git";
381 url = "https://git@github.com/AppEnlight/appenlight-client-js.git";
373 rev = "14712c64c230fbbe94fcbc8094aef5eb3b90b307";
382 rev = "14712c64c230fbbe94fcbc8094aef5eb3b90b307";
374 sha256 = "05146f5b932f166c9a4db601bc9c13ae686899653d1dd03121652631f9bc83d6";
383 sha256 = "05146f5b932f166c9a4db601bc9c13ae686899653d1dd03121652631f9bc83d6";
375 };
384 };
376 };
385 };
377 "aproba-1.2.0" = {
386 "aproba-1.2.0" = {
378 name = "aproba";
387 name = "aproba";
379 packageName = "aproba";
388 packageName = "aproba";
380 version = "1.2.0";
389 version = "1.2.0";
381 src = fetchurl {
390 src = fetchurl {
382 url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
391 url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
383 sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
392 sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==";
384 };
393 };
385 };
394 };
386 "argparse-0.1.16" = {
395 "argparse-0.1.16" = {
387 name = "argparse";
396 name = "argparse";
388 packageName = "argparse";
397 packageName = "argparse";
389 version = "0.1.16";
398 version = "0.1.16";
390 src = fetchurl {
399 src = fetchurl {
391 url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
400 url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
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";
398 version = "4.0.0";
416 version = "4.0.0";
399 src = fetchurl {
417 src = fetchurl {
400 url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
418 url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
401 sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
419 sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
402 };
420 };
403 };
421 };
404 "arr-flatten-1.1.0" = {
422 "arr-flatten-1.1.0" = {
405 name = "arr-flatten";
423 name = "arr-flatten";
406 packageName = "arr-flatten";
424 packageName = "arr-flatten";
407 version = "1.1.0";
425 version = "1.1.0";
408 src = fetchurl {
426 src = fetchurl {
409 url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
427 url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
410 sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
428 sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==";
411 };
429 };
412 };
430 };
413 "arr-union-3.1.0" = {
431 "arr-union-3.1.0" = {
414 name = "arr-union";
432 name = "arr-union";
415 packageName = "arr-union";
433 packageName = "arr-union";
416 version = "3.1.0";
434 version = "3.1.0";
417 src = fetchurl {
435 src = fetchurl {
418 url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
436 url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
419 sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
437 sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
420 };
438 };
421 };
439 };
422 "array-each-1.0.1" = {
440 "array-each-1.0.1" = {
423 name = "array-each";
441 name = "array-each";
424 packageName = "array-each";
442 packageName = "array-each";
425 version = "1.0.1";
443 version = "1.0.1";
426 src = fetchurl {
444 src = fetchurl {
427 url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
445 url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
428 sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
446 sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
429 };
447 };
430 };
448 };
431 "array-slice-1.1.0" = {
449 "array-slice-1.1.0" = {
432 name = "array-slice";
450 name = "array-slice";
433 packageName = "array-slice";
451 packageName = "array-slice";
434 version = "1.1.0";
452 version = "1.1.0";
435 src = fetchurl {
453 src = fetchurl {
436 url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
454 url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
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";
443 version = "0.3.2";
479 version = "0.3.2";
444 src = fetchurl {
480 src = fetchurl {
445 url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
481 url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
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";
452 version = "2.0.6";
497 version = "2.0.6";
453 src = fetchurl {
498 src = fetchurl {
454 url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
499 url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
455 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
500 sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
456 };
501 };
457 };
502 };
458 "asn1-0.2.4" = {
503 "asn1-0.2.4" = {
459 name = "asn1";
504 name = "asn1";
460 packageName = "asn1";
505 packageName = "asn1";
461 version = "0.2.4";
506 version = "0.2.4";
462 src = fetchurl {
507 src = fetchurl {
463 url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
508 url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz";
464 sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
509 sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==";
465 };
510 };
466 };
511 };
467 "asn1.js-4.10.1" = {
512 "asn1.js-4.10.1" = {
468 name = "asn1.js";
513 name = "asn1.js";
469 packageName = "asn1.js";
514 packageName = "asn1.js";
470 version = "4.10.1";
515 version = "4.10.1";
471 src = fetchurl {
516 src = fetchurl {
472 url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz";
517 url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz";
473 sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==";
518 sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==";
474 };
519 };
475 };
520 };
476 "assert-1.4.1" = {
521 "assert-1.4.1" = {
477 name = "assert";
522 name = "assert";
478 packageName = "assert";
523 packageName = "assert";
479 version = "1.4.1";
524 version = "1.4.1";
480 src = fetchurl {
525 src = fetchurl {
481 url = "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz";
526 url = "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz";
482 sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
527 sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
483 };
528 };
484 };
529 };
485 "assert-plus-0.2.0" = {
530 "assert-plus-0.2.0" = {
486 name = "assert-plus";
531 name = "assert-plus";
487 packageName = "assert-plus";
532 packageName = "assert-plus";
488 version = "0.2.0";
533 version = "0.2.0";
489 src = fetchurl {
534 src = fetchurl {
490 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
535 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
491 sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
536 sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
492 };
537 };
493 };
538 };
494 "assert-plus-1.0.0" = {
539 "assert-plus-1.0.0" = {
495 name = "assert-plus";
540 name = "assert-plus";
496 packageName = "assert-plus";
541 packageName = "assert-plus";
497 version = "1.0.0";
542 version = "1.0.0";
498 src = fetchurl {
543 src = fetchurl {
499 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
544 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
500 sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
545 sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
501 };
546 };
502 };
547 };
503 "assign-symbols-1.0.0" = {
548 "assign-symbols-1.0.0" = {
504 name = "assign-symbols";
549 name = "assign-symbols";
505 packageName = "assign-symbols";
550 packageName = "assign-symbols";
506 version = "1.0.0";
551 version = "1.0.0";
507 src = fetchurl {
552 src = fetchurl {
508 url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
553 url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
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";
515 version = "0.1.22";
569 version = "0.1.22";
516 src = fetchurl {
570 src = fetchurl {
517 url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
571 url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
518 sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
572 sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
519 };
573 };
520 };
574 };
521 "async-0.2.10" = {
575 "async-0.2.10" = {
522 name = "async";
576 name = "async";
523 packageName = "async";
577 packageName = "async";
524 version = "0.2.10";
578 version = "0.2.10";
525 src = fetchurl {
579 src = fetchurl {
526 url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
580 url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
527 sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
581 sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
528 };
582 };
529 };
583 };
530 "async-1.0.0" = {
584 "async-1.0.0" = {
531 name = "async";
585 name = "async";
532 packageName = "async";
586 packageName = "async";
533 version = "1.0.0";
587 version = "1.0.0";
534 src = fetchurl {
588 src = fetchurl {
535 url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
589 url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
536 sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
590 sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
537 };
591 };
538 };
592 };
539 "async-2.6.1" = {
593 "async-2.6.1" = {
540 name = "async";
594 name = "async";
541 packageName = "async";
595 packageName = "async";
542 version = "2.6.1";
596 version = "2.6.1";
543 src = fetchurl {
597 src = fetchurl {
544 url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz";
598 url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz";
545 sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==";
599 sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==";
546 };
600 };
547 };
601 };
548 "async-each-1.0.1" = {
602 "async-each-1.0.1" = {
549 name = "async-each";
603 name = "async-each";
550 packageName = "async-each";
604 packageName = "async-each";
551 version = "1.0.1";
605 version = "1.0.1";
552 src = fetchurl {
606 src = fetchurl {
553 url = "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz";
607 url = "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz";
554 sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d";
608 sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d";
555 };
609 };
556 };
610 };
557 "asynckit-0.4.0" = {
611 "asynckit-0.4.0" = {
558 name = "asynckit";
612 name = "asynckit";
559 packageName = "asynckit";
613 packageName = "asynckit";
560 version = "0.4.0";
614 version = "0.4.0";
561 src = fetchurl {
615 src = fetchurl {
562 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
616 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
563 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
617 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
564 };
618 };
565 };
619 };
566 "atob-2.1.2" = {
620 "atob-2.1.2" = {
567 name = "atob";
621 name = "atob";
568 packageName = "atob";
622 packageName = "atob";
569 version = "2.1.2";
623 version = "2.1.2";
570 src = fetchurl {
624 src = fetchurl {
571 url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz";
625 url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz";
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";
578 version = "0.6.0";
641 version = "0.6.0";
579 src = fetchurl {
642 src = fetchurl {
580 url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
643 url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
581 sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
644 sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
582 };
645 };
583 };
646 };
584 "aws4-1.8.0" = {
647 "aws4-1.8.0" = {
585 name = "aws4";
648 name = "aws4";
586 packageName = "aws4";
649 packageName = "aws4";
587 version = "1.8.0";
650 version = "1.8.0";
588 src = fetchurl {
651 src = fetchurl {
589 url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
652 url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz";
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" = {
603 name = "babel-runtime";
1116 name = "babel-runtime";
604 packageName = "babel-runtime";
1117 packageName = "babel-runtime";
605 version = "6.26.0";
1118 version = "6.26.0";
606 src = fetchurl {
1119 src = fetchurl {
607 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
1120 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
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";
614 version = "1.0.0";
1172 version = "1.0.0";
615 src = fetchurl {
1173 src = fetchurl {
616 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
1174 url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
617 sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
1175 sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
618 };
1176 };
619 };
1177 };
620 "base-0.11.2" = {
1178 "base-0.11.2" = {
621 name = "base";
1179 name = "base";
622 packageName = "base";
1180 packageName = "base";
623 version = "0.11.2";
1181 version = "0.11.2";
624 src = fetchurl {
1182 src = fetchurl {
625 url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
1183 url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
626 sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
1184 sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
627 };
1185 };
628 };
1186 };
629 "base64-js-1.3.0" = {
1187 "base64-js-1.3.0" = {
630 name = "base64-js";
1188 name = "base64-js";
631 packageName = "base64-js";
1189 packageName = "base64-js";
632 version = "1.3.0";
1190 version = "1.3.0";
633 src = fetchurl {
1191 src = fetchurl {
634 url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz";
1192 url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz";
635 sha512 = "ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==";
1193 sha512 = "ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==";
636 };
1194 };
637 };
1195 };
638 "bcrypt-pbkdf-1.0.2" = {
1196 "bcrypt-pbkdf-1.0.2" = {
639 name = "bcrypt-pbkdf";
1197 name = "bcrypt-pbkdf";
640 packageName = "bcrypt-pbkdf";
1198 packageName = "bcrypt-pbkdf";
641 version = "1.0.2";
1199 version = "1.0.2";
642 src = fetchurl {
1200 src = fetchurl {
643 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
1201 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz";
644 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
1202 sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e";
645 };
1203 };
646 };
1204 };
647 "big.js-3.2.0" = {
1205 "big.js-3.2.0" = {
648 name = "big.js";
1206 name = "big.js";
649 packageName = "big.js";
1207 packageName = "big.js";
650 version = "3.2.0";
1208 version = "3.2.0";
651 src = fetchurl {
1209 src = fetchurl {
652 url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
1210 url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
653 sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==";
1211 sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==";
654 };
1212 };
655 };
1213 };
656 "binary-extensions-1.12.0" = {
1214 "binary-extensions-1.12.0" = {
657 name = "binary-extensions";
1215 name = "binary-extensions";
658 packageName = "binary-extensions";
1216 packageName = "binary-extensions";
659 version = "1.12.0";
1217 version = "1.12.0";
660 src = fetchurl {
1218 src = fetchurl {
661 url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz";
1219 url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz";
662 sha512 = "DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==";
1220 sha512 = "DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==";
663 };
1221 };
664 };
1222 };
665 "bluebird-3.5.2" = {
1223 "bluebird-3.5.2" = {
666 name = "bluebird";
1224 name = "bluebird";
667 packageName = "bluebird";
1225 packageName = "bluebird";
668 version = "3.5.2";
1226 version = "3.5.2";
669 src = fetchurl {
1227 src = fetchurl {
670 url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.2.tgz";
1228 url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.2.tgz";
671 sha512 = "dhHTWMI7kMx5whMQntl7Vr9C6BvV10lFXDAasnqnrMYhXVCzzk6IO9Fo2L75jXHT07WrOngL1WDXOp+yYS91Yg==";
1229 sha512 = "dhHTWMI7kMx5whMQntl7Vr9C6BvV10lFXDAasnqnrMYhXVCzzk6IO9Fo2L75jXHT07WrOngL1WDXOp+yYS91Yg==";
672 };
1230 };
673 };
1231 };
674 "bn.js-4.11.8" = {
1232 "bn.js-4.11.8" = {
675 name = "bn.js";
1233 name = "bn.js";
676 packageName = "bn.js";
1234 packageName = "bn.js";
677 version = "4.11.8";
1235 version = "4.11.8";
678 src = fetchurl {
1236 src = fetchurl {
679 url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
1237 url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
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";
686 version = "2.10.1";
1253 version = "2.10.1";
687 src = fetchurl {
1254 src = fetchurl {
688 url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
1255 url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
689 sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
1256 sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
690 };
1257 };
691 };
1258 };
692 "bower-1.8.4" = {
1259 "bower-1.8.4" = {
693 name = "bower";
1260 name = "bower";
694 packageName = "bower";
1261 packageName = "bower";
695 version = "1.8.4";
1262 version = "1.8.4";
696 src = fetchurl {
1263 src = fetchurl {
697 url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
1264 url = "https://registry.npmjs.org/bower/-/bower-1.8.4.tgz";
698 sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
1265 sha1 = "e7876a076deb8137f7d06525dc5e8c66db82f28a";
699 };
1266 };
700 };
1267 };
701 "brace-expansion-1.1.11" = {
1268 "brace-expansion-1.1.11" = {
702 name = "brace-expansion";
1269 name = "brace-expansion";
703 packageName = "brace-expansion";
1270 packageName = "brace-expansion";
704 version = "1.1.11";
1271 version = "1.1.11";
705 src = fetchurl {
1272 src = fetchurl {
706 url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
1273 url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
707 sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
1274 sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
708 };
1275 };
709 };
1276 };
710 "braces-2.3.2" = {
1277 "braces-2.3.2" = {
711 name = "braces";
1278 name = "braces";
712 packageName = "braces";
1279 packageName = "braces";
713 version = "2.3.2";
1280 version = "2.3.2";
714 src = fetchurl {
1281 src = fetchurl {
715 url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
1282 url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz";
716 sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
1283 sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==";
717 };
1284 };
718 };
1285 };
719 "brorand-1.1.0" = {
1286 "brorand-1.1.0" = {
720 name = "brorand";
1287 name = "brorand";
721 packageName = "brorand";
1288 packageName = "brorand";
722 version = "1.1.0";
1289 version = "1.1.0";
723 src = fetchurl {
1290 src = fetchurl {
724 url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
1291 url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
725 sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
1292 sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
726 };
1293 };
727 };
1294 };
728 "browserify-aes-1.2.0" = {
1295 "browserify-aes-1.2.0" = {
729 name = "browserify-aes";
1296 name = "browserify-aes";
730 packageName = "browserify-aes";
1297 packageName = "browserify-aes";
731 version = "1.2.0";
1298 version = "1.2.0";
732 src = fetchurl {
1299 src = fetchurl {
733 url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz";
1300 url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz";
734 sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==";
1301 sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==";
735 };
1302 };
736 };
1303 };
737 "browserify-cipher-1.0.1" = {
1304 "browserify-cipher-1.0.1" = {
738 name = "browserify-cipher";
1305 name = "browserify-cipher";
739 packageName = "browserify-cipher";
1306 packageName = "browserify-cipher";
740 version = "1.0.1";
1307 version = "1.0.1";
741 src = fetchurl {
1308 src = fetchurl {
742 url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
1309 url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz";
743 sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==";
1310 sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==";
744 };
1311 };
745 };
1312 };
746 "browserify-des-1.0.2" = {
1313 "browserify-des-1.0.2" = {
747 name = "browserify-des";
1314 name = "browserify-des";
748 packageName = "browserify-des";
1315 packageName = "browserify-des";
749 version = "1.0.2";
1316 version = "1.0.2";
750 src = fetchurl {
1317 src = fetchurl {
751 url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz";
1318 url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz";
752 sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==";
1319 sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==";
753 };
1320 };
754 };
1321 };
755 "browserify-rsa-4.0.1" = {
1322 "browserify-rsa-4.0.1" = {
756 name = "browserify-rsa";
1323 name = "browserify-rsa";
757 packageName = "browserify-rsa";
1324 packageName = "browserify-rsa";
758 version = "4.0.1";
1325 version = "4.0.1";
759 src = fetchurl {
1326 src = fetchurl {
760 url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
1327 url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
761 sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
1328 sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
762 };
1329 };
763 };
1330 };
764 "browserify-sign-4.0.4" = {
1331 "browserify-sign-4.0.4" = {
765 name = "browserify-sign";
1332 name = "browserify-sign";
766 packageName = "browserify-sign";
1333 packageName = "browserify-sign";
767 version = "4.0.4";
1334 version = "4.0.4";
768 src = fetchurl {
1335 src = fetchurl {
769 url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
1336 url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
770 sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
1337 sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
771 };
1338 };
772 };
1339 };
773 "browserify-zlib-0.2.0" = {
1340 "browserify-zlib-0.2.0" = {
774 name = "browserify-zlib";
1341 name = "browserify-zlib";
775 packageName = "browserify-zlib";
1342 packageName = "browserify-zlib";
776 version = "0.2.0";
1343 version = "0.2.0";
777 src = fetchurl {
1344 src = fetchurl {
778 url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
1345 url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
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";
785 version = "4.9.1";
1370 version = "4.9.1";
786 src = fetchurl {
1371 src = fetchurl {
787 url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz";
1372 url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz";
788 sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
1373 sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
789 };
1374 };
790 };
1375 };
791 "buffer-from-1.1.1" = {
1376 "buffer-from-1.1.1" = {
792 name = "buffer-from";
1377 name = "buffer-from";
793 packageName = "buffer-from";
1378 packageName = "buffer-from";
794 version = "1.1.1";
1379 version = "1.1.1";
795 src = fetchurl {
1380 src = fetchurl {
796 url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
1381 url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
797 sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
1382 sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
798 };
1383 };
799 };
1384 };
800 "buffer-xor-1.0.3" = {
1385 "buffer-xor-1.0.3" = {
801 name = "buffer-xor";
1386 name = "buffer-xor";
802 packageName = "buffer-xor";
1387 packageName = "buffer-xor";
803 version = "1.0.3";
1388 version = "1.0.3";
804 src = fetchurl {
1389 src = fetchurl {
805 url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
1390 url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
806 sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
1391 sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
807 };
1392 };
808 };
1393 };
809 "builtin-status-codes-3.0.0" = {
1394 "builtin-status-codes-3.0.0" = {
810 name = "builtin-status-codes";
1395 name = "builtin-status-codes";
811 packageName = "builtin-status-codes";
1396 packageName = "builtin-status-codes";
812 version = "3.0.0";
1397 version = "3.0.0";
813 src = fetchurl {
1398 src = fetchurl {
814 url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
1399 url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
815 sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
1400 sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
816 };
1401 };
817 };
1402 };
818 "cacache-10.0.4" = {
1403 "cacache-10.0.4" = {
819 name = "cacache";
1404 name = "cacache";
820 packageName = "cacache";
1405 packageName = "cacache";
821 version = "10.0.4";
1406 version = "10.0.4";
822 src = fetchurl {
1407 src = fetchurl {
823 url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz";
1408 url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz";
824 sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==";
1409 sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==";
825 };
1410 };
826 };
1411 };
827 "cache-base-1.0.1" = {
1412 "cache-base-1.0.1" = {
828 name = "cache-base";
1413 name = "cache-base";
829 packageName = "cache-base";
1414 packageName = "cache-base";
830 version = "1.0.1";
1415 version = "1.0.1";
831 src = fetchurl {
1416 src = fetchurl {
832 url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
1417 url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
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";
839 version = "4.1.0";
1442 version = "4.1.0";
840 src = fetchurl {
1443 src = fetchurl {
841 url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
1444 url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
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";
848 version = "0.12.0";
1478 version = "0.12.0";
849 src = fetchurl {
1479 src = fetchurl {
850 url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
1480 url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
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";
857 version = "0.5.1";
1496 version = "0.5.1";
858 src = fetchurl {
1497 src = fetchurl {
859 url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
1498 url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
860 sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
1499 sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
861 };
1500 };
862 };
1501 };
863 "chalk-1.1.3" = {
1502 "chalk-1.1.3" = {
864 name = "chalk";
1503 name = "chalk";
865 packageName = "chalk";
1504 packageName = "chalk";
866 version = "1.1.3";
1505 version = "1.1.3";
867 src = fetchurl {
1506 src = fetchurl {
868 url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
1507 url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
869 sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
1508 sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
870 };
1509 };
871 };
1510 };
872 "chalk-2.4.1" = {
1511 "chalk-2.4.1" = {
873 name = "chalk";
1512 name = "chalk";
874 packageName = "chalk";
1513 packageName = "chalk";
875 version = "2.4.1";
1514 version = "2.4.1";
876 src = fetchurl {
1515 src = fetchurl {
877 url = "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz";
1516 url = "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz";
878 sha512 = "ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==";
1517 sha512 = "ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==";
879 };
1518 };
880 };
1519 };
881 "chokidar-2.0.4" = {
1520 "chokidar-2.0.4" = {
882 name = "chokidar";
1521 name = "chokidar";
883 packageName = "chokidar";
1522 packageName = "chokidar";
884 version = "2.0.4";
1523 version = "2.0.4";
885 src = fetchurl {
1524 src = fetchurl {
886 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz";
1525 url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz";
887 sha512 = "z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==";
1526 sha512 = "z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==";
888 };
1527 };
889 };
1528 };
890 "chownr-1.1.1" = {
1529 "chownr-1.1.1" = {
891 name = "chownr";
1530 name = "chownr";
892 packageName = "chownr";
1531 packageName = "chownr";
893 version = "1.1.1";
1532 version = "1.1.1";
894 src = fetchurl {
1533 src = fetchurl {
895 url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz";
1534 url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz";
896 sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==";
1535 sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==";
897 };
1536 };
898 };
1537 };
899 "chrome-trace-event-1.0.0" = {
1538 "chrome-trace-event-1.0.0" = {
900 name = "chrome-trace-event";
1539 name = "chrome-trace-event";
901 packageName = "chrome-trace-event";
1540 packageName = "chrome-trace-event";
902 version = "1.0.0";
1541 version = "1.0.0";
903 src = fetchurl {
1542 src = fetchurl {
904 url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz";
1543 url = "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz";
905 sha512 = "xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==";
1544 sha512 = "xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==";
906 };
1545 };
907 };
1546 };
908 "cipher-base-1.0.4" = {
1547 "cipher-base-1.0.4" = {
909 name = "cipher-base";
1548 name = "cipher-base";
910 packageName = "cipher-base";
1549 packageName = "cipher-base";
911 version = "1.0.4";
1550 version = "1.0.4";
912 src = fetchurl {
1551 src = fetchurl {
913 url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
1552 url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
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";
920 version = "0.3.6";
1568 version = "0.3.6";
921 src = fetchurl {
1569 src = fetchurl {
922 url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
1570 url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
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";
929 version = "1.0.1";
1586 version = "1.0.1";
930 src = fetchurl {
1587 src = fetchurl {
931 url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz";
1588 url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz";
932 sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
1589 sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
933 };
1590 };
934 };
1591 };
935 "clipboard-2.0.1" = {
1592 "clipboard-2.0.1" = {
936 name = "clipboard";
1593 name = "clipboard";
937 packageName = "clipboard";
1594 packageName = "clipboard";
938 version = "2.0.1";
1595 version = "2.0.1";
939 src = fetchurl {
1596 src = fetchurl {
940 url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.1.tgz";
1597 url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.1.tgz";
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";
947 version = "4.1.0";
1613 version = "4.1.0";
948 src = fetchurl {
1614 src = fetchurl {
949 url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz";
1615 url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz";
950 sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==";
1616 sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==";
951 };
1617 };
952 };
1618 };
953 "clone-1.0.4" = {
1619 "clone-1.0.4" = {
954 name = "clone";
1620 name = "clone";
955 packageName = "clone";
1621 packageName = "clone";
956 version = "1.0.4";
1622 version = "1.0.4";
957 src = fetchurl {
1623 src = fetchurl {
958 url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
1624 url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz";
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";
965 version = "4.6.0";
1640 version = "4.6.0";
966 src = fetchurl {
1641 src = fetchurl {
967 url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
1642 url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
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";
974 version = "1.1.0";
1658 version = "1.1.0";
975 src = fetchurl {
1659 src = fetchurl {
976 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
1660 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
977 sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
1661 sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
978 };
1662 };
979 };
1663 };
980 "coffee-script-1.3.3" = {
1664 "coffee-script-1.3.3" = {
981 name = "coffee-script";
1665 name = "coffee-script";
982 packageName = "coffee-script";
1666 packageName = "coffee-script";
983 version = "1.3.3";
1667 version = "1.3.3";
984 src = fetchurl {
1668 src = fetchurl {
985 url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz";
1669 url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz";
986 sha1 = "150d6b4cb522894369efed6a2101c20bc7f4a4f4";
1670 sha1 = "150d6b4cb522894369efed6a2101c20bc7f4a4f4";
987 };
1671 };
988 };
1672 };
989 "collection-visit-1.0.0" = {
1673 "collection-visit-1.0.0" = {
990 name = "collection-visit";
1674 name = "collection-visit";
991 packageName = "collection-visit";
1675 packageName = "collection-visit";
992 version = "1.0.0";
1676 version = "1.0.0";
993 src = fetchurl {
1677 src = fetchurl {
994 url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
1678 url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
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";
1001 version = "1.9.3";
1694 version = "1.9.3";
1002 src = fetchurl {
1695 src = fetchurl {
1003 url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz";
1696 url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz";
1004 sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==";
1697 sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==";
1005 };
1698 };
1006 };
1699 };
1007 "color-name-1.1.3" = {
1700 "color-name-1.1.3" = {
1008 name = "color-name";
1701 name = "color-name";
1009 packageName = "color-name";
1702 packageName = "color-name";
1010 version = "1.1.3";
1703 version = "1.1.3";
1011 src = fetchurl {
1704 src = fetchurl {
1012 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
1705 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
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";
1019 version = "0.6.2";
1730 version = "0.6.2";
1020 src = fetchurl {
1731 src = fetchurl {
1021 url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
1732 url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
1022 sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
1733 sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
1023 };
1734 };
1024 };
1735 };
1025 "colors-1.0.3" = {
1736 "colors-1.0.3" = {
1026 name = "colors";
1737 name = "colors";
1027 packageName = "colors";
1738 packageName = "colors";
1028 version = "1.0.3";
1739 version = "1.0.3";
1029 src = fetchurl {
1740 src = fetchurl {
1030 url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
1741 url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
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";
1037 version = "1.0.7";
1766 version = "1.0.7";
1038 src = fetchurl {
1767 src = fetchurl {
1039 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz";
1768 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz";
1040 sha512 = "brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==";
1769 sha512 = "brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==";
1041 };
1770 };
1042 };
1771 };
1043 "commander-2.14.1" = {
1772 "commander-2.14.1" = {
1044 name = "commander";
1773 name = "commander";
1045 packageName = "commander";
1774 packageName = "commander";
1046 version = "2.14.1";
1775 version = "2.14.1";
1047 src = fetchurl {
1776 src = fetchurl {
1048 url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz";
1777 url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz";
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";
1055 version = "1.0.1";
1793 version = "1.0.1";
1056 src = fetchurl {
1794 src = fetchurl {
1057 url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz";
1795 url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz";
1058 sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
1796 sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b";
1059 };
1797 };
1060 };
1798 };
1061 "component-emitter-1.2.1" = {
1799 "component-emitter-1.2.1" = {
1062 name = "component-emitter";
1800 name = "component-emitter";
1063 packageName = "component-emitter";
1801 packageName = "component-emitter";
1064 version = "1.2.1";
1802 version = "1.2.1";
1065 src = fetchurl {
1803 src = fetchurl {
1066 url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
1804 url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
1067 sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
1805 sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
1068 };
1806 };
1069 };
1807 };
1070 "concat-map-0.0.1" = {
1808 "concat-map-0.0.1" = {
1071 name = "concat-map";
1809 name = "concat-map";
1072 packageName = "concat-map";
1810 packageName = "concat-map";
1073 version = "0.0.1";
1811 version = "0.0.1";
1074 src = fetchurl {
1812 src = fetchurl {
1075 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
1813 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
1076 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
1814 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
1077 };
1815 };
1078 };
1816 };
1079 "concat-stream-1.6.2" = {
1817 "concat-stream-1.6.2" = {
1080 name = "concat-stream";
1818 name = "concat-stream";
1081 packageName = "concat-stream";
1819 packageName = "concat-stream";
1082 version = "1.6.2";
1820 version = "1.6.2";
1083 src = fetchurl {
1821 src = fetchurl {
1084 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
1822 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz";
1085 sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
1823 sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==";
1086 };
1824 };
1087 };
1825 };
1088 "console-browserify-1.1.0" = {
1826 "console-browserify-1.1.0" = {
1089 name = "console-browserify";
1827 name = "console-browserify";
1090 packageName = "console-browserify";
1828 packageName = "console-browserify";
1091 version = "1.1.0";
1829 version = "1.1.0";
1092 src = fetchurl {
1830 src = fetchurl {
1093 url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
1831 url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
1094 sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
1832 sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
1095 };
1833 };
1096 };
1834 };
1097 "constants-browserify-1.0.0" = {
1835 "constants-browserify-1.0.0" = {
1098 name = "constants-browserify";
1836 name = "constants-browserify";
1099 packageName = "constants-browserify";
1837 packageName = "constants-browserify";
1100 version = "1.0.0";
1838 version = "1.0.0";
1101 src = fetchurl {
1839 src = fetchurl {
1102 url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
1840 url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
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";
1109 version = "1.0.5";
1856 version = "1.0.5";
1110 src = fetchurl {
1857 src = fetchurl {
1111 url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
1858 url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
1112 sha512 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==";
1859 sha512 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==";
1113 };
1860 };
1114 };
1861 };
1115 "copy-descriptor-0.1.1" = {
1862 "copy-descriptor-0.1.1" = {
1116 name = "copy-descriptor";
1863 name = "copy-descriptor";
1117 packageName = "copy-descriptor";
1864 packageName = "copy-descriptor";
1118 version = "0.1.1";
1865 version = "0.1.1";
1119 src = fetchurl {
1866 src = fetchurl {
1120 url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
1867 url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
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";
1127 version = "2.5.7";
1883 version = "2.5.7";
1128 src = fetchurl {
1884 src = fetchurl {
1129 url = "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz";
1885 url = "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz";
1130 sha512 = "RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==";
1886 sha512 = "RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==";
1131 };
1887 };
1132 };
1888 };
1133 "core-util-is-1.0.2" = {
1889 "core-util-is-1.0.2" = {
1134 name = "core-util-is";
1890 name = "core-util-is";
1135 packageName = "core-util-is";
1891 packageName = "core-util-is";
1136 version = "1.0.2";
1892 version = "1.0.2";
1137 src = fetchurl {
1893 src = fetchurl {
1138 url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
1894 url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
1139 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
1895 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
1140 };
1896 };
1141 };
1897 };
1142 "create-ecdh-4.0.3" = {
1898 "create-ecdh-4.0.3" = {
1143 name = "create-ecdh";
1899 name = "create-ecdh";
1144 packageName = "create-ecdh";
1900 packageName = "create-ecdh";
1145 version = "4.0.3";
1901 version = "4.0.3";
1146 src = fetchurl {
1902 src = fetchurl {
1147 url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz";
1903 url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz";
1148 sha512 = "GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==";
1904 sha512 = "GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==";
1149 };
1905 };
1150 };
1906 };
1151 "create-hash-1.2.0" = {
1907 "create-hash-1.2.0" = {
1152 name = "create-hash";
1908 name = "create-hash";
1153 packageName = "create-hash";
1909 packageName = "create-hash";
1154 version = "1.2.0";
1910 version = "1.2.0";
1155 src = fetchurl {
1911 src = fetchurl {
1156 url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz";
1912 url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz";
1157 sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==";
1913 sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==";
1158 };
1914 };
1159 };
1915 };
1160 "create-hmac-1.1.7" = {
1916 "create-hmac-1.1.7" = {
1161 name = "create-hmac";
1917 name = "create-hmac";
1162 packageName = "create-hmac";
1918 packageName = "create-hmac";
1163 version = "1.1.7";
1919 version = "1.1.7";
1164 src = fetchurl {
1920 src = fetchurl {
1165 url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz";
1921 url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz";
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";
1181 version = "6.0.5";
1928 version = "6.0.5";
1182 src = fetchurl {
1929 src = fetchurl {
1183 url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz";
1930 url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz";
1184 sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
1931 sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==";
1185 };
1932 };
1186 };
1933 };
1187 "cryptiles-2.0.5" = {
1934 "cryptiles-2.0.5" = {
1188 name = "cryptiles";
1935 name = "cryptiles";
1189 packageName = "cryptiles";
1936 packageName = "cryptiles";
1190 version = "2.0.5";
1937 version = "2.0.5";
1191 src = fetchurl {
1938 src = fetchurl {
1192 url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
1939 url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
1193 sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
1940 sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
1194 };
1941 };
1195 };
1942 };
1196 "crypto-browserify-3.12.0" = {
1943 "crypto-browserify-3.12.0" = {
1197 name = "crypto-browserify";
1944 name = "crypto-browserify";
1198 packageName = "crypto-browserify";
1945 packageName = "crypto-browserify";
1199 version = "3.12.0";
1946 version = "3.12.0";
1200 src = fetchurl {
1947 src = fetchurl {
1201 url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
1948 url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
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";
1208 version = "1.0.3";
2027 version = "1.0.3";
1209 src = fetchurl {
2028 src = fetchurl {
1210 url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
2029 url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
1211 sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
2030 sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
1212 };
2031 };
1213 };
2032 };
1214 "cyclist-0.2.2" = {
2033 "cyclist-0.2.2" = {
1215 name = "cyclist";
2034 name = "cyclist";
1216 packageName = "cyclist";
2035 packageName = "cyclist";
1217 version = "0.2.2";
2036 version = "0.2.2";
1218 src = fetchurl {
2037 src = fetchurl {
1219 url = "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz";
2038 url = "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz";
1220 sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640";
2039 sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640";
1221 };
2040 };
1222 };
2041 };
1223 "dashdash-1.14.1" = {
2042 "dashdash-1.14.1" = {
1224 name = "dashdash";
2043 name = "dashdash";
1225 packageName = "dashdash";
2044 packageName = "dashdash";
1226 version = "1.14.1";
2045 version = "1.14.1";
1227 src = fetchurl {
2046 src = fetchurl {
1228 url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
2047 url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
1229 sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
2048 sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
1230 };
2049 };
1231 };
2050 };
1232 "date-now-0.1.4" = {
2051 "date-now-0.1.4" = {
1233 name = "date-now";
2052 name = "date-now";
1234 packageName = "date-now";
2053 packageName = "date-now";
1235 version = "0.1.4";
2054 version = "0.1.4";
1236 src = fetchurl {
2055 src = fetchurl {
1237 url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz";
2056 url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz";
1238 sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
2057 sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
1239 };
2058 };
1240 };
2059 };
1241 "dateformat-1.0.2-1.2.3" = {
2060 "dateformat-1.0.2-1.2.3" = {
1242 name = "dateformat";
2061 name = "dateformat";
1243 packageName = "dateformat";
2062 packageName = "dateformat";
1244 version = "1.0.2-1.2.3";
2063 version = "1.0.2-1.2.3";
1245 src = fetchurl {
2064 src = fetchurl {
1246 url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
2065 url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
1247 sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
2066 sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
1248 };
2067 };
1249 };
2068 };
1250 "debug-0.7.4" = {
2069 "debug-0.7.4" = {
1251 name = "debug";
2070 name = "debug";
1252 packageName = "debug";
2071 packageName = "debug";
1253 version = "0.7.4";
2072 version = "0.7.4";
1254 src = fetchurl {
2073 src = fetchurl {
1255 url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz";
2074 url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz";
1256 sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39";
2075 sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39";
1257 };
2076 };
1258 };
2077 };
1259 "debug-2.6.9" = {
2078 "debug-2.6.9" = {
1260 name = "debug";
2079 name = "debug";
1261 packageName = "debug";
2080 packageName = "debug";
1262 version = "2.6.9";
2081 version = "2.6.9";
1263 src = fetchurl {
2082 src = fetchurl {
1264 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
2083 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
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";
1271 version = "2.0.0";
2099 version = "2.0.0";
1272 src = fetchurl {
2100 src = fetchurl {
1273 url = "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz";
2101 url = "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz";
1274 sha512 = "Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==";
2102 sha512 = "Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==";
1275 };
2103 };
1276 };
2104 };
1277 "decode-uri-component-0.2.0" = {
2105 "decode-uri-component-0.2.0" = {
1278 name = "decode-uri-component";
2106 name = "decode-uri-component";
1279 packageName = "decode-uri-component";
2107 packageName = "decode-uri-component";
1280 version = "0.2.0";
2108 version = "0.2.0";
1281 src = fetchurl {
2109 src = fetchurl {
1282 url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
2110 url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
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" = {
1296 name = "define-property";
2133 name = "define-property";
1297 packageName = "define-property";
2134 packageName = "define-property";
1298 version = "0.2.5";
2135 version = "0.2.5";
1299 src = fetchurl {
2136 src = fetchurl {
1300 url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
2137 url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
1301 sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
2138 sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
1302 };
2139 };
1303 };
2140 };
1304 "define-property-1.0.0" = {
2141 "define-property-1.0.0" = {
1305 name = "define-property";
2142 name = "define-property";
1306 packageName = "define-property";
2143 packageName = "define-property";
1307 version = "1.0.0";
2144 version = "1.0.0";
1308 src = fetchurl {
2145 src = fetchurl {
1309 url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
2146 url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
1310 sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
2147 sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
1311 };
2148 };
1312 };
2149 };
1313 "define-property-2.0.2" = {
2150 "define-property-2.0.2" = {
1314 name = "define-property";
2151 name = "define-property";
1315 packageName = "define-property";
2152 packageName = "define-property";
1316 version = "2.0.2";
2153 version = "2.0.2";
1317 src = fetchurl {
2154 src = fetchurl {
1318 url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
2155 url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz";
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";
1325 version = "1.0.0";
2171 version = "1.0.0";
1326 src = fetchurl {
2172 src = fetchurl {
1327 url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
2173 url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
1328 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
2174 sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
1329 };
2175 };
1330 };
2176 };
1331 "delegate-3.2.0" = {
2177 "delegate-3.2.0" = {
1332 name = "delegate";
2178 name = "delegate";
1333 packageName = "delegate";
2179 packageName = "delegate";
1334 version = "3.2.0";
2180 version = "3.2.0";
1335 src = fetchurl {
2181 src = fetchurl {
1336 url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz";
2182 url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz";
1337 sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==";
2183 sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==";
1338 };
2184 };
1339 };
2185 };
1340 "des.js-1.0.0" = {
2186 "des.js-1.0.0" = {
1341 name = "des.js";
2187 name = "des.js";
1342 packageName = "des.js";
2188 packageName = "des.js";
1343 version = "1.0.0";
2189 version = "1.0.0";
1344 src = fetchurl {
2190 src = fetchurl {
1345 url = "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz";
2191 url = "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz";
1346 sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc";
2192 sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc";
1347 };
2193 };
1348 };
2194 };
1349 "detect-file-1.0.0" = {
2195 "detect-file-1.0.0" = {
1350 name = "detect-file";
2196 name = "detect-file";
1351 packageName = "detect-file";
2197 packageName = "detect-file";
1352 version = "1.0.0";
2198 version = "1.0.0";
1353 src = fetchurl {
2199 src = fetchurl {
1354 url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
2200 url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
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";
1361 version = "5.0.3";
2216 version = "5.0.3";
1362 src = fetchurl {
2217 src = fetchurl {
1363 url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
2218 url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz";
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" = {
1377 name = "dom-serializer";
2241 name = "dom-serializer";
1378 packageName = "dom-serializer";
2242 packageName = "dom-serializer";
1379 version = "0.1.0";
2243 version = "0.1.0";
1380 src = fetchurl {
2244 src = fetchurl {
1381 url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz";
2245 url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz";
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" = {
1404 name = "domain-browser";
2259 name = "domain-browser";
1405 packageName = "domain-browser";
2260 packageName = "domain-browser";
1406 version = "1.2.0";
2261 version = "1.2.0";
1407 src = fetchurl {
2262 src = fetchurl {
1408 url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz";
2263 url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz";
1409 sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==";
2264 sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==";
1410 };
2265 };
1411 };
2266 };
1412 "domelementtype-1.1.3" = {
2267 "domelementtype-1.1.3" = {
1413 name = "domelementtype";
2268 name = "domelementtype";
1414 packageName = "domelementtype";
2269 packageName = "domelementtype";
1415 version = "1.1.3";
2270 version = "1.1.3";
1416 src = fetchurl {
2271 src = fetchurl {
1417 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz";
2272 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz";
1418 sha1 = "bd28773e2642881aec51544924299c5cd822185b";
2273 sha1 = "bd28773e2642881aec51544924299c5cd822185b";
1419 };
2274 };
1420 };
2275 };
1421 "domelementtype-1.3.0" = {
2276 "domelementtype-1.3.0" = {
1422 name = "domelementtype";
2277 name = "domelementtype";
1423 packageName = "domelementtype";
2278 packageName = "domelementtype";
1424 version = "1.3.0";
2279 version = "1.3.0";
1425 src = fetchurl {
2280 src = fetchurl {
1426 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz";
2281 url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz";
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";
1433 version = "2.3.0";
2297 version = "2.3.0";
1434 src = fetchurl {
2298 src = fetchurl {
1435 url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz";
2299 url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz";
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";
1442 version = "1.5.1";
2315 version = "1.5.1";
1443 src = fetchurl {
2316 src = fetchurl {
1444 url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
2317 url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
1445 sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
2318 sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
1446 };
2319 };
1447 };
2320 };
1448 "duplexify-3.6.1" = {
2321 "duplexify-3.6.1" = {
1449 name = "duplexify";
2322 name = "duplexify";
1450 packageName = "duplexify";
2323 packageName = "duplexify";
1451 version = "3.6.1";
2324 version = "3.6.1";
1452 src = fetchurl {
2325 src = fetchurl {
1453 url = "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz";
2326 url = "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz";
1454 sha512 = "vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA==";
2327 sha512 = "vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA==";
1455 };
2328 };
1456 };
2329 };
1457 "ecc-jsbn-0.1.2" = {
2330 "ecc-jsbn-0.1.2" = {
1458 name = "ecc-jsbn";
2331 name = "ecc-jsbn";
1459 packageName = "ecc-jsbn";
2332 packageName = "ecc-jsbn";
1460 version = "0.1.2";
2333 version = "0.1.2";
1461 src = fetchurl {
2334 src = fetchurl {
1462 url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
2335 url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz";
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";
1469 version = "6.4.1";
2351 version = "6.4.1";
1470 src = fetchurl {
2352 src = fetchurl {
1471 url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz";
2353 url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz";
1472 sha512 = "BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==";
2354 sha512 = "BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==";
1473 };
2355 };
1474 };
2356 };
1475 "emojis-list-2.1.0" = {
2357 "emojis-list-2.1.0" = {
1476 name = "emojis-list";
2358 name = "emojis-list";
1477 packageName = "emojis-list";
2359 packageName = "emojis-list";
1478 version = "2.1.0";
2360 version = "2.1.0";
1479 src = fetchurl {
2361 src = fetchurl {
1480 url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz";
2362 url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz";
1481 sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
2363 sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
1482 };
2364 };
1483 };
2365 };
1484 "end-of-stream-1.4.1" = {
2366 "end-of-stream-1.4.1" = {
1485 name = "end-of-stream";
2367 name = "end-of-stream";
1486 packageName = "end-of-stream";
2368 packageName = "end-of-stream";
1487 version = "1.4.1";
2369 version = "1.4.1";
1488 src = fetchurl {
2370 src = fetchurl {
1489 url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz";
2371 url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz";
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";
1496 version = "4.1.0";
2387 version = "4.1.0";
1497 src = fetchurl {
2388 src = fetchurl {
1498 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz";
2389 url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz";
1499 sha512 = "F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==";
2390 sha512 = "F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==";
1500 };
2391 };
1501 };
2392 };
1502 "entities-1.0.0" = {
2393 "entities-1.0.0" = {
1503 name = "entities";
2394 name = "entities";
1504 packageName = "entities";
2395 packageName = "entities";
1505 version = "1.0.0";
2396 version = "1.0.0";
1506 src = fetchurl {
2397 src = fetchurl {
1507 url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz";
2398 url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz";
1508 sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26";
2399 sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26";
1509 };
2400 };
1510 };
2401 };
1511 "entities-1.1.2" = {
2402 "entities-1.1.2" = {
1512 name = "entities";
2403 name = "entities";
1513 packageName = "entities";
2404 packageName = "entities";
1514 version = "1.1.2";
2405 version = "1.1.2";
1515 src = fetchurl {
2406 src = fetchurl {
1516 url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz";
2407 url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz";
1517 sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==";
2408 sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==";
1518 };
2409 };
1519 };
2410 };
1520 "errno-0.1.7" = {
2411 "errno-0.1.7" = {
1521 name = "errno";
2412 name = "errno";
1522 packageName = "errno";
2413 packageName = "errno";
1523 version = "0.1.7";
2414 version = "0.1.7";
1524 src = fetchurl {
2415 src = fetchurl {
1525 url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
2416 url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
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" = {
1539 name = "es6-promise";
2439 name = "es6-promise";
1540 packageName = "es6-promise";
2440 packageName = "es6-promise";
1541 version = "4.2.5";
2441 version = "4.2.5";
1542 src = fetchurl {
2442 src = fetchurl {
1543 url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.5.tgz";
2443 url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.5.tgz";
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";
1550 version = "1.0.5";
2459 version = "1.0.5";
1551 src = fetchurl {
2460 src = fetchurl {
1552 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
2461 url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
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";
1568 version = "4.0.0";
2468 version = "4.0.0";
1569 src = fetchurl {
2469 src = fetchurl {
1570 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz";
2470 url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz";
1571 sha512 = "1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==";
2471 sha512 = "1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==";
1572 };
2472 };
1573 };
2473 };
1574 "espree-3.5.4" = {
2474 "espree-3.5.4" = {
1575 name = "espree";
2475 name = "espree";
1576 packageName = "espree";
2476 packageName = "espree";
1577 version = "3.5.4";
2477 version = "3.5.4";
1578 src = fetchurl {
2478 src = fetchurl {
1579 url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz";
2479 url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz";
1580 sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==";
2480 sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==";
1581 };
2481 };
1582 };
2482 };
1583 "esprima-1.0.4" = {
2483 "esprima-1.0.4" = {
1584 name = "esprima";
2484 name = "esprima";
1585 packageName = "esprima";
2485 packageName = "esprima";
1586 version = "1.0.4";
2486 version = "1.0.4";
1587 src = fetchurl {
2487 src = fetchurl {
1588 url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
2488 url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
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";
1595 version = "3.1.3";
2504 version = "3.1.3";
1596 src = fetchurl {
2505 src = fetchurl {
1597 url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz";
2506 url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz";
1598 sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633";
2507 sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633";
1599 };
2508 };
1600 };
2509 };
1601 "esrecurse-4.2.1" = {
2510 "esrecurse-4.2.1" = {
1602 name = "esrecurse";
2511 name = "esrecurse";
1603 packageName = "esrecurse";
2512 packageName = "esrecurse";
1604 version = "4.2.1";
2513 version = "4.2.1";
1605 src = fetchurl {
2514 src = fetchurl {
1606 url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz";
2515 url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz";
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";
1622 version = "4.2.0";
2522 version = "4.2.0";
1623 src = fetchurl {
2523 src = fetchurl {
1624 url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz";
2524 url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz";
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";
1640 version = "2.0.2";
2531 version = "2.0.2";
1641 src = fetchurl {
2532 src = fetchurl {
1642 url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz";
2533 url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz";
1643 sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b";
2534 sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b";
1644 };
2535 };
1645 };
2536 };
1646 "eventemitter2-0.4.14" = {
2537 "eventemitter2-0.4.14" = {
1647 name = "eventemitter2";
2538 name = "eventemitter2";
1648 packageName = "eventemitter2";
2539 packageName = "eventemitter2";
1649 version = "0.4.14";
2540 version = "0.4.14";
1650 src = fetchurl {
2541 src = fetchurl {
1651 url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz";
2542 url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz";
1652 sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab";
2543 sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab";
1653 };
2544 };
1654 };
2545 };
1655 "events-1.1.1" = {
2546 "events-1.1.1" = {
1656 name = "events";
2547 name = "events";
1657 packageName = "events";
2548 packageName = "events";
1658 version = "1.1.1";
2549 version = "1.1.1";
1659 src = fetchurl {
2550 src = fetchurl {
1660 url = "https://registry.npmjs.org/events/-/events-1.1.1.tgz";
2551 url = "https://registry.npmjs.org/events/-/events-1.1.1.tgz";
1661 sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924";
2552 sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924";
1662 };
2553 };
1663 };
2554 };
1664 "evp_bytestokey-1.0.3" = {
2555 "evp_bytestokey-1.0.3" = {
1665 name = "evp_bytestokey";
2556 name = "evp_bytestokey";
1666 packageName = "evp_bytestokey";
2557 packageName = "evp_bytestokey";
1667 version = "1.0.3";
2558 version = "1.0.3";
1668 src = fetchurl {
2559 src = fetchurl {
1669 url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
2560 url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
1670 sha512 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==";
2561 sha512 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==";
1671 };
2562 };
1672 };
2563 };
1673 "execa-0.10.0" = {
2564 "execa-0.10.0" = {
1674 name = "execa";
2565 name = "execa";
1675 packageName = "execa";
2566 packageName = "execa";
1676 version = "0.10.0";
2567 version = "0.10.0";
1677 src = fetchurl {
2568 src = fetchurl {
1678 url = "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz";
2569 url = "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz";
1679 sha512 = "7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==";
2570 sha512 = "7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==";
1680 };
2571 };
1681 };
2572 };
1682 "exit-0.1.2" = {
2573 "exit-0.1.2" = {
1683 name = "exit";
2574 name = "exit";
1684 packageName = "exit";
2575 packageName = "exit";
1685 version = "0.1.2";
2576 version = "0.1.2";
1686 src = fetchurl {
2577 src = fetchurl {
1687 url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
2578 url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
1688 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
2579 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
1689 };
2580 };
1690 };
2581 };
1691 "expand-brackets-2.1.4" = {
2582 "expand-brackets-2.1.4" = {
1692 name = "expand-brackets";
2583 name = "expand-brackets";
1693 packageName = "expand-brackets";
2584 packageName = "expand-brackets";
1694 version = "2.1.4";
2585 version = "2.1.4";
1695 src = fetchurl {
2586 src = fetchurl {
1696 url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
2587 url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
1697 sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
2588 sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
1698 };
2589 };
1699 };
2590 };
1700 "expand-tilde-2.0.2" = {
2591 "expand-tilde-2.0.2" = {
1701 name = "expand-tilde";
2592 name = "expand-tilde";
1702 packageName = "expand-tilde";
2593 packageName = "expand-tilde";
1703 version = "2.0.2";
2594 version = "2.0.2";
1704 src = fetchurl {
2595 src = fetchurl {
1705 url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
2596 url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
1706 sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
2597 sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
1707 };
2598 };
1708 };
2599 };
1709 "exports-loader-0.6.4" = {
2600 "exports-loader-0.6.4" = {
1710 name = "exports-loader";
2601 name = "exports-loader";
1711 packageName = "exports-loader";
2602 packageName = "exports-loader";
1712 version = "0.6.4";
2603 version = "0.6.4";
1713 src = fetchurl {
2604 src = fetchurl {
1714 url = "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz";
2605 url = "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz";
1715 sha1 = "d70fc6121975b35fc12830cf52754be2740fc886";
2606 sha1 = "d70fc6121975b35fc12830cf52754be2740fc886";
1716 };
2607 };
1717 };
2608 };
1718 "extend-3.0.2" = {
2609 "extend-3.0.2" = {
1719 name = "extend";
2610 name = "extend";
1720 packageName = "extend";
2611 packageName = "extend";
1721 version = "3.0.2";
2612 version = "3.0.2";
1722 src = fetchurl {
2613 src = fetchurl {
1723 url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
2614 url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz";
1724 sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
2615 sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==";
1725 };
2616 };
1726 };
2617 };
1727 "extend-shallow-2.0.1" = {
2618 "extend-shallow-2.0.1" = {
1728 name = "extend-shallow";
2619 name = "extend-shallow";
1729 packageName = "extend-shallow";
2620 packageName = "extend-shallow";
1730 version = "2.0.1";
2621 version = "2.0.1";
1731 src = fetchurl {
2622 src = fetchurl {
1732 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
2623 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
1733 sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
2624 sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
1734 };
2625 };
1735 };
2626 };
1736 "extend-shallow-3.0.2" = {
2627 "extend-shallow-3.0.2" = {
1737 name = "extend-shallow";
2628 name = "extend-shallow";
1738 packageName = "extend-shallow";
2629 packageName = "extend-shallow";
1739 version = "3.0.2";
2630 version = "3.0.2";
1740 src = fetchurl {
2631 src = fetchurl {
1741 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
2632 url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
1742 sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
2633 sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
1743 };
2634 };
1744 };
2635 };
1745 "extglob-2.0.4" = {
2636 "extglob-2.0.4" = {
1746 name = "extglob";
2637 name = "extglob";
1747 packageName = "extglob";
2638 packageName = "extglob";
1748 version = "2.0.4";
2639 version = "2.0.4";
1749 src = fetchurl {
2640 src = fetchurl {
1750 url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
2641 url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
1751 sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
2642 sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
1752 };
2643 };
1753 };
2644 };
1754 "extract-zip-1.6.7" = {
2645 "extract-zip-1.6.7" = {
1755 name = "extract-zip";
2646 name = "extract-zip";
1756 packageName = "extract-zip";
2647 packageName = "extract-zip";
1757 version = "1.6.7";
2648 version = "1.6.7";
1758 src = fetchurl {
2649 src = fetchurl {
1759 url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz";
2650 url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz";
1760 sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9";
2651 sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9";
1761 };
2652 };
1762 };
2653 };
1763 "extsprintf-1.3.0" = {
2654 "extsprintf-1.3.0" = {
1764 name = "extsprintf";
2655 name = "extsprintf";
1765 packageName = "extsprintf";
2656 packageName = "extsprintf";
1766 version = "1.3.0";
2657 version = "1.3.0";
1767 src = fetchurl {
2658 src = fetchurl {
1768 url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
2659 url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
1769 sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
2660 sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
1770 };
2661 };
1771 };
2662 };
1772 "eyes-0.1.8" = {
2663 "eyes-0.1.8" = {
1773 name = "eyes";
2664 name = "eyes";
1774 packageName = "eyes";
2665 packageName = "eyes";
1775 version = "0.1.8";
2666 version = "0.1.8";
1776 src = fetchurl {
2667 src = fetchurl {
1777 url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
2668 url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
1778 sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
2669 sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
1779 };
2670 };
1780 };
2671 };
1781 "fast-deep-equal-2.0.1" = {
2672 "fast-deep-equal-2.0.1" = {
1782 name = "fast-deep-equal";
2673 name = "fast-deep-equal";
1783 packageName = "fast-deep-equal";
2674 packageName = "fast-deep-equal";
1784 version = "2.0.1";
2675 version = "2.0.1";
1785 src = fetchurl {
2676 src = fetchurl {
1786 url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz";
2677 url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz";
1787 sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49";
2678 sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49";
1788 };
2679 };
1789 };
2680 };
1790 "fast-json-stable-stringify-2.0.0" = {
2681 "fast-json-stable-stringify-2.0.0" = {
1791 name = "fast-json-stable-stringify";
2682 name = "fast-json-stable-stringify";
1792 packageName = "fast-json-stable-stringify";
2683 packageName = "fast-json-stable-stringify";
1793 version = "2.0.0";
2684 version = "2.0.0";
1794 src = fetchurl {
2685 src = fetchurl {
1795 url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
2686 url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
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" = {
1809 name = "favico.js";
2700 name = "favico.js";
1810 packageName = "favico.js";
2701 packageName = "favico.js";
1811 version = "0.3.10";
2702 version = "0.3.10";
1812 src = fetchurl {
2703 src = fetchurl {
1813 url = "https://registry.npmjs.org/favico.js/-/favico.js-0.3.10.tgz";
2704 url = "https://registry.npmjs.org/favico.js/-/favico.js-0.3.10.tgz";
1814 sha1 = "80586e27a117f24a8d51c18a99bdc714d4339301";
2705 sha1 = "80586e27a117f24a8d51c18a99bdc714d4339301";
1815 };
2706 };
1816 };
2707 };
1817 "faye-websocket-0.4.4" = {
2708 "faye-websocket-0.4.4" = {
1818 name = "faye-websocket";
2709 name = "faye-websocket";
1819 packageName = "faye-websocket";
2710 packageName = "faye-websocket";
1820 version = "0.4.4";
2711 version = "0.4.4";
1821 src = fetchurl {
2712 src = fetchurl {
1822 url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.4.4.tgz";
2713 url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.4.4.tgz";
1823 sha1 = "c14c5b3bf14d7417ffbfd990c0a7495cd9f337bc";
2714 sha1 = "c14c5b3bf14d7417ffbfd990c0a7495cd9f337bc";
1824 };
2715 };
1825 };
2716 };
1826 "fd-slicer-1.0.1" = {
2717 "fd-slicer-1.0.1" = {
1827 name = "fd-slicer";
2718 name = "fd-slicer";
1828 packageName = "fd-slicer";
2719 packageName = "fd-slicer";
1829 version = "1.0.1";
2720 version = "1.0.1";
1830 src = fetchurl {
2721 src = fetchurl {
1831 url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz";
2722 url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz";
1832 sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65";
2723 sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65";
1833 };
2724 };
1834 };
2725 };
1835 "file-sync-cmp-0.1.1" = {
2726 "file-sync-cmp-0.1.1" = {
1836 name = "file-sync-cmp";
2727 name = "file-sync-cmp";
1837 packageName = "file-sync-cmp";
2728 packageName = "file-sync-cmp";
1838 version = "0.1.1";
2729 version = "0.1.1";
1839 src = fetchurl {
2730 src = fetchurl {
1840 url = "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz";
2731 url = "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz";
1841 sha1 = "a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b";
2732 sha1 = "a5e7a8ffbfa493b43b923bbd4ca89a53b63b612b";
1842 };
2733 };
1843 };
2734 };
1844 "fill-range-4.0.0" = {
2735 "fill-range-4.0.0" = {
1845 name = "fill-range";
2736 name = "fill-range";
1846 packageName = "fill-range";
2737 packageName = "fill-range";
1847 version = "4.0.0";
2738 version = "4.0.0";
1848 src = fetchurl {
2739 src = fetchurl {
1849 url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
2740 url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
1850 sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
2741 sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
1851 };
2742 };
1852 };
2743 };
1853 "find-cache-dir-1.0.0" = {
2744 "find-cache-dir-1.0.0" = {
1854 name = "find-cache-dir";
2745 name = "find-cache-dir";
1855 packageName = "find-cache-dir";
2746 packageName = "find-cache-dir";
1856 version = "1.0.0";
2747 version = "1.0.0";
1857 src = fetchurl {
2748 src = fetchurl {
1858 url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
2749 url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz";
1859 sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
2750 sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f";
1860 };
2751 };
1861 };
2752 };
1862 "find-up-2.1.0" = {
2753 "find-up-2.1.0" = {
1863 name = "find-up";
2754 name = "find-up";
1864 packageName = "find-up";
2755 packageName = "find-up";
1865 version = "2.1.0";
2756 version = "2.1.0";
1866 src = fetchurl {
2757 src = fetchurl {
1867 url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
2758 url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
1868 sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
2759 sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
1869 };
2760 };
1870 };
2761 };
1871 "find-up-3.0.0" = {
2762 "find-up-3.0.0" = {
1872 name = "find-up";
2763 name = "find-up";
1873 packageName = "find-up";
2764 packageName = "find-up";
1874 version = "3.0.0";
2765 version = "3.0.0";
1875 src = fetchurl {
2766 src = fetchurl {
1876 url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
2767 url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz";
1877 sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
2768 sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==";
1878 };
2769 };
1879 };
2770 };
1880 "findup-sync-0.1.3" = {
2771 "findup-sync-0.1.3" = {
1881 name = "findup-sync";
2772 name = "findup-sync";
1882 packageName = "findup-sync";
2773 packageName = "findup-sync";
1883 version = "0.1.3";
2774 version = "0.1.3";
1884 src = fetchurl {
2775 src = fetchurl {
1885 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz";
2776 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz";
1886 sha1 = "7f3e7a97b82392c653bf06589bd85190e93c3683";
2777 sha1 = "7f3e7a97b82392c653bf06589bd85190e93c3683";
1887 };
2778 };
1888 };
2779 };
1889 "findup-sync-2.0.0" = {
2780 "findup-sync-2.0.0" = {
1890 name = "findup-sync";
2781 name = "findup-sync";
1891 packageName = "findup-sync";
2782 packageName = "findup-sync";
1892 version = "2.0.0";
2783 version = "2.0.0";
1893 src = fetchurl {
2784 src = fetchurl {
1894 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
2785 url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
1895 sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
2786 sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
1896 };
2787 };
1897 };
2788 };
1898 "fined-1.1.0" = {
2789 "fined-1.1.0" = {
1899 name = "fined";
2790 name = "fined";
1900 packageName = "fined";
2791 packageName = "fined";
1901 version = "1.1.0";
2792 version = "1.1.0";
1902 src = fetchurl {
2793 src = fetchurl {
1903 url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz";
2794 url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz";
1904 sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
2795 sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
1905 };
2796 };
1906 };
2797 };
1907 "flagged-respawn-1.0.0" = {
2798 "flagged-respawn-1.0.0" = {
1908 name = "flagged-respawn";
2799 name = "flagged-respawn";
1909 packageName = "flagged-respawn";
2800 packageName = "flagged-respawn";
1910 version = "1.0.0";
2801 version = "1.0.0";
1911 src = fetchurl {
2802 src = fetchurl {
1912 url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz";
2803 url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz";
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";
1919 version = "1.0.3";
2819 version = "1.0.3";
1920 src = fetchurl {
2820 src = fetchurl {
1921 url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz";
2821 url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz";
1922 sha512 = "calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==";
2822 sha512 = "calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==";
1923 };
2823 };
1924 };
2824 };
1925 "for-in-1.0.2" = {
2825 "for-in-1.0.2" = {
1926 name = "for-in";
2826 name = "for-in";
1927 packageName = "for-in";
2827 packageName = "for-in";
1928 version = "1.0.2";
2828 version = "1.0.2";
1929 src = fetchurl {
2829 src = fetchurl {
1930 url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
2830 url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
1931 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
2831 sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
1932 };
2832 };
1933 };
2833 };
1934 "for-own-1.0.0" = {
2834 "for-own-1.0.0" = {
1935 name = "for-own";
2835 name = "for-own";
1936 packageName = "for-own";
2836 packageName = "for-own";
1937 version = "1.0.0";
2837 version = "1.0.0";
1938 src = fetchurl {
2838 src = fetchurl {
1939 url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
2839 url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
1940 sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
2840 sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
1941 };
2841 };
1942 };
2842 };
1943 "forever-agent-0.6.1" = {
2843 "forever-agent-0.6.1" = {
1944 name = "forever-agent";
2844 name = "forever-agent";
1945 packageName = "forever-agent";
2845 packageName = "forever-agent";
1946 version = "0.6.1";
2846 version = "0.6.1";
1947 src = fetchurl {
2847 src = fetchurl {
1948 url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
2848 url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
1949 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
2849 sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
1950 };
2850 };
1951 };
2851 };
1952 "form-data-2.1.4" = {
2852 "form-data-2.1.4" = {
1953 name = "form-data";
2853 name = "form-data";
1954 packageName = "form-data";
2854 packageName = "form-data";
1955 version = "2.1.4";
2855 version = "2.1.4";
1956 src = fetchurl {
2856 src = fetchurl {
1957 url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
2857 url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
1958 sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
2858 sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
1959 };
2859 };
1960 };
2860 };
1961 "fragment-cache-0.2.1" = {
2861 "fragment-cache-0.2.1" = {
1962 name = "fragment-cache";
2862 name = "fragment-cache";
1963 packageName = "fragment-cache";
2863 packageName = "fragment-cache";
1964 version = "0.2.1";
2864 version = "0.2.1";
1965 src = fetchurl {
2865 src = fetchurl {
1966 url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
2866 url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
1967 sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
2867 sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
1968 };
2868 };
1969 };
2869 };
1970 "from2-2.3.0" = {
2870 "from2-2.3.0" = {
1971 name = "from2";
2871 name = "from2";
1972 packageName = "from2";
2872 packageName = "from2";
1973 version = "2.3.0";
2873 version = "2.3.0";
1974 src = fetchurl {
2874 src = fetchurl {
1975 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
2875 url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
1976 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
2876 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
1977 };
2877 };
1978 };
2878 };
1979 "fs-extra-1.0.0" = {
2879 "fs-extra-1.0.0" = {
1980 name = "fs-extra";
2880 name = "fs-extra";
1981 packageName = "fs-extra";
2881 packageName = "fs-extra";
1982 version = "1.0.0";
2882 version = "1.0.0";
1983 src = fetchurl {
2883 src = fetchurl {
1984 url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz";
2884 url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz";
1985 sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950";
2885 sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950";
1986 };
2886 };
1987 };
2887 };
1988 "fs-write-stream-atomic-1.0.10" = {
2888 "fs-write-stream-atomic-1.0.10" = {
1989 name = "fs-write-stream-atomic";
2889 name = "fs-write-stream-atomic";
1990 packageName = "fs-write-stream-atomic";
2890 packageName = "fs-write-stream-atomic";
1991 version = "1.0.10";
2891 version = "1.0.10";
1992 src = fetchurl {
2892 src = fetchurl {
1993 url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
2893 url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
1994 sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
2894 sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
1995 };
2895 };
1996 };
2896 };
1997 "fs.realpath-1.0.0" = {
2897 "fs.realpath-1.0.0" = {
1998 name = "fs.realpath";
2898 name = "fs.realpath";
1999 packageName = "fs.realpath";
2899 packageName = "fs.realpath";
2000 version = "1.0.0";
2900 version = "1.0.0";
2001 src = fetchurl {
2901 src = fetchurl {
2002 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
2902 url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
2003 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
2903 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
2004 };
2904 };
2005 };
2905 };
2006 "fsevents-1.2.4" = {
2906 "fsevents-1.2.4" = {
2007 name = "fsevents";
2907 name = "fsevents";
2008 packageName = "fsevents";
2908 packageName = "fsevents";
2009 version = "1.2.4";
2909 version = "1.2.4";
2010 src = fetchurl {
2910 src = fetchurl {
2011 url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz";
2911 url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz";
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";
2018 version = "0.5.2";
2927 version = "0.5.2";
2019 src = fetchurl {
2928 src = fetchurl {
2020 url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
2929 url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
2021 sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
2930 sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
2022 };
2931 };
2023 };
2932 };
2024 "get-caller-file-1.0.3" = {
2933 "get-caller-file-1.0.3" = {
2025 name = "get-caller-file";
2934 name = "get-caller-file";
2026 packageName = "get-caller-file";
2935 packageName = "get-caller-file";
2027 version = "1.0.3";
2936 version = "1.0.3";
2028 src = fetchurl {
2937 src = fetchurl {
2029 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz";
2938 url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz";
2030 sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==";
2939 sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==";
2031 };
2940 };
2032 };
2941 };
2033 "get-stream-3.0.0" = {
2942 "get-stream-3.0.0" = {
2034 name = "get-stream";
2943 name = "get-stream";
2035 packageName = "get-stream";
2944 packageName = "get-stream";
2036 version = "3.0.0";
2945 version = "3.0.0";
2037 src = fetchurl {
2946 src = fetchurl {
2038 url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz";
2947 url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz";
2039 sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14";
2948 sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14";
2040 };
2949 };
2041 };
2950 };
2042 "get-value-2.0.6" = {
2951 "get-value-2.0.6" = {
2043 name = "get-value";
2952 name = "get-value";
2044 packageName = "get-value";
2953 packageName = "get-value";
2045 version = "2.0.6";
2954 version = "2.0.6";
2046 src = fetchurl {
2955 src = fetchurl {
2047 url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
2956 url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
2048 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
2957 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
2049 };
2958 };
2050 };
2959 };
2051 "getobject-0.1.0" = {
2960 "getobject-0.1.0" = {
2052 name = "getobject";
2961 name = "getobject";
2053 packageName = "getobject";
2962 packageName = "getobject";
2054 version = "0.1.0";
2963 version = "0.1.0";
2055 src = fetchurl {
2964 src = fetchurl {
2056 url = "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz";
2965 url = "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz";
2057 sha1 = "047a449789fa160d018f5486ed91320b6ec7885c";
2966 sha1 = "047a449789fa160d018f5486ed91320b6ec7885c";
2058 };
2967 };
2059 };
2968 };
2060 "getpass-0.1.7" = {
2969 "getpass-0.1.7" = {
2061 name = "getpass";
2970 name = "getpass";
2062 packageName = "getpass";
2971 packageName = "getpass";
2063 version = "0.1.7";
2972 version = "0.1.7";
2064 src = fetchurl {
2973 src = fetchurl {
2065 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
2974 url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
2066 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
2975 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
2067 };
2976 };
2068 };
2977 };
2069 "glob-3.1.21" = {
2978 "glob-3.1.21" = {
2070 name = "glob";
2979 name = "glob";
2071 packageName = "glob";
2980 packageName = "glob";
2072 version = "3.1.21";
2981 version = "3.1.21";
2073 src = fetchurl {
2982 src = fetchurl {
2074 url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
2983 url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
2075 sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
2984 sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
2076 };
2985 };
2077 };
2986 };
2078 "glob-3.2.11" = {
2987 "glob-3.2.11" = {
2079 name = "glob";
2988 name = "glob";
2080 packageName = "glob";
2989 packageName = "glob";
2081 version = "3.2.11";
2990 version = "3.2.11";
2082 src = fetchurl {
2991 src = fetchurl {
2083 url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
2992 url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
2084 sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
2993 sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
2085 };
2994 };
2086 };
2995 };
2087 "glob-7.1.3" = {
2996 "glob-7.1.3" = {
2088 name = "glob";
2997 name = "glob";
2089 packageName = "glob";
2998 packageName = "glob";
2090 version = "7.1.3";
2999 version = "7.1.3";
2091 src = fetchurl {
3000 src = fetchurl {
2092 url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz";
3001 url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz";
2093 sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==";
3002 sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==";
2094 };
3003 };
2095 };
3004 };
2096 "glob-parent-3.1.0" = {
3005 "glob-parent-3.1.0" = {
2097 name = "glob-parent";
3006 name = "glob-parent";
2098 packageName = "glob-parent";
3007 packageName = "glob-parent";
2099 version = "3.1.0";
3008 version = "3.1.0";
2100 src = fetchurl {
3009 src = fetchurl {
2101 url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
3010 url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
2102 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
3011 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
2103 };
3012 };
2104 };
3013 };
2105 "global-modules-1.0.0" = {
3014 "global-modules-1.0.0" = {
2106 name = "global-modules";
3015 name = "global-modules";
2107 packageName = "global-modules";
3016 packageName = "global-modules";
2108 version = "1.0.0";
3017 version = "1.0.0";
2109 src = fetchurl {
3018 src = fetchurl {
2110 url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
3019 url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
2111 sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
3020 sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==";
2112 };
3021 };
2113 };
3022 };
2114 "global-modules-path-2.3.0" = {
3023 "global-modules-path-2.3.0" = {
2115 name = "global-modules-path";
3024 name = "global-modules-path";
2116 packageName = "global-modules-path";
3025 packageName = "global-modules-path";
2117 version = "2.3.0";
3026 version = "2.3.0";
2118 src = fetchurl {
3027 src = fetchurl {
2119 url = "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.0.tgz";
3028 url = "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.0.tgz";
2120 sha512 = "HchvMJNYh9dGSCy8pOQ2O8u/hoXaL+0XhnrwH0RyLiSXMMTl9W3N6KUU73+JFOg5PGjtzl6VZzUQsnrpm7Szag==";
3029 sha512 = "HchvMJNYh9dGSCy8pOQ2O8u/hoXaL+0XhnrwH0RyLiSXMMTl9W3N6KUU73+JFOg5PGjtzl6VZzUQsnrpm7Szag==";
2121 };
3030 };
2122 };
3031 };
2123 "global-prefix-1.0.2" = {
3032 "global-prefix-1.0.2" = {
2124 name = "global-prefix";
3033 name = "global-prefix";
2125 packageName = "global-prefix";
3034 packageName = "global-prefix";
2126 version = "1.0.2";
3035 version = "1.0.2";
2127 src = fetchurl {
3036 src = fetchurl {
2128 url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
3037 url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
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";
2135 version = "0.1.0";
3062 version = "0.1.0";
2136 src = fetchurl {
3063 src = fetchurl {
2137 url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
3064 url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
2138 sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
3065 sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
2139 };
3066 };
2140 };
3067 };
2141 "good-listener-1.2.2" = {
3068 "good-listener-1.2.2" = {
2142 name = "good-listener";
3069 name = "good-listener";
2143 packageName = "good-listener";
3070 packageName = "good-listener";
2144 version = "1.2.2";
3071 version = "1.2.2";
2145 src = fetchurl {
3072 src = fetchurl {
2146 url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz";
3073 url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz";
2147 sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
3074 sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50";
2148 };
3075 };
2149 };
3076 };
2150 "graceful-fs-1.2.3" = {
3077 "graceful-fs-1.2.3" = {
2151 name = "graceful-fs";
3078 name = "graceful-fs";
2152 packageName = "graceful-fs";
3079 packageName = "graceful-fs";
2153 version = "1.2.3";
3080 version = "1.2.3";
2154 src = fetchurl {
3081 src = fetchurl {
2155 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
3082 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
2156 sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
3083 sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
2157 };
3084 };
2158 };
3085 };
2159 "graceful-fs-4.1.11" = {
3086 "graceful-fs-4.1.11" = {
2160 name = "graceful-fs";
3087 name = "graceful-fs";
2161 packageName = "graceful-fs";
3088 packageName = "graceful-fs";
2162 version = "4.1.11";
3089 version = "4.1.11";
2163 src = fetchurl {
3090 src = fetchurl {
2164 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
3091 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
2165 sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
3092 sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
2166 };
3093 };
2167 };
3094 };
2168 "grunt-0.4.5" = {
3095 "grunt-0.4.5" = {
2169 name = "grunt";
3096 name = "grunt";
2170 packageName = "grunt";
3097 packageName = "grunt";
2171 version = "0.4.5";
3098 version = "0.4.5";
2172 src = fetchurl {
3099 src = fetchurl {
2173 url = "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz";
3100 url = "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz";
2174 sha1 = "56937cd5194324adff6d207631832a9d6ba4e7f0";
3101 sha1 = "56937cd5194324adff6d207631832a9d6ba4e7f0";
2175 };
3102 };
2176 };
3103 };
2177 "grunt-cli-1.3.1" = {
3104 "grunt-cli-1.3.1" = {
2178 name = "grunt-cli";
3105 name = "grunt-cli";
2179 packageName = "grunt-cli";
3106 packageName = "grunt-cli";
2180 version = "1.3.1";
3107 version = "1.3.1";
2181 src = fetchurl {
3108 src = fetchurl {
2182 url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.1.tgz";
3109 url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.1.tgz";
2183 sha512 = "UwBRu/QpAjDc53DRLEkyilFdL0zenpxu+fddTIlsF/KJqdNcHaQmvyu1W3cDesZ9rqqZdKK5A8+QDIyLUEWoZQ==";
3110 sha512 = "UwBRu/QpAjDc53DRLEkyilFdL0zenpxu+fddTIlsF/KJqdNcHaQmvyu1W3cDesZ9rqqZdKK5A8+QDIyLUEWoZQ==";
2184 };
3111 };
2185 };
3112 };
2186 "grunt-contrib-concat-0.5.1" = {
3113 "grunt-contrib-concat-0.5.1" = {
2187 name = "grunt-contrib-concat";
3114 name = "grunt-contrib-concat";
2188 packageName = "grunt-contrib-concat";
3115 packageName = "grunt-contrib-concat";
2189 version = "0.5.1";
3116 version = "0.5.1";
2190 src = fetchurl {
3117 src = fetchurl {
2191 url = "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz";
3118 url = "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz";
2192 sha1 = "953c6efdfdfd2c107ab9c85077f2d4b24d31cd49";
3119 sha1 = "953c6efdfdfd2c107ab9c85077f2d4b24d31cd49";
2193 };
3120 };
2194 };
3121 };
2195 "grunt-contrib-copy-1.0.0" = {
3122 "grunt-contrib-copy-1.0.0" = {
2196 name = "grunt-contrib-copy";
3123 name = "grunt-contrib-copy";
2197 packageName = "grunt-contrib-copy";
3124 packageName = "grunt-contrib-copy";
2198 version = "1.0.0";
3125 version = "1.0.0";
2199 src = fetchurl {
3126 src = fetchurl {
2200 url = "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz";
3127 url = "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz";
2201 sha1 = "7060c6581e904b8ab0d00f076e0a8f6e3e7c3573";
3128 sha1 = "7060c6581e904b8ab0d00f076e0a8f6e3e7c3573";
2202 };
3129 };
2203 };
3130 };
2204 "grunt-contrib-jshint-0.12.0" = {
3131 "grunt-contrib-jshint-0.12.0" = {
2205 name = "grunt-contrib-jshint";
3132 name = "grunt-contrib-jshint";
2206 packageName = "grunt-contrib-jshint";
3133 packageName = "grunt-contrib-jshint";
2207 version = "0.12.0";
3134 version = "0.12.0";
2208 src = fetchurl {
3135 src = fetchurl {
2209 url = "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-0.12.0.tgz";
3136 url = "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-0.12.0.tgz";
2210 sha1 = "f6b2f06fc715264837a7ab6c69a1ce1a689c2c29";
3137 sha1 = "f6b2f06fc715264837a7ab6c69a1ce1a689c2c29";
2211 };
3138 };
2212 };
3139 };
2213 "grunt-contrib-less-1.4.1" = {
3140 "grunt-contrib-less-1.4.1" = {
2214 name = "grunt-contrib-less";
3141 name = "grunt-contrib-less";
2215 packageName = "grunt-contrib-less";
3142 packageName = "grunt-contrib-less";
2216 version = "1.4.1";
3143 version = "1.4.1";
2217 src = fetchurl {
3144 src = fetchurl {
2218 url = "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.4.1.tgz";
3145 url = "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.4.1.tgz";
2219 sha1 = "3bbdec0b75d12ceaa55d62943625c0b0861cdf6f";
3146 sha1 = "3bbdec0b75d12ceaa55d62943625c0b0861cdf6f";
2220 };
3147 };
2221 };
3148 };
2222 "grunt-contrib-watch-0.6.1" = {
3149 "grunt-contrib-watch-0.6.1" = {
2223 name = "grunt-contrib-watch";
3150 name = "grunt-contrib-watch";
2224 packageName = "grunt-contrib-watch";
3151 packageName = "grunt-contrib-watch";
2225 version = "0.6.1";
3152 version = "0.6.1";
2226 src = fetchurl {
3153 src = fetchurl {
2227 url = "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-0.6.1.tgz";
3154 url = "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-0.6.1.tgz";
2228 sha1 = "64fdcba25a635f5b4da1b6ce6f90da0aeb6e3f15";
3155 sha1 = "64fdcba25a635f5b4da1b6ce6f90da0aeb6e3f15";
2229 };
3156 };
2230 };
3157 };
2231 "grunt-known-options-1.1.1" = {
3158 "grunt-known-options-1.1.1" = {
2232 name = "grunt-known-options";
3159 name = "grunt-known-options";
2233 packageName = "grunt-known-options";
3160 packageName = "grunt-known-options";
2234 version = "1.1.1";
3161 version = "1.1.1";
2235 src = fetchurl {
3162 src = fetchurl {
2236 url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
3163 url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
2237 sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
3164 sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
2238 };
3165 };
2239 };
3166 };
2240 "grunt-legacy-log-0.1.3" = {
3167 "grunt-legacy-log-0.1.3" = {
2241 name = "grunt-legacy-log";
3168 name = "grunt-legacy-log";
2242 packageName = "grunt-legacy-log";
3169 packageName = "grunt-legacy-log";
2243 version = "0.1.3";
3170 version = "0.1.3";
2244 src = fetchurl {
3171 src = fetchurl {
2245 url = "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz";
3172 url = "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz";
2246 sha1 = "ec29426e803021af59029f87d2f9cd7335a05531";
3173 sha1 = "ec29426e803021af59029f87d2f9cd7335a05531";
2247 };
3174 };
2248 };
3175 };
2249 "grunt-legacy-log-utils-0.1.1" = {
3176 "grunt-legacy-log-utils-0.1.1" = {
2250 name = "grunt-legacy-log-utils";
3177 name = "grunt-legacy-log-utils";
2251 packageName = "grunt-legacy-log-utils";
3178 packageName = "grunt-legacy-log-utils";
2252 version = "0.1.1";
3179 version = "0.1.1";
2253 src = fetchurl {
3180 src = fetchurl {
2254 url = "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz";
3181 url = "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz";
2255 sha1 = "c0706b9dd9064e116f36f23fe4e6b048672c0f7e";
3182 sha1 = "c0706b9dd9064e116f36f23fe4e6b048672c0f7e";
2256 };
3183 };
2257 };
3184 };
2258 "grunt-legacy-util-0.2.0" = {
3185 "grunt-legacy-util-0.2.0" = {
2259 name = "grunt-legacy-util";
3186 name = "grunt-legacy-util";
2260 packageName = "grunt-legacy-util";
3187 packageName = "grunt-legacy-util";
2261 version = "0.2.0";
3188 version = "0.2.0";
2262 src = fetchurl {
3189 src = fetchurl {
2263 url = "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz";
3190 url = "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz";
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" = {
2277 name = "har-schema";
3204 name = "har-schema";
2278 packageName = "har-schema";
3205 packageName = "har-schema";
2279 version = "1.0.5";
3206 version = "1.0.5";
2280 src = fetchurl {
3207 src = fetchurl {
2281 url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
3208 url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
2282 sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
3209 sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
2283 };
3210 };
2284 };
3211 };
2285 "har-validator-4.2.1" = {
3212 "har-validator-4.2.1" = {
2286 name = "har-validator";
3213 name = "har-validator";
2287 packageName = "har-validator";
3214 packageName = "har-validator";
2288 version = "4.2.1";
3215 version = "4.2.1";
2289 src = fetchurl {
3216 src = fetchurl {
2290 url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
3217 url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
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";
2297 version = "0.1.0";
3233 version = "0.1.0";
2298 src = fetchurl {
3234 src = fetchurl {
2299 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz";
3235 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz";
2300 sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e";
3236 sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e";
2301 };
3237 };
2302 };
3238 };
2303 "has-ansi-2.0.0" = {
3239 "has-ansi-2.0.0" = {
2304 name = "has-ansi";
3240 name = "has-ansi";
2305 packageName = "has-ansi";
3241 packageName = "has-ansi";
2306 version = "2.0.0";
3242 version = "2.0.0";
2307 src = fetchurl {
3243 src = fetchurl {
2308 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
3244 url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
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";
2315 version = "3.0.0";
3260 version = "3.0.0";
2316 src = fetchurl {
3261 src = fetchurl {
2317 url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
3262 url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz";
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";
2324 version = "0.3.1";
3278 version = "0.3.1";
2325 src = fetchurl {
3279 src = fetchurl {
2326 url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
3280 url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
2327 sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
3281 sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
2328 };
3282 };
2329 };
3283 };
2330 "has-value-1.0.0" = {
3284 "has-value-1.0.0" = {
2331 name = "has-value";
3285 name = "has-value";
2332 packageName = "has-value";
3286 packageName = "has-value";
2333 version = "1.0.0";
3287 version = "1.0.0";
2334 src = fetchurl {
3288 src = fetchurl {
2335 url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
3289 url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
2336 sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
3290 sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
2337 };
3291 };
2338 };
3292 };
2339 "has-values-0.1.4" = {
3293 "has-values-0.1.4" = {
2340 name = "has-values";
3294 name = "has-values";
2341 packageName = "has-values";
3295 packageName = "has-values";
2342 version = "0.1.4";
3296 version = "0.1.4";
2343 src = fetchurl {
3297 src = fetchurl {
2344 url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
3298 url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
2345 sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
3299 sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
2346 };
3300 };
2347 };
3301 };
2348 "has-values-1.0.0" = {
3302 "has-values-1.0.0" = {
2349 name = "has-values";
3303 name = "has-values";
2350 packageName = "has-values";
3304 packageName = "has-values";
2351 version = "1.0.0";
3305 version = "1.0.0";
2352 src = fetchurl {
3306 src = fetchurl {
2353 url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
3307 url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
2354 sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
3308 sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
2355 };
3309 };
2356 };
3310 };
2357 "hash-base-3.0.4" = {
3311 "hash-base-3.0.4" = {
2358 name = "hash-base";
3312 name = "hash-base";
2359 packageName = "hash-base";
3313 packageName = "hash-base";
2360 version = "3.0.4";
3314 version = "3.0.4";
2361 src = fetchurl {
3315 src = fetchurl {
2362 url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz";
3316 url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz";
2363 sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918";
3317 sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918";
2364 };
3318 };
2365 };
3319 };
2366 "hash.js-1.1.5" = {
3320 "hash.js-1.1.5" = {
2367 name = "hash.js";
3321 name = "hash.js";
2368 packageName = "hash.js";
3322 packageName = "hash.js";
2369 version = "1.1.5";
3323 version = "1.1.5";
2370 src = fetchurl {
3324 src = fetchurl {
2371 url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz";
3325 url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz";
2372 sha512 = "eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==";
3326 sha512 = "eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==";
2373 };
3327 };
2374 };
3328 };
2375 "hasha-2.2.0" = {
3329 "hasha-2.2.0" = {
2376 name = "hasha";
3330 name = "hasha";
2377 packageName = "hasha";
3331 packageName = "hasha";
2378 version = "2.2.0";
3332 version = "2.2.0";
2379 src = fetchurl {
3333 src = fetchurl {
2380 url = "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz";
3334 url = "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz";
2381 sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1";
3335 sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1";
2382 };
3336 };
2383 };
3337 };
2384 "hawk-3.1.3" = {
3338 "hawk-3.1.3" = {
2385 name = "hawk";
3339 name = "hawk";
2386 packageName = "hawk";
3340 packageName = "hawk";
2387 version = "3.1.3";
3341 version = "3.1.3";
2388 src = fetchurl {
3342 src = fetchurl {
2389 url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
3343 url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
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";
2396 version = "1.0.1";
3359 version = "1.0.1";
2397 src = fetchurl {
3360 src = fetchurl {
2398 url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
3361 url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
2399 sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
3362 sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
2400 };
3363 };
2401 };
3364 };
2402 "hoek-2.16.3" = {
3365 "hoek-2.16.3" = {
2403 name = "hoek";
3366 name = "hoek";
2404 packageName = "hoek";
3367 packageName = "hoek";
2405 version = "2.16.3";
3368 version = "2.16.3";
2406 src = fetchurl {
3369 src = fetchurl {
2407 url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
3370 url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
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";
2414 version = "1.0.1";
3386 version = "1.0.1";
2415 src = fetchurl {
3387 src = fetchurl {
2416 url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
3388 url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
2417 sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
3389 sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
2418 };
3390 };
2419 };
3391 };
2420 "hooker-0.2.3" = {
3392 "hooker-0.2.3" = {
2421 name = "hooker";
3393 name = "hooker";
2422 packageName = "hooker";
3394 packageName = "hooker";
2423 version = "0.2.3";
3395 version = "0.2.3";
2424 src = fetchurl {
3396 src = fetchurl {
2425 url = "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz";
3397 url = "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz";
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";
2432 version = "3.8.3";
3458 version = "3.8.3";
2433 src = fetchurl {
3459 src = fetchurl {
2434 url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz";
3460 url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz";
2435 sha1 = "996c28b191516a8be86501a7d79757e5c70c1068";
3461 sha1 = "996c28b191516a8be86501a7d79757e5c70c1068";
2436 };
3462 };
2437 };
3463 };
2438 "http-signature-1.1.1" = {
3464 "http-signature-1.1.1" = {
2439 name = "http-signature";
3465 name = "http-signature";
2440 packageName = "http-signature";
3466 packageName = "http-signature";
2441 version = "1.1.1";
3467 version = "1.1.1";
2442 src = fetchurl {
3468 src = fetchurl {
2443 url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
3469 url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
2444 sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
3470 sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
2445 };
3471 };
2446 };
3472 };
2447 "https-browserify-1.0.0" = {
3473 "https-browserify-1.0.0" = {
2448 name = "https-browserify";
3474 name = "https-browserify";
2449 packageName = "https-browserify";
3475 packageName = "https-browserify";
2450 version = "1.0.0";
3476 version = "1.0.0";
2451 src = fetchurl {
3477 src = fetchurl {
2452 url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz";
3478 url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz";
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";
2468 version = "0.2.11";
3485 version = "0.2.11";
2469 src = fetchurl {
3486 src = fetchurl {
2470 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz";
3487 url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz";
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";
2477 version = "1.1.12";
3512 version = "1.1.12";
2478 src = fetchurl {
3513 src = fetchurl {
2479 url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz";
3514 url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz";
2480 sha512 = "GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==";
3515 sha512 = "GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==";
2481 };
3516 };
2482 };
3517 };
2483 "iferr-0.1.5" = {
3518 "iferr-0.1.5" = {
2484 name = "iferr";
3519 name = "iferr";
2485 packageName = "iferr";
3520 packageName = "iferr";
2486 version = "0.1.5";
3521 version = "0.1.5";
2487 src = fetchurl {
3522 src = fetchurl {
2488 url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
3523 url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
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";
2495 version = "0.5.5";
3539 version = "0.5.5";
2496 src = fetchurl {
3540 src = fetchurl {
2497 url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz";
3541 url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz";
2498 sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
3542 sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
2499 };
3543 };
2500 };
3544 };
2501 "import-local-2.0.0" = {
3545 "import-local-2.0.0" = {
2502 name = "import-local";
3546 name = "import-local";
2503 packageName = "import-local";
3547 packageName = "import-local";
2504 version = "2.0.0";
3548 version = "2.0.0";
2505 src = fetchurl {
3549 src = fetchurl {
2506 url = "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz";
3550 url = "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz";
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";
2513 version = "0.1.4";
3566 version = "0.1.4";
2514 src = fetchurl {
3567 src = fetchurl {
2515 url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
3568 url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
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";
2522 version = "0.0.1";
3584 version = "0.0.1";
2523 src = fetchurl {
3585 src = fetchurl {
2524 url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz";
3586 url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz";
2525 sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
3587 sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
2526 };
3588 };
2527 };
3589 };
2528 "inflight-1.0.6" = {
3590 "inflight-1.0.6" = {
2529 name = "inflight";
3591 name = "inflight";
2530 packageName = "inflight";
3592 packageName = "inflight";
2531 version = "1.0.6";
3593 version = "1.0.6";
2532 src = fetchurl {
3594 src = fetchurl {
2533 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
3595 url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
2534 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
3596 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
2535 };
3597 };
2536 };
3598 };
2537 "inherits-1.0.2" = {
3599 "inherits-1.0.2" = {
2538 name = "inherits";
3600 name = "inherits";
2539 packageName = "inherits";
3601 packageName = "inherits";
2540 version = "1.0.2";
3602 version = "1.0.2";
2541 src = fetchurl {
3603 src = fetchurl {
2542 url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
3604 url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
2543 sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
3605 sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
2544 };
3606 };
2545 };
3607 };
2546 "inherits-2.0.1" = {
3608 "inherits-2.0.1" = {
2547 name = "inherits";
3609 name = "inherits";
2548 packageName = "inherits";
3610 packageName = "inherits";
2549 version = "2.0.1";
3611 version = "2.0.1";
2550 src = fetchurl {
3612 src = fetchurl {
2551 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
3613 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
2552 sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
3614 sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
2553 };
3615 };
2554 };
3616 };
2555 "inherits-2.0.3" = {
3617 "inherits-2.0.3" = {
2556 name = "inherits";
3618 name = "inherits";
2557 packageName = "inherits";
3619 packageName = "inherits";
2558 version = "2.0.3";
3620 version = "2.0.3";
2559 src = fetchurl {
3621 src = fetchurl {
2560 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
3622 url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
2561 sha1 = "633c2c83e3da42a502f52466022480f4208261de";
3623 sha1 = "633c2c83e3da42a502f52466022480f4208261de";
2562 };
3624 };
2563 };
3625 };
2564 "ini-1.3.5" = {
3626 "ini-1.3.5" = {
2565 name = "ini";
3627 name = "ini";
2566 packageName = "ini";
3628 packageName = "ini";
2567 version = "1.3.5";
3629 version = "1.3.5";
2568 src = fetchurl {
3630 src = fetchurl {
2569 url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
3631 url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
2570 sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
3632 sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
2571 };
3633 };
2572 };
3634 };
2573 "interpret-1.1.0" = {
3635 "interpret-1.1.0" = {
2574 name = "interpret";
3636 name = "interpret";
2575 packageName = "interpret";
3637 packageName = "interpret";
2576 version = "1.1.0";
3638 version = "1.1.0";
2577 src = fetchurl {
3639 src = fetchurl {
2578 url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
3640 url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
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";
2585 version = "2.0.0";
3656 version = "2.0.0";
2586 src = fetchurl {
3657 src = fetchurl {
2587 url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz";
3658 url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz";
2588 sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==";
3659 sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==";
2589 };
3660 };
2590 };
3661 };
2591 "is-absolute-1.0.0" = {
3662 "is-absolute-1.0.0" = {
2592 name = "is-absolute";
3663 name = "is-absolute";
2593 packageName = "is-absolute";
3664 packageName = "is-absolute";
2594 version = "1.0.0";
3665 version = "1.0.0";
2595 src = fetchurl {
3666 src = fetchurl {
2596 url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
3667 url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
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";
2603 version = "0.1.6";
3683 version = "0.1.6";
2604 src = fetchurl {
3684 src = fetchurl {
2605 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
3685 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
2606 sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
3686 sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
2607 };
3687 };
2608 };
3688 };
2609 "is-accessor-descriptor-1.0.0" = {
3689 "is-accessor-descriptor-1.0.0" = {
2610 name = "is-accessor-descriptor";
3690 name = "is-accessor-descriptor";
2611 packageName = "is-accessor-descriptor";
3691 packageName = "is-accessor-descriptor";
2612 version = "1.0.0";
3692 version = "1.0.0";
2613 src = fetchurl {
3693 src = fetchurl {
2614 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
3694 url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
2615 sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
3695 sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
2616 };
3696 };
2617 };
3697 };
2618 "is-binary-path-1.0.1" = {
3698 "is-binary-path-1.0.1" = {
2619 name = "is-binary-path";
3699 name = "is-binary-path";
2620 packageName = "is-binary-path";
3700 packageName = "is-binary-path";
2621 version = "1.0.1";
3701 version = "1.0.1";
2622 src = fetchurl {
3702 src = fetchurl {
2623 url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
3703 url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
2624 sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
3704 sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
2625 };
3705 };
2626 };
3706 };
2627 "is-buffer-1.1.6" = {
3707 "is-buffer-1.1.6" = {
2628 name = "is-buffer";
3708 name = "is-buffer";
2629 packageName = "is-buffer";
3709 packageName = "is-buffer";
2630 version = "1.1.6";
3710 version = "1.1.6";
2631 src = fetchurl {
3711 src = fetchurl {
2632 url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
3712 url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
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";
2639 version = "0.1.4";
3728 version = "0.1.4";
2640 src = fetchurl {
3729 src = fetchurl {
2641 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
3730 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
2642 sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
3731 sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
2643 };
3732 };
2644 };
3733 };
2645 "is-data-descriptor-1.0.0" = {
3734 "is-data-descriptor-1.0.0" = {
2646 name = "is-data-descriptor";
3735 name = "is-data-descriptor";
2647 packageName = "is-data-descriptor";
3736 packageName = "is-data-descriptor";
2648 version = "1.0.0";
3737 version = "1.0.0";
2649 src = fetchurl {
3738 src = fetchurl {
2650 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
3739 url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
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";
2657 version = "0.1.6";
3755 version = "0.1.6";
2658 src = fetchurl {
3756 src = fetchurl {
2659 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
3757 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
2660 sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
3758 sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==";
2661 };
3759 };
2662 };
3760 };
2663 "is-descriptor-1.0.2" = {
3761 "is-descriptor-1.0.2" = {
2664 name = "is-descriptor";
3762 name = "is-descriptor";
2665 packageName = "is-descriptor";
3763 packageName = "is-descriptor";
2666 version = "1.0.2";
3764 version = "1.0.2";
2667 src = fetchurl {
3765 src = fetchurl {
2668 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
3766 url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
2669 sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
3767 sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
2670 };
3768 };
2671 };
3769 };
2672 "is-extendable-0.1.1" = {
3770 "is-extendable-0.1.1" = {
2673 name = "is-extendable";
3771 name = "is-extendable";
2674 packageName = "is-extendable";
3772 packageName = "is-extendable";
2675 version = "0.1.1";
3773 version = "0.1.1";
2676 src = fetchurl {
3774 src = fetchurl {
2677 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
3775 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
2678 sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
3776 sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
2679 };
3777 };
2680 };
3778 };
2681 "is-extendable-1.0.1" = {
3779 "is-extendable-1.0.1" = {
2682 name = "is-extendable";
3780 name = "is-extendable";
2683 packageName = "is-extendable";
3781 packageName = "is-extendable";
2684 version = "1.0.1";
3782 version = "1.0.1";
2685 src = fetchurl {
3783 src = fetchurl {
2686 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
3784 url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
2687 sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
3785 sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==";
2688 };
3786 };
2689 };
3787 };
2690 "is-extglob-2.1.1" = {
3788 "is-extglob-2.1.1" = {
2691 name = "is-extglob";
3789 name = "is-extglob";
2692 packageName = "is-extglob";
3790 packageName = "is-extglob";
2693 version = "2.1.1";
3791 version = "2.1.1";
2694 src = fetchurl {
3792 src = fetchurl {
2695 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
3793 url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
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";
2702 version = "1.0.0";
3809 version = "1.0.0";
2703 src = fetchurl {
3810 src = fetchurl {
2704 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
3811 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
2705 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
3812 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
2706 };
3813 };
2707 };
3814 };
2708 "is-fullwidth-code-point-2.0.0" = {
3815 "is-fullwidth-code-point-2.0.0" = {
2709 name = "is-fullwidth-code-point";
3816 name = "is-fullwidth-code-point";
2710 packageName = "is-fullwidth-code-point";
3817 packageName = "is-fullwidth-code-point";
2711 version = "2.0.0";
3818 version = "2.0.0";
2712 src = fetchurl {
3819 src = fetchurl {
2713 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
3820 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
2714 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
3821 sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
2715 };
3822 };
2716 };
3823 };
2717 "is-glob-3.1.0" = {
3824 "is-glob-3.1.0" = {
2718 name = "is-glob";
3825 name = "is-glob";
2719 packageName = "is-glob";
3826 packageName = "is-glob";
2720 version = "3.1.0";
3827 version = "3.1.0";
2721 src = fetchurl {
3828 src = fetchurl {
2722 url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
3829 url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
2723 sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
3830 sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
2724 };
3831 };
2725 };
3832 };
2726 "is-glob-4.0.0" = {
3833 "is-glob-4.0.0" = {
2727 name = "is-glob";
3834 name = "is-glob";
2728 packageName = "is-glob";
3835 packageName = "is-glob";
2729 version = "4.0.0";
3836 version = "4.0.0";
2730 src = fetchurl {
3837 src = fetchurl {
2731 url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz";
3838 url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz";
2732 sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0";
3839 sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0";
2733 };
3840 };
2734 };
3841 };
2735 "is-number-3.0.0" = {
3842 "is-number-3.0.0" = {
2736 name = "is-number";
3843 name = "is-number";
2737 packageName = "is-number";
3844 packageName = "is-number";
2738 version = "3.0.0";
3845 version = "3.0.0";
2739 src = fetchurl {
3846 src = fetchurl {
2740 url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
3847 url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
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";
2747 version = "2.0.4";
3863 version = "2.0.4";
2748 src = fetchurl {
3864 src = fetchurl {
2749 url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
3865 url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
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";
2756 version = "1.0.0";
3881 version = "1.0.0";
2757 src = fetchurl {
3882 src = fetchurl {
2758 url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
3883 url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
2759 sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
3884 sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==";
2760 };
3885 };
2761 };
3886 };
2762 "is-stream-1.1.0" = {
3887 "is-stream-1.1.0" = {
2763 name = "is-stream";
3888 name = "is-stream";
2764 packageName = "is-stream";
3889 packageName = "is-stream";
2765 version = "1.1.0";
3890 version = "1.1.0";
2766 src = fetchurl {
3891 src = fetchurl {
2767 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
3892 url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
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";
2774 version = "1.0.0";
3917 version = "1.0.0";
2775 src = fetchurl {
3918 src = fetchurl {
2776 url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
3919 url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
2777 sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
3920 sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
2778 };
3921 };
2779 };
3922 };
2780 "is-unc-path-1.0.0" = {
3923 "is-unc-path-1.0.0" = {
2781 name = "is-unc-path";
3924 name = "is-unc-path";
2782 packageName = "is-unc-path";
3925 packageName = "is-unc-path";
2783 version = "1.0.0";
3926 version = "1.0.0";
2784 src = fetchurl {
3927 src = fetchurl {
2785 url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
3928 url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
2786 sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
3929 sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==";
2787 };
3930 };
2788 };
3931 };
2789 "is-windows-1.0.2" = {
3932 "is-windows-1.0.2" = {
2790 name = "is-windows";
3933 name = "is-windows";
2791 packageName = "is-windows";
3934 packageName = "is-windows";
2792 version = "1.0.2";
3935 version = "1.0.2";
2793 src = fetchurl {
3936 src = fetchurl {
2794 url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
3937 url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz";
2795 sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
3938 sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==";
2796 };
3939 };
2797 };
3940 };
2798 "isarray-0.0.1" = {
3941 "isarray-0.0.1" = {
2799 name = "isarray";
3942 name = "isarray";
2800 packageName = "isarray";
3943 packageName = "isarray";
2801 version = "0.0.1";
3944 version = "0.0.1";
2802 src = fetchurl {
3945 src = fetchurl {
2803 url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
3946 url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
2804 sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
3947 sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
2805 };
3948 };
2806 };
3949 };
2807 "isarray-1.0.0" = {
3950 "isarray-1.0.0" = {
2808 name = "isarray";
3951 name = "isarray";
2809 packageName = "isarray";
3952 packageName = "isarray";
2810 version = "1.0.0";
3953 version = "1.0.0";
2811 src = fetchurl {
3954 src = fetchurl {
2812 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
3955 url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
2813 sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
3956 sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
2814 };
3957 };
2815 };
3958 };
2816 "isexe-2.0.0" = {
3959 "isexe-2.0.0" = {
2817 name = "isexe";
3960 name = "isexe";
2818 packageName = "isexe";
3961 packageName = "isexe";
2819 version = "2.0.0";
3962 version = "2.0.0";
2820 src = fetchurl {
3963 src = fetchurl {
2821 url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
3964 url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
2822 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
3965 sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
2823 };
3966 };
2824 };
3967 };
2825 "isobject-2.1.0" = {
3968 "isobject-2.1.0" = {
2826 name = "isobject";
3969 name = "isobject";
2827 packageName = "isobject";
3970 packageName = "isobject";
2828 version = "2.1.0";
3971 version = "2.1.0";
2829 src = fetchurl {
3972 src = fetchurl {
2830 url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
3973 url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
2831 sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
3974 sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
2832 };
3975 };
2833 };
3976 };
2834 "isobject-3.0.1" = {
3977 "isobject-3.0.1" = {
2835 name = "isobject";
3978 name = "isobject";
2836 packageName = "isobject";
3979 packageName = "isobject";
2837 version = "3.0.1";
3980 version = "3.0.1";
2838 src = fetchurl {
3981 src = fetchurl {
2839 url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
3982 url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
2840 sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
3983 sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
2841 };
3984 };
2842 };
3985 };
2843 "isstream-0.1.2" = {
3986 "isstream-0.1.2" = {
2844 name = "isstream";
3987 name = "isstream";
2845 packageName = "isstream";
3988 packageName = "isstream";
2846 version = "0.1.2";
3989 version = "0.1.2";
2847 src = fetchurl {
3990 src = fetchurl {
2848 url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
3991 url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
2849 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
3992 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
2850 };
3993 };
2851 };
3994 };
2852 "jquery-1.11.3" = {
3995 "jquery-1.11.3" = {
2853 name = "jquery";
3996 name = "jquery";
2854 packageName = "jquery";
3997 packageName = "jquery";
2855 version = "1.11.3";
3998 version = "1.11.3";
2856 src = fetchurl {
3999 src = fetchurl {
2857 url = "https://registry.npmjs.org/jquery/-/jquery-1.11.3.tgz";
4000 url = "https://registry.npmjs.org/jquery/-/jquery-1.11.3.tgz";
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";
2864 version = "2.0.5";
4025 version = "2.0.5";
2865 src = fetchurl {
4026 src = fetchurl {
2866 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz";
4027 url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz";
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";
2873 version = "0.1.1";
4043 version = "0.1.1";
2874 src = fetchurl {
4044 src = fetchurl {
2875 url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
4045 url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
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";
2882 version = "2.9.6";
4070 version = "2.9.6";
2883 src = fetchurl {
4071 src = fetchurl {
2884 url = "https://registry.npmjs.org/jshint/-/jshint-2.9.6.tgz";
4072 url = "https://registry.npmjs.org/jshint/-/jshint-2.9.6.tgz";
2885 sha512 = "KO9SIAKTlJQOM4lE64GQUtGBRpTOuvbrRrSZw3AhUxMNG266nX9hK2cKA4SBhXOj0irJGyNyGSLT62HGOVDEOA==";
4073 sha512 = "KO9SIAKTlJQOM4lE64GQUtGBRpTOuvbrRrSZw3AhUxMNG266nX9hK2cKA4SBhXOj0irJGyNyGSLT62HGOVDEOA==";
2886 };
4074 };
2887 };
4075 };
2888 "json-parse-better-errors-1.0.2" = {
4076 "json-parse-better-errors-1.0.2" = {
2889 name = "json-parse-better-errors";
4077 name = "json-parse-better-errors";
2890 packageName = "json-parse-better-errors";
4078 packageName = "json-parse-better-errors";
2891 version = "1.0.2";
4079 version = "1.0.2";
2892 src = fetchurl {
4080 src = fetchurl {
2893 url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
4081 url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz";
2894 sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
4082 sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==";
2895 };
4083 };
2896 };
4084 };
2897 "json-schema-0.2.3" = {
4085 "json-schema-0.2.3" = {
2898 name = "json-schema";
4086 name = "json-schema";
2899 packageName = "json-schema";
4087 packageName = "json-schema";
2900 version = "0.2.3";
4088 version = "0.2.3";
2901 src = fetchurl {
4089 src = fetchurl {
2902 url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
4090 url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
2903 sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
4091 sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
2904 };
4092 };
2905 };
4093 };
2906 "json-schema-traverse-0.4.1" = {
4094 "json-schema-traverse-0.4.1" = {
2907 name = "json-schema-traverse";
4095 name = "json-schema-traverse";
2908 packageName = "json-schema-traverse";
4096 packageName = "json-schema-traverse";
2909 version = "0.4.1";
4097 version = "0.4.1";
2910 src = fetchurl {
4098 src = fetchurl {
2911 url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
4099 url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz";
2912 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
4100 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==";
2913 };
4101 };
2914 };
4102 };
2915 "json-stable-stringify-1.0.1" = {
4103 "json-stable-stringify-1.0.1" = {
2916 name = "json-stable-stringify";
4104 name = "json-stable-stringify";
2917 packageName = "json-stable-stringify";
4105 packageName = "json-stable-stringify";
2918 version = "1.0.1";
4106 version = "1.0.1";
2919 src = fetchurl {
4107 src = fetchurl {
2920 url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
4108 url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
2921 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
4109 sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
2922 };
4110 };
2923 };
4111 };
2924 "json-stringify-safe-5.0.1" = {
4112 "json-stringify-safe-5.0.1" = {
2925 name = "json-stringify-safe";
4113 name = "json-stringify-safe";
2926 packageName = "json-stringify-safe";
4114 packageName = "json-stringify-safe";
2927 version = "5.0.1";
4115 version = "5.0.1";
2928 src = fetchurl {
4116 src = fetchurl {
2929 url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
4117 url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
2930 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
4118 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
2931 };
4119 };
2932 };
4120 };
2933 "json5-0.5.1" = {
4121 "json5-0.5.1" = {
2934 name = "json5";
4122 name = "json5";
2935 packageName = "json5";
4123 packageName = "json5";
2936 version = "0.5.1";
4124 version = "0.5.1";
2937 src = fetchurl {
4125 src = fetchurl {
2938 url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz";
4126 url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz";
2939 sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
4127 sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
2940 };
4128 };
2941 };
4129 };
2942 "jsonfile-2.4.0" = {
4130 "jsonfile-2.4.0" = {
2943 name = "jsonfile";
4131 name = "jsonfile";
2944 packageName = "jsonfile";
4132 packageName = "jsonfile";
2945 version = "2.4.0";
4133 version = "2.4.0";
2946 src = fetchurl {
4134 src = fetchurl {
2947 url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz";
4135 url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz";
2948 sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8";
4136 sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8";
2949 };
4137 };
2950 };
4138 };
2951 "jsonify-0.0.0" = {
4139 "jsonify-0.0.0" = {
2952 name = "jsonify";
4140 name = "jsonify";
2953 packageName = "jsonify";
4141 packageName = "jsonify";
2954 version = "0.0.0";
4142 version = "0.0.0";
2955 src = fetchurl {
4143 src = fetchurl {
2956 url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
4144 url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
2957 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
4145 sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
2958 };
4146 };
2959 };
4147 };
2960 "jsprim-1.4.1" = {
4148 "jsprim-1.4.1" = {
2961 name = "jsprim";
4149 name = "jsprim";
2962 packageName = "jsprim";
4150 packageName = "jsprim";
2963 version = "1.4.1";
4151 version = "1.4.1";
2964 src = fetchurl {
4152 src = fetchurl {
2965 url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
4153 url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
2966 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
4154 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
2967 };
4155 };
2968 };
4156 };
2969 "kew-0.7.0" = {
4157 "kew-0.7.0" = {
2970 name = "kew";
4158 name = "kew";
2971 packageName = "kew";
4159 packageName = "kew";
2972 version = "0.7.0";
4160 version = "0.7.0";
2973 src = fetchurl {
4161 src = fetchurl {
2974 url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz";
4162 url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz";
2975 sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b";
4163 sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b";
2976 };
4164 };
2977 };
4165 };
2978 "kind-of-3.2.2" = {
4166 "kind-of-3.2.2" = {
2979 name = "kind-of";
4167 name = "kind-of";
2980 packageName = "kind-of";
4168 packageName = "kind-of";
2981 version = "3.2.2";
4169 version = "3.2.2";
2982 src = fetchurl {
4170 src = fetchurl {
2983 url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
4171 url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
2984 sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
4172 sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
2985 };
4173 };
2986 };
4174 };
2987 "kind-of-4.0.0" = {
4175 "kind-of-4.0.0" = {
2988 name = "kind-of";
4176 name = "kind-of";
2989 packageName = "kind-of";
4177 packageName = "kind-of";
2990 version = "4.0.0";
4178 version = "4.0.0";
2991 src = fetchurl {
4179 src = fetchurl {
2992 url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
4180 url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
2993 sha1 = "20813df3d712928b207378691a45066fae72dd57";
4181 sha1 = "20813df3d712928b207378691a45066fae72dd57";
2994 };
4182 };
2995 };
4183 };
2996 "kind-of-5.1.0" = {
4184 "kind-of-5.1.0" = {
2997 name = "kind-of";
4185 name = "kind-of";
2998 packageName = "kind-of";
4186 packageName = "kind-of";
2999 version = "5.1.0";
4187 version = "5.1.0";
3000 src = fetchurl {
4188 src = fetchurl {
3001 url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
4189 url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
3002 sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
4190 sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==";
3003 };
4191 };
3004 };
4192 };
3005 "kind-of-6.0.2" = {
4193 "kind-of-6.0.2" = {
3006 name = "kind-of";
4194 name = "kind-of";
3007 packageName = "kind-of";
4195 packageName = "kind-of";
3008 version = "6.0.2";
4196 version = "6.0.2";
3009 src = fetchurl {
4197 src = fetchurl {
3010 url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
4198 url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
3011 sha512 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==";
4199 sha512 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==";
3012 };
4200 };
3013 };
4201 };
3014 "klaw-1.3.1" = {
4202 "klaw-1.3.1" = {
3015 name = "klaw";
4203 name = "klaw";
3016 packageName = "klaw";
4204 packageName = "klaw";
3017 version = "1.3.1";
4205 version = "1.3.1";
3018 src = fetchurl {
4206 src = fetchurl {
3019 url = "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz";
4207 url = "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz";
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";
3026 version = "2.0.0";
4223 version = "2.0.0";
3027 src = fetchurl {
4224 src = fetchurl {
3028 url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz";
4225 url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz";
3029 sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==";
4226 sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==";
3030 };
4227 };
3031 };
4228 };
3032 "less-2.7.3" = {
4229 "less-2.7.3" = {
3033 name = "less";
4230 name = "less";
3034 packageName = "less";
4231 packageName = "less";
3035 version = "2.7.3";
4232 version = "2.7.3";
3036 src = fetchurl {
4233 src = fetchurl {
3037 url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
4234 url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
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";
3053 version = "2.5.0";
4241 version = "2.5.0";
3054 src = fetchurl {
4242 src = fetchurl {
3055 url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
4243 url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
3056 sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
4244 sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
3057 };
4245 };
3058 };
4246 };
3059 "loader-runner-2.3.1" = {
4247 "loader-runner-2.3.1" = {
3060 name = "loader-runner";
4248 name = "loader-runner";
3061 packageName = "loader-runner";
4249 packageName = "loader-runner";
3062 version = "2.3.1";
4250 version = "2.3.1";
3063 src = fetchurl {
4251 src = fetchurl {
3064 url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.1.tgz";
4252 url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.1.tgz";
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";
3071 version = "1.1.0";
4268 version = "1.1.0";
3072 src = fetchurl {
4269 src = fetchurl {
3073 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz";
4270 url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz";
3074 sha1 = "c98aef488bcceda2ffb5e2de646d6a754429f5cd";
4271 sha1 = "c98aef488bcceda2ffb5e2de646d6a754429f5cd";
3075 };
4272 };
3076 };
4273 };
3077 "locate-path-2.0.0" = {
4274 "locate-path-2.0.0" = {
3078 name = "locate-path";
4275 name = "locate-path";
3079 packageName = "locate-path";
4276 packageName = "locate-path";
3080 version = "2.0.0";
4277 version = "2.0.0";
3081 src = fetchurl {
4278 src = fetchurl {
3082 url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
4279 url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
3083 sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
4280 sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
3084 };
4281 };
3085 };
4282 };
3086 "locate-path-3.0.0" = {
4283 "locate-path-3.0.0" = {
3087 name = "locate-path";
4284 name = "locate-path";
3088 packageName = "locate-path";
4285 packageName = "locate-path";
3089 version = "3.0.0";
4286 version = "3.0.0";
3090 src = fetchurl {
4287 src = fetchurl {
3091 url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
4288 url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz";
3092 sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
4289 sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==";
3093 };
4290 };
3094 };
4291 };
3095 "lodash-0.9.2" = {
4292 "lodash-0.9.2" = {
3096 name = "lodash";
4293 name = "lodash";
3097 packageName = "lodash";
4294 packageName = "lodash";
3098 version = "0.9.2";
4295 version = "0.9.2";
3099 src = fetchurl {
4296 src = fetchurl {
3100 url = "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz";
4297 url = "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz";
3101 sha1 = "8f3499c5245d346d682e5b0d3b40767e09f1a92c";
4298 sha1 = "8f3499c5245d346d682e5b0d3b40767e09f1a92c";
3102 };
4299 };
3103 };
4300 };
3104 "lodash-1.0.2" = {
4301 "lodash-1.0.2" = {
3105 name = "lodash";
4302 name = "lodash";
3106 packageName = "lodash";
4303 packageName = "lodash";
3107 version = "1.0.2";
4304 version = "1.0.2";
3108 src = fetchurl {
4305 src = fetchurl {
3109 url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
4306 url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
3110 sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
4307 sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
3111 };
4308 };
3112 };
4309 };
3113 "lodash-2.4.2" = {
4310 "lodash-2.4.2" = {
3114 name = "lodash";
4311 name = "lodash";
3115 packageName = "lodash";
4312 packageName = "lodash";
3116 version = "2.4.2";
4313 version = "2.4.2";
3117 src = fetchurl {
4314 src = fetchurl {
3118 url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
4315 url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
3119 sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
4316 sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
3120 };
4317 };
3121 };
4318 };
3122 "lodash-4.17.11" = {
4319 "lodash-4.17.11" = {
3123 name = "lodash";
4320 name = "lodash";
3124 packageName = "lodash";
4321 packageName = "lodash";
3125 version = "4.17.11";
4322 version = "4.17.11";
3126 src = fetchurl {
4323 src = fetchurl {
3127 url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz";
4324 url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz";
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";
3134 version = "4.0.8";
4340 version = "4.0.8";
3135 src = fetchurl {
4341 src = fetchurl {
3136 url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz";
4342 url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz";
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";
3143 version = "2.7.3";
4403 version = "2.7.3";
3144 src = fetchurl {
4404 src = fetchurl {
3145 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
4405 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
3146 sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
4406 sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
3147 };
4407 };
3148 };
4408 };
3149 "lru-cache-4.1.3" = {
4409 "lru-cache-4.1.3" = {
3150 name = "lru-cache";
4410 name = "lru-cache";
3151 packageName = "lru-cache";
4411 packageName = "lru-cache";
3152 version = "4.1.3";
4412 version = "4.1.3";
3153 src = fetchurl {
4413 src = fetchurl {
3154 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz";
4414 url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz";
3155 sha512 = "fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==";
4415 sha512 = "fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==";
3156 };
4416 };
3157 };
4417 };
3158 "make-dir-1.3.0" = {
4418 "make-dir-1.3.0" = {
3159 name = "make-dir";
4419 name = "make-dir";
3160 packageName = "make-dir";
4420 packageName = "make-dir";
3161 version = "1.3.0";
4421 version = "1.3.0";
3162 src = fetchurl {
4422 src = fetchurl {
3163 url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
4423 url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz";
3164 sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
4424 sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==";
3165 };
4425 };
3166 };
4426 };
3167 "make-iterator-1.0.1" = {
4427 "make-iterator-1.0.1" = {
3168 name = "make-iterator";
4428 name = "make-iterator";
3169 packageName = "make-iterator";
4429 packageName = "make-iterator";
3170 version = "1.0.1";
4430 version = "1.0.1";
3171 src = fetchurl {
4431 src = fetchurl {
3172 url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
4432 url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz";
3173 sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
4433 sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==";
3174 };
4434 };
3175 };
4435 };
3176 "map-age-cleaner-0.1.2" = {
4436 "map-age-cleaner-0.1.2" = {
3177 name = "map-age-cleaner";
4437 name = "map-age-cleaner";
3178 packageName = "map-age-cleaner";
4438 packageName = "map-age-cleaner";
3179 version = "0.1.2";
4439 version = "0.1.2";
3180 src = fetchurl {
4440 src = fetchurl {
3181 url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.2.tgz";
4441 url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.2.tgz";
3182 sha512 = "UN1dNocxQq44IhJyMI4TU8phc2m9BddacHRPRjKGLYaF0jqd3xLz0jS0skpAU9WgYyoR4gHtUpzytNBS385FWQ==";
4442 sha512 = "UN1dNocxQq44IhJyMI4TU8phc2m9BddacHRPRjKGLYaF0jqd3xLz0jS0skpAU9WgYyoR4gHtUpzytNBS385FWQ==";
3183 };
4443 };
3184 };
4444 };
3185 "map-cache-0.2.2" = {
4445 "map-cache-0.2.2" = {
3186 name = "map-cache";
4446 name = "map-cache";
3187 packageName = "map-cache";
4447 packageName = "map-cache";
3188 version = "0.2.2";
4448 version = "0.2.2";
3189 src = fetchurl {
4449 src = fetchurl {
3190 url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
4450 url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
3191 sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
4451 sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
3192 };
4452 };
3193 };
4453 };
3194 "map-visit-1.0.0" = {
4454 "map-visit-1.0.0" = {
3195 name = "map-visit";
4455 name = "map-visit";
3196 packageName = "map-visit";
4456 packageName = "map-visit";
3197 version = "1.0.0";
4457 version = "1.0.0";
3198 src = fetchurl {
4458 src = fetchurl {
3199 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
4459 url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
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";
3206 version = "1.3.5";
4475 version = "1.3.5";
3207 src = fetchurl {
4476 src = fetchurl {
3208 url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz";
4477 url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz";
3209 sha512 = "xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==";
4478 sha512 = "xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==";
3210 };
4479 };
3211 };
4480 };
3212 "mem-4.0.0" = {
4481 "mem-4.0.0" = {
3213 name = "mem";
4482 name = "mem";
3214 packageName = "mem";
4483 packageName = "mem";
3215 version = "4.0.0";
4484 version = "4.0.0";
3216 src = fetchurl {
4485 src = fetchurl {
3217 url = "https://registry.npmjs.org/mem/-/mem-4.0.0.tgz";
4486 url = "https://registry.npmjs.org/mem/-/mem-4.0.0.tgz";
3218 sha512 = "WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA==";
4487 sha512 = "WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA==";
3219 };
4488 };
3220 };
4489 };
3221 "memory-fs-0.4.1" = {
4490 "memory-fs-0.4.1" = {
3222 name = "memory-fs";
4491 name = "memory-fs";
3223 packageName = "memory-fs";
4492 packageName = "memory-fs";
3224 version = "0.4.1";
4493 version = "0.4.1";
3225 src = fetchurl {
4494 src = fetchurl {
3226 url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz";
4495 url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz";
3227 sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
4496 sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
3228 };
4497 };
3229 };
4498 };
3230 "micromatch-3.1.10" = {
4499 "micromatch-3.1.10" = {
3231 name = "micromatch";
4500 name = "micromatch";
3232 packageName = "micromatch";
4501 packageName = "micromatch";
3233 version = "3.1.10";
4502 version = "3.1.10";
3234 src = fetchurl {
4503 src = fetchurl {
3235 url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
4504 url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz";
3236 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
4505 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
3237 };
4506 };
3238 };
4507 };
3239 "miller-rabin-4.0.1" = {
4508 "miller-rabin-4.0.1" = {
3240 name = "miller-rabin";
4509 name = "miller-rabin";
3241 packageName = "miller-rabin";
4510 packageName = "miller-rabin";
3242 version = "4.0.1";
4511 version = "4.0.1";
3243 src = fetchurl {
4512 src = fetchurl {
3244 url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz";
4513 url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz";
3245 sha512 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==";
4514 sha512 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==";
3246 };
4515 };
3247 };
4516 };
3248 "mime-1.6.0" = {
4517 "mime-1.6.0" = {
3249 name = "mime";
4518 name = "mime";
3250 packageName = "mime";
4519 packageName = "mime";
3251 version = "1.6.0";
4520 version = "1.6.0";
3252 src = fetchurl {
4521 src = fetchurl {
3253 url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
4522 url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
3254 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
4523 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
3255 };
4524 };
3256 };
4525 };
3257 "mime-db-1.37.0" = {
4526 "mime-db-1.37.0" = {
3258 name = "mime-db";
4527 name = "mime-db";
3259 packageName = "mime-db";
4528 packageName = "mime-db";
3260 version = "1.37.0";
4529 version = "1.37.0";
3261 src = fetchurl {
4530 src = fetchurl {
3262 url = "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz";
4531 url = "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz";
3263 sha512 = "R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==";
4532 sha512 = "R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==";
3264 };
4533 };
3265 };
4534 };
3266 "mime-types-2.1.21" = {
4535 "mime-types-2.1.21" = {
3267 name = "mime-types";
4536 name = "mime-types";
3268 packageName = "mime-types";
4537 packageName = "mime-types";
3269 version = "2.1.21";
4538 version = "2.1.21";
3270 src = fetchurl {
4539 src = fetchurl {
3271 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz";
4540 url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz";
3272 sha512 = "3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==";
4541 sha512 = "3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==";
3273 };
4542 };
3274 };
4543 };
3275 "mimic-fn-1.2.0" = {
4544 "mimic-fn-1.2.0" = {
3276 name = "mimic-fn";
4545 name = "mimic-fn";
3277 packageName = "mimic-fn";
4546 packageName = "mimic-fn";
3278 version = "1.2.0";
4547 version = "1.2.0";
3279 src = fetchurl {
4548 src = fetchurl {
3280 url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz";
4549 url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz";
3281 sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==";
4550 sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==";
3282 };
4551 };
3283 };
4552 };
3284 "minimalistic-assert-1.0.1" = {
4553 "minimalistic-assert-1.0.1" = {
3285 name = "minimalistic-assert";
4554 name = "minimalistic-assert";
3286 packageName = "minimalistic-assert";
4555 packageName = "minimalistic-assert";
3287 version = "1.0.1";
4556 version = "1.0.1";
3288 src = fetchurl {
4557 src = fetchurl {
3289 url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
4558 url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz";
3290 sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==";
4559 sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==";
3291 };
4560 };
3292 };
4561 };
3293 "minimalistic-crypto-utils-1.0.1" = {
4562 "minimalistic-crypto-utils-1.0.1" = {
3294 name = "minimalistic-crypto-utils";
4563 name = "minimalistic-crypto-utils";
3295 packageName = "minimalistic-crypto-utils";
4564 packageName = "minimalistic-crypto-utils";
3296 version = "1.0.1";
4565 version = "1.0.1";
3297 src = fetchurl {
4566 src = fetchurl {
3298 url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
4567 url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
3299 sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
4568 sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
3300 };
4569 };
3301 };
4570 };
3302 "minimatch-0.2.14" = {
4571 "minimatch-0.2.14" = {
3303 name = "minimatch";
4572 name = "minimatch";
3304 packageName = "minimatch";
4573 packageName = "minimatch";
3305 version = "0.2.14";
4574 version = "0.2.14";
3306 src = fetchurl {
4575 src = fetchurl {
3307 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
4576 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
3308 sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
4577 sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
3309 };
4578 };
3310 };
4579 };
3311 "minimatch-0.3.0" = {
4580 "minimatch-0.3.0" = {
3312 name = "minimatch";
4581 name = "minimatch";
3313 packageName = "minimatch";
4582 packageName = "minimatch";
3314 version = "0.3.0";
4583 version = "0.3.0";
3315 src = fetchurl {
4584 src = fetchurl {
3316 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
4585 url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
3317 sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
4586 sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
3318 };
4587 };
3319 };
4588 };
3320 "minimatch-3.0.4" = {
4589 "minimatch-3.0.4" = {
3321 name = "minimatch";
4590 name = "minimatch";
3322 packageName = "minimatch";
4591 packageName = "minimatch";
3323 version = "3.0.4";
4592 version = "3.0.4";
3324 src = fetchurl {
4593 src = fetchurl {
3325 url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
4594 url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
3326 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
4595 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
3327 };
4596 };
3328 };
4597 };
3329 "minimist-0.0.8" = {
4598 "minimist-0.0.8" = {
3330 name = "minimist";
4599 name = "minimist";
3331 packageName = "minimist";
4600 packageName = "minimist";
3332 version = "0.0.8";
4601 version = "0.0.8";
3333 src = fetchurl {
4602 src = fetchurl {
3334 url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
4603 url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
3335 sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
4604 sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
3336 };
4605 };
3337 };
4606 };
3338 "mississippi-2.0.0" = {
4607 "mississippi-2.0.0" = {
3339 name = "mississippi";
4608 name = "mississippi";
3340 packageName = "mississippi";
4609 packageName = "mississippi";
3341 version = "2.0.0";
4610 version = "2.0.0";
3342 src = fetchurl {
4611 src = fetchurl {
3343 url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz";
4612 url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz";
3344 sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==";
4613 sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==";
3345 };
4614 };
3346 };
4615 };
3347 "mixin-deep-1.3.1" = {
4616 "mixin-deep-1.3.1" = {
3348 name = "mixin-deep";
4617 name = "mixin-deep";
3349 packageName = "mixin-deep";
4618 packageName = "mixin-deep";
3350 version = "1.3.1";
4619 version = "1.3.1";
3351 src = fetchurl {
4620 src = fetchurl {
3352 url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz";
4621 url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz";
3353 sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==";
4622 sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==";
3354 };
4623 };
3355 };
4624 };
3356 "mkdirp-0.5.1" = {
4625 "mkdirp-0.5.1" = {
3357 name = "mkdirp";
4626 name = "mkdirp";
3358 packageName = "mkdirp";
4627 packageName = "mkdirp";
3359 version = "0.5.1";
4628 version = "0.5.1";
3360 src = fetchurl {
4629 src = fetchurl {
3361 url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
4630 url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
3362 sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
4631 sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
3363 };
4632 };
3364 };
4633 };
3365 "moment-2.22.2" = {
4634 "moment-2.22.2" = {
3366 name = "moment";
4635 name = "moment";
3367 packageName = "moment";
4636 packageName = "moment";
3368 version = "2.22.2";
4637 version = "2.22.2";
3369 src = fetchurl {
4638 src = fetchurl {
3370 url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz";
4639 url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz";
3371 sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66";
4640 sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66";
3372 };
4641 };
3373 };
4642 };
3374 "mousetrap-1.6.2" = {
4643 "mousetrap-1.6.2" = {
3375 name = "mousetrap";
4644 name = "mousetrap";
3376 packageName = "mousetrap";
4645 packageName = "mousetrap";
3377 version = "1.6.2";
4646 version = "1.6.2";
3378 src = fetchurl {
4647 src = fetchurl {
3379 url = "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.2.tgz";
4648 url = "https://registry.npmjs.org/mousetrap/-/mousetrap-1.6.2.tgz";
3380 sha512 = "jDjhi7wlHwdO6q6DS7YRmSHcuI+RVxadBkLt3KHrhd3C2b+w5pKefg3oj5beTcHZyVFA9Aksf+yEE1y5jxUjVA==";
4649 sha512 = "jDjhi7wlHwdO6q6DS7YRmSHcuI+RVxadBkLt3KHrhd3C2b+w5pKefg3oj5beTcHZyVFA9Aksf+yEE1y5jxUjVA==";
3381 };
4650 };
3382 };
4651 };
3383 "move-concurrently-1.0.1" = {
4652 "move-concurrently-1.0.1" = {
3384 name = "move-concurrently";
4653 name = "move-concurrently";
3385 packageName = "move-concurrently";
4654 packageName = "move-concurrently";
3386 version = "1.0.1";
4655 version = "1.0.1";
3387 src = fetchurl {
4656 src = fetchurl {
3388 url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
4657 url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
3389 sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
4658 sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
3390 };
4659 };
3391 };
4660 };
3392 "ms-2.0.0" = {
4661 "ms-2.0.0" = {
3393 name = "ms";
4662 name = "ms";
3394 packageName = "ms";
4663 packageName = "ms";
3395 version = "2.0.0";
4664 version = "2.0.0";
3396 src = fetchurl {
4665 src = fetchurl {
3397 url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
4666 url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
3398 sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
4667 sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
3399 };
4668 };
3400 };
4669 };
3401 "nan-2.11.1" = {
4670 "nan-2.11.1" = {
3402 name = "nan";
4671 name = "nan";
3403 packageName = "nan";
4672 packageName = "nan";
3404 version = "2.11.1";
4673 version = "2.11.1";
3405 src = fetchurl {
4674 src = fetchurl {
3406 url = "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz";
4675 url = "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz";
3407 sha512 = "iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA==";
4676 sha512 = "iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA==";
3408 };
4677 };
3409 };
4678 };
3410 "nanomatch-1.2.13" = {
4679 "nanomatch-1.2.13" = {
3411 name = "nanomatch";
4680 name = "nanomatch";
3412 packageName = "nanomatch";
4681 packageName = "nanomatch";
3413 version = "1.2.13";
4682 version = "1.2.13";
3414 src = fetchurl {
4683 src = fetchurl {
3415 url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
4684 url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz";
3416 sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
4685 sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==";
3417 };
4686 };
3418 };
4687 };
3419 "neo-async-2.6.0" = {
4688 "neo-async-2.6.0" = {
3420 name = "neo-async";
4689 name = "neo-async";
3421 packageName = "neo-async";
4690 packageName = "neo-async";
3422 version = "2.6.0";
4691 version = "2.6.0";
3423 src = fetchurl {
4692 src = fetchurl {
3424 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz";
4693 url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz";
3425 sha512 = "MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==";
4694 sha512 = "MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==";
3426 };
4695 };
3427 };
4696 };
3428 "nice-try-1.0.5" = {
4697 "nice-try-1.0.5" = {
3429 name = "nice-try";
4698 name = "nice-try";
3430 packageName = "nice-try";
4699 packageName = "nice-try";
3431 version = "1.0.5";
4700 version = "1.0.5";
3432 src = fetchurl {
4701 src = fetchurl {
3433 url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz";
4702 url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz";
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";
3440 version = "2.1.0";
4718 version = "2.1.0";
3441 src = fetchurl {
4719 src = fetchurl {
3442 url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz";
4720 url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz";
3443 sha512 = "5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==";
4721 sha512 = "5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==";
3444 };
4722 };
3445 };
4723 };
3446 "nopt-1.0.10" = {
4724 "nopt-1.0.10" = {
3447 name = "nopt";
4725 name = "nopt";
3448 packageName = "nopt";
4726 packageName = "nopt";
3449 version = "1.0.10";
4727 version = "1.0.10";
3450 src = fetchurl {
4728 src = fetchurl {
3451 url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
4729 url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
3452 sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
4730 sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
3453 };
4731 };
3454 };
4732 };
3455 "nopt-2.0.0" = {
4733 "nopt-2.0.0" = {
3456 name = "nopt";
4734 name = "nopt";
3457 packageName = "nopt";
4735 packageName = "nopt";
3458 version = "2.0.0";
4736 version = "2.0.0";
3459 src = fetchurl {
4737 src = fetchurl {
3460 url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
4738 url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
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";
3476 version = "4.0.1";
4745 version = "4.0.1";
3477 src = fetchurl {
4746 src = fetchurl {
3478 url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
4747 url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
3479 sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
4748 sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
3480 };
4749 };
3481 };
4750 };
3482 "noptify-0.0.3" = {
4751 "noptify-0.0.3" = {
3483 name = "noptify";
4752 name = "noptify";
3484 packageName = "noptify";
4753 packageName = "noptify";
3485 version = "0.0.3";
4754 version = "0.0.3";
3486 src = fetchurl {
4755 src = fetchurl {
3487 url = "https://registry.npmjs.org/noptify/-/noptify-0.0.3.tgz";
4756 url = "https://registry.npmjs.org/noptify/-/noptify-0.0.3.tgz";
3488 sha1 = "58f654a73d9753df0c51d9686dc92104a67f4bbb";
4757 sha1 = "58f654a73d9753df0c51d9686dc92104a67f4bbb";
3489 };
4758 };
3490 };
4759 };
3491 "normalize-path-2.1.1" = {
4760 "normalize-path-2.1.1" = {
3492 name = "normalize-path";
4761 name = "normalize-path";
3493 packageName = "normalize-path";
4762 packageName = "normalize-path";
3494 version = "2.1.1";
4763 version = "2.1.1";
3495 src = fetchurl {
4764 src = fetchurl {
3496 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
4765 url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
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";
3503 version = "2.0.2";
4790 version = "2.0.2";
3504 src = fetchurl {
4791 src = fetchurl {
3505 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
4792 url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
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";
3512 version = "1.0.1";
4817 version = "1.0.1";
3513 src = fetchurl {
4818 src = fetchurl {
3514 url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
4819 url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
3515 sha1 = "097b602b53422a522c1afb8790318336941a011d";
4820 sha1 = "097b602b53422a522c1afb8790318336941a011d";
3516 };
4821 };
3517 };
4822 };
3518 "oauth-sign-0.8.2" = {
4823 "oauth-sign-0.8.2" = {
3519 name = "oauth-sign";
4824 name = "oauth-sign";
3520 packageName = "oauth-sign";
4825 packageName = "oauth-sign";
3521 version = "0.8.2";
4826 version = "0.8.2";
3522 src = fetchurl {
4827 src = fetchurl {
3523 url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
4828 url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
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";
3530 version = "0.1.0";
4844 version = "0.1.0";
3531 src = fetchurl {
4845 src = fetchurl {
3532 url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
4846 url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
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";
3539 version = "1.0.1";
4862 version = "1.0.1";
3540 src = fetchurl {
4863 src = fetchurl {
3541 url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
4864 url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
3542 sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
4865 sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
3543 };
4866 };
3544 };
4867 };
3545 "object.defaults-1.1.0" = {
4868 "object.defaults-1.1.0" = {
3546 name = "object.defaults";
4869 name = "object.defaults";
3547 packageName = "object.defaults";
4870 packageName = "object.defaults";
3548 version = "1.1.0";
4871 version = "1.1.0";
3549 src = fetchurl {
4872 src = fetchurl {
3550 url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
4873 url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
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";
3557 version = "1.0.1";
4889 version = "1.0.1";
3558 src = fetchurl {
4890 src = fetchurl {
3559 url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
4891 url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
3560 sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
4892 sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
3561 };
4893 };
3562 };
4894 };
3563 "object.pick-1.3.0" = {
4895 "object.pick-1.3.0" = {
3564 name = "object.pick";
4896 name = "object.pick";
3565 packageName = "object.pick";
4897 packageName = "object.pick";
3566 version = "1.3.0";
4898 version = "1.3.0";
3567 src = fetchurl {
4899 src = fetchurl {
3568 url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
4900 url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
3569 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
4901 sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
3570 };
4902 };
3571 };
4903 };
3572 "once-1.4.0" = {
4904 "once-1.4.0" = {
3573 name = "once";
4905 name = "once";
3574 packageName = "once";
4906 packageName = "once";
3575 version = "1.4.0";
4907 version = "1.4.0";
3576 src = fetchurl {
4908 src = fetchurl {
3577 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
4909 url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
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";
3593 version = "0.3.0";
4916 version = "0.3.0";
3594 src = fetchurl {
4917 src = fetchurl {
3595 url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
4918 url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
3596 sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
4919 sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
3597 };
4920 };
3598 };
4921 };
3599 "os-homedir-1.0.2" = {
4922 "os-homedir-1.0.2" = {
3600 name = "os-homedir";
4923 name = "os-homedir";
3601 packageName = "os-homedir";
4924 packageName = "os-homedir";
3602 version = "1.0.2";
4925 version = "1.0.2";
3603 src = fetchurl {
4926 src = fetchurl {
3604 url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
4927 url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
3605 sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
4928 sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
3606 };
4929 };
3607 };
4930 };
3608 "os-locale-3.0.1" = {
4931 "os-locale-3.0.1" = {
3609 name = "os-locale";
4932 name = "os-locale";
3610 packageName = "os-locale";
4933 packageName = "os-locale";
3611 version = "3.0.1";
4934 version = "3.0.1";
3612 src = fetchurl {
4935 src = fetchurl {
3613 url = "https://registry.npmjs.org/os-locale/-/os-locale-3.0.1.tgz";
4936 url = "https://registry.npmjs.org/os-locale/-/os-locale-3.0.1.tgz";
3614 sha512 = "7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw==";
4937 sha512 = "7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw==";
3615 };
4938 };
3616 };
4939 };
3617 "os-tmpdir-1.0.2" = {
4940 "os-tmpdir-1.0.2" = {
3618 name = "os-tmpdir";
4941 name = "os-tmpdir";
3619 packageName = "os-tmpdir";
4942 packageName = "os-tmpdir";
3620 version = "1.0.2";
4943 version = "1.0.2";
3621 src = fetchurl {
4944 src = fetchurl {
3622 url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
4945 url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
3623 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
4946 sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
3624 };
4947 };
3625 };
4948 };
3626 "osenv-0.1.5" = {
4949 "osenv-0.1.5" = {
3627 name = "osenv";
4950 name = "osenv";
3628 packageName = "osenv";
4951 packageName = "osenv";
3629 version = "0.1.5";
4952 version = "0.1.5";
3630 src = fetchurl {
4953 src = fetchurl {
3631 url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
4954 url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz";
3632 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
4955 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
3633 };
4956 };
3634 };
4957 };
3635 "p-defer-1.0.0" = {
4958 "p-defer-1.0.0" = {
3636 name = "p-defer";
4959 name = "p-defer";
3637 packageName = "p-defer";
4960 packageName = "p-defer";
3638 version = "1.0.0";
4961 version = "1.0.0";
3639 src = fetchurl {
4962 src = fetchurl {
3640 url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz";
4963 url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz";
3641 sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c";
4964 sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c";
3642 };
4965 };
3643 };
4966 };
3644 "p-finally-1.0.0" = {
4967 "p-finally-1.0.0" = {
3645 name = "p-finally";
4968 name = "p-finally";
3646 packageName = "p-finally";
4969 packageName = "p-finally";
3647 version = "1.0.0";
4970 version = "1.0.0";
3648 src = fetchurl {
4971 src = fetchurl {
3649 url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
4972 url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
3650 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
4973 sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
3651 };
4974 };
3652 };
4975 };
3653 "p-is-promise-1.1.0" = {
4976 "p-is-promise-1.1.0" = {
3654 name = "p-is-promise";
4977 name = "p-is-promise";
3655 packageName = "p-is-promise";
4978 packageName = "p-is-promise";
3656 version = "1.1.0";
4979 version = "1.1.0";
3657 src = fetchurl {
4980 src = fetchurl {
3658 url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz";
4981 url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz";
3659 sha1 = "9c9456989e9f6588017b0434d56097675c3da05e";
4982 sha1 = "9c9456989e9f6588017b0434d56097675c3da05e";
3660 };
4983 };
3661 };
4984 };
3662 "p-limit-1.3.0" = {
4985 "p-limit-1.3.0" = {
3663 name = "p-limit";
4986 name = "p-limit";
3664 packageName = "p-limit";
4987 packageName = "p-limit";
3665 version = "1.3.0";
4988 version = "1.3.0";
3666 src = fetchurl {
4989 src = fetchurl {
3667 url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
4990 url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
3668 sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==";
4991 sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==";
3669 };
4992 };
3670 };
4993 };
3671 "p-limit-2.0.0" = {
4994 "p-limit-2.0.0" = {
3672 name = "p-limit";
4995 name = "p-limit";
3673 packageName = "p-limit";
4996 packageName = "p-limit";
3674 version = "2.0.0";
4997 version = "2.0.0";
3675 src = fetchurl {
4998 src = fetchurl {
3676 url = "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz";
4999 url = "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz";
3677 sha512 = "fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==";
5000 sha512 = "fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==";
3678 };
5001 };
3679 };
5002 };
3680 "p-locate-2.0.0" = {
5003 "p-locate-2.0.0" = {
3681 name = "p-locate";
5004 name = "p-locate";
3682 packageName = "p-locate";
5005 packageName = "p-locate";
3683 version = "2.0.0";
5006 version = "2.0.0";
3684 src = fetchurl {
5007 src = fetchurl {
3685 url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
5008 url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
3686 sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
5009 sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
3687 };
5010 };
3688 };
5011 };
3689 "p-locate-3.0.0" = {
5012 "p-locate-3.0.0" = {
3690 name = "p-locate";
5013 name = "p-locate";
3691 packageName = "p-locate";
5014 packageName = "p-locate";
3692 version = "3.0.0";
5015 version = "3.0.0";
3693 src = fetchurl {
5016 src = fetchurl {
3694 url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
5017 url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz";
3695 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
5018 sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==";
3696 };
5019 };
3697 };
5020 };
3698 "p-try-1.0.0" = {
5021 "p-try-1.0.0" = {
3699 name = "p-try";
5022 name = "p-try";
3700 packageName = "p-try";
5023 packageName = "p-try";
3701 version = "1.0.0";
5024 version = "1.0.0";
3702 src = fetchurl {
5025 src = fetchurl {
3703 url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
5026 url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
3704 sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
5027 sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
3705 };
5028 };
3706 };
5029 };
3707 "p-try-2.0.0" = {
5030 "p-try-2.0.0" = {
3708 name = "p-try";
5031 name = "p-try";
3709 packageName = "p-try";
5032 packageName = "p-try";
3710 version = "2.0.0";
5033 version = "2.0.0";
3711 src = fetchurl {
5034 src = fetchurl {
3712 url = "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz";
5035 url = "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz";
3713 sha512 = "hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==";
5036 sha512 = "hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==";
3714 };
5037 };
3715 };
5038 };
3716 "pako-1.0.6" = {
5039 "pako-1.0.6" = {
3717 name = "pako";
5040 name = "pako";
3718 packageName = "pako";
5041 packageName = "pako";
3719 version = "1.0.6";
5042 version = "1.0.6";
3720 src = fetchurl {
5043 src = fetchurl {
3721 url = "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz";
5044 url = "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz";
3722 sha512 = "lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==";
5045 sha512 = "lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==";
3723 };
5046 };
3724 };
5047 };
3725 "parallel-transform-1.1.0" = {
5048 "parallel-transform-1.1.0" = {
3726 name = "parallel-transform";
5049 name = "parallel-transform";
3727 packageName = "parallel-transform";
5050 packageName = "parallel-transform";
3728 version = "1.1.0";
5051 version = "1.1.0";
3729 src = fetchurl {
5052 src = fetchurl {
3730 url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz";
5053 url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz";
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";
3737 version = "5.1.1";
5069 version = "5.1.1";
3738 src = fetchurl {
5070 src = fetchurl {
3739 url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz";
5071 url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz";
3740 sha512 = "KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==";
5072 sha512 = "KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==";
3741 };
5073 };
3742 };
5074 };
3743 "parse-filepath-1.0.2" = {
5075 "parse-filepath-1.0.2" = {
3744 name = "parse-filepath";
5076 name = "parse-filepath";
3745 packageName = "parse-filepath";
5077 packageName = "parse-filepath";
3746 version = "1.0.2";
5078 version = "1.0.2";
3747 src = fetchurl {
5079 src = fetchurl {
3748 url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
5080 url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
3749 sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
5081 sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
3750 };
5082 };
3751 };
5083 };
3752 "parse-passwd-1.0.0" = {
5084 "parse-passwd-1.0.0" = {
3753 name = "parse-passwd";
5085 name = "parse-passwd";
3754 packageName = "parse-passwd";
5086 packageName = "parse-passwd";
3755 version = "1.0.0";
5087 version = "1.0.0";
3756 src = fetchurl {
5088 src = fetchurl {
3757 url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
5089 url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
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" = {
3771 name = "pascalcase";
5121 name = "pascalcase";
3772 packageName = "pascalcase";
5122 packageName = "pascalcase";
3773 version = "0.1.1";
5123 version = "0.1.1";
3774 src = fetchurl {
5124 src = fetchurl {
3775 url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
5125 url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
3776 sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
5126 sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
3777 };
5127 };
3778 };
5128 };
3779 "path-browserify-0.0.0" = {
5129 "path-browserify-0.0.0" = {
3780 name = "path-browserify";
5130 name = "path-browserify";
3781 packageName = "path-browserify";
5131 packageName = "path-browserify";
3782 version = "0.0.0";
5132 version = "0.0.0";
3783 src = fetchurl {
5133 src = fetchurl {
3784 url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz";
5134 url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz";
3785 sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a";
5135 sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a";
3786 };
5136 };
3787 };
5137 };
3788 "path-dirname-1.0.2" = {
5138 "path-dirname-1.0.2" = {
3789 name = "path-dirname";
5139 name = "path-dirname";
3790 packageName = "path-dirname";
5140 packageName = "path-dirname";
3791 version = "1.0.2";
5141 version = "1.0.2";
3792 src = fetchurl {
5142 src = fetchurl {
3793 url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
5143 url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
3794 sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
5144 sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
3795 };
5145 };
3796 };
5146 };
3797 "path-exists-3.0.0" = {
5147 "path-exists-3.0.0" = {
3798 name = "path-exists";
5148 name = "path-exists";
3799 packageName = "path-exists";
5149 packageName = "path-exists";
3800 version = "3.0.0";
5150 version = "3.0.0";
3801 src = fetchurl {
5151 src = fetchurl {
3802 url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
5152 url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
3803 sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
5153 sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
3804 };
5154 };
3805 };
5155 };
3806 "path-is-absolute-1.0.1" = {
5156 "path-is-absolute-1.0.1" = {
3807 name = "path-is-absolute";
5157 name = "path-is-absolute";
3808 packageName = "path-is-absolute";
5158 packageName = "path-is-absolute";
3809 version = "1.0.1";
5159 version = "1.0.1";
3810 src = fetchurl {
5160 src = fetchurl {
3811 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
5161 url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
3812 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
5162 sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
3813 };
5163 };
3814 };
5164 };
3815 "path-key-2.0.1" = {
5165 "path-key-2.0.1" = {
3816 name = "path-key";
5166 name = "path-key";
3817 packageName = "path-key";
5167 packageName = "path-key";
3818 version = "2.0.1";
5168 version = "2.0.1";
3819 src = fetchurl {
5169 src = fetchurl {
3820 url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
5170 url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
3821 sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
5171 sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
3822 };
5172 };
3823 };
5173 };
3824 "path-parse-1.0.6" = {
5174 "path-parse-1.0.6" = {
3825 name = "path-parse";
5175 name = "path-parse";
3826 packageName = "path-parse";
5176 packageName = "path-parse";
3827 version = "1.0.6";
5177 version = "1.0.6";
3828 src = fetchurl {
5178 src = fetchurl {
3829 url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
5179 url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
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";
3845 version = "0.1.1";
5186 version = "0.1.1";
3846 src = fetchurl {
5187 src = fetchurl {
3847 url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
5188 url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
3848 sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
5189 sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
3849 };
5190 };
3850 };
5191 };
3851 "path-root-regex-0.1.2" = {
5192 "path-root-regex-0.1.2" = {
3852 name = "path-root-regex";
5193 name = "path-root-regex";
3853 packageName = "path-root-regex";
5194 packageName = "path-root-regex";
3854 version = "0.1.2";
5195 version = "0.1.2";
3855 src = fetchurl {
5196 src = fetchurl {
3856 url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
5197 url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
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";
3863 version = "3.0.17";
5213 version = "3.0.17";
3864 src = fetchurl {
5214 src = fetchurl {
3865 url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz";
5215 url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz";
3866 sha512 = "U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==";
5216 sha512 = "U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==";
3867 };
5217 };
3868 };
5218 };
3869 "pend-1.2.0" = {
5219 "pend-1.2.0" = {
3870 name = "pend";
5220 name = "pend";
3871 packageName = "pend";
5221 packageName = "pend";
3872 version = "1.2.0";
5222 version = "1.2.0";
3873 src = fetchurl {
5223 src = fetchurl {
3874 url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz";
5224 url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz";
3875 sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
5225 sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
3876 };
5226 };
3877 };
5227 };
3878 "performance-now-0.2.0" = {
5228 "performance-now-0.2.0" = {
3879 name = "performance-now";
5229 name = "performance-now";
3880 packageName = "performance-now";
5230 packageName = "performance-now";
3881 version = "0.2.0";
5231 version = "0.2.0";
3882 src = fetchurl {
5232 src = fetchurl {
3883 url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
5233 url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
3884 sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
5234 sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
3885 };
5235 };
3886 };
5236 };
3887 "phantom-4.0.12" = {
5237 "phantom-4.0.12" = {
3888 name = "phantom";
5238 name = "phantom";
3889 packageName = "phantom";
5239 packageName = "phantom";
3890 version = "4.0.12";
5240 version = "4.0.12";
3891 src = fetchurl {
5241 src = fetchurl {
3892 url = "https://registry.npmjs.org/phantom/-/phantom-4.0.12.tgz";
5242 url = "https://registry.npmjs.org/phantom/-/phantom-4.0.12.tgz";
3893 sha512 = "Tz82XhtPmwCk1FFPmecy7yRGZG2btpzY2KI9fcoPT7zT9det0CcMyfBFPp1S8DqzsnQnm8ZYEfdy528mwVtksA==";
5243 sha512 = "Tz82XhtPmwCk1FFPmecy7yRGZG2btpzY2KI9fcoPT7zT9det0CcMyfBFPp1S8DqzsnQnm8ZYEfdy528mwVtksA==";
3894 };
5244 };
3895 };
5245 };
3896 "phantomjs-prebuilt-2.1.16" = {
5246 "phantomjs-prebuilt-2.1.16" = {
3897 name = "phantomjs-prebuilt";
5247 name = "phantomjs-prebuilt";
3898 packageName = "phantomjs-prebuilt";
5248 packageName = "phantomjs-prebuilt";
3899 version = "2.1.16";
5249 version = "2.1.16";
3900 src = fetchurl {
5250 src = fetchurl {
3901 url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz";
5251 url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz";
3902 sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef";
5252 sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef";
3903 };
5253 };
3904 };
5254 };
3905 "pify-3.0.0" = {
5255 "pify-3.0.0" = {
3906 name = "pify";
5256 name = "pify";
3907 packageName = "pify";
5257 packageName = "pify";
3908 version = "3.0.0";
5258 version = "3.0.0";
3909 src = fetchurl {
5259 src = fetchurl {
3910 url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
5260 url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
3911 sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
5261 sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
3912 };
5262 };
3913 };
5263 };
3914 "pinkie-2.0.4" = {
5264 "pinkie-2.0.4" = {
3915 name = "pinkie";
5265 name = "pinkie";
3916 packageName = "pinkie";
5266 packageName = "pinkie";
3917 version = "2.0.4";
5267 version = "2.0.4";
3918 src = fetchurl {
5268 src = fetchurl {
3919 url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
5269 url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
3920 sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
5270 sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
3921 };
5271 };
3922 };
5272 };
3923 "pinkie-promise-2.0.1" = {
5273 "pinkie-promise-2.0.1" = {
3924 name = "pinkie-promise";
5274 name = "pinkie-promise";
3925 packageName = "pinkie-promise";
5275 packageName = "pinkie-promise";
3926 version = "2.0.1";
5276 version = "2.0.1";
3927 src = fetchurl {
5277 src = fetchurl {
3928 url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
5278 url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
3929 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
5279 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
3930 };
5280 };
3931 };
5281 };
3932 "pkg-dir-2.0.0" = {
5282 "pkg-dir-2.0.0" = {
3933 name = "pkg-dir";
5283 name = "pkg-dir";
3934 packageName = "pkg-dir";
5284 packageName = "pkg-dir";
3935 version = "2.0.0";
5285 version = "2.0.0";
3936 src = fetchurl {
5286 src = fetchurl {
3937 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz";
5287 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz";
3938 sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
5288 sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b";
3939 };
5289 };
3940 };
5290 };
3941 "pkg-dir-3.0.0" = {
5291 "pkg-dir-3.0.0" = {
3942 name = "pkg-dir";
5292 name = "pkg-dir";
3943 packageName = "pkg-dir";
5293 packageName = "pkg-dir";
3944 version = "3.0.0";
5294 version = "3.0.0";
3945 src = fetchurl {
5295 src = fetchurl {
3946 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz";
5296 url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz";
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";
3953 version = "0.1.1";
5312 version = "0.1.1";
3954 src = fetchurl {
5313 src = fetchurl {
3955 url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
5314 url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
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" = {
3969 name = "process";
5652 name = "process";
3970 packageName = "process";
5653 packageName = "process";
3971 version = "0.11.10";
5654 version = "0.11.10";
3972 src = fetchurl {
5655 src = fetchurl {
3973 url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz";
5656 url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz";
3974 sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
5657 sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
3975 };
5658 };
3976 };
5659 };
3977 "process-nextick-args-2.0.0" = {
5660 "process-nextick-args-2.0.0" = {
3978 name = "process-nextick-args";
5661 name = "process-nextick-args";
3979 packageName = "process-nextick-args";
5662 packageName = "process-nextick-args";
3980 version = "2.0.0";
5663 version = "2.0.0";
3981 src = fetchurl {
5664 src = fetchurl {
3982 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz";
5665 url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz";
3983 sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==";
5666 sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==";
3984 };
5667 };
3985 };
5668 };
3986 "progress-1.1.8" = {
5669 "progress-1.1.8" = {
3987 name = "progress";
5670 name = "progress";
3988 packageName = "progress";
5671 packageName = "progress";
3989 version = "1.1.8";
5672 version = "1.1.8";
3990 src = fetchurl {
5673 src = fetchurl {
3991 url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz";
5674 url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz";
3992 sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be";
5675 sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be";
3993 };
5676 };
3994 };
5677 };
3995 "promise-7.3.1" = {
5678 "promise-7.3.1" = {
3996 name = "promise";
5679 name = "promise";
3997 packageName = "promise";
5680 packageName = "promise";
3998 version = "7.3.1";
5681 version = "7.3.1";
3999 src = fetchurl {
5682 src = fetchurl {
4000 url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
5683 url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
4001 sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
5684 sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==";
4002 };
5685 };
4003 };
5686 };
4004 "promise-inflight-1.0.1" = {
5687 "promise-inflight-1.0.1" = {
4005 name = "promise-inflight";
5688 name = "promise-inflight";
4006 packageName = "promise-inflight";
5689 packageName = "promise-inflight";
4007 version = "1.0.1";
5690 version = "1.0.1";
4008 src = fetchurl {
5691 src = fetchurl {
4009 url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz";
5692 url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz";
4010 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
5693 sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
4011 };
5694 };
4012 };
5695 };
4013 "prr-1.0.1" = {
5696 "prr-1.0.1" = {
4014 name = "prr";
5697 name = "prr";
4015 packageName = "prr";
5698 packageName = "prr";
4016 version = "1.0.1";
5699 version = "1.0.1";
4017 src = fetchurl {
5700 src = fetchurl {
4018 url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
5701 url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
4019 sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
5702 sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
4020 };
5703 };
4021 };
5704 };
4022 "pseudomap-1.0.2" = {
5705 "pseudomap-1.0.2" = {
4023 name = "pseudomap";
5706 name = "pseudomap";
4024 packageName = "pseudomap";
5707 packageName = "pseudomap";
4025 version = "1.0.2";
5708 version = "1.0.2";
4026 src = fetchurl {
5709 src = fetchurl {
4027 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
5710 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
4028 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
5711 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
4029 };
5712 };
4030 };
5713 };
4031 "public-encrypt-4.0.3" = {
5714 "public-encrypt-4.0.3" = {
4032 name = "public-encrypt";
5715 name = "public-encrypt";
4033 packageName = "public-encrypt";
5716 packageName = "public-encrypt";
4034 version = "4.0.3";
5717 version = "4.0.3";
4035 src = fetchurl {
5718 src = fetchurl {
4036 url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz";
5719 url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz";
4037 sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==";
5720 sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==";
4038 };
5721 };
4039 };
5722 };
4040 "pump-2.0.1" = {
5723 "pump-2.0.1" = {
4041 name = "pump";
5724 name = "pump";
4042 packageName = "pump";
5725 packageName = "pump";
4043 version = "2.0.1";
5726 version = "2.0.1";
4044 src = fetchurl {
5727 src = fetchurl {
4045 url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz";
5728 url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz";
4046 sha512 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==";
5729 sha512 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==";
4047 };
5730 };
4048 };
5731 };
4049 "pumpify-1.5.1" = {
5732 "pumpify-1.5.1" = {
4050 name = "pumpify";
5733 name = "pumpify";
4051 packageName = "pumpify";
5734 packageName = "pumpify";
4052 version = "1.5.1";
5735 version = "1.5.1";
4053 src = fetchurl {
5736 src = fetchurl {
4054 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz";
5737 url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz";
4055 sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==";
5738 sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==";
4056 };
5739 };
4057 };
5740 };
4058 "punycode-1.3.2" = {
5741 "punycode-1.3.2" = {
4059 name = "punycode";
5742 name = "punycode";
4060 packageName = "punycode";
5743 packageName = "punycode";
4061 version = "1.3.2";
5744 version = "1.3.2";
4062 src = fetchurl {
5745 src = fetchurl {
4063 url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz";
5746 url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz";
4064 sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
5747 sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
4065 };
5748 };
4066 };
5749 };
4067 "punycode-1.4.1" = {
5750 "punycode-1.4.1" = {
4068 name = "punycode";
5751 name = "punycode";
4069 packageName = "punycode";
5752 packageName = "punycode";
4070 version = "1.4.1";
5753 version = "1.4.1";
4071 src = fetchurl {
5754 src = fetchurl {
4072 url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
5755 url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
4073 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
5756 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
4074 };
5757 };
4075 };
5758 };
4076 "punycode-2.1.1" = {
5759 "punycode-2.1.1" = {
4077 name = "punycode";
5760 name = "punycode";
4078 packageName = "punycode";
5761 packageName = "punycode";
4079 version = "2.1.1";
5762 version = "2.1.1";
4080 src = fetchurl {
5763 src = fetchurl {
4081 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
5764 url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
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";
4088 version = "4.0.2";
5780 version = "4.0.2";
4089 src = fetchurl {
5781 src = fetchurl {
4090 url = "https://registry.npmjs.org/qrious/-/qrious-4.0.2.tgz";
5782 url = "https://registry.npmjs.org/qrious/-/qrious-4.0.2.tgz";
4091 sha512 = "xWPJIrK1zu5Ypn898fBp8RHkT/9ibquV2Kv24S/JY9VYEhMBMKur1gHVsOiNUh7PHP9uCgejjpZUHUIXXKoU/g==";
5783 sha512 = "xWPJIrK1zu5Ypn898fBp8RHkT/9ibquV2Kv24S/JY9VYEhMBMKur1gHVsOiNUh7PHP9uCgejjpZUHUIXXKoU/g==";
4092 };
5784 };
4093 };
5785 };
4094 "qs-0.5.6" = {
5786 "qs-0.5.6" = {
4095 name = "qs";
5787 name = "qs";
4096 packageName = "qs";
5788 packageName = "qs";
4097 version = "0.5.6";
5789 version = "0.5.6";
4098 src = fetchurl {
5790 src = fetchurl {
4099 url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz";
5791 url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz";
4100 sha1 = "31b1ad058567651c526921506b9a8793911a0384";
5792 sha1 = "31b1ad058567651c526921506b9a8793911a0384";
4101 };
5793 };
4102 };
5794 };
4103 "qs-6.4.0" = {
5795 "qs-6.4.0" = {
4104 name = "qs";
5796 name = "qs";
4105 packageName = "qs";
5797 packageName = "qs";
4106 version = "6.4.0";
5798 version = "6.4.0";
4107 src = fetchurl {
5799 src = fetchurl {
4108 url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
5800 url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
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";
4115 version = "0.2.0";
5816 version = "0.2.0";
4116 src = fetchurl {
5817 src = fetchurl {
4117 url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz";
5818 url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz";
4118 sha1 = "b209849203bb25df820da756e747005878521620";
5819 sha1 = "b209849203bb25df820da756e747005878521620";
4119 };
5820 };
4120 };
5821 };
4121 "querystring-es3-0.2.1" = {
5822 "querystring-es3-0.2.1" = {
4122 name = "querystring-es3";
5823 name = "querystring-es3";
4123 packageName = "querystring-es3";
5824 packageName = "querystring-es3";
4124 version = "0.2.1";
5825 version = "0.2.1";
4125 src = fetchurl {
5826 src = fetchurl {
4126 url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz";
5827 url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz";
4127 sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
5828 sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
4128 };
5829 };
4129 };
5830 };
4130 "randombytes-2.0.6" = {
5831 "randombytes-2.0.6" = {
4131 name = "randombytes";
5832 name = "randombytes";
4132 packageName = "randombytes";
5833 packageName = "randombytes";
4133 version = "2.0.6";
5834 version = "2.0.6";
4134 src = fetchurl {
5835 src = fetchurl {
4135 url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz";
5836 url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz";
4136 sha512 = "CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==";
5837 sha512 = "CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==";
4137 };
5838 };
4138 };
5839 };
4139 "randomfill-1.0.4" = {
5840 "randomfill-1.0.4" = {
4140 name = "randomfill";
5841 name = "randomfill";
4141 packageName = "randomfill";
5842 packageName = "randomfill";
4142 version = "1.0.4";
5843 version = "1.0.4";
4143 src = fetchurl {
5844 src = fetchurl {
4144 url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz";
5845 url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz";
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";
4151 version = "1.1.14";
5870 version = "1.1.14";
4152 src = fetchurl {
5871 src = fetchurl {
4153 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
5872 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
4154 sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
5873 sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
4155 };
5874 };
4156 };
5875 };
4157 "readable-stream-2.3.6" = {
5876 "readable-stream-2.3.6" = {
4158 name = "readable-stream";
5877 name = "readable-stream";
4159 packageName = "readable-stream";
5878 packageName = "readable-stream";
4160 version = "2.3.6";
5879 version = "2.3.6";
4161 src = fetchurl {
5880 src = fetchurl {
4162 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
5881 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz";
4163 sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
5882 sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==";
4164 };
5883 };
4165 };
5884 };
4166 "readdirp-2.2.1" = {
5885 "readdirp-2.2.1" = {
4167 name = "readdirp";
5886 name = "readdirp";
4168 packageName = "readdirp";
5887 packageName = "readdirp";
4169 version = "2.2.1";
5888 version = "2.2.1";
4170 src = fetchurl {
5889 src = fetchurl {
4171 url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz";
5890 url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz";
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";
4178 version = "0.6.2";
5906 version = "0.6.2";
4179 src = fetchurl {
5907 src = fetchurl {
4180 url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
5908 url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
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" = {
4194 name = "regenerator-runtime";
5940 name = "regenerator-runtime";
4195 packageName = "regenerator-runtime";
5941 packageName = "regenerator-runtime";
4196 version = "0.11.1";
5942 version = "0.11.1";
4197 src = fetchurl {
5943 src = fetchurl {
4198 url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
5944 url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
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";
4205 version = "1.0.2";
5960 version = "1.0.2";
4206 src = fetchurl {
5961 src = fetchurl {
4207 url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
5962 url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz";
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";
4214 version = "1.1.0";
6014 version = "1.1.0";
4215 src = fetchurl {
6015 src = fetchurl {
4216 url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
6016 url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
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";
4223 version = "1.1.3";
6032 version = "1.1.3";
4224 src = fetchurl {
6033 src = fetchurl {
4225 url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
6034 url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
4226 sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
6035 sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
4227 };
6036 };
4228 };
6037 };
4229 "repeat-string-1.6.1" = {
6038 "repeat-string-1.6.1" = {
4230 name = "repeat-string";
6039 name = "repeat-string";
4231 packageName = "repeat-string";
6040 packageName = "repeat-string";
4232 version = "1.6.1";
6041 version = "1.6.1";
4233 src = fetchurl {
6042 src = fetchurl {
4234 url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
6043 url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
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";
4241 version = "2.81.0";
6059 version = "2.81.0";
4242 src = fetchurl {
6060 src = fetchurl {
4243 url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
6061 url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
4244 sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
6062 sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
4245 };
6063 };
4246 };
6064 };
4247 "request-progress-2.0.1" = {
6065 "request-progress-2.0.1" = {
4248 name = "request-progress";
6066 name = "request-progress";
4249 packageName = "request-progress";
6067 packageName = "request-progress";
4250 version = "2.0.1";
6068 version = "2.0.1";
4251 src = fetchurl {
6069 src = fetchurl {
4252 url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz";
6070 url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz";
4253 sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08";
6071 sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08";
4254 };
6072 };
4255 };
6073 };
4256 "require-directory-2.1.1" = {
6074 "require-directory-2.1.1" = {
4257 name = "require-directory";
6075 name = "require-directory";
4258 packageName = "require-directory";
6076 packageName = "require-directory";
4259 version = "2.1.1";
6077 version = "2.1.1";
4260 src = fetchurl {
6078 src = fetchurl {
4261 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
6079 url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
4262 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
6080 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
4263 };
6081 };
4264 };
6082 };
4265 "require-main-filename-1.0.1" = {
6083 "require-main-filename-1.0.1" = {
4266 name = "require-main-filename";
6084 name = "require-main-filename";
4267 packageName = "require-main-filename";
6085 packageName = "require-main-filename";
4268 version = "1.0.1";
6086 version = "1.0.1";
4269 src = fetchurl {
6087 src = fetchurl {
4270 url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
6088 url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
4271 sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
6089 sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
4272 };
6090 };
4273 };
6091 };
4274 "resolve-1.8.1" = {
6092 "resolve-1.8.1" = {
4275 name = "resolve";
6093 name = "resolve";
4276 packageName = "resolve";
6094 packageName = "resolve";
4277 version = "1.8.1";
6095 version = "1.8.1";
4278 src = fetchurl {
6096 src = fetchurl {
4279 url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz";
6097 url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz";
4280 sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==";
6098 sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==";
4281 };
6099 };
4282 };
6100 };
4283 "resolve-cwd-2.0.0" = {
6101 "resolve-cwd-2.0.0" = {
4284 name = "resolve-cwd";
6102 name = "resolve-cwd";
4285 packageName = "resolve-cwd";
6103 packageName = "resolve-cwd";
4286 version = "2.0.0";
6104 version = "2.0.0";
4287 src = fetchurl {
6105 src = fetchurl {
4288 url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
6106 url = "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz";
4289 sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
6107 sha1 = "00a9f7387556e27038eae232caa372a6a59b665a";
4290 };
6108 };
4291 };
6109 };
4292 "resolve-dir-1.0.1" = {
6110 "resolve-dir-1.0.1" = {
4293 name = "resolve-dir";
6111 name = "resolve-dir";
4294 packageName = "resolve-dir";
6112 packageName = "resolve-dir";
4295 version = "1.0.1";
6113 version = "1.0.1";
4296 src = fetchurl {
6114 src = fetchurl {
4297 url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
6115 url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
4298 sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
6116 sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
4299 };
6117 };
4300 };
6118 };
4301 "resolve-from-3.0.0" = {
6119 "resolve-from-3.0.0" = {
4302 name = "resolve-from";
6120 name = "resolve-from";
4303 packageName = "resolve-from";
6121 packageName = "resolve-from";
4304 version = "3.0.0";
6122 version = "3.0.0";
4305 src = fetchurl {
6123 src = fetchurl {
4306 url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
6124 url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
4307 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
6125 sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
4308 };
6126 };
4309 };
6127 };
4310 "resolve-url-0.2.1" = {
6128 "resolve-url-0.2.1" = {
4311 name = "resolve-url";
6129 name = "resolve-url";
4312 packageName = "resolve-url";
6130 packageName = "resolve-url";
4313 version = "0.2.1";
6131 version = "0.2.1";
4314 src = fetchurl {
6132 src = fetchurl {
4315 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
6133 url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
4316 sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
6134 sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
4317 };
6135 };
4318 };
6136 };
4319 "ret-0.1.15" = {
6137 "ret-0.1.15" = {
4320 name = "ret";
6138 name = "ret";
4321 packageName = "ret";
6139 packageName = "ret";
4322 version = "0.1.15";
6140 version = "0.1.15";
4323 src = fetchurl {
6141 src = fetchurl {
4324 url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
6142 url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz";
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";
4331 version = "2.2.8";
6158 version = "2.2.8";
4332 src = fetchurl {
6159 src = fetchurl {
4333 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
6160 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
4334 sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
6161 sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
4335 };
6162 };
4336 };
6163 };
4337 "rimraf-2.6.2" = {
6164 "rimraf-2.6.2" = {
4338 name = "rimraf";
6165 name = "rimraf";
4339 packageName = "rimraf";
6166 packageName = "rimraf";
4340 version = "2.6.2";
6167 version = "2.6.2";
4341 src = fetchurl {
6168 src = fetchurl {
4342 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
6169 url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
4343 sha512 = "lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==";
6170 sha512 = "lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==";
4344 };
6171 };
4345 };
6172 };
4346 "ripemd160-2.0.2" = {
6173 "ripemd160-2.0.2" = {
4347 name = "ripemd160";
6174 name = "ripemd160";
4348 packageName = "ripemd160";
6175 packageName = "ripemd160";
4349 version = "2.0.2";
6176 version = "2.0.2";
4350 src = fetchurl {
6177 src = fetchurl {
4351 url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz";
6178 url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz";
4352 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
6179 sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==";
4353 };
6180 };
4354 };
6181 };
4355 "run-queue-1.0.3" = {
6182 "run-queue-1.0.3" = {
4356 name = "run-queue";
6183 name = "run-queue";
4357 packageName = "run-queue";
6184 packageName = "run-queue";
4358 version = "1.0.3";
6185 version = "1.0.3";
4359 src = fetchurl {
6186 src = fetchurl {
4360 url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz";
6187 url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz";
4361 sha1 = "e848396f057d223f24386924618e25694161ec47";
6188 sha1 = "e848396f057d223f24386924618e25694161ec47";
4362 };
6189 };
4363 };
6190 };
4364 "safe-buffer-5.1.2" = {
6191 "safe-buffer-5.1.2" = {
4365 name = "safe-buffer";
6192 name = "safe-buffer";
4366 packageName = "safe-buffer";
6193 packageName = "safe-buffer";
4367 version = "5.1.2";
6194 version = "5.1.2";
4368 src = fetchurl {
6195 src = fetchurl {
4369 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
6196 url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz";
4370 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
6197 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==";
4371 };
6198 };
4372 };
6199 };
4373 "safe-regex-1.1.0" = {
6200 "safe-regex-1.1.0" = {
4374 name = "safe-regex";
6201 name = "safe-regex";
4375 packageName = "safe-regex";
6202 packageName = "safe-regex";
4376 version = "1.1.0";
6203 version = "1.1.0";
4377 src = fetchurl {
6204 src = fetchurl {
4378 url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
6205 url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz";
4379 sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
6206 sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e";
4380 };
6207 };
4381 };
6208 };
4382 "safer-buffer-2.1.2" = {
6209 "safer-buffer-2.1.2" = {
4383 name = "safer-buffer";
6210 name = "safer-buffer";
4384 packageName = "safer-buffer";
6211 packageName = "safer-buffer";
4385 version = "2.1.2";
6212 version = "2.1.2";
4386 src = fetchurl {
6213 src = fetchurl {
4387 url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
6214 url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz";
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";
4394 version = "0.4.7";
6230 version = "0.4.7";
4395 src = fetchurl {
6231 src = fetchurl {
4396 url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz";
6232 url = "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz";
4397 sha512 = "v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==";
6233 sha512 = "v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==";
4398 };
6234 };
4399 };
6235 };
4400 "select-1.1.2" = {
6236 "select-1.1.2" = {
4401 name = "select";
6237 name = "select";
4402 packageName = "select";
6238 packageName = "select";
4403 version = "1.1.2";
6239 version = "1.1.2";
4404 src = fetchurl {
6240 src = fetchurl {
4405 url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz";
6241 url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz";
4406 sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
6242 sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d";
4407 };
6243 };
4408 };
6244 };
4409 "semver-5.6.0" = {
6245 "semver-5.6.0" = {
4410 name = "semver";
6246 name = "semver";
4411 packageName = "semver";
6247 packageName = "semver";
4412 version = "5.6.0";
6248 version = "5.6.0";
4413 src = fetchurl {
6249 src = fetchurl {
4414 url = "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz";
6250 url = "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz";
4415 sha512 = "RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==";
6251 sha512 = "RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==";
4416 };
6252 };
4417 };
6253 };
4418 "serialize-javascript-1.5.0" = {
6254 "serialize-javascript-1.5.0" = {
4419 name = "serialize-javascript";
6255 name = "serialize-javascript";
4420 packageName = "serialize-javascript";
6256 packageName = "serialize-javascript";
4421 version = "1.5.0";
6257 version = "1.5.0";
4422 src = fetchurl {
6258 src = fetchurl {
4423 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz";
6259 url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz";
4424 sha512 = "Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==";
6260 sha512 = "Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==";
4425 };
6261 };
4426 };
6262 };
4427 "set-blocking-2.0.0" = {
6263 "set-blocking-2.0.0" = {
4428 name = "set-blocking";
6264 name = "set-blocking";
4429 packageName = "set-blocking";
6265 packageName = "set-blocking";
4430 version = "2.0.0";
6266 version = "2.0.0";
4431 src = fetchurl {
6267 src = fetchurl {
4432 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
6268 url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
4433 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
6269 sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
4434 };
6270 };
4435 };
6271 };
4436 "set-value-0.4.3" = {
6272 "set-value-0.4.3" = {
4437 name = "set-value";
6273 name = "set-value";
4438 packageName = "set-value";
6274 packageName = "set-value";
4439 version = "0.4.3";
6275 version = "0.4.3";
4440 src = fetchurl {
6276 src = fetchurl {
4441 url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
6277 url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
4442 sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
6278 sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
4443 };
6279 };
4444 };
6280 };
4445 "set-value-2.0.0" = {
6281 "set-value-2.0.0" = {
4446 name = "set-value";
6282 name = "set-value";
4447 packageName = "set-value";
6283 packageName = "set-value";
4448 version = "2.0.0";
6284 version = "2.0.0";
4449 src = fetchurl {
6285 src = fetchurl {
4450 url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
6286 url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
4451 sha512 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==";
6287 sha512 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==";
4452 };
6288 };
4453 };
6289 };
4454 "setimmediate-1.0.5" = {
6290 "setimmediate-1.0.5" = {
4455 name = "setimmediate";
6291 name = "setimmediate";
4456 packageName = "setimmediate";
6292 packageName = "setimmediate";
4457 version = "1.0.5";
6293 version = "1.0.5";
4458 src = fetchurl {
6294 src = fetchurl {
4459 url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
6295 url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
4460 sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
6296 sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
4461 };
6297 };
4462 };
6298 };
4463 "sha.js-2.4.11" = {
6299 "sha.js-2.4.11" = {
4464 name = "sha.js";
6300 name = "sha.js";
4465 packageName = "sha.js";
6301 packageName = "sha.js";
4466 version = "2.4.11";
6302 version = "2.4.11";
4467 src = fetchurl {
6303 src = fetchurl {
4468 url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
6304 url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz";
4469 sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==";
6305 sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==";
4470 };
6306 };
4471 };
6307 };
4472 "shebang-command-1.2.0" = {
6308 "shebang-command-1.2.0" = {
4473 name = "shebang-command";
6309 name = "shebang-command";
4474 packageName = "shebang-command";
6310 packageName = "shebang-command";
4475 version = "1.2.0";
6311 version = "1.2.0";
4476 src = fetchurl {
6312 src = fetchurl {
4477 url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
6313 url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
4478 sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
6314 sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
4479 };
6315 };
4480 };
6316 };
4481 "shebang-regex-1.0.0" = {
6317 "shebang-regex-1.0.0" = {
4482 name = "shebang-regex";
6318 name = "shebang-regex";
4483 packageName = "shebang-regex";
6319 packageName = "shebang-regex";
4484 version = "1.0.0";
6320 version = "1.0.0";
4485 src = fetchurl {
6321 src = fetchurl {
4486 url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
6322 url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
4487 sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
6323 sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
4488 };
6324 };
4489 };
6325 };
4490 "shelljs-0.3.0" = {
6326 "shelljs-0.3.0" = {
4491 name = "shelljs";
6327 name = "shelljs";
4492 packageName = "shelljs";
6328 packageName = "shelljs";
4493 version = "0.3.0";
6329 version = "0.3.0";
4494 src = fetchurl {
6330 src = fetchurl {
4495 url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz";
6331 url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz";
4496 sha1 = "3596e6307a781544f591f37da618360f31db57b1";
6332 sha1 = "3596e6307a781544f591f37da618360f31db57b1";
4497 };
6333 };
4498 };
6334 };
4499 "sigmund-1.0.1" = {
6335 "sigmund-1.0.1" = {
4500 name = "sigmund";
6336 name = "sigmund";
4501 packageName = "sigmund";
6337 packageName = "sigmund";
4502 version = "1.0.1";
6338 version = "1.0.1";
4503 src = fetchurl {
6339 src = fetchurl {
4504 url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
6340 url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
4505 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
6341 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
4506 };
6342 };
4507 };
6343 };
4508 "signal-exit-3.0.2" = {
6344 "signal-exit-3.0.2" = {
4509 name = "signal-exit";
6345 name = "signal-exit";
4510 packageName = "signal-exit";
6346 packageName = "signal-exit";
4511 version = "3.0.2";
6347 version = "3.0.2";
4512 src = fetchurl {
6348 src = fetchurl {
4513 url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
6349 url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
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";
4520 version = "0.8.2";
6365 version = "0.8.2";
4521 src = fetchurl {
6366 src = fetchurl {
4522 url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
6367 url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz";
4523 sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
6368 sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==";
4524 };
6369 };
4525 };
6370 };
4526 "snapdragon-node-2.1.1" = {
6371 "snapdragon-node-2.1.1" = {
4527 name = "snapdragon-node";
6372 name = "snapdragon-node";
4528 packageName = "snapdragon-node";
6373 packageName = "snapdragon-node";
4529 version = "2.1.1";
6374 version = "2.1.1";
4530 src = fetchurl {
6375 src = fetchurl {
4531 url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
6376 url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
4532 sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
6377 sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==";
4533 };
6378 };
4534 };
6379 };
4535 "snapdragon-util-3.0.1" = {
6380 "snapdragon-util-3.0.1" = {
4536 name = "snapdragon-util";
6381 name = "snapdragon-util";
4537 packageName = "snapdragon-util";
6382 packageName = "snapdragon-util";
4538 version = "3.0.1";
6383 version = "3.0.1";
4539 src = fetchurl {
6384 src = fetchurl {
4540 url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
6385 url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
4541 sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
6386 sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==";
4542 };
6387 };
4543 };
6388 };
4544 "sntp-1.0.9" = {
6389 "sntp-1.0.9" = {
4545 name = "sntp";
6390 name = "sntp";
4546 packageName = "sntp";
6391 packageName = "sntp";
4547 version = "1.0.9";
6392 version = "1.0.9";
4548 src = fetchurl {
6393 src = fetchurl {
4549 url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
6394 url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
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";
4556 version = "2.0.1";
6419 version = "2.0.1";
4557 src = fetchurl {
6420 src = fetchurl {
4558 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz";
6421 url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz";
4559 sha512 = "qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==";
6422 sha512 = "qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==";
4560 };
6423 };
4561 };
6424 };
4562 "source-map-0.3.0" = {
6425 "source-map-0.3.0" = {
4563 name = "source-map";
6426 name = "source-map";
4564 packageName = "source-map";
6427 packageName = "source-map";
4565 version = "0.3.0";
6428 version = "0.3.0";
4566 src = fetchurl {
6429 src = fetchurl {
4567 url = "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz";
6430 url = "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz";
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";
4574 version = "0.5.7";
6446 version = "0.5.7";
4575 src = fetchurl {
6447 src = fetchurl {
4576 url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
6448 url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
4577 sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
6449 sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
4578 };
6450 };
4579 };
6451 };
4580 "source-map-0.6.1" = {
6452 "source-map-0.6.1" = {
4581 name = "source-map";
6453 name = "source-map";
4582 packageName = "source-map";
6454 packageName = "source-map";
4583 version = "0.6.1";
6455 version = "0.6.1";
4584 src = fetchurl {
6456 src = fetchurl {
4585 url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
6457 url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
4586 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
6458 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==";
4587 };
6459 };
4588 };
6460 };
4589 "source-map-resolve-0.5.2" = {
6461 "source-map-resolve-0.5.2" = {
4590 name = "source-map-resolve";
6462 name = "source-map-resolve";
4591 packageName = "source-map-resolve";
6463 packageName = "source-map-resolve";
4592 version = "0.5.2";
6464 version = "0.5.2";
4593 src = fetchurl {
6465 src = fetchurl {
4594 url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz";
6466 url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz";
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";
4601 version = "0.4.0";
6482 version = "0.4.0";
4602 src = fetchurl {
6483 src = fetchurl {
4603 url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
6484 url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
4604 sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
6485 sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
4605 };
6486 };
4606 };
6487 };
4607 "split-1.0.1" = {
6488 "split-1.0.1" = {
4608 name = "split";
6489 name = "split";
4609 packageName = "split";
6490 packageName = "split";
4610 version = "1.0.1";
6491 version = "1.0.1";
4611 src = fetchurl {
6492 src = fetchurl {
4612 url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz";
6493 url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz";
4613 sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==";
6494 sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==";
4614 };
6495 };
4615 };
6496 };
4616 "split-string-3.1.0" = {
6497 "split-string-3.1.0" = {
4617 name = "split-string";
6498 name = "split-string";
4618 packageName = "split-string";
6499 packageName = "split-string";
4619 version = "3.1.0";
6500 version = "3.1.0";
4620 src = fetchurl {
6501 src = fetchurl {
4621 url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
6502 url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
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";
4628 version = "1.15.1";
6518 version = "1.15.1";
4629 src = fetchurl {
6519 src = fetchurl {
4630 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.15.1.tgz";
6520 url = "https://registry.npmjs.org/sshpk/-/sshpk-1.15.1.tgz";
4631 sha512 = "mSdgNUaidk+dRU5MhYtN9zebdzF2iG0cNPWy8HG+W8y+fT1JnSkh0fzzpjOa0L7P8i1Rscz38t0h4gPcKz43xA==";
6521 sha512 = "mSdgNUaidk+dRU5MhYtN9zebdzF2iG0cNPWy8HG+W8y+fT1JnSkh0fzzpjOa0L7P8i1Rscz38t0h4gPcKz43xA==";
4632 };
6522 };
4633 };
6523 };
4634 "ssri-5.3.0" = {
6524 "ssri-5.3.0" = {
4635 name = "ssri";
6525 name = "ssri";
4636 packageName = "ssri";
6526 packageName = "ssri";
4637 version = "5.3.0";
6527 version = "5.3.0";
4638 src = fetchurl {
6528 src = fetchurl {
4639 url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
6529 url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz";
4640 sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
6530 sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==";
4641 };
6531 };
4642 };
6532 };
4643 "stack-trace-0.0.10" = {
6533 "stack-trace-0.0.10" = {
4644 name = "stack-trace";
6534 name = "stack-trace";
4645 packageName = "stack-trace";
6535 packageName = "stack-trace";
4646 version = "0.0.10";
6536 version = "0.0.10";
4647 src = fetchurl {
6537 src = fetchurl {
4648 url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
6538 url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
4649 sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
6539 sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
4650 };
6540 };
4651 };
6541 };
4652 "static-extend-0.1.2" = {
6542 "static-extend-0.1.2" = {
4653 name = "static-extend";
6543 name = "static-extend";
4654 packageName = "static-extend";
6544 packageName = "static-extend";
4655 version = "0.1.2";
6545 version = "0.1.2";
4656 src = fetchurl {
6546 src = fetchurl {
4657 url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
6547 url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
4658 sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
6548 sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
4659 };
6549 };
4660 };
6550 };
4661 "sticky-sidebar-3.3.1" = {
6551 "sticky-sidebar-3.3.1" = {
4662 name = "sticky-sidebar";
6552 name = "sticky-sidebar";
4663 packageName = "sticky-sidebar";
6553 packageName = "sticky-sidebar";
4664 version = "3.3.1";
6554 version = "3.3.1";
4665 src = fetchurl {
6555 src = fetchurl {
4666 url = "https://registry.npmjs.org/sticky-sidebar/-/sticky-sidebar-3.3.1.tgz";
6556 url = "https://registry.npmjs.org/sticky-sidebar/-/sticky-sidebar-3.3.1.tgz";
4667 sha1 = "142bf6b64c2b416e4b707ebf8f09b8b5a5043877";
6557 sha1 = "142bf6b64c2b416e4b707ebf8f09b8b5a5043877";
4668 };
6558 };
4669 };
6559 };
4670 "stream-browserify-2.0.1" = {
6560 "stream-browserify-2.0.1" = {
4671 name = "stream-browserify";
6561 name = "stream-browserify";
4672 packageName = "stream-browserify";
6562 packageName = "stream-browserify";
4673 version = "2.0.1";
6563 version = "2.0.1";
4674 src = fetchurl {
6564 src = fetchurl {
4675 url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz";
6565 url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz";
4676 sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db";
6566 sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db";
4677 };
6567 };
4678 };
6568 };
4679 "stream-each-1.2.3" = {
6569 "stream-each-1.2.3" = {
4680 name = "stream-each";
6570 name = "stream-each";
4681 packageName = "stream-each";
6571 packageName = "stream-each";
4682 version = "1.2.3";
6572 version = "1.2.3";
4683 src = fetchurl {
6573 src = fetchurl {
4684 url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
6574 url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz";
4685 sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
6575 sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==";
4686 };
6576 };
4687 };
6577 };
4688 "stream-http-2.8.3" = {
6578 "stream-http-2.8.3" = {
4689 name = "stream-http";
6579 name = "stream-http";
4690 packageName = "stream-http";
6580 packageName = "stream-http";
4691 version = "2.8.3";
6581 version = "2.8.3";
4692 src = fetchurl {
6582 src = fetchurl {
4693 url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
6583 url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
4694 sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==";
6584 sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==";
4695 };
6585 };
4696 };
6586 };
4697 "stream-shift-1.0.0" = {
6587 "stream-shift-1.0.0" = {
4698 name = "stream-shift";
6588 name = "stream-shift";
4699 packageName = "stream-shift";
6589 packageName = "stream-shift";
4700 version = "1.0.0";
6590 version = "1.0.0";
4701 src = fetchurl {
6591 src = fetchurl {
4702 url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz";
6592 url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz";
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";
4709 version = "1.0.2";
6608 version = "1.0.2";
4710 src = fetchurl {
6609 src = fetchurl {
4711 url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
6610 url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
4712 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
6611 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
4713 };
6612 };
4714 };
6613 };
4715 "string-width-2.1.1" = {
6614 "string-width-2.1.1" = {
4716 name = "string-width";
6615 name = "string-width";
4717 packageName = "string-width";
6616 packageName = "string-width";
4718 version = "2.1.1";
6617 version = "2.1.1";
4719 src = fetchurl {
6618 src = fetchurl {
4720 url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
6619 url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
4721 sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
6620 sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==";
4722 };
6621 };
4723 };
6622 };
4724 "string_decoder-0.10.31" = {
6623 "string_decoder-0.10.31" = {
4725 name = "string_decoder";
6624 name = "string_decoder";
4726 packageName = "string_decoder";
6625 packageName = "string_decoder";
4727 version = "0.10.31";
6626 version = "0.10.31";
4728 src = fetchurl {
6627 src = fetchurl {
4729 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
6628 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
4730 sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
6629 sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
4731 };
6630 };
4732 };
6631 };
4733 "string_decoder-1.1.1" = {
6632 "string_decoder-1.1.1" = {
4734 name = "string_decoder";
6633 name = "string_decoder";
4735 packageName = "string_decoder";
6634 packageName = "string_decoder";
4736 version = "1.1.1";
6635 version = "1.1.1";
4737 src = fetchurl {
6636 src = fetchurl {
4738 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
6637 url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz";
4739 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
6638 sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==";
4740 };
6639 };
4741 };
6640 };
4742 "stringstream-0.0.6" = {
6641 "stringstream-0.0.6" = {
4743 name = "stringstream";
6642 name = "stringstream";
4744 packageName = "stringstream";
6643 packageName = "stringstream";
4745 version = "0.0.6";
6644 version = "0.0.6";
4746 src = fetchurl {
6645 src = fetchurl {
4747 url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz";
6646 url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz";
4748 sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==";
6647 sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==";
4749 };
6648 };
4750 };
6649 };
4751 "strip-ansi-0.3.0" = {
6650 "strip-ansi-0.3.0" = {
4752 name = "strip-ansi";
6651 name = "strip-ansi";
4753 packageName = "strip-ansi";
6652 packageName = "strip-ansi";
4754 version = "0.3.0";
6653 version = "0.3.0";
4755 src = fetchurl {
6654 src = fetchurl {
4756 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz";
6655 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz";
4757 sha1 = "25f48ea22ca79187f3174a4db8759347bb126220";
6656 sha1 = "25f48ea22ca79187f3174a4db8759347bb126220";
4758 };
6657 };
4759 };
6658 };
4760 "strip-ansi-3.0.1" = {
6659 "strip-ansi-3.0.1" = {
4761 name = "strip-ansi";
6660 name = "strip-ansi";
4762 packageName = "strip-ansi";
6661 packageName = "strip-ansi";
4763 version = "3.0.1";
6662 version = "3.0.1";
4764 src = fetchurl {
6663 src = fetchurl {
4765 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
6664 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
4766 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
6665 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
4767 };
6666 };
4768 };
6667 };
4769 "strip-ansi-4.0.0" = {
6668 "strip-ansi-4.0.0" = {
4770 name = "strip-ansi";
6669 name = "strip-ansi";
4771 packageName = "strip-ansi";
6670 packageName = "strip-ansi";
4772 version = "4.0.0";
6671 version = "4.0.0";
4773 src = fetchurl {
6672 src = fetchurl {
4774 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
6673 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
4775 sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
6674 sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
4776 };
6675 };
4777 };
6676 };
4778 "strip-eof-1.0.0" = {
6677 "strip-eof-1.0.0" = {
4779 name = "strip-eof";
6678 name = "strip-eof";
4780 packageName = "strip-eof";
6679 packageName = "strip-eof";
4781 version = "1.0.0";
6680 version = "1.0.0";
4782 src = fetchurl {
6681 src = fetchurl {
4783 url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
6682 url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
4784 sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
6683 sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
4785 };
6684 };
4786 };
6685 };
4787 "strip-json-comments-1.0.4" = {
6686 "strip-json-comments-1.0.4" = {
4788 name = "strip-json-comments";
6687 name = "strip-json-comments";
4789 packageName = "strip-json-comments";
6688 packageName = "strip-json-comments";
4790 version = "1.0.4";
6689 version = "1.0.4";
4791 src = fetchurl {
6690 src = fetchurl {
4792 url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
6691 url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
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";
4799 version = "0.2.0";
6707 version = "0.2.0";
4800 src = fetchurl {
6708 src = fetchurl {
4801 url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz";
6709 url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz";
4802 sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a";
6710 sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a";
4803 };
6711 };
4804 };
6712 };
4805 "supports-color-2.0.0" = {
6713 "supports-color-2.0.0" = {
4806 name = "supports-color";
6714 name = "supports-color";
4807 packageName = "supports-color";
6715 packageName = "supports-color";
4808 version = "2.0.0";
6716 version = "2.0.0";
4809 src = fetchurl {
6717 src = fetchurl {
4810 url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
6718 url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
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";
4817 version = "5.5.0";
6734 version = "5.5.0";
4818 src = fetchurl {
6735 src = fetchurl {
4819 url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz";
6736 url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz";
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";
4826 version = "1.1.0";
6761 version = "1.1.0";
4827 src = fetchurl {
6762 src = fetchurl {
4828 url = "https://registry.npmjs.org/tapable/-/tapable-1.1.0.tgz";
6763 url = "https://registry.npmjs.org/tapable/-/tapable-1.1.0.tgz";
4829 sha512 = "IlqtmLVaZA2qab8epUXbVWRn3aB1imbDMJtjB3nu4X0NqPkcY/JH9ZtCBWKHWPxs8Svi9tyo8w2dBoi07qZbBA==";
6764 sha512 = "IlqtmLVaZA2qab8epUXbVWRn3aB1imbDMJtjB3nu4X0NqPkcY/JH9ZtCBWKHWPxs8Svi9tyo8w2dBoi07qZbBA==";
4830 };
6765 };
4831 };
6766 };
4832 "throttleit-1.0.0" = {
6767 "throttleit-1.0.0" = {
4833 name = "throttleit";
6768 name = "throttleit";
4834 packageName = "throttleit";
6769 packageName = "throttleit";
4835 version = "1.0.0";
6770 version = "1.0.0";
4836 src = fetchurl {
6771 src = fetchurl {
4837 url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz";
6772 url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz";
4838 sha1 = "9e785836daf46743145a5984b6268d828528ac6c";
6773 sha1 = "9e785836daf46743145a5984b6268d828528ac6c";
4839 };
6774 };
4840 };
6775 };
4841 "through-2.3.8" = {
6776 "through-2.3.8" = {
4842 name = "through";
6777 name = "through";
4843 packageName = "through";
6778 packageName = "through";
4844 version = "2.3.8";
6779 version = "2.3.8";
4845 src = fetchurl {
6780 src = fetchurl {
4846 url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
6781 url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
4847 sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
6782 sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
4848 };
6783 };
4849 };
6784 };
4850 "through2-2.0.3" = {
6785 "through2-2.0.3" = {
4851 name = "through2";
6786 name = "through2";
4852 packageName = "through2";
6787 packageName = "through2";
4853 version = "2.0.3";
6788 version = "2.0.3";
4854 src = fetchurl {
6789 src = fetchurl {
4855 url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
6790 url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
4856 sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
6791 sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
4857 };
6792 };
4858 };
6793 };
4859 "timers-browserify-2.0.10" = {
6794 "timers-browserify-2.0.10" = {
4860 name = "timers-browserify";
6795 name = "timers-browserify";
4861 packageName = "timers-browserify";
6796 packageName = "timers-browserify";
4862 version = "2.0.10";
6797 version = "2.0.10";
4863 src = fetchurl {
6798 src = fetchurl {
4864 url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz";
6799 url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz";
4865 sha512 = "YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==";
6800 sha512 = "YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==";
4866 };
6801 };
4867 };
6802 };
4868 "tiny-emitter-2.0.2" = {
6803 "tiny-emitter-2.0.2" = {
4869 name = "tiny-emitter";
6804 name = "tiny-emitter";
4870 packageName = "tiny-emitter";
6805 packageName = "tiny-emitter";
4871 version = "2.0.2";
6806 version = "2.0.2";
4872 src = fetchurl {
6807 src = fetchurl {
4873 url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.2.tgz";
6808 url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.2.tgz";
4874 sha512 = "2NM0auVBGft5tee/OxP4PI3d8WItkDM+fPnaRAVo6xTDI2knbz9eC5ArWGqtGlYqiH3RU5yMpdyTTO7MguC4ow==";
6809 sha512 = "2NM0auVBGft5tee/OxP4PI3d8WItkDM+fPnaRAVo6xTDI2knbz9eC5ArWGqtGlYqiH3RU5yMpdyTTO7MguC4ow==";
4875 };
6810 };
4876 };
6811 };
4877 "tiny-lr-fork-0.0.5" = {
6812 "tiny-lr-fork-0.0.5" = {
4878 name = "tiny-lr-fork";
6813 name = "tiny-lr-fork";
4879 packageName = "tiny-lr-fork";
6814 packageName = "tiny-lr-fork";
4880 version = "0.0.5";
6815 version = "0.0.5";
4881 src = fetchurl {
6816 src = fetchurl {
4882 url = "https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz";
6817 url = "https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz";
4883 sha1 = "1e99e1e2a8469b736ab97d97eefa98c71f76ed0a";
6818 sha1 = "1e99e1e2a8469b736ab97d97eefa98c71f76ed0a";
4884 };
6819 };
4885 };
6820 };
4886 "to-arraybuffer-1.0.1" = {
6821 "to-arraybuffer-1.0.1" = {
4887 name = "to-arraybuffer";
6822 name = "to-arraybuffer";
4888 packageName = "to-arraybuffer";
6823 packageName = "to-arraybuffer";
4889 version = "1.0.1";
6824 version = "1.0.1";
4890 src = fetchurl {
6825 src = fetchurl {
4891 url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
6826 url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
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";
4898 version = "0.3.0";
6842 version = "0.3.0";
4899 src = fetchurl {
6843 src = fetchurl {
4900 url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
6844 url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
4901 sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
6845 sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
4902 };
6846 };
4903 };
6847 };
4904 "to-regex-3.0.2" = {
6848 "to-regex-3.0.2" = {
4905 name = "to-regex";
6849 name = "to-regex";
4906 packageName = "to-regex";
6850 packageName = "to-regex";
4907 version = "3.0.2";
6851 version = "3.0.2";
4908 src = fetchurl {
6852 src = fetchurl {
4909 url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
6853 url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz";
4910 sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
6854 sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==";
4911 };
6855 };
4912 };
6856 };
4913 "to-regex-range-2.1.1" = {
6857 "to-regex-range-2.1.1" = {
4914 name = "to-regex-range";
6858 name = "to-regex-range";
4915 packageName = "to-regex-range";
6859 packageName = "to-regex-range";
4916 version = "2.1.1";
6860 version = "2.1.1";
4917 src = fetchurl {
6861 src = fetchurl {
4918 url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
6862 url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
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";
4925 version = "2.3.4";
6878 version = "2.3.4";
4926 src = fetchurl {
6879 src = fetchurl {
4927 url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
6880 url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz";
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";
4934 version = "1.9.3";
6905 version = "1.9.3";
4935 src = fetchurl {
6906 src = fetchurl {
4936 url = "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz";
6907 url = "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz";
4937 sha512 = "4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==";
6908 sha512 = "4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==";
4938 };
6909 };
4939 };
6910 };
4940 "tty-browserify-0.0.0" = {
6911 "tty-browserify-0.0.0" = {
4941 name = "tty-browserify";
6912 name = "tty-browserify";
4942 packageName = "tty-browserify";
6913 packageName = "tty-browserify";
4943 version = "0.0.0";
6914 version = "0.0.0";
4944 src = fetchurl {
6915 src = fetchurl {
4945 url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz";
6916 url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz";
4946 sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
6917 sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
4947 };
6918 };
4948 };
6919 };
4949 "tunnel-agent-0.6.0" = {
6920 "tunnel-agent-0.6.0" = {
4950 name = "tunnel-agent";
6921 name = "tunnel-agent";
4951 packageName = "tunnel-agent";
6922 packageName = "tunnel-agent";
4952 version = "0.6.0";
6923 version = "0.6.0";
4953 src = fetchurl {
6924 src = fetchurl {
4954 url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
6925 url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
4955 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
6926 sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
4956 };
6927 };
4957 };
6928 };
4958 "tweetnacl-0.14.5" = {
6929 "tweetnacl-0.14.5" = {
4959 name = "tweetnacl";
6930 name = "tweetnacl";
4960 packageName = "tweetnacl";
6931 packageName = "tweetnacl";
4961 version = "0.14.5";
6932 version = "0.14.5";
4962 src = fetchurl {
6933 src = fetchurl {
4963 url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
6934 url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
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";
4979 version = "0.0.6";
6941 version = "0.0.6";
4980 src = fetchurl {
6942 src = fetchurl {
4981 url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
6943 url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
4982 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
6944 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
4983 };
6945 };
4984 };
6946 };
4985 "uglify-es-3.3.10" = {
6947 "uglify-es-3.3.10" = {
4986 name = "uglify-es";
6948 name = "uglify-es";
4987 packageName = "uglify-es";
6949 packageName = "uglify-es";
4988 version = "3.3.10";
6950 version = "3.3.10";
4989 src = fetchurl {
6951 src = fetchurl {
4990 url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz";
6952 url = "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.10.tgz";
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";
4997 version = "1.3.0";
6986 version = "1.3.0";
4998 src = fetchurl {
6987 src = fetchurl {
4999 url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz";
6988 url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz";
5000 sha512 = "ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==";
6989 sha512 = "ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==";
5001 };
6990 };
5002 };
6991 };
5003 "unc-path-regex-0.1.2" = {
6992 "unc-path-regex-0.1.2" = {
5004 name = "unc-path-regex";
6993 name = "unc-path-regex";
5005 packageName = "unc-path-regex";
6994 packageName = "unc-path-regex";
5006 version = "0.1.2";
6995 version = "0.1.2";
5007 src = fetchurl {
6996 src = fetchurl {
5008 url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
6997 url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
5009 sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
6998 sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
5010 };
6999 };
5011 };
7000 };
5012 "underscore-1.7.0" = {
7001 "underscore-1.7.0" = {
5013 name = "underscore";
7002 name = "underscore";
5014 packageName = "underscore";
7003 packageName = "underscore";
5015 version = "1.7.0";
7004 version = "1.7.0";
5016 src = fetchurl {
7005 src = fetchurl {
5017 url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz";
7006 url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz";
5018 sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209";
7007 sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209";
5019 };
7008 };
5020 };
7009 };
5021 "underscore.string-2.2.1" = {
7010 "underscore.string-2.2.1" = {
5022 name = "underscore.string";
7011 name = "underscore.string";
5023 packageName = "underscore.string";
7012 packageName = "underscore.string";
5024 version = "2.2.1";
7013 version = "2.2.1";
5025 src = fetchurl {
7014 src = fetchurl {
5026 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz";
7015 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz";
5027 sha1 = "d7c0fa2af5d5a1a67f4253daee98132e733f0f19";
7016 sha1 = "d7c0fa2af5d5a1a67f4253daee98132e733f0f19";
5028 };
7017 };
5029 };
7018 };
5030 "underscore.string-2.3.3" = {
7019 "underscore.string-2.3.3" = {
5031 name = "underscore.string";
7020 name = "underscore.string";
5032 packageName = "underscore.string";
7021 packageName = "underscore.string";
5033 version = "2.3.3";
7022 version = "2.3.3";
5034 src = fetchurl {
7023 src = fetchurl {
5035 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz";
7024 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz";
5036 sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d";
7025 sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d";
5037 };
7026 };
5038 };
7027 };
5039 "underscore.string-2.4.0" = {
7028 "underscore.string-2.4.0" = {
5040 name = "underscore.string";
7029 name = "underscore.string";
5041 packageName = "underscore.string";
7030 packageName = "underscore.string";
5042 version = "2.4.0";
7031 version = "2.4.0";
5043 src = fetchurl {
7032 src = fetchurl {
5044 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz";
7033 url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz";
5045 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
7034 sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
5046 };
7035 };
5047 };
7036 };
5048 "unicode-5.2.0-0.7.5" = {
7037 "unicode-5.2.0-0.7.5" = {
5049 name = "unicode-5.2.0";
7038 name = "unicode-5.2.0";
5050 packageName = "unicode-5.2.0";
7039 packageName = "unicode-5.2.0";
5051 version = "0.7.5";
7040 version = "0.7.5";
5052 src = fetchurl {
7041 src = fetchurl {
5053 url = "https://registry.npmjs.org/unicode-5.2.0/-/unicode-5.2.0-0.7.5.tgz";
7042 url = "https://registry.npmjs.org/unicode-5.2.0/-/unicode-5.2.0-0.7.5.tgz";
5054 sha512 = "KVGLW1Bri30x00yv4HNM8kBxoqFXr0Sbo55735nvrlsx4PYBZol3UtoWgO492fSwmsetzPEZzy73rbU8OGXJcA==";
7043 sha512 = "KVGLW1Bri30x00yv4HNM8kBxoqFXr0Sbo55735nvrlsx4PYBZol3UtoWgO492fSwmsetzPEZzy73rbU8OGXJcA==";
5055 };
7044 };
5056 };
7045 };
5057 "union-value-1.0.0" = {
7046 "union-value-1.0.0" = {
5058 name = "union-value";
7047 name = "union-value";
5059 packageName = "union-value";
7048 packageName = "union-value";
5060 version = "1.0.0";
7049 version = "1.0.0";
5061 src = fetchurl {
7050 src = fetchurl {
5062 url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
7051 url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
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";
5069 version = "1.1.1";
7076 version = "1.1.1";
5070 src = fetchurl {
7077 src = fetchurl {
5071 url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz";
7078 url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz";
5072 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==";
7079 sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==";
5073 };
7080 };
5074 };
7081 };
5075 "unique-slug-2.0.1" = {
7082 "unique-slug-2.0.1" = {
5076 name = "unique-slug";
7083 name = "unique-slug";
5077 packageName = "unique-slug";
7084 packageName = "unique-slug";
5078 version = "2.0.1";
7085 version = "2.0.1";
5079 src = fetchurl {
7086 src = fetchurl {
5080 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz";
7087 url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz";
5081 sha512 = "n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==";
7088 sha512 = "n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==";
5082 };
7089 };
5083 };
7090 };
5084 "unset-value-1.0.0" = {
7091 "unset-value-1.0.0" = {
5085 name = "unset-value";
7092 name = "unset-value";
5086 packageName = "unset-value";
7093 packageName = "unset-value";
5087 version = "1.0.0";
7094 version = "1.0.0";
5088 src = fetchurl {
7095 src = fetchurl {
5089 url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
7096 url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
5090 sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
7097 sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
5091 };
7098 };
5092 };
7099 };
5093 "upath-1.1.0" = {
7100 "upath-1.1.0" = {
5094 name = "upath";
7101 name = "upath";
5095 packageName = "upath";
7102 packageName = "upath";
5096 version = "1.1.0";
7103 version = "1.1.0";
5097 src = fetchurl {
7104 src = fetchurl {
5098 url = "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz";
7105 url = "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz";
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";
5105 version = "4.2.2";
7121 version = "4.2.2";
5106 src = fetchurl {
7122 src = fetchurl {
5107 url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
7123 url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
5108 sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
7124 sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==";
5109 };
7125 };
5110 };
7126 };
5111 "urix-0.1.0" = {
7127 "urix-0.1.0" = {
5112 name = "urix";
7128 name = "urix";
5113 packageName = "urix";
7129 packageName = "urix";
5114 version = "0.1.0";
7130 version = "0.1.0";
5115 src = fetchurl {
7131 src = fetchurl {
5116 url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
7132 url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
5117 sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
7133 sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
5118 };
7134 };
5119 };
7135 };
5120 "url-0.11.0" = {
7136 "url-0.11.0" = {
5121 name = "url";
7137 name = "url";
5122 packageName = "url";
7138 packageName = "url";
5123 version = "0.11.0";
7139 version = "0.11.0";
5124 src = fetchurl {
7140 src = fetchurl {
5125 url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz";
7141 url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz";
5126 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
7142 sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
5127 };
7143 };
5128 };
7144 };
5129 "use-3.1.1" = {
7145 "use-3.1.1" = {
5130 name = "use";
7146 name = "use";
5131 packageName = "use";
7147 packageName = "use";
5132 version = "3.1.1";
7148 version = "3.1.1";
5133 src = fetchurl {
7149 src = fetchurl {
5134 url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
7150 url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz";
5135 sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
7151 sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==";
5136 };
7152 };
5137 };
7153 };
5138 "util-0.10.3" = {
7154 "util-0.10.3" = {
5139 name = "util";
7155 name = "util";
5140 packageName = "util";
7156 packageName = "util";
5141 version = "0.10.3";
7157 version = "0.10.3";
5142 src = fetchurl {
7158 src = fetchurl {
5143 url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz";
7159 url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz";
5144 sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
7160 sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
5145 };
7161 };
5146 };
7162 };
5147 "util-0.10.4" = {
7163 "util-0.10.4" = {
5148 name = "util";
7164 name = "util";
5149 packageName = "util";
7165 packageName = "util";
5150 version = "0.10.4";
7166 version = "0.10.4";
5151 src = fetchurl {
7167 src = fetchurl {
5152 url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz";
7168 url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz";
5153 sha512 = "0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==";
7169 sha512 = "0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==";
5154 };
7170 };
5155 };
7171 };
5156 "util-deprecate-1.0.2" = {
7172 "util-deprecate-1.0.2" = {
5157 name = "util-deprecate";
7173 name = "util-deprecate";
5158 packageName = "util-deprecate";
7174 packageName = "util-deprecate";
5159 version = "1.0.2";
7175 version = "1.0.2";
5160 src = fetchurl {
7176 src = fetchurl {
5161 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
7177 url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
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";
5168 version = "3.3.2";
7202 version = "3.3.2";
5169 src = fetchurl {
7203 src = fetchurl {
5170 url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
7204 url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
5171 sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
7205 sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
5172 };
7206 };
5173 };
7207 };
5174 "v8-compile-cache-2.0.2" = {
7208 "v8-compile-cache-2.0.2" = {
5175 name = "v8-compile-cache";
7209 name = "v8-compile-cache";
5176 packageName = "v8-compile-cache";
7210 packageName = "v8-compile-cache";
5177 version = "2.0.2";
7211 version = "2.0.2";
5178 src = fetchurl {
7212 src = fetchurl {
5179 url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz";
7213 url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz";
5180 sha512 = "1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==";
7214 sha512 = "1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==";
5181 };
7215 };
5182 };
7216 };
5183 "v8flags-3.0.2" = {
7217 "v8flags-3.0.2" = {
5184 name = "v8flags";
7218 name = "v8flags";
5185 packageName = "v8flags";
7219 packageName = "v8flags";
5186 version = "3.0.2";
7220 version = "3.0.2";
5187 src = fetchurl {
7221 src = fetchurl {
5188 url = "https://registry.npmjs.org/v8flags/-/v8flags-3.0.2.tgz";
7222 url = "https://registry.npmjs.org/v8flags/-/v8flags-3.0.2.tgz";
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";
5195 version = "1.10.0";
7238 version = "1.10.0";
5196 src = fetchurl {
7239 src = fetchurl {
5197 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
7240 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
5198 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
7241 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
5199 };
7242 };
5200 };
7243 };
5201 "vm-browserify-0.0.4" = {
7244 "vm-browserify-0.0.4" = {
5202 name = "vm-browserify";
7245 name = "vm-browserify";
5203 packageName = "vm-browserify";
7246 packageName = "vm-browserify";
5204 version = "0.0.4";
7247 version = "0.0.4";
5205 src = fetchurl {
7248 src = fetchurl {
5206 url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz";
7249 url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz";
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";
5222 version = "1.6.0";
7256 version = "1.6.0";
5223 src = fetchurl {
7257 src = fetchurl {
5224 url = "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz";
7258 url = "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz";
5225 sha512 = "i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==";
7259 sha512 = "i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==";
5226 };
7260 };
5227 };
7261 };
5228 "waypoints-4.0.1" = {
7262 "waypoints-4.0.1" = {
5229 name = "waypoints";
7263 name = "waypoints";
5230 packageName = "waypoints";
7264 packageName = "waypoints";
5231 version = "4.0.1";
7265 version = "4.0.1";
5232 src = fetchurl {
7266 src = fetchurl {
5233 url = "https://registry.npmjs.org/waypoints/-/waypoints-4.0.1.tgz";
7267 url = "https://registry.npmjs.org/waypoints/-/waypoints-4.0.1.tgz";
5234 sha1 = "09979a0573810b29627cba4366a284a062ec69c8";
7268 sha1 = "09979a0573810b29627cba4366a284a062ec69c8";
5235 };
7269 };
5236 };
7270 };
5237 "webpack-4.23.1" = {
7271 "webpack-4.23.1" = {
5238 name = "webpack";
7272 name = "webpack";
5239 packageName = "webpack";
7273 packageName = "webpack";
5240 version = "4.23.1";
7274 version = "4.23.1";
5241 src = fetchurl {
7275 src = fetchurl {
5242 url = "https://registry.npmjs.org/webpack/-/webpack-4.23.1.tgz";
7276 url = "https://registry.npmjs.org/webpack/-/webpack-4.23.1.tgz";
5243 sha512 = "iE5Cu4rGEDk7ONRjisTOjVHv3dDtcFfwitSxT7evtYj/rANJpt1OuC/Kozh1pBa99AUBr1L/LsaNB+D9Xz3CEg==";
7277 sha512 = "iE5Cu4rGEDk7ONRjisTOjVHv3dDtcFfwitSxT7evtYj/rANJpt1OuC/Kozh1pBa99AUBr1L/LsaNB+D9Xz3CEg==";
5244 };
7278 };
5245 };
7279 };
5246 "webpack-cli-3.1.2" = {
7280 "webpack-cli-3.1.2" = {
5247 name = "webpack-cli";
7281 name = "webpack-cli";
5248 packageName = "webpack-cli";
7282 packageName = "webpack-cli";
5249 version = "3.1.2";
7283 version = "3.1.2";
5250 src = fetchurl {
7284 src = fetchurl {
5251 url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz";
7285 url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.2.tgz";
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";
5258 version = "1.3.0";
7301 version = "1.3.0";
5259 src = fetchurl {
7302 src = fetchurl {
5260 url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz";
7303 url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz";
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";
5267 version = "1.0.9";
7328 version = "1.0.9";
5268 src = fetchurl {
7329 src = fetchurl {
5269 url = "https://registry.npmjs.org/which/-/which-1.0.9.tgz";
7330 url = "https://registry.npmjs.org/which/-/which-1.0.9.tgz";
5270 sha1 = "460c1da0f810103d0321a9b633af9e575e64486f";
7331 sha1 = "460c1da0f810103d0321a9b633af9e575e64486f";
5271 };
7332 };
5272 };
7333 };
5273 "which-1.3.1" = {
7334 "which-1.3.1" = {
5274 name = "which";
7335 name = "which";
5275 packageName = "which";
7336 packageName = "which";
5276 version = "1.3.1";
7337 version = "1.3.1";
5277 src = fetchurl {
7338 src = fetchurl {
5278 url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
7339 url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
5279 sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
7340 sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==";
5280 };
7341 };
5281 };
7342 };
5282 "which-module-2.0.0" = {
7343 "which-module-2.0.0" = {
5283 name = "which-module";
7344 name = "which-module";
5284 packageName = "which-module";
7345 packageName = "which-module";
5285 version = "2.0.0";
7346 version = "2.0.0";
5286 src = fetchurl {
7347 src = fetchurl {
5287 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
7348 url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
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";
5294 version = "2.4.4";
7364 version = "2.4.4";
5295 src = fetchurl {
7365 src = fetchurl {
5296 url = "https://registry.npmjs.org/winston/-/winston-2.4.4.tgz";
7366 url = "https://registry.npmjs.org/winston/-/winston-2.4.4.tgz";
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" = {
5310 name = "worker-farm";
7380 name = "worker-farm";
5311 packageName = "worker-farm";
7381 packageName = "worker-farm";
5312 version = "1.6.0";
7382 version = "1.6.0";
5313 src = fetchurl {
7383 src = fetchurl {
5314 url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz";
7384 url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz";
5315 sha512 = "6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==";
7385 sha512 = "6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==";
5316 };
7386 };
5317 };
7387 };
5318 "wrap-ansi-2.1.0" = {
7388 "wrap-ansi-2.1.0" = {
5319 name = "wrap-ansi";
7389 name = "wrap-ansi";
5320 packageName = "wrap-ansi";
7390 packageName = "wrap-ansi";
5321 version = "2.1.0";
7391 version = "2.1.0";
5322 src = fetchurl {
7392 src = fetchurl {
5323 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
7393 url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
5324 sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
7394 sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
5325 };
7395 };
5326 };
7396 };
5327 "wrappy-1.0.2" = {
7397 "wrappy-1.0.2" = {
5328 name = "wrappy";
7398 name = "wrappy";
5329 packageName = "wrappy";
7399 packageName = "wrappy";
5330 version = "1.0.2";
7400 version = "1.0.2";
5331 src = fetchurl {
7401 src = fetchurl {
5332 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
7402 url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
5333 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
7403 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
5334 };
7404 };
5335 };
7405 };
5336 "xregexp-4.0.0" = {
7406 "xregexp-4.0.0" = {
5337 name = "xregexp";
7407 name = "xregexp";
5338 packageName = "xregexp";
7408 packageName = "xregexp";
5339 version = "4.0.0";
7409 version = "4.0.0";
5340 src = fetchurl {
7410 src = fetchurl {
5341 url = "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz";
7411 url = "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz";
5342 sha512 = "PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==";
7412 sha512 = "PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==";
5343 };
7413 };
5344 };
7414 };
5345 "xtend-4.0.1" = {
7415 "xtend-4.0.1" = {
5346 name = "xtend";
7416 name = "xtend";
5347 packageName = "xtend";
7417 packageName = "xtend";
5348 version = "4.0.1";
7418 version = "4.0.1";
5349 src = fetchurl {
7419 src = fetchurl {
5350 url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
7420 url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
5351 sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
7421 sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
5352 };
7422 };
5353 };
7423 };
5354 "y18n-4.0.0" = {
7424 "y18n-4.0.0" = {
5355 name = "y18n";
7425 name = "y18n";
5356 packageName = "y18n";
7426 packageName = "y18n";
5357 version = "4.0.0";
7427 version = "4.0.0";
5358 src = fetchurl {
7428 src = fetchurl {
5359 url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
7429 url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
5360 sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
7430 sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
5361 };
7431 };
5362 };
7432 };
5363 "yallist-2.1.2" = {
7433 "yallist-2.1.2" = {
5364 name = "yallist";
7434 name = "yallist";
5365 packageName = "yallist";
7435 packageName = "yallist";
5366 version = "2.1.2";
7436 version = "2.1.2";
5367 src = fetchurl {
7437 src = fetchurl {
5368 url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
7438 url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
5369 sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
7439 sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
5370 };
7440 };
5371 };
7441 };
5372 "yargs-12.0.2" = {
7442 "yargs-12.0.2" = {
5373 name = "yargs";
7443 name = "yargs";
5374 packageName = "yargs";
7444 packageName = "yargs";
5375 version = "12.0.2";
7445 version = "12.0.2";
5376 src = fetchurl {
7446 src = fetchurl {
5377 url = "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz";
7447 url = "https://registry.npmjs.org/yargs/-/yargs-12.0.2.tgz";
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";
5384 version = "10.1.0";
7463 version = "10.1.0";
5385 src = fetchurl {
7464 src = fetchurl {
5386 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz";
7465 url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz";
5387 sha512 = "VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==";
7466 sha512 = "VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==";
5388 };
7467 };
5389 };
7468 };
5390 "yauzl-2.4.1" = {
7469 "yauzl-2.4.1" = {
5391 name = "yauzl";
7470 name = "yauzl";
5392 packageName = "yauzl";
7471 packageName = "yauzl";
5393 version = "2.4.1";
7472 version = "2.4.1";
5394 src = fetchurl {
7473 src = fetchurl {
5395 url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz";
7474 url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz";
5396 sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005";
7475 sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005";
5397 };
7476 };
5398 };
7477 };
5399 };
7478 };
5400 args = {
7479 args = {
5401 name = "rhodecode-enterprise";
7480 name = "rhodecode-enterprise";
5402 packageName = "rhodecode-enterprise";
7481 packageName = "rhodecode-enterprise";
5403 version = "1.0.0";
7482 version = "1.0.0";
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"
5416 sources."@webassemblyjs/helper-buffer-1.7.10"
7491 sources."@webassemblyjs/helper-buffer-1.7.10"
5417 sources."@webassemblyjs/helper-code-frame-1.7.10"
7492 sources."@webassemblyjs/helper-code-frame-1.7.10"
5418 sources."@webassemblyjs/helper-fsm-1.7.10"
7493 sources."@webassemblyjs/helper-fsm-1.7.10"
5419 sources."@webassemblyjs/helper-module-context-1.7.10"
7494 sources."@webassemblyjs/helper-module-context-1.7.10"
5420 sources."@webassemblyjs/helper-wasm-bytecode-1.7.10"
7495 sources."@webassemblyjs/helper-wasm-bytecode-1.7.10"
5421 sources."@webassemblyjs/helper-wasm-section-1.7.10"
7496 sources."@webassemblyjs/helper-wasm-section-1.7.10"
5422 sources."@webassemblyjs/ieee754-1.7.10"
7497 sources."@webassemblyjs/ieee754-1.7.10"
5423 sources."@webassemblyjs/leb128-1.7.10"
7498 sources."@webassemblyjs/leb128-1.7.10"
5424 sources."@webassemblyjs/utf8-1.7.10"
7499 sources."@webassemblyjs/utf8-1.7.10"
5425 sources."@webassemblyjs/wasm-edit-1.7.10"
7500 sources."@webassemblyjs/wasm-edit-1.7.10"
5426 sources."@webassemblyjs/wasm-gen-1.7.10"
7501 sources."@webassemblyjs/wasm-gen-1.7.10"
5427 sources."@webassemblyjs/wasm-opt-1.7.10"
7502 sources."@webassemblyjs/wasm-opt-1.7.10"
5428 sources."@webassemblyjs/wasm-parser-1.7.10"
7503 sources."@webassemblyjs/wasm-parser-1.7.10"
5429 sources."@webassemblyjs/wast-parser-1.7.10"
7504 sources."@webassemblyjs/wast-parser-1.7.10"
5430 sources."@webassemblyjs/wast-printer-1.7.10"
7505 sources."@webassemblyjs/wast-printer-1.7.10"
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"
5446 sources."anymatch-2.0.0"
7527 sources."anymatch-2.0.0"
5447 sources."appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1"
7528 sources."appenlight-client-git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1"
5448 sources."aproba-1.2.0"
7529 sources."aproba-1.2.0"
5449 (sources."argparse-0.1.16" // {
7530 (sources."argparse-0.1.16" // {
5450 dependencies = [
7531 dependencies = [
5451 sources."underscore.string-2.4.0"
7532 sources."underscore.string-2.4.0"
5452 ];
7533 ];
5453 })
7534 })
5454 sources."arr-diff-4.0.0"
7535 sources."arr-diff-4.0.0"
5455 sources."arr-flatten-1.1.0"
7536 sources."arr-flatten-1.1.0"
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"
5463 (sources."assert-1.4.1" // {
7547 (sources."assert-1.4.1" // {
5464 dependencies = [
7548 dependencies = [
5465 sources."inherits-2.0.1"
7549 sources."inherits-2.0.1"
5466 sources."util-0.10.3"
7550 sources."util-0.10.3"
5467 ];
7551 ];
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 = [
5486 sources."define-property-1.0.0"
7672 sources."define-property-1.0.0"
5487 ];
7673 ];
5488 })
7674 })
5489 sources."base64-js-1.3.0"
7675 sources."base64-js-1.3.0"
5490 sources."bcrypt-pbkdf-1.0.2"
7676 sources."bcrypt-pbkdf-1.0.2"
5491 sources."big.js-3.2.0"
7677 sources."big.js-3.2.0"
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"
5498 (sources."braces-2.3.2" // {
7685 (sources."braces-2.3.2" // {
5499 dependencies = [
7686 dependencies = [
5500 sources."extend-shallow-2.0.1"
7687 sources."extend-shallow-2.0.1"
5501 ];
7688 ];
5502 })
7689 })
5503 sources."brorand-1.1.0"
7690 sources."brorand-1.1.0"
5504 sources."browserify-aes-1.2.0"
7691 sources."browserify-aes-1.2.0"
5505 sources."browserify-cipher-1.0.1"
7692 sources."browserify-cipher-1.0.1"
5506 sources."browserify-des-1.0.2"
7693 sources."browserify-des-1.0.2"
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"
5513 sources."builtin-status-codes-3.0.0"
7701 sources."builtin-status-codes-3.0.0"
5514 (sources."cacache-10.0.4" // {
7702 (sources."cacache-10.0.4" // {
5515 dependencies = [
7703 dependencies = [
5516 sources."glob-7.1.3"
7704 sources."glob-7.1.3"
5517 sources."graceful-fs-4.1.11"
7705 sources."graceful-fs-4.1.11"
5518 sources."lru-cache-4.1.3"
7706 sources."lru-cache-4.1.3"
5519 sources."minimatch-3.0.4"
7707 sources."minimatch-3.0.4"
5520 sources."rimraf-2.6.2"
7708 sources."rimraf-2.6.2"
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 = [
5529 sources."is-glob-4.0.0"
7726 sources."is-glob-4.0.0"
5530 ];
7727 ];
5531 })
7728 })
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"
5538 (sources."is-accessor-descriptor-0.1.6" // {
7745 (sources."is-accessor-descriptor-0.1.6" // {
5539 dependencies = [
7746 dependencies = [
5540 sources."kind-of-3.2.2"
7747 sources."kind-of-3.2.2"
5541 ];
7748 ];
5542 })
7749 })
5543 (sources."is-data-descriptor-0.1.4" // {
7750 (sources."is-data-descriptor-0.1.4" // {
5544 dependencies = [
7751 dependencies = [
5545 sources."kind-of-3.2.2"
7752 sources."kind-of-3.2.2"
5546 ];
7753 ];
5547 })
7754 })
5548 sources."is-descriptor-0.1.6"
7755 sources."is-descriptor-0.1.6"
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"
5555 sources."minimatch-3.0.4"
7767 sources."minimatch-3.0.4"
5556 ];
7768 ];
5557 })
7769 })
5558 sources."clipboard-2.0.1"
7770 sources."clipboard-2.0.1"
5559 (sources."cliui-4.1.0" // {
7771 (sources."cliui-4.1.0" // {
5560 dependencies = [
7772 dependencies = [
5561 sources."ansi-regex-3.0.0"
7773 sources."ansi-regex-3.0.0"
5562 sources."strip-ansi-4.0.0"
7774 sources."strip-ansi-4.0.0"
5563 ];
7775 ];
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"
5575 sources."commondir-1.0.1"
7791 sources."commondir-1.0.1"
5576 sources."component-emitter-1.2.1"
7792 sources."component-emitter-1.2.1"
5577 sources."concat-map-0.0.1"
7793 sources."concat-map-0.0.1"
5578 (sources."concat-stream-1.6.2" // {
7794 (sources."concat-stream-1.6.2" // {
5579 dependencies = [
7795 dependencies = [
5580 sources."readable-stream-2.3.6"
7796 sources."readable-stream-2.3.6"
5581 sources."string_decoder-1.1.1"
7797 sources."string_decoder-1.1.1"
5582 ];
7798 ];
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"
5589 sources."minimatch-3.0.4"
7806 sources."minimatch-3.0.4"
5590 sources."rimraf-2.6.2"
7807 sources."rimraf-2.6.2"
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"
5607 ];
7825 ];
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" // {
5614 dependencies = [
7848 dependencies = [
5615 sources."assert-plus-1.0.0"
7849 sources."assert-plus-1.0.0"
5616 ];
7850 ];
5617 })
7851 })
5618 sources."date-now-0.1.4"
7852 sources."date-now-0.1.4"
5619 sources."dateformat-1.0.2-1.2.3"
7853 sources."dateformat-1.0.2-1.2.3"
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"
5645 sources."domutils-1.5.1"
7884 sources."domutils-1.5.1"
5646 (sources."duplexify-3.6.1" // {
7885 (sources."duplexify-3.6.1" // {
5647 dependencies = [
7886 dependencies = [
5648 sources."readable-stream-2.3.6"
7887 sources."readable-stream-2.3.6"
5649 sources."string_decoder-1.1.1"
7888 sources."string_decoder-1.1.1"
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"
5656 (sources."enhanced-resolve-4.1.0" // {
7896 (sources."enhanced-resolve-4.1.0" // {
5657 dependencies = [
7897 dependencies = [
5658 sources."graceful-fs-4.1.11"
7898 sources."graceful-fs-4.1.11"
5659 ];
7899 ];
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"
5694 sources."execa-0.10.0"
7917 sources."execa-0.10.0"
5695 sources."exit-0.1.2"
7918 sources."exit-0.1.2"
5696 (sources."expand-brackets-2.1.4" // {
7919 (sources."expand-brackets-2.1.4" // {
5697 dependencies = [
7920 dependencies = [
5698 sources."define-property-0.2.5"
7921 sources."define-property-0.2.5"
5699 sources."extend-shallow-2.0.1"
7922 sources."extend-shallow-2.0.1"
5700 (sources."is-accessor-descriptor-0.1.6" // {
7923 (sources."is-accessor-descriptor-0.1.6" // {
5701 dependencies = [
7924 dependencies = [
5702 sources."kind-of-3.2.2"
7925 sources."kind-of-3.2.2"
5703 ];
7926 ];
5704 })
7927 })
5705 (sources."is-data-descriptor-0.1.4" // {
7928 (sources."is-data-descriptor-0.1.4" // {
5706 dependencies = [
7929 dependencies = [
5707 sources."kind-of-3.2.2"
7930 sources."kind-of-3.2.2"
5708 ];
7931 ];
5709 })
7932 })
5710 sources."is-descriptor-0.1.6"
7933 sources."is-descriptor-0.1.6"
5711 sources."kind-of-5.1.0"
7934 sources."kind-of-5.1.0"
5712 ];
7935 ];
5713 })
7936 })
5714 sources."expand-tilde-2.0.2"
7937 sources."expand-tilde-2.0.2"
5715 sources."exports-loader-0.6.4"
7938 sources."exports-loader-0.6.4"
5716 sources."extend-3.0.2"
7939 sources."extend-3.0.2"
5717 (sources."extend-shallow-3.0.2" // {
7940 (sources."extend-shallow-3.0.2" // {
5718 dependencies = [
7941 dependencies = [
5719 sources."is-extendable-1.0.1"
7942 sources."is-extendable-1.0.1"
5720 ];
7943 ];
5721 })
7944 })
5722 (sources."extglob-2.0.4" // {
7945 (sources."extglob-2.0.4" // {
5723 dependencies = [
7946 dependencies = [
5724 sources."define-property-1.0.0"
7947 sources."define-property-1.0.0"
5725 sources."extend-shallow-2.0.1"
7948 sources."extend-shallow-2.0.1"
5726 ];
7949 ];
5727 })
7950 })
5728 sources."extract-zip-1.6.7"
7951 sources."extract-zip-1.6.7"
5729 sources."extsprintf-1.3.0"
7952 sources."extsprintf-1.3.0"
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"
5737 sources."file-sync-cmp-0.1.1"
7960 sources."file-sync-cmp-0.1.1"
5738 (sources."fill-range-4.0.0" // {
7961 (sources."fill-range-4.0.0" // {
5739 dependencies = [
7962 dependencies = [
5740 sources."extend-shallow-2.0.1"
7963 sources."extend-shallow-2.0.1"
5741 ];
7964 ];
5742 })
7965 })
5743 sources."find-cache-dir-1.0.0"
7966 sources."find-cache-dir-1.0.0"
5744 sources."find-up-2.1.0"
7967 sources."find-up-2.1.0"
5745 (sources."findup-sync-0.1.3" // {
7968 (sources."findup-sync-0.1.3" // {
5746 dependencies = [
7969 dependencies = [
5747 sources."glob-3.2.11"
7970 sources."glob-3.2.11"
5748 sources."lodash-2.4.2"
7971 sources."lodash-2.4.2"
5749 sources."minimatch-0.3.0"
7972 sources."minimatch-0.3.0"
5750 ];
7973 ];
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"
5757 sources."string_decoder-1.1.1"
7981 sources."string_decoder-1.1.1"
5758 ];
7982 ];
5759 })
7983 })
5760 sources."for-in-1.0.2"
7984 sources."for-in-1.0.2"
5761 sources."for-own-1.0.0"
7985 sources."for-own-1.0.0"
5762 sources."forever-agent-0.6.1"
7986 sources."forever-agent-0.6.1"
5763 sources."form-data-2.1.4"
7987 sources."form-data-2.1.4"
5764 sources."fragment-cache-0.2.1"
7988 sources."fragment-cache-0.2.1"
5765 (sources."from2-2.3.0" // {
7989 (sources."from2-2.3.0" // {
5766 dependencies = [
7990 dependencies = [
5767 sources."readable-stream-2.3.6"
7991 sources."readable-stream-2.3.6"
5768 sources."string_decoder-1.1.1"
7992 sources."string_decoder-1.1.1"
5769 ];
7993 ];
5770 })
7994 })
5771 (sources."fs-extra-1.0.0" // {
7995 (sources."fs-extra-1.0.0" // {
5772 dependencies = [
7996 dependencies = [
5773 sources."graceful-fs-4.1.11"
7997 sources."graceful-fs-4.1.11"
5774 ];
7998 ];
5775 })
7999 })
5776 (sources."fs-write-stream-atomic-1.0.10" // {
8000 (sources."fs-write-stream-atomic-1.0.10" // {
5777 dependencies = [
8001 dependencies = [
5778 sources."graceful-fs-4.1.11"
8002 sources."graceful-fs-4.1.11"
5779 ];
8003 ];
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"
5786 sources."get-value-2.0.6"
8011 sources."get-value-2.0.6"
5787 sources."getobject-0.1.0"
8012 sources."getobject-0.1.0"
5788 (sources."getpass-0.1.7" // {
8013 (sources."getpass-0.1.7" // {
5789 dependencies = [
8014 dependencies = [
5790 sources."assert-plus-1.0.0"
8015 sources."assert-plus-1.0.0"
5791 ];
8016 ];
5792 })
8017 })
5793 (sources."glob-3.1.21" // {
8018 (sources."glob-3.1.21" // {
5794 dependencies = [
8019 dependencies = [
5795 sources."inherits-1.0.2"
8020 sources."inherits-1.0.2"
5796 ];
8021 ];
5797 })
8022 })
5798 sources."glob-parent-3.1.0"
8023 sources."glob-parent-3.1.0"
5799 sources."global-modules-1.0.0"
8024 sources."global-modules-1.0.0"
5800 sources."global-modules-path-2.3.0"
8025 sources."global-modules-path-2.3.0"
5801 (sources."global-prefix-1.0.2" // {
8026 (sources."global-prefix-1.0.2" // {
5802 dependencies = [
8027 dependencies = [
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"
5809 ];
8041 ];
5810 })
8042 })
5811 sources."good-listener-1.2.2"
8043 sources."good-listener-1.2.2"
5812 sources."graceful-fs-1.2.3"
8044 sources."graceful-fs-1.2.3"
5813 sources."grunt-0.4.5"
8045 sources."grunt-0.4.5"
5814 (sources."grunt-cli-1.3.1" // {
8046 (sources."grunt-cli-1.3.1" // {
5815 dependencies = [
8047 dependencies = [
5816 sources."nopt-4.0.1"
8048 sources."nopt-4.0.1"
5817 ];
8049 ];
5818 })
8050 })
5819 (sources."grunt-contrib-concat-0.5.1" // {
8051 (sources."grunt-contrib-concat-0.5.1" // {
5820 dependencies = [
8052 dependencies = [
5821 sources."source-map-0.3.0"
8053 sources."source-map-0.3.0"
5822 ];
8054 ];
5823 })
8055 })
5824 (sources."grunt-contrib-copy-1.0.0" // {
8056 (sources."grunt-contrib-copy-1.0.0" // {
5825 dependencies = [
8057 dependencies = [
5826 sources."ansi-regex-2.1.1"
8058 sources."ansi-regex-2.1.1"
5827 sources."ansi-styles-2.2.1"
8059 sources."ansi-styles-2.2.1"
5828 sources."chalk-1.1.3"
8060 sources."chalk-1.1.3"
5829 sources."has-ansi-2.0.0"
8061 sources."has-ansi-2.0.0"
5830 sources."strip-ansi-3.0.1"
8062 sources."strip-ansi-3.0.1"
5831 sources."supports-color-2.0.0"
8063 sources."supports-color-2.0.0"
5832 ];
8064 ];
5833 })
8065 })
5834 sources."grunt-contrib-jshint-0.12.0"
8066 sources."grunt-contrib-jshint-0.12.0"
5835 (sources."grunt-contrib-less-1.4.1" // {
8067 (sources."grunt-contrib-less-1.4.1" // {
5836 dependencies = [
8068 dependencies = [
5837 sources."ansi-regex-2.1.1"
8069 sources."ansi-regex-2.1.1"
5838 sources."ansi-styles-2.2.1"
8070 sources."ansi-styles-2.2.1"
5839 sources."async-2.6.1"
8071 sources."async-2.6.1"
5840 sources."chalk-1.1.3"
8072 sources."chalk-1.1.3"
5841 sources."has-ansi-2.0.0"
8073 sources."has-ansi-2.0.0"
5842 sources."lodash-4.17.11"
8074 sources."lodash-4.17.11"
5843 sources."strip-ansi-3.0.1"
8075 sources."strip-ansi-3.0.1"
5844 sources."supports-color-2.0.0"
8076 sources."supports-color-2.0.0"
5845 ];
8077 ];
5846 })
8078 })
5847 (sources."grunt-contrib-watch-0.6.1" // {
8079 (sources."grunt-contrib-watch-0.6.1" // {
5848 dependencies = [
8080 dependencies = [
5849 sources."async-0.2.10"
8081 sources."async-0.2.10"
5850 sources."lodash-2.4.2"
8082 sources."lodash-2.4.2"
5851 ];
8083 ];
5852 })
8084 })
5853 sources."grunt-known-options-1.1.1"
8085 sources."grunt-known-options-1.1.1"
5854 (sources."grunt-legacy-log-0.1.3" // {
8086 (sources."grunt-legacy-log-0.1.3" // {
5855 dependencies = [
8087 dependencies = [
5856 sources."lodash-2.4.2"
8088 sources."lodash-2.4.2"
5857 sources."underscore.string-2.3.3"
8089 sources."underscore.string-2.3.3"
5858 ];
8090 ];
5859 })
8091 })
5860 (sources."grunt-legacy-log-utils-0.1.1" // {
8092 (sources."grunt-legacy-log-utils-0.1.1" // {
5861 dependencies = [
8093 dependencies = [
5862 sources."lodash-2.4.2"
8094 sources."lodash-2.4.2"
5863 sources."underscore.string-2.3.3"
8095 sources."underscore.string-2.3.3"
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 = [
5875 sources."kind-of-4.0.0"
8113 sources."kind-of-4.0.0"
5876 ];
8114 ];
5877 })
8115 })
5878 sources."hash-base-3.0.4"
8116 sources."hash-base-3.0.4"
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 = [
5900 sources."find-up-3.0.0"
8159 sources."find-up-3.0.0"
5901 sources."locate-path-3.0.0"
8160 sources."locate-path-3.0.0"
5902 sources."p-limit-2.0.0"
8161 sources."p-limit-2.0.0"
5903 sources."p-locate-3.0.0"
8162 sources."p-locate-3.0.0"
5904 sources."p-try-2.0.0"
8163 sources."p-try-2.0.0"
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" // {
5926 dependencies = [
8192 dependencies = [
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"
5936 sources."isarray-1.0.0"
8206 sources."isarray-1.0.0"
5937 sources."isexe-2.0.0"
8207 sources."isexe-2.0.0"
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"
5946 sources."minimatch-3.0.4"
8219 sources."minimatch-3.0.4"
5947 ];
8220 ];
5948 })
8221 })
5949 sources."json-parse-better-errors-1.0.2"
8222 sources."json-parse-better-errors-1.0.2"
5950 sources."json-schema-0.2.3"
8223 sources."json-schema-0.2.3"
5951 sources."json-schema-traverse-0.4.1"
8224 sources."json-schema-traverse-0.4.1"
5952 sources."json-stable-stringify-1.0.1"
8225 sources."json-stable-stringify-1.0.1"
5953 sources."json-stringify-safe-5.0.1"
8226 sources."json-stringify-safe-5.0.1"
5954 sources."json5-0.5.1"
8227 sources."json5-0.5.1"
5955 (sources."jsonfile-2.4.0" // {
8228 (sources."jsonfile-2.4.0" // {
5956 dependencies = [
8229 dependencies = [
5957 sources."graceful-fs-4.1.11"
8230 sources."graceful-fs-4.1.11"
5958 ];
8231 ];
5959 })
8232 })
5960 sources."jsonify-0.0.0"
8233 sources."jsonify-0.0.0"
5961 (sources."jsprim-1.4.1" // {
8234 (sources."jsprim-1.4.1" // {
5962 dependencies = [
8235 dependencies = [
5963 sources."assert-plus-1.0.0"
8236 sources."assert-plus-1.0.0"
5964 ];
8237 ];
5965 })
8238 })
5966 sources."kew-0.7.0"
8239 sources."kew-0.7.0"
5967 sources."kind-of-6.0.2"
8240 sources."kind-of-6.0.2"
5968 (sources."klaw-1.3.1" // {
8241 (sources."klaw-1.3.1" // {
5969 dependencies = [
8242 dependencies = [
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"
5983 ];
8256 ];
5984 })
8257 })
5985 sources."loader-runner-2.3.1"
8258 sources."loader-runner-2.3.1"
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" // {
5999 dependencies = [
8280 dependencies = [
6000 sources."readable-stream-2.3.6"
8281 sources."readable-stream-2.3.6"
6001 sources."string_decoder-1.1.1"
8282 sources."string_decoder-1.1.1"
6002 ];
8283 ];
6003 })
8284 })
6004 sources."micromatch-3.1.10"
8285 sources."micromatch-3.1.10"
6005 sources."miller-rabin-4.0.1"
8286 sources."miller-rabin-4.0.1"
6006 sources."mime-1.6.0"
8287 sources."mime-1.6.0"
6007 sources."mime-db-1.37.0"
8288 sources."mime-db-1.37.0"
6008 sources."mime-types-2.1.21"
8289 sources."mime-types-2.1.21"
6009 sources."mimic-fn-1.2.0"
8290 sources."mimic-fn-1.2.0"
6010 sources."minimalistic-assert-1.0.1"
8291 sources."minimalistic-assert-1.0.1"
6011 sources."minimalistic-crypto-utils-1.0.1"
8292 sources."minimalistic-crypto-utils-1.0.1"
6012 sources."minimatch-0.2.14"
8293 sources."minimatch-0.2.14"
6013 sources."minimist-0.0.8"
8294 sources."minimist-0.0.8"
6014 sources."mississippi-2.0.0"
8295 sources."mississippi-2.0.0"
6015 (sources."mixin-deep-1.3.1" // {
8296 (sources."mixin-deep-1.3.1" // {
6016 dependencies = [
8297 dependencies = [
6017 sources."is-extendable-1.0.1"
8298 sources."is-extendable-1.0.1"
6018 ];
8299 ];
6019 })
8300 })
6020 sources."mkdirp-0.5.1"
8301 sources."mkdirp-0.5.1"
6021 sources."moment-2.22.2"
8302 sources."moment-2.22.2"
6022 sources."mousetrap-1.6.2"
8303 sources."mousetrap-1.6.2"
6023 (sources."move-concurrently-1.0.1" // {
8304 (sources."move-concurrently-1.0.1" // {
6024 dependencies = [
8305 dependencies = [
6025 sources."glob-7.1.3"
8306 sources."glob-7.1.3"
6026 sources."minimatch-3.0.4"
8307 sources."minimatch-3.0.4"
6027 sources."rimraf-2.6.2"
8308 sources."rimraf-2.6.2"
6028 ];
8309 ];
6029 })
8310 })
6030 sources."ms-2.0.0"
8311 sources."ms-2.0.0"
6031 sources."nan-2.11.1"
8312 sources."nan-2.11.1"
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"
6038 sources."string_decoder-1.1.1"
8320 sources."string_decoder-1.1.1"
6039 ];
8321 ];
6040 })
8322 })
6041 sources."nopt-1.0.10"
8323 sources."nopt-1.0.10"
6042 (sources."noptify-0.0.3" // {
8324 (sources."noptify-0.0.3" // {
6043 dependencies = [
8325 dependencies = [
6044 sources."nopt-2.0.0"
8326 sources."nopt-2.0.0"
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"
6054 sources."is-accessor-descriptor-0.1.6"
8341 sources."is-accessor-descriptor-0.1.6"
6055 sources."is-data-descriptor-0.1.4"
8342 sources."is-data-descriptor-0.1.4"
6056 (sources."is-descriptor-0.1.6" // {
8343 (sources."is-descriptor-0.1.6" // {
6057 dependencies = [
8344 dependencies = [
6058 sources."kind-of-5.1.0"
8345 sources."kind-of-5.1.0"
6059 ];
8346 ];
6060 })
8347 })
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"
6073 sources."os-tmpdir-1.0.2"
8361 sources."os-tmpdir-1.0.2"
6074 sources."osenv-0.1.5"
8362 sources."osenv-0.1.5"
6075 sources."p-defer-1.0.0"
8363 sources."p-defer-1.0.0"
6076 sources."p-finally-1.0.0"
8364 sources."p-finally-1.0.0"
6077 sources."p-is-promise-1.1.0"
8365 sources."p-is-promise-1.1.0"
6078 sources."p-limit-1.3.0"
8366 sources."p-limit-1.3.0"
6079 sources."p-locate-2.0.0"
8367 sources."p-locate-2.0.0"
6080 sources."p-try-1.0.0"
8368 sources."p-try-1.0.0"
6081 sources."pako-1.0.6"
8369 sources."pako-1.0.6"
6082 (sources."parallel-transform-1.1.0" // {
8370 (sources."parallel-transform-1.1.0" // {
6083 dependencies = [
8371 dependencies = [
6084 sources."readable-stream-2.3.6"
8372 sources."readable-stream-2.3.6"
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"
6095 sources."path-exists-3.0.0"
8389 sources."path-exists-3.0.0"
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"
6105 sources."phantom-4.0.12"
8399 sources."phantom-4.0.12"
6106 (sources."phantomjs-prebuilt-2.1.16" // {
8400 (sources."phantomjs-prebuilt-2.1.16" // {
6107 dependencies = [
8401 dependencies = [
6108 sources."which-1.3.1"
8402 sources."which-1.3.1"
6109 ];
8403 ];
6110 })
8404 })
6111 sources."pify-3.0.0"
8405 sources."pify-3.0.0"
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"
6120 sources."promise-7.3.1"
8512 sources."promise-7.3.1"
6121 sources."promise-inflight-1.0.1"
8513 sources."promise-inflight-1.0.1"
6122 sources."prr-1.0.1"
8514 sources."prr-1.0.1"
6123 sources."pseudomap-1.0.2"
8515 sources."pseudomap-1.0.2"
6124 sources."public-encrypt-4.0.3"
8516 sources."public-encrypt-4.0.3"
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"
6137 ];
8532 ];
6138 })
8533 })
6139 (sources."readdirp-2.2.1" // {
8534 (sources."readdirp-2.2.1" // {
6140 dependencies = [
8535 dependencies = [
6141 sources."graceful-fs-4.1.11"
8536 sources."graceful-fs-4.1.11"
6142 sources."readable-stream-2.3.6"
8537 sources."readable-stream-2.3.6"
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"
6155 sources."require-main-filename-1.0.1"
8587 sources."require-main-filename-1.0.1"
6156 sources."resolve-1.8.1"
8588 sources."resolve-1.8.1"
6157 sources."resolve-cwd-2.0.0"
8589 sources."resolve-cwd-2.0.0"
6158 sources."resolve-dir-1.0.1"
8590 sources."resolve-dir-1.0.1"
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"
6171 ];
8605 ];
6172 })
8606 })
6173 sources."select-1.1.2"
8607 sources."select-1.1.2"
6174 sources."semver-5.6.0"
8608 sources."semver-5.6.0"
6175 sources."serialize-javascript-1.5.0"
8609 sources."serialize-javascript-1.5.0"
6176 sources."set-blocking-2.0.0"
8610 sources."set-blocking-2.0.0"
6177 (sources."set-value-2.0.0" // {
8611 (sources."set-value-2.0.0" // {
6178 dependencies = [
8612 dependencies = [
6179 sources."extend-shallow-2.0.1"
8613 sources."extend-shallow-2.0.1"
6180 ];
8614 ];
6181 })
8615 })
6182 sources."setimmediate-1.0.5"
8616 sources."setimmediate-1.0.5"
6183 sources."sha.js-2.4.11"
8617 sources."sha.js-2.4.11"
6184 sources."shebang-command-1.2.0"
8618 sources."shebang-command-1.2.0"
6185 sources."shebang-regex-1.0.0"
8619 sources."shebang-regex-1.0.0"
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"
6192 sources."extend-shallow-2.0.1"
8627 sources."extend-shallow-2.0.1"
6193 (sources."is-accessor-descriptor-0.1.6" // {
8628 (sources."is-accessor-descriptor-0.1.6" // {
6194 dependencies = [
8629 dependencies = [
6195 sources."kind-of-3.2.2"
8630 sources."kind-of-3.2.2"
6196 ];
8631 ];
6197 })
8632 })
6198 (sources."is-data-descriptor-0.1.4" // {
8633 (sources."is-data-descriptor-0.1.4" // {
6199 dependencies = [
8634 dependencies = [
6200 sources."kind-of-3.2.2"
8635 sources."kind-of-3.2.2"
6201 ];
8636 ];
6202 })
8637 })
6203 sources."is-descriptor-0.1.6"
8638 sources."is-descriptor-0.1.6"
6204 sources."kind-of-5.1.0"
8639 sources."kind-of-5.1.0"
6205 ];
8640 ];
6206 })
8641 })
6207 (sources."snapdragon-node-2.1.1" // {
8642 (sources."snapdragon-node-2.1.1" // {
6208 dependencies = [
8643 dependencies = [
6209 sources."define-property-1.0.0"
8644 sources."define-property-1.0.0"
6210 ];
8645 ];
6211 })
8646 })
6212 (sources."snapdragon-util-3.0.1" // {
8647 (sources."snapdragon-util-3.0.1" // {
6213 dependencies = [
8648 dependencies = [
6214 sources."kind-of-3.2.2"
8649 sources."kind-of-3.2.2"
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"
6227 ];
8665 ];
6228 })
8666 })
6229 sources."ssri-5.3.0"
8667 sources."ssri-5.3.0"
6230 sources."stack-trace-0.0.10"
8668 sources."stack-trace-0.0.10"
6231 (sources."static-extend-0.1.2" // {
8669 (sources."static-extend-0.1.2" // {
6232 dependencies = [
8670 dependencies = [
6233 sources."define-property-0.2.5"
8671 sources."define-property-0.2.5"
6234 (sources."is-accessor-descriptor-0.1.6" // {
8672 (sources."is-accessor-descriptor-0.1.6" // {
6235 dependencies = [
8673 dependencies = [
6236 sources."kind-of-3.2.2"
8674 sources."kind-of-3.2.2"
6237 ];
8675 ];
6238 })
8676 })
6239 (sources."is-data-descriptor-0.1.4" // {
8677 (sources."is-data-descriptor-0.1.4" // {
6240 dependencies = [
8678 dependencies = [
6241 sources."kind-of-3.2.2"
8679 sources."kind-of-3.2.2"
6242 ];
8680 ];
6243 })
8681 })
6244 sources."is-descriptor-0.1.6"
8682 sources."is-descriptor-0.1.6"
6245 sources."kind-of-5.1.0"
8683 sources."kind-of-5.1.0"
6246 ];
8684 ];
6247 })
8685 })
6248 sources."sticky-sidebar-3.3.1"
8686 sources."sticky-sidebar-3.3.1"
6249 (sources."stream-browserify-2.0.1" // {
8687 (sources."stream-browserify-2.0.1" // {
6250 dependencies = [
8688 dependencies = [
6251 sources."readable-stream-2.3.6"
8689 sources."readable-stream-2.3.6"
6252 sources."string_decoder-1.1.1"
8690 sources."string_decoder-1.1.1"
6253 ];
8691 ];
6254 })
8692 })
6255 sources."stream-each-1.2.3"
8693 sources."stream-each-1.2.3"
6256 (sources."stream-http-2.8.3" // {
8694 (sources."stream-http-2.8.3" // {
6257 dependencies = [
8695 dependencies = [
6258 sources."readable-stream-2.3.6"
8696 sources."readable-stream-2.3.6"
6259 sources."string_decoder-1.1.1"
8697 sources."string_decoder-1.1.1"
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"
6266 sources."is-fullwidth-code-point-2.0.0"
8705 sources."is-fullwidth-code-point-2.0.0"
6267 sources."strip-ansi-4.0.0"
8706 sources."strip-ansi-4.0.0"
6268 ];
8707 ];
6269 })
8708 })
6270 sources."string_decoder-0.10.31"
8709 sources."string_decoder-0.10.31"
6271 sources."stringstream-0.0.6"
8710 sources."stringstream-0.0.6"
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"
6279 (sources."through2-2.0.3" // {
8727 (sources."through2-2.0.3" // {
6280 dependencies = [
8728 dependencies = [
6281 sources."readable-stream-2.3.6"
8729 sources."readable-stream-2.3.6"
6282 sources."string_decoder-1.1.1"
8730 sources."string_decoder-1.1.1"
6283 ];
8731 ];
6284 })
8732 })
6285 sources."timers-browserify-2.0.10"
8733 sources."timers-browserify-2.0.10"
6286 sources."tiny-emitter-2.0.2"
8734 sources."tiny-emitter-2.0.2"
6287 (sources."tiny-lr-fork-0.0.5" // {
8735 (sources."tiny-lr-fork-0.0.5" // {
6288 dependencies = [
8736 dependencies = [
6289 sources."debug-0.7.4"
8737 sources."debug-0.7.4"
6290 sources."qs-0.5.6"
8738 sources."qs-0.5.6"
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"
6297 ];
8746 ];
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"
6316 ];
8782 ];
6317 })
8783 })
6318 sources."unc-path-regex-0.1.2"
8784 sources."unc-path-regex-0.1.2"
6319 sources."underscore-1.7.0"
8785 sources."underscore-1.7.0"
6320 sources."underscore.string-2.2.1"
8786 sources."underscore.string-2.2.1"
6321 sources."unicode-5.2.0-0.7.5"
8787 sources."unicode-5.2.0-0.7.5"
6322 (sources."union-value-1.0.0" // {
8788 (sources."union-value-1.0.0" // {
6323 dependencies = [
8789 dependencies = [
6324 sources."extend-shallow-2.0.1"
8790 sources."extend-shallow-2.0.1"
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" // {
6331 dependencies = [
8799 dependencies = [
6332 (sources."has-value-0.3.1" // {
8800 (sources."has-value-0.3.1" // {
6333 dependencies = [
8801 dependencies = [
6334 sources."isobject-2.1.0"
8802 sources."isobject-2.1.0"
6335 ];
8803 ];
6336 })
8804 })
6337 sources."has-values-0.1.4"
8805 sources."has-values-0.1.4"
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"
6344 ];
8813 ];
6345 })
8814 })
6346 sources."urix-0.1.0"
8815 sources."urix-0.1.0"
6347 (sources."url-0.11.0" // {
8816 (sources."url-0.11.0" // {
6348 dependencies = [
8817 dependencies = [
6349 sources."punycode-1.3.2"
8818 sources."punycode-1.3.2"
6350 ];
8819 ];
6351 })
8820 })
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"
6373 ];
8839 ];
6374 })
8840 })
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 })
6382 (sources."webpack-cli-3.1.2" // {
8847 (sources."webpack-cli-3.1.2" // {
6383 dependencies = [
8848 dependencies = [
6384 sources."ansi-styles-3.2.1"
8849 sources."ansi-styles-3.2.1"
6385 sources."chalk-2.4.1"
8850 sources."chalk-2.4.1"
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 = [
6406 sources."ansi-regex-2.1.1"
8894 sources."ansi-regex-2.1.1"
6407 sources."string-width-1.0.2"
8895 sources."string-width-1.0.2"
6408 sources."strip-ansi-3.0.1"
8896 sources."strip-ansi-3.0.1"
6409 ];
8897 ];
6410 })
8898 })
6411 sources."wrappy-1.0.2"
8899 sources."wrappy-1.0.2"
6412 sources."xregexp-4.0.0"
8900 sources."xregexp-4.0.0"
6413 sources."xtend-4.0.1"
8901 sources."xtend-4.0.1"
6414 sources."y18n-4.0.0"
8902 sources."y18n-4.0.0"
6415 sources."yallist-2.1.2"
8903 sources."yallist-2.1.2"
6416 (sources."yargs-12.0.2" // {
8904 (sources."yargs-12.0.2" // {
6417 dependencies = [
8905 dependencies = [
6418 sources."find-up-3.0.0"
8906 sources."find-up-3.0.0"
6419 sources."locate-path-3.0.0"
8907 sources."locate-path-3.0.0"
6420 sources."p-limit-2.0.0"
8908 sources."p-limit-2.0.0"
6421 sources."p-locate-3.0.0"
8909 sources."p-locate-3.0.0"
6422 sources."p-try-2.0.0"
8910 sources."p-try-2.0.0"
6423 ];
8911 ];
6424 })
8912 })
6425 sources."yargs-parser-10.1.0"
8913 sources."yargs-parser-10.1.0"
6426 sources."yauzl-2.4.1"
8914 sources."yauzl-2.4.1"
6427 ];
8915 ];
6428 buildInputs = globalBuildInputs;
8916 buildInputs = globalBuildInputs;
6429 meta = {
8917 meta = {
6430 description = "RhodeCode JS packaged";
8918 description = "RhodeCode JS packaged";
6431 license = "SEE LICENSE IN LICENSE.txt";
8919 license = "SEE LICENSE IN LICENSE.txt";
6432 };
8920 };
6433 production = false;
8921 production = false;
6434 bypassCache = true;
8922 bypassCache = true;
6435 };
8923 };
6436 in
8924 in
6437 {
8925 {
6438 tarball = nodeEnv.buildNodeSourceDist args;
8926 tarball = nodeEnv.buildNodeSourceDist args;
6439 package = nodeEnv.buildNodePackage args;
8927 package = nodeEnv.buildNodePackage args;
6440 shell = nodeEnv.buildNodeShell args;
8928 shell = nodeEnv.buildNodeShell args;
6441 } No newline at end of file
8929 }
@@ -1,142 +1,141 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2010-2018 RhodeCode GmbH
3 # Copyright (C) 2010-2018 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21
21
22 import pytest
22 import pytest
23
23
24 import rhodecode
24 import rhodecode
25 from rhodecode.model.db import Repository
25 from rhodecode.model.db import Repository
26 from rhodecode.model.meta import Session
26 from rhodecode.model.meta import Session
27 from rhodecode.model.repo import RepoModel
27 from rhodecode.model.repo import RepoModel
28 from rhodecode.model.repo_group import RepoGroupModel
28 from rhodecode.model.repo_group import RepoGroupModel
29 from rhodecode.model.settings import SettingsModel
29 from rhodecode.model.settings import SettingsModel
30 from rhodecode.tests import TestController
30 from rhodecode.tests import TestController
31 from rhodecode.tests.fixture import Fixture
31 from rhodecode.tests.fixture import Fixture
32 from rhodecode.lib import helpers as h
32 from rhodecode.lib import helpers as h
33
33
34 fixture = Fixture()
34 fixture = Fixture()
35
35
36
36
37 def route_path(name, **kwargs):
37 def route_path(name, **kwargs):
38 return {
38 return {
39 'home': '/',
39 'home': '/',
40 'repo_group_home': '/{repo_group_name}'
40 'repo_group_home': '/{repo_group_name}'
41 }[name].format(**kwargs)
41 }[name].format(**kwargs)
42
42
43
43
44 class TestHomeController(TestController):
44 class TestHomeController(TestController):
45
45
46 def test_index(self):
46 def test_index(self):
47 self.log_user()
47 self.log_user()
48 response = self.app.get(route_path('home'))
48 response = self.app.get(route_path('home'))
49 # if global permission is set
49 # if global permission is set
50 response.mustcontain('Add Repository')
50 response.mustcontain('Add Repository')
51
51
52 # search for objects inside the JavaScript JSON
52 # search for objects inside the JavaScript JSON
53 for repo in Repository.getAll():
53 for repo in Repository.getAll():
54 response.mustcontain('"name_raw": "%s"' % repo.repo_name)
54 response.mustcontain('"name_raw": "%s"' % repo.repo_name)
55
55
56 def test_index_contains_statics_with_ver(self):
56 def test_index_contains_statics_with_ver(self):
57 from rhodecode.lib.base import calculate_version_hash
57 from rhodecode.lib.base import calculate_version_hash
58
58
59 self.log_user()
59 self.log_user()
60 response = self.app.get(route_path('home'))
60 response = self.app.get(route_path('home'))
61
61
62 rhodecode_version_hash = calculate_version_hash(
62 rhodecode_version_hash = calculate_version_hash(
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()
70 response = self.app.get(route_path('home'))
69 response = self.app.get(route_path('home'))
71 tip = backend.repo.get_commit().raw_id
70 tip = backend.repo.get_commit().raw_id
72
71
73 # html in javascript variable:
72 # html in javascript variable:
74 response.mustcontain(r'<i class=\"icon-%s\"' % (backend.alias, ))
73 response.mustcontain(r'<i class=\"icon-%s\"' % (backend.alias, ))
75 response.mustcontain(r'href=\"/%s\"' % (backend.repo_name, ))
74 response.mustcontain(r'href=\"/%s\"' % (backend.repo_name, ))
76
75
77 response.mustcontain("""/%s/changeset/%s""" % (backend.repo_name, tip))
76 response.mustcontain("""/%s/changeset/%s""" % (backend.repo_name, tip))
78 response.mustcontain("""Added a symlink""")
77 response.mustcontain("""Added a symlink""")
79
78
80 def test_index_with_anonymous_access_disabled(self):
79 def test_index_with_anonymous_access_disabled(self):
81 with fixture.anon_access(False):
80 with fixture.anon_access(False):
82 response = self.app.get(route_path('home'), status=302)
81 response = self.app.get(route_path('home'), status=302)
83 assert 'login' in response.location
82 assert 'login' in response.location
84
83
85 def test_index_page_on_groups(self, autologin_user, repo_group):
84 def test_index_page_on_groups(self, autologin_user, repo_group):
86 response = self.app.get(route_path('repo_group_home', repo_group_name='gr1'))
85 response = self.app.get(route_path('repo_group_home', repo_group_name='gr1'))
87 response.mustcontain("gr1/repo_in_group")
86 response.mustcontain("gr1/repo_in_group")
88
87
89 def test_index_page_on_group_with_trailing_slash(
88 def test_index_page_on_group_with_trailing_slash(
90 self, autologin_user, repo_group):
89 self, autologin_user, repo_group):
91 response = self.app.get(route_path('repo_group_home', repo_group_name='gr1') + '/')
90 response = self.app.get(route_path('repo_group_home', repo_group_name='gr1') + '/')
92 response.mustcontain("gr1/repo_in_group")
91 response.mustcontain("gr1/repo_in_group")
93
92
94 @pytest.fixture(scope='class')
93 @pytest.fixture(scope='class')
95 def repo_group(self, request):
94 def repo_group(self, request):
96 gr = fixture.create_repo_group('gr1')
95 gr = fixture.create_repo_group('gr1')
97 fixture.create_repo(name='gr1/repo_in_group', repo_group=gr)
96 fixture.create_repo(name='gr1/repo_in_group', repo_group=gr)
98
97
99 @request.addfinalizer
98 @request.addfinalizer
100 def cleanup():
99 def cleanup():
101 RepoModel().delete('gr1/repo_in_group')
100 RepoModel().delete('gr1/repo_in_group')
102 RepoGroupModel().delete(repo_group='gr1', force_delete=True)
101 RepoGroupModel().delete(repo_group='gr1', force_delete=True)
103 Session().commit()
102 Session().commit()
104
103
105 def test_index_with_name_with_tags(self, user_util, autologin_user):
104 def test_index_with_name_with_tags(self, user_util, autologin_user):
106 user = user_util.create_user()
105 user = user_util.create_user()
107 username = user.username
106 username = user.username
108 user.name = '<img src="/image1" onload="alert(\'Hello, World!\');">'
107 user.name = '<img src="/image1" onload="alert(\'Hello, World!\');">'
109 user.lastname = '#"><img src=x onerror=prompt(document.cookie);>'
108 user.lastname = '#"><img src=x onerror=prompt(document.cookie);>'
110
109
111 Session().add(user)
110 Session().add(user)
112 Session().commit()
111 Session().commit()
113 user_util.create_repo(owner=username)
112 user_util.create_repo(owner=username)
114
113
115 response = self.app.get(route_path('home'))
114 response = self.app.get(route_path('home'))
116 response.mustcontain(h.html_escape(user.first_name))
115 response.mustcontain(h.html_escape(user.first_name))
117 response.mustcontain(h.html_escape(user.last_name))
116 response.mustcontain(h.html_escape(user.last_name))
118
117
119 @pytest.mark.parametrize("name, state", [
118 @pytest.mark.parametrize("name, state", [
120 ('Disabled', False),
119 ('Disabled', False),
121 ('Enabled', True),
120 ('Enabled', True),
122 ])
121 ])
123 def test_index_show_version(self, autologin_user, name, state):
122 def test_index_show_version(self, autologin_user, name, state):
124 version_string = 'RhodeCode Enterprise %s' % rhodecode.__version__
123 version_string = 'RhodeCode Enterprise %s' % rhodecode.__version__
125
124
126 sett = SettingsModel().create_or_update_setting(
125 sett = SettingsModel().create_or_update_setting(
127 'show_version', state, 'bool')
126 'show_version', state, 'bool')
128 Session().add(sett)
127 Session().add(sett)
129 Session().commit()
128 Session().commit()
130 SettingsModel().invalidate_settings_cache()
129 SettingsModel().invalidate_settings_cache()
131
130
132 response = self.app.get(route_path('home'))
131 response = self.app.get(route_path('home'))
133 if state is True:
132 if state is True:
134 response.mustcontain(version_string)
133 response.mustcontain(version_string)
135 if state is False:
134 if state is False:
136 response.mustcontain(no=[version_string])
135 response.mustcontain(no=[version_string])
137
136
138 def test_logout_form_contains_csrf(self, autologin_user, csrf_token):
137 def test_logout_form_contains_csrf(self, autologin_user, csrf_token):
139 response = self.app.get(route_path('home'))
138 response = self.app.get(route_path('home'))
140 assert_response = response.assert_response()
139 assert_response = response.assert_response()
141 element = assert_response.get_element('.logout #csrf_token')
140 element = assert_response.get_element('.logout #csrf_token')
142 assert element.value == csrf_token
141 assert element.value == csrf_token
@@ -1,185 +1,185 b''
1 <link rel="import" href="../../../../../../bower_components/polymer/polymer.html">
1 <link rel="import" href="../../../../../../bower_components/polymer/polymer.html">
2 <link rel="import" href="../channelstream-connection/channelstream-connection.html">
2 <link rel="import" href="../channelstream-connection/channelstream-connection.html">
3 <link rel="import" href="../rhodecode-toast/rhodecode-toast.html">
3 <link rel="import" href="../rhodecode-toast/rhodecode-toast.html">
4 <link rel="import" href="../rhodecode-favicon/rhodecode-favicon.html">
4 <link rel="import" href="../rhodecode-favicon/rhodecode-favicon.html">
5
5
6 <dom-module id="rhodecode-app">
6 <dom-module id="rhodecode-app">
7 <template>
7 <template>
8 <channelstream-connection
8 <channelstream-connection
9 id="channelstream-connection"
9 id="channelstream-connection"
10 on-channelstream-listen-message="receivedMessage"
10 on-channelstream-listen-message="receivedMessage"
11 on-channelstream-connected="handleConnected"
11 on-channelstream-connected="handleConnected"
12 on-channelstream-subscribed="handleSubscribed">
12 on-channelstream-subscribed="handleSubscribed">
13 </channelstream-connection>
13 </channelstream-connection>
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({
21 is: 'rhodecode-app',
21 is: 'rhodecode-app',
22 attached: function () {
22 attached: function () {
23 ccLog.debug('rhodeCodeApp created');
23 ccLog.debug('rhodeCodeApp created');
24 $.Topic('/notifications').subscribe(this.handleNotifications.bind(this));
24 $.Topic('/notifications').subscribe(this.handleNotifications.bind(this));
25 $.Topic('/favicon/update').subscribe(this.faviconUpdate.bind(this));
25 $.Topic('/favicon/update').subscribe(this.faviconUpdate.bind(this));
26 $.Topic('/connection_controller/subscribe').subscribe(
26 $.Topic('/connection_controller/subscribe').subscribe(
27 this.subscribeToChannelTopic.bind(this));
27 this.subscribeToChannelTopic.bind(this));
28 // this event can be used to coordinate plugins to do their
28 // this event can be used to coordinate plugins to do their
29 // initialization before channelstream is kicked off
29 // initialization before channelstream is kicked off
30 $.Topic('/__MAIN_APP__').publish({});
30 $.Topic('/__MAIN_APP__').publish({});
31
31
32 for (var i = 0; i < alertMessagePayloads.length; i++) {
32 for (var i = 0; i < alertMessagePayloads.length; i++) {
33 $.Topic('/notifications').publish(alertMessagePayloads[i]);
33 $.Topic('/notifications').publish(alertMessagePayloads[i]);
34 }
34 }
35 this.initPlugins();
35 this.initPlugins();
36 // after rest of application loads and topics get fired, launch connection
36 // after rest of application loads and topics get fired, launch connection
37 $(document).ready(function () {
37 $(document).ready(function () {
38 this.kickoffChannelstreamPlugin();
38 this.kickoffChannelstreamPlugin();
39 }.bind(this));
39 }.bind(this));
40 },
40 },
41
41
42 initPlugins: function(){
42 initPlugins: function(){
43 for (var i = 0; i < window.APPLICATION_PLUGINS.length; i++) {
43 for (var i = 0; i < window.APPLICATION_PLUGINS.length; i++) {
44 var pluginDef = window.APPLICATION_PLUGINS[i];
44 var pluginDef = window.APPLICATION_PLUGINS[i];
45 if (pluginDef.component){
45 if (pluginDef.component){
46 var pluginElem = document.createElement(pluginDef.component);
46 var pluginElem = document.createElement(pluginDef.component);
47 this.shadowRoot.appendChild(pluginElem);
47 this.shadowRoot.appendChild(pluginElem);
48 if (typeof pluginElem.init !== 'undefined'){
48 if (typeof pluginElem.init !== 'undefined'){
49 pluginElem.init();
49 pluginElem.init();
50 }
50 }
51 }
51 }
52 }
52 }
53 },
53 },
54 /** proxy to channelstream connection */
54 /** proxy to channelstream connection */
55 getChannelStreamConnection: function () {
55 getChannelStreamConnection: function () {
56 return this.$['channelstream-connection'];
56 return this.$['channelstream-connection'];
57 },
57 },
58
58
59 handleNotifications: function (data) {
59 handleNotifications: function (data) {
60 var elem = document.getElementById('notifications');
60 var elem = document.getElementById('notifications');
61 if(elem){
61 if(elem){
62 elem.handleNotification(data);
62 elem.handleNotification(data);
63 }
63 }
64
64
65 },
65 },
66
66
67 faviconUpdate: function (data) {
67 faviconUpdate: function (data) {
68 this.shadowRoot.querySelector('rhodecode-favicon').counter = data.count;
68 this.shadowRoot.querySelector('rhodecode-favicon').counter = data.count;
69 },
69 },
70
70
71 /** opens connection to ws server */
71 /** opens connection to ws server */
72 kickoffChannelstreamPlugin: function (data) {
72 kickoffChannelstreamPlugin: function (data) {
73 ccLog.debug('kickoffChannelstreamPlugin');
73 ccLog.debug('kickoffChannelstreamPlugin');
74 var channels = ['broadcast'];
74 var channels = ['broadcast'];
75 var addChannels = this.checkViewChannels();
75 var addChannels = this.checkViewChannels();
76 for (var i = 0; i < addChannels.length; i++) {
76 for (var i = 0; i < addChannels.length; i++) {
77 channels.push(addChannels[i]);
77 channels.push(addChannels[i]);
78 }
78 }
79 if (window.CHANNELSTREAM_SETTINGS && CHANNELSTREAM_SETTINGS.enabled){
79 if (window.CHANNELSTREAM_SETTINGS && CHANNELSTREAM_SETTINGS.enabled){
80 var channelstreamConnection = this.getChannelStreamConnection();
80 var channelstreamConnection = this.getChannelStreamConnection();
81 channelstreamConnection.connectUrl = CHANNELSTREAM_URLS.connect;
81 channelstreamConnection.connectUrl = CHANNELSTREAM_URLS.connect;
82 channelstreamConnection.subscribeUrl = CHANNELSTREAM_URLS.subscribe;
82 channelstreamConnection.subscribeUrl = CHANNELSTREAM_URLS.subscribe;
83 channelstreamConnection.websocketUrl = CHANNELSTREAM_URLS.ws + '/ws';
83 channelstreamConnection.websocketUrl = CHANNELSTREAM_URLS.ws + '/ws';
84 channelstreamConnection.longPollUrl = CHANNELSTREAM_URLS.longpoll + '/listen';
84 channelstreamConnection.longPollUrl = CHANNELSTREAM_URLS.longpoll + '/listen';
85 // some channels might already be registered by topic
85 // some channels might already be registered by topic
86 for (var i = 0; i < channels.length; i++) {
86 for (var i = 0; i < channels.length; i++) {
87 channelstreamConnection.push('channels', channels[i]);
87 channelstreamConnection.push('channels', channels[i]);
88 }
88 }
89 // append any additional channels registered in other plugins
89 // append any additional channels registered in other plugins
90 $.Topic('/connection_controller/subscribe').processPrepared();
90 $.Topic('/connection_controller/subscribe').processPrepared();
91 channelstreamConnection.connect();
91 channelstreamConnection.connect();
92 }
92 }
93 },
93 },
94
94
95 checkViewChannels: function () {
95 checkViewChannels: function () {
96 // subscribe to different channels data is sent.
96 // subscribe to different channels data is sent.
97
97
98 var channels = [];
98 var channels = [];
99 // subscribe to PR repo channel for PR's'
99 // subscribe to PR repo channel for PR's'
100 if (templateContext.pull_request_data.pull_request_id) {
100 if (templateContext.pull_request_data.pull_request_id) {
101 var channelName = '/repo$' + templateContext.repo_name + '$/pr/' +
101 var channelName = '/repo$' + templateContext.repo_name + '$/pr/' +
102 String(templateContext.pull_request_data.pull_request_id);
102 String(templateContext.pull_request_data.pull_request_id);
103 channels.push(channelName);
103 channels.push(channelName);
104 }
104 }
105
105
106 if (templateContext.commit_data.commit_id) {
106 if (templateContext.commit_data.commit_id) {
107 var channelName = '/repo$' + templateContext.repo_name + '$/commit/' +
107 var channelName = '/repo$' + templateContext.repo_name + '$/commit/' +
108 String(templateContext.commit_data.commit_id);
108 String(templateContext.commit_data.commit_id);
109 channels.push(channelName);
109 channels.push(channelName);
110 }
110 }
111
111
112 return channels;
112 return channels;
113 },
113 },
114
114
115 /** subscribes users from channels in channelstream */
115 /** subscribes users from channels in channelstream */
116 subscribeToChannelTopic: function (channels) {
116 subscribeToChannelTopic: function (channels) {
117 var channelstreamConnection = this.getChannelStreamConnection();
117 var channelstreamConnection = this.getChannelStreamConnection();
118 var toSubscribe = channelstreamConnection.calculateSubscribe(channels);
118 var toSubscribe = channelstreamConnection.calculateSubscribe(channels);
119 ccLog.debug('subscribeToChannelTopic', toSubscribe);
119 ccLog.debug('subscribeToChannelTopic', toSubscribe);
120 if (toSubscribe.length > 0) {
120 if (toSubscribe.length > 0) {
121 // if we are connected then subscribe
121 // if we are connected then subscribe
122 if (channelstreamConnection.connected) {
122 if (channelstreamConnection.connected) {
123 channelstreamConnection.subscribe(toSubscribe);
123 channelstreamConnection.subscribe(toSubscribe);
124 }
124 }
125 // not connected? just push channels onto the stack
125 // not connected? just push channels onto the stack
126 else {
126 else {
127 for (var i = 0; i < toSubscribe.length; i++) {
127 for (var i = 0; i < toSubscribe.length; i++) {
128 channelstreamConnection.push('channels', toSubscribe[i]);
128 channelstreamConnection.push('channels', toSubscribe[i]);
129 }
129 }
130 }
130 }
131 }
131 }
132 },
132 },
133
133
134 /** publish received messages into correct topic */
134 /** publish received messages into correct topic */
135 receivedMessage: function (event) {
135 receivedMessage: function (event) {
136 for (var i = 0; i < event.detail.length; i++) {
136 for (var i = 0; i < event.detail.length; i++) {
137 var message = event.detail[i];
137 var message = event.detail[i];
138 if (message.message.topic) {
138 if (message.message.topic) {
139 ccLog.debug('publishing', message.message.topic);
139 ccLog.debug('publishing', message.message.topic);
140 $.Topic(message.message.topic).publish(message);
140 $.Topic(message.message.topic).publish(message);
141 }
141 }
142 else if (message.type === 'presence'){
142 else if (message.type === 'presence'){
143 $.Topic('/connection_controller/presence').publish(message);
143 $.Topic('/connection_controller/presence').publish(message);
144 }
144 }
145 else {
145 else {
146 ccLog.warn('unhandled message', message);
146 ccLog.warn('unhandled message', message);
147 }
147 }
148 }
148 }
149 },
149 },
150
150
151 handleConnected: function (event) {
151 handleConnected: function (event) {
152 var channelstreamConnection = this.getChannelStreamConnection();
152 var channelstreamConnection = this.getChannelStreamConnection();
153 channelstreamConnection.set('channelsState',
153 channelstreamConnection.set('channelsState',
154 event.detail.channels_info);
154 event.detail.channels_info);
155 channelstreamConnection.set('userState', event.detail.state);
155 channelstreamConnection.set('userState', event.detail.state);
156 channelstreamConnection.set('channels', event.detail.channels);
156 channelstreamConnection.set('channels', event.detail.channels);
157 this.propagageChannelsState();
157 this.propagageChannelsState();
158 },
158 },
159 handleSubscribed: function (event) {
159 handleSubscribed: function (event) {
160 var channelstreamConnection = this.getChannelStreamConnection();
160 var channelstreamConnection = this.getChannelStreamConnection();
161 var channelInfo = event.detail.channels_info;
161 var channelInfo = event.detail.channels_info;
162 var channelKeys = Object.keys(event.detail.channels_info);
162 var channelKeys = Object.keys(event.detail.channels_info);
163 for (var i = 0; i < channelKeys.length; i++) {
163 for (var i = 0; i < channelKeys.length; i++) {
164 var key = channelKeys[i];
164 var key = channelKeys[i];
165 channelstreamConnection.set(['channelsState', key], channelInfo[key]);
165 channelstreamConnection.set(['channelsState', key], channelInfo[key]);
166 }
166 }
167 channelstreamConnection.set('channels', event.detail.channels);
167 channelstreamConnection.set('channels', event.detail.channels);
168 this.propagageChannelsState();
168 this.propagageChannelsState();
169 },
169 },
170 /** propagates channel states on topics */
170 /** propagates channel states on topics */
171 propagageChannelsState: function (event) {
171 propagageChannelsState: function (event) {
172 var channelstreamConnection = this.getChannelStreamConnection();
172 var channelstreamConnection = this.getChannelStreamConnection();
173 var channel_data = channelstreamConnection.channelsState;
173 var channel_data = channelstreamConnection.channelsState;
174 var channels = channelstreamConnection.channels;
174 var channels = channelstreamConnection.channels;
175 for (var i = 0; i < channels.length; i++) {
175 for (var i = 0; i < channels.length; i++) {
176 var key = channels[i];
176 var key = channels[i];
177 $.Topic('/connection_controller/channel_update').publish(
177 $.Topic('/connection_controller/channel_update').publish(
178 {channel: key, state: channel_data[key]}
178 {channel: key, state: channel_data[key]}
179 );
179 );
180 }
180 }
181 }
181 }
182 });
182 });
183
183
184 </script>
184 </script>
185 </dom-module>
185 </dom-module>
@@ -1,123 +1,200 b''
1 <link rel="import" href="../../../../../../bower_components/paper-button/paper-button.html">
1 <link rel="import" href="../../../../../../bower_components/paper-button/paper-button.html">
2 <link rel="import" href="../../../../../../bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
2 <link rel="import" href="../../../../../../bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html">
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]]">
11 <div class$="alert alert-[[item.level]]">
88 <div class$="alert alert-[[item.level]]">
12 <div on-tap="dismissNotification" class="toast-close" index-pos="[[index]]">
89 <div on-tap="dismissNotification" class="toast-close" index-pos="[[index]]">
13 <span>[[_gettext('Close')]]</span>
90 <span>[[_gettext('Close')]]</span>
14 </div>
91 </div>
15 <rhodecode-unsafe-html text="[[item.message]]"></rhodecode-unsafe-html>
92 <rhodecode-unsafe-html text="[[item.message]]"></rhodecode-unsafe-html>
16 </div>
93 </div>
17 </template>
94 </template>
18 </div>
95 </div>
19 </template>
96 </template>
20 </template>
97 </template>
21
98
22 <script>
99 <script>
23 Polymer({
100 Polymer({
24 is: 'rhodecode-toast',
101 is: 'rhodecode-toast',
25 properties: {
102 properties: {
26 toasts: {
103 toasts: {
27 type: Array,
104 type: Array,
28 value: function(){
105 value: function(){
29 return []
106 return []
30 }
107 }
31 },
108 },
32 isFixed: {
109 isFixed: {
33 type: Boolean,
110 type: Boolean,
34 value: false
111 value: false
35 },
112 },
36 hasToasts: {
113 hasToasts: {
37 type: Boolean,
114 type: Boolean,
38 computed: '_computeHasToasts(toasts.*)'
115 computed: '_computeHasToasts(toasts.*)'
39 },
116 },
40 keyEventTarget: {
117 keyEventTarget: {
41 type: Object,
118 type: Object,
42 value: function() {
119 value: function() {
43 return document.body;
120 return document.body;
44 }
121 }
45 }
122 }
46 },
123 },
47 behaviors: [
124 behaviors: [
48 Polymer.IronA11yKeysBehavior
125 Polymer.IronA11yKeysBehavior
49 ],
126 ],
50 observers: [
127 observers: [
51 '_changedToasts(toasts.splices)'
128 '_changedToasts(toasts.splices)'
52 ],
129 ],
53
130
54 keyBindings: {
131 keyBindings: {
55 'esc:keyup': '_hideOnEsc'
132 'esc:keyup': '_hideOnEsc'
56 },
133 },
57
134
58 _hideOnEsc: function (event) {
135 _hideOnEsc: function (event) {
59 return this.dismissNotifications();
136 return this.dismissNotifications();
60 },
137 },
61
138
62 _computeHasToasts: function(){
139 _computeHasToasts: function(){
63 return this.toasts.length > 0;
140 return this.toasts.length > 0;
64 },
141 },
65
142
66 _debouncedCalc: function(){
143 _debouncedCalc: function(){
67 // calculate once in a while
144 // calculate once in a while
68 this.debounce('debouncedCalc', this.toastInWindow, 25);
145 this.debounce('debouncedCalc', this.toastInWindow, 25);
69 },
146 },
70
147
71 conditionalClass: function(){
148 conditionalClass: function(){
72 return this.isFixed ? 'fixed': '';
149 return this.isFixed ? 'fixed': '';
73 },
150 },
74
151
75 toastInWindow: function() {
152 toastInWindow: function() {
76 if (!this._headerNode){
153 if (!this._headerNode){
77 return true
154 return true
78 }
155 }
79 var headerHeight = this._headerNode.offsetHeight;
156 var headerHeight = this._headerNode.offsetHeight;
80 var scrollPosition = window.scrollY;
157 var scrollPosition = window.scrollY;
81
158
82 if (this.isFixed){
159 if (this.isFixed){
83 this.isFixed = 1 <= scrollPosition;
160 this.isFixed = 1 <= scrollPosition;
84 }
161 }
85 else{
162 else{
86 this.isFixed = headerHeight <= scrollPosition;
163 this.isFixed = headerHeight <= scrollPosition;
87 }
164 }
88 },
165 },
89
166
90 attached: function(){
167 attached: function(){
91 this._headerNode = document.querySelector('.header', document);
168 this._headerNode = document.querySelector('.header', document);
92 this.listen(window,'scroll', '_debouncedCalc');
169 this.listen(window,'scroll', '_debouncedCalc');
93 this.listen(window,'resize', '_debouncedCalc');
170 this.listen(window,'resize', '_debouncedCalc');
94 this._debouncedCalc();
171 this._debouncedCalc();
95 },
172 },
96 _changedToasts: function(newValue, oldValue){
173 _changedToasts: function(newValue, oldValue){
97 $.Topic('/favicon/update').publish({count: this.toasts.length});
174 $.Topic('/favicon/update').publish({count: this.toasts.length});
98 },
175 },
99 dismissNotification: function(e) {
176 dismissNotification: function(e) {
100 $.Topic('/favicon/update').publish({count: this.toasts.length-1});
177 $.Topic('/favicon/update').publish({count: this.toasts.length-1});
101 var idx = e.target.parentNode.indexPos
178 var idx = e.target.parentNode.indexPos
102 this.splice('toasts', idx, 1);
179 this.splice('toasts', idx, 1);
103
180
104 },
181 },
105 dismissNotifications: function(){
182 dismissNotifications: function(){
106 $.Topic('/favicon/update').publish({count: 0});
183 $.Topic('/favicon/update').publish({count: 0});
107 this.splice('toasts', 0);
184 this.splice('toasts', 0);
108 },
185 },
109 handleNotification: function(data){
186 handleNotification: function(data){
110 if (!templateContext.rhodecode_user.notification_status && !data.message.force) {
187 if (!templateContext.rhodecode_user.notification_status && !data.message.force) {
111 // do not act if notifications are disabled
188 // do not act if notifications are disabled
112 return
189 return
113 }
190 }
114 this.push('toasts',{
191 this.push('toasts',{
115 level: data.message.level,
192 level: data.message.level,
116 message: data.message.message
193 message: data.message.message
117 });
194 });
118 },
195 },
119 _gettext: _gettext
196 _gettext: _gettext
120 });
197 });
121
198
122 </script>
199 </script>
123 </dom-module>
200 </dom-module>
@@ -1,37 +1,48 b''
1 <link rel="import" href="../../../../../../bower_components/paper-toggle-button/paper-toggle-button.html">
1 <link rel="import" href="../../../../../../bower_components/paper-toggle-button/paper-toggle-button.html">
2 <link rel="import" href="../../../../../../bower_components/paper-spinner/paper-spinner.html">
2 <link rel="import" href="../../../../../../bower_components/paper-spinner/paper-spinner.html">
3 <link rel="import" href="../../../../../../bower_components/paper-tooltip/paper-tooltip.html">
3 <link rel="import" href="../../../../../../bower_components/paper-tooltip/paper-tooltip.html">
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">
12 <paper-toggle-button checked={{checked}}>[[labelStatus(checked)]]</paper-toggle-button>
23 <paper-toggle-button checked={{checked}}>[[labelStatus(checked)]]</paper-toggle-button>
13 <paper-tooltip>[[tooltipText]]</paper-tooltip>
24 <paper-tooltip>[[tooltipText]]</paper-tooltip>
14 <template is="dom-if" if="[[shouldShow(noSpinner)]]">
25 <template is="dom-if" if="[[shouldShow(noSpinner)]]">
15 <paper-spinner active=[[active]]></paper-spinner>
26 <paper-spinner active=[[active]]></paper-spinner>
16 </template>
27 </template>
17 </div>
28 </div>
18 </template>
29 </template>
19
30
20 <script>
31 <script>
21 Polymer({
32 Polymer({
22 is: 'rhodecode-toggle',
33 is: 'rhodecode-toggle',
23 properties: {
34 properties: {
24 noSpinner: { type: Boolean, value: false, reflectToAttribute:true},
35 noSpinner: { type: Boolean, value: false, reflectToAttribute:true},
25 tooltipText: { type: String, value: "Click to toggle", reflectToAttribute:true},
36 tooltipText: { type: String, value: "Click to toggle", reflectToAttribute:true},
26 checked: { type: Boolean, value: false, reflectToAttribute:true},
37 checked: { type: Boolean, value: false, reflectToAttribute:true},
27 active: { type: Boolean, value: false, reflectToAttribute:true, notify:true}
38 active: { type: Boolean, value: false, reflectToAttribute:true, notify:true}
28 },
39 },
29 shouldShow: function(){
40 shouldShow: function(){
30 return !this.noSpinner
41 return !this.noSpinner
31 },
42 },
32 labelStatus: function(isActive){
43 labelStatus: function(isActive){
33 return this.checked? 'Enabled' : "Disabled"
44 return this.checked? 'Enabled' : "Disabled"
34 }
45 }
35 });
46 });
36 </script>
47 </script>
37 </dom-module>
48 </dom-module>
@@ -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>
@@ -1,162 +1,161 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html>
2 <!DOCTYPE html>
3
3
4 <%
4 <%
5 c.template_context['repo_name'] = getattr(c, 'repo_name', '')
5 c.template_context['repo_name'] = getattr(c, 'repo_name', '')
6 go_import_header = ''
6 go_import_header = ''
7 if hasattr(c, 'rhodecode_db_repo'):
7 if hasattr(c, 'rhodecode_db_repo'):
8 c.template_context['repo_type'] = c.rhodecode_db_repo.repo_type
8 c.template_context['repo_type'] = c.rhodecode_db_repo.repo_type
9 c.template_context['repo_landing_commit'] = c.rhodecode_db_repo.landing_rev[1]
9 c.template_context['repo_landing_commit'] = c.rhodecode_db_repo.landing_rev[1]
10
10
11 if getattr(c, 'repo_group', None):
11 if getattr(c, 'repo_group', None):
12 c.template_context['repo_group_id'] = c.repo_group.group_id
12 c.template_context['repo_group_id'] = c.repo_group.group_id
13
13
14 if getattr(c, 'rhodecode_user', None) and c.rhodecode_user.user_id:
14 if getattr(c, 'rhodecode_user', None) and c.rhodecode_user.user_id:
15 c.template_context['rhodecode_user']['username'] = c.rhodecode_user.username
15 c.template_context['rhodecode_user']['username'] = c.rhodecode_user.username
16 c.template_context['rhodecode_user']['email'] = c.rhodecode_user.email
16 c.template_context['rhodecode_user']['email'] = c.rhodecode_user.email
17 c.template_context['rhodecode_user']['notification_status'] = c.rhodecode_user.get_instance().user_data.get('notification_status', True)
17 c.template_context['rhodecode_user']['notification_status'] = c.rhodecode_user.get_instance().user_data.get('notification_status', True)
18 c.template_context['rhodecode_user']['first_name'] = c.rhodecode_user.first_name
18 c.template_context['rhodecode_user']['first_name'] = c.rhodecode_user.first_name
19 c.template_context['rhodecode_user']['last_name'] = c.rhodecode_user.last_name
19 c.template_context['rhodecode_user']['last_name'] = c.rhodecode_user.last_name
20
20
21 c.template_context['visual']['default_renderer'] = h.get_visual_attr(c, 'default_renderer')
21 c.template_context['visual']['default_renderer'] = h.get_visual_attr(c, 'default_renderer')
22 c.template_context['default_user'] = {
22 c.template_context['default_user'] = {
23 'username': h.DEFAULT_USER,
23 'username': h.DEFAULT_USER,
24 'user_id': 1
24 'user_id': 1
25 }
25 }
26
26
27 %>
27 %>
28 <html xmlns="http://www.w3.org/1999/xhtml">
28 <html xmlns="http://www.w3.org/1999/xhtml">
29 <head>
29 <head>
30 <script src="${h.asset('js/vendors/webcomponentsjs/webcomponents-lite.js', ver=c.rhodecode_version_hash)}"></script>
30 <script src="${h.asset('js/vendors/webcomponentsjs/webcomponents-lite.js', ver=c.rhodecode_version_hash)}"></script>
31 <title>${self.title()}</title>
31 <title>${self.title()}</title>
32 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
32 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
33
33
34 ${h.go_import_header(request, getattr(c, 'rhodecode_db_repo', None))}
34 ${h.go_import_header(request, getattr(c, 'rhodecode_db_repo', None))}
35
35
36 % if 'safari' in (request.user_agent or '').lower():
36 % if 'safari' in (request.user_agent or '').lower():
37 <meta name="referrer" content="origin">
37 <meta name="referrer" content="origin">
38 % else:
38 % else:
39 <meta name="referrer" content="origin-when-cross-origin">
39 <meta name="referrer" content="origin-when-cross-origin">
40 % endif
40 % endif
41
41
42 <%def name="robots()">
42 <%def name="robots()">
43 <meta name="robots" content="index, nofollow"/>
43 <meta name="robots" content="index, nofollow"/>
44 </%def>
44 </%def>
45 ${self.robots()}
45 ${self.robots()}
46 <link rel="icon" href="${h.asset('images/favicon.ico', ver=c.rhodecode_version_hash)}" sizes="16x16 32x32" type="image/png" />
46 <link rel="icon" href="${h.asset('images/favicon.ico', ver=c.rhodecode_version_hash)}" sizes="16x16 32x32" type="image/png" />
47
47
48 ## CSS definitions
48 ## CSS definitions
49 <%def name="css()">
49 <%def name="css()">
50 <link rel="stylesheet" type="text/css" href="${h.asset('css/style.css', ver=c.rhodecode_version_hash)}" media="screen"/>
50 <link rel="stylesheet" type="text/css" href="${h.asset('css/style.css', ver=c.rhodecode_version_hash)}" media="screen"/>
51 <!--[if lt IE 9]>
51 <!--[if lt IE 9]>
52 <link rel="stylesheet" type="text/css" href="${h.asset('css/ie.css', ver=c.rhodecode_version_hash)}" media="screen"/>
52 <link rel="stylesheet" type="text/css" href="${h.asset('css/ie.css', ver=c.rhodecode_version_hash)}" media="screen"/>
53 <![endif]-->
53 <![endif]-->
54 ## EXTRA FOR CSS
54 ## EXTRA FOR CSS
55 ${self.css_extra()}
55 ${self.css_extra()}
56 </%def>
56 </%def>
57 ## CSS EXTRA - optionally inject some extra CSS stuff needed for specific websites
57 ## CSS EXTRA - optionally inject some extra CSS stuff needed for specific websites
58 <%def name="css_extra()">
58 <%def name="css_extra()">
59 </%def>
59 </%def>
60
60
61 ${self.css()}
61 ${self.css()}
62
62
63 ## JAVASCRIPT
63 ## JAVASCRIPT
64 <%def name="js()">
64 <%def name="js()">
65
65
66 <script src="${h.asset('js/rhodecode/i18n/%s.js' % c.language, ver=c.rhodecode_version_hash)}"></script>
66 <script src="${h.asset('js/rhodecode/i18n/%s.js' % c.language, ver=c.rhodecode_version_hash)}"></script>
67 <script type="text/javascript">
67 <script type="text/javascript">
68 // register templateContext to pass template variables to JS
68 // register templateContext to pass template variables to JS
69 var templateContext = ${h.json.dumps(c.template_context)|n};
69 var templateContext = ${h.json.dumps(c.template_context)|n};
70
70
71 var APPLICATION_URL = "${h.route_path('home').rstrip('/')}";
71 var APPLICATION_URL = "${h.route_path('home').rstrip('/')}";
72 var APPLICATION_PLUGINS = [];
72 var APPLICATION_PLUGINS = [];
73 var ASSET_URL = "${h.asset('')}";
73 var ASSET_URL = "${h.asset('')}";
74 var DEFAULT_RENDERER = "${h.get_visual_attr(c, 'default_renderer')}";
74 var DEFAULT_RENDERER = "${h.get_visual_attr(c, 'default_renderer')}";
75 var CSRF_TOKEN = "${getattr(c, 'csrf_token', '')}";
75 var CSRF_TOKEN = "${getattr(c, 'csrf_token', '')}";
76
76
77 var APPENLIGHT = {
77 var APPENLIGHT = {
78 enabled: ${'true' if getattr(c, 'appenlight_enabled', False) else 'false'},
78 enabled: ${'true' if getattr(c, 'appenlight_enabled', False) else 'false'},
79 key: '${getattr(c, "appenlight_api_public_key", "")}',
79 key: '${getattr(c, "appenlight_api_public_key", "")}',
80 % if getattr(c, 'appenlight_server_url', None):
80 % if getattr(c, 'appenlight_server_url', None):
81 serverUrl: '${getattr(c, "appenlight_server_url", "")}',
81 serverUrl: '${getattr(c, "appenlight_server_url", "")}',
82 % endif
82 % endif
83 requestInfo: {
83 requestInfo: {
84 % if getattr(c, 'rhodecode_user', None):
84 % if getattr(c, 'rhodecode_user', None):
85 ip: '${c.rhodecode_user.ip_addr}',
85 ip: '${c.rhodecode_user.ip_addr}',
86 username: '${c.rhodecode_user.username}'
86 username: '${c.rhodecode_user.username}'
87 % endif
87 % endif
88 },
88 },
89 tags: {
89 tags: {
90 rhodecode_version: '${c.rhodecode_version}',
90 rhodecode_version: '${c.rhodecode_version}',
91 rhodecode_edition: '${c.rhodecode_edition}'
91 rhodecode_edition: '${c.rhodecode_edition}'
92 }
92 }
93 };
93 };
94
94
95 </script>
95 </script>
96 <%include file="/base/plugins_base.mako"/>
96 <%include file="/base/plugins_base.mako"/>
97 <!--[if lt IE 9]>
97 <!--[if lt IE 9]>
98 <script language="javascript" type="text/javascript" src="${h.asset('js/src/excanvas.min.js')}"></script>
98 <script language="javascript" type="text/javascript" src="${h.asset('js/src/excanvas.min.js')}"></script>
99 <![endif]-->
99 <![endif]-->
100 <script language="javascript" type="text/javascript" src="${h.asset('js/rhodecode/routes.js', ver=c.rhodecode_version_hash)}"></script>
100 <script language="javascript" type="text/javascript" src="${h.asset('js/rhodecode/routes.js', ver=c.rhodecode_version_hash)}"></script>
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
108 ## JAVASCRIPT EXTRA - optionally inject some extra JS for specificed templates
107 ## JAVASCRIPT EXTRA - optionally inject some extra JS for specificed templates
109 ${self.js_extra()}
108 ${self.js_extra()}
110
109
111 <script type="text/javascript">
110 <script type="text/javascript">
112 Rhodecode = (function() {
111 Rhodecode = (function() {
113 function _Rhodecode() {
112 function _Rhodecode() {
114 this.comments = new CommentsController();
113 this.comments = new CommentsController();
115 }
114 }
116 return new _Rhodecode();
115 return new _Rhodecode();
117 })();
116 })();
118
117
119 $(document).ready(function(){
118 $(document).ready(function(){
120 show_more_event();
119 show_more_event();
121 timeagoActivate();
120 timeagoActivate();
122 clipboardActivate();
121 clipboardActivate();
123 })
122 })
124 </script>
123 </script>
125
124
126 </%def>
125 </%def>
127
126
128 ## JAVASCRIPT EXTRA - optionally inject some extra JS for specificed templates
127 ## JAVASCRIPT EXTRA - optionally inject some extra JS for specificed templates
129 <%def name="js_extra()"></%def>
128 <%def name="js_extra()"></%def>
130 ${self.js()}
129 ${self.js()}
131
130
132 <%def name="head_extra()"></%def>
131 <%def name="head_extra()"></%def>
133 ${self.head_extra()}
132 ${self.head_extra()}
134 ## extra stuff
133 ## extra stuff
135 %if c.pre_code:
134 %if c.pre_code:
136 ${c.pre_code|n}
135 ${c.pre_code|n}
137 %endif
136 %endif
138 </head>
137 </head>
139 <body id="body">
138 <body id="body">
140 <noscript>
139 <noscript>
141 <div class="noscript-error">
140 <div class="noscript-error">
142 ${_('Please enable JavaScript to use RhodeCode Enterprise')}
141 ${_('Please enable JavaScript to use RhodeCode Enterprise')}
143 </div>
142 </div>
144 </noscript>
143 </noscript>
145 ## IE hacks
144 ## IE hacks
146 <!--[if IE 7]>
145 <!--[if IE 7]>
147 <script>$(document.body).addClass('ie7')</script>
146 <script>$(document.body).addClass('ie7')</script>
148 <![endif]-->
147 <![endif]-->
149 <!--[if IE 8]>
148 <!--[if IE 8]>
150 <script>$(document.body).addClass('ie8')</script>
149 <script>$(document.body).addClass('ie8')</script>
151 <![endif]-->
150 <![endif]-->
152 <!--[if IE 9]>
151 <!--[if IE 9]>
153 <script>$(document.body).addClass('ie9')</script>
152 <script>$(document.body).addClass('ie9')</script>
154 <![endif]-->
153 <![endif]-->
155
154
156 ${next.body()}
155 ${next.body()}
157 %if c.post_code:
156 %if c.post_code:
158 ${c.post_code|n}
157 ${c.post_code|n}
159 %endif
158 %endif
160 <rhodecode-app></rhodecode-app>
159 <rhodecode-app></rhodecode-app>
161 </body>
160 </body>
162 </html>
161 </html>
@@ -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