diff --git a/awx/ui/Gruntfile.js b/awx/ui/Gruntfile.js
index 0967db901f..f688925708 100644
--- a/awx/ui/Gruntfile.js
+++ b/awx/ui/Gruntfile.js
@@ -17,38 +17,4 @@ module.exports = function(grunt) {
grunt.initConfig(configs);
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-angular-gettext');
-
- // writes environment variables for development. current manages:
- // browser-sync + websocket proxy
-
- grunt.registerTask('sync', [
- 'browserSync:http',
- 'concurrent:watch'
- ]);
-
- grunt.registerTask('dev', [
- 'clean:tmp',
- 'clean:static',
- 'concurrent:dev',
- 'concat:css',
- 'webpack:dev',
- 'sync'
- ]);
-
- grunt.registerTask('devNoSync', [
- 'clean:tmp',
- 'clean:static',
- 'concurrent:devNoSync',
- 'concat:css'
- ]);
-
- grunt.registerTask('release', [
- 'clean:tmp',
- 'clean:static',
- 'concurrent:prod',
- 'webpack:prod',
- 'concat:css',
- 'cssmin:vendor',
- 'cssmin:source'
- ]);
};
diff --git a/awx/ui/build/webpack.base.js b/awx/ui/build/webpack.base.js
new file mode 100644
index 0000000000..e56cd0810d
--- /dev/null
+++ b/awx/ui/build/webpack.base.js
@@ -0,0 +1,198 @@
+const path = require('path');
+
+const webpack = require('webpack');
+const CleanWebpackPlugin = require('clean-webpack-plugin');
+const CopyWebpackPlugin = require('copy-webpack-plugin');
+const ExtractTextPlugin = require('extract-text-webpack-plugin');
+const HtmlWebpackPlugin = require('html-webpack-plugin');
+
+const CLIENT_PATH = path.resolve(__dirname, '../client');
+const LIB_PATH = path.join(CLIENT_PATH, 'lib');
+const UI_PATH = path.resolve(__dirname, '..');
+
+const ASSETS_PATH = path.join(CLIENT_PATH, 'assets');
+const COMPONENTS_PATH = path.join(LIB_PATH, 'components');
+const COVERAGE_PATH = path.join(UI_PATH, 'coverage');
+const FEATURES_PATH = path.join(CLIENT_PATH, 'features');
+const LANGUAGES_PATH = path.join(CLIENT_PATH, 'languages');
+const MODELS_PATH = path.join(LIB_PATH, 'models');
+const NODE_MODULES_PATH = path.join(UI_PATH, 'node_modules');
+const SERVICES_PATH = path.join(LIB_PATH, 'services');
+const SOURCE_PATH = path.join(CLIENT_PATH, 'src');
+const STATIC_PATH = path.join(UI_PATH, 'static');
+
+const APP_ENTRY = path.join(SOURCE_PATH, 'app.js');
+const VENDOR_ENTRY = path.join(SOURCE_PATH, 'vendor.js');
+const INDEX_ENTRY = path.join(CLIENT_PATH, 'index.template.ejs');
+const INDEX_OUTPUT = path.join(UI_PATH, 'templates/ui/index.html');
+const THEME_ENTRY = path.join(LIB_PATH, 'theme', 'index.less');
+const OUTPUT = 'js/[name].[hash].js';
+const CHUNKS = ['vendor', 'app'];
+
+const VENDOR = VENDOR_ENTRY;
+const APP = [THEME_ENTRY, APP_ENTRY];
+
+let base = {
+ entry: {
+ vendor: VENDOR,
+ app: APP
+ },
+ output: {
+ path: STATIC_PATH,
+ publicPath: '',
+ filename: OUTPUT
+ },
+ module: {
+ rules: [
+ {
+ test: /\.js$/,
+ loader: 'babel-loader',
+ exclude: /node_modules/
+ },
+ {
+ test: /\.css$/,
+ use: ExtractTextPlugin.extract({
+ use: {
+ loader: 'css-loader',
+ options: {
+ url: false
+ }
+ }
+ })
+ },
+ {
+ test: /\lib\/theme\/index.less$/,
+ use: ExtractTextPlugin.extract({
+ use: ['css-loader', 'less-loader']
+ })
+ },
+ {
+ test: require.resolve('jquery'),
+ loader: 'expose-loader?$!expose-loader?jQuery!expose-loader?jquery'
+ },
+ {
+ loader: 'script-loader',
+ test: [
+ /node_modules\/javascript-detect-element-resize\/jquery.resize\.js$/,
+ /node_modules\/d3\/d3\.min.js$/
+ ]
+ },
+ {
+ test: /\.js$/,
+ use: 'imports-loader?define=>false'
+ },
+ {
+ test: /\.html$/,
+ use: ['ngtemplate-loader', 'html-loader'],
+ include: [
+ /lib\/components\//,
+ /features\//
+ ]
+ },
+ {
+ test: /\.json$/,
+ loader: 'json-loader',
+ exclude: /node_modules/
+ }
+ ]
+ },
+ plugins: [
+ new webpack.ProvidePlugin({
+ jsyaml: 'js-yaml',
+ CodeMirror: 'codemirror',
+ jsonlint: 'codemirror.jsonlint',
+ _: 'lodash'
+ }),
+ new ExtractTextPlugin('css/[name].[hash].css'),
+ new CleanWebpackPlugin([STATIC_PATH, COVERAGE_PATH], {
+ root: UI_PATH,
+ }),
+ new CopyWebpackPlugin([
+ {
+ from: path.join(ASSETS_PATH, 'fontcustom/**/*'),
+ to: path.join(STATIC_PATH, 'fonts/'),
+ flatten: true
+ },
+ {
+ from: path.join(NODE_MODULES_PATH, 'components-font-awesome/fonts/*'),
+ to: path.join(STATIC_PATH, 'fonts/'),
+ flatten: true
+ },
+ {
+ from: path.join(ASSETS_PATH, 'custom-theme/images.new/*'),
+ to: path.join(STATIC_PATH, 'images/'),
+ flatten: true
+ },
+ {
+ from: path.join(LANGUAGES_PATH, '*'),
+ to: path.join(STATIC_PATH, 'languages'),
+ flatten: true
+ },
+ {
+ from: ASSETS_PATH,
+ to: path.join(STATIC_PATH, 'assets')
+ },
+ {
+ from: path.join(NODE_MODULES_PATH, 'angular-scheduler/lib/*.html'),
+ to: path.join(STATIC_PATH, 'lib'),
+ context: NODE_MODULES_PATH
+ },
+ {
+ from: path.join(NODE_MODULES_PATH, 'angular-tz-extensions/tz/data/*'),
+ to: path.join(STATIC_PATH, 'lib/'),
+ context: NODE_MODULES_PATH
+ },
+ {
+ from: path.join(SOURCE_PATH, '**/*.partial.html'),
+ to: path.join(STATIC_PATH, 'partials/'),
+ context: SOURCE_PATH
+ },
+ {
+ from: path.join(SOURCE_PATH, 'partials', '*.html'),
+ to: STATIC_PATH,
+ context: SOURCE_PATH
+ },
+ {
+ from: path.join(SOURCE_PATH, '*config.js'),
+ to: STATIC_PATH,
+ flatten: true
+ }
+ ]),
+ new HtmlWebpackPlugin({
+ alwaysWriteToDisk: true,
+ template: INDEX_ENTRY,
+ filename: INDEX_OUTPUT,
+ inject: false,
+ chunks: CHUNKS,
+ chunksSortMode: (moduleA, moduleB) => {
+ moduleA.files.sort((fileA, fileB) => fileA.includes('js') ? -1 : 1)
+ moduleB.files.sort((fileA, fileB) => fileA.includes('js') ? -1 : 1)
+
+ return moduleA.names[0] === 'vendor' ? -1 : 1
+ }
+ })
+ ],
+ resolve: {
+ alias: {
+ '@features': FEATURES_PATH,
+ '@models': MODELS_PATH,
+ '@services': SERVICES_PATH,
+ '@components': COMPONENTS_PATH,
+ '@modules': NODE_MODULES_PATH,
+ '@assets': ASSETS_PATH,
+ 'd3$': '@modules/d3/d3.min.js',
+ 'codemirror.jsonlint$': '@modules/codemirror/addon/lint/json-lint.js',
+ 'jquery-resize$': '@modules/javascript-detect-element-resize/jquery.resize.js',
+ 'select2$': '@modules/select2/dist/js/select2.full.min.js',
+ 'js-yaml$': '@modules/js-yaml/dist/js-yaml.min.js',
+ 'lr-infinite-scroll$': '@modules/lr-infinite-scroll/lrInfiniteScroll.js',
+ 'angular-ui-router$': '@modules/angular-ui-router/release/angular-ui-router.js',
+ 'angular-ui-router-state-events$': '@modules/angular-ui-router/release/stateEvents.js',
+ 'ng-toast-provider$': '@modules/ng-toast/src/scripts/provider.js',
+ 'ng-toast-directives$': '@modules/ng-toast/src/scripts/directives.js',
+ 'ng-toast$': '@modules/ng-toast/src/scripts/module.js'
+ }
+ }
+};
+
+module.exports = base;
diff --git a/awx/ui/build/webpack.development.js b/awx/ui/build/webpack.development.js
new file mode 100644
index 0000000000..c89123c5ac
--- /dev/null
+++ b/awx/ui/build/webpack.development.js
@@ -0,0 +1,11 @@
+const path = require('path');
+
+const _ = require('lodash');
+
+let base = require('./webpack.base');
+
+let development = {
+ devtool: 'cheap-source-map'
+};
+
+module.exports = _.merge(base, development);
diff --git a/awx/ui/build/webpack.production.js b/awx/ui/build/webpack.production.js
new file mode 100644
index 0000000000..8646ec9cb5
--- /dev/null
+++ b/awx/ui/build/webpack.production.js
@@ -0,0 +1,19 @@
+const _ = require('lodash');
+
+const webpack = require('webpack');
+const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
+
+let base = require('./webpack.base');
+
+let production = {
+ plugins: [
+ new UglifyJSPlugin({
+ compress: true,
+ mangle: false
+ })
+ ]
+};
+
+production.plugins = base.plugins.concat(production.plugins)
+
+module.exports = _.merge(base, production);
diff --git a/awx/ui/build/webpack.test.js b/awx/ui/build/webpack.test.js
new file mode 100644
index 0000000000..e23b2a957a
--- /dev/null
+++ b/awx/ui/build/webpack.test.js
@@ -0,0 +1,21 @@
+const path = require('path');
+
+const _ = require('lodash');
+const webpack = require('webpack');
+
+const STATIC_URL = '/static/';
+
+let development = require('./webpack.development');
+
+let test = {
+ plugins: [
+ new webpack.DefinePlugin({
+ $basePath: STATIC_URL
+ })
+ ]
+};
+
+test.plugins = development.plugins.concat(test.plugins)
+
+module.exports = _.merge(development, test);
+
diff --git a/awx/ui/build/webpack.watch.js b/awx/ui/build/webpack.watch.js
new file mode 100644
index 0000000000..b858dddede
--- /dev/null
+++ b/awx/ui/build/webpack.watch.js
@@ -0,0 +1,42 @@
+const path = require('path');
+
+const _ = require('lodash');
+const webpack = require('webpack');
+const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
+
+const TARGET_PORT = _.get(process.env, 'npm_package_config_django_port', 8043);
+const TARGET_HOST = _.get(process.env, 'npm_package_config_django_host', 'https://localhost');
+const TARGET = `https://${TARGET_HOST}:${TARGET_PORT}`;
+
+let development = require('./webpack.development');
+
+let watch = {
+ plugins: [
+ new HtmlWebpackHarddiskPlugin(),
+ new webpack.HotModuleReplacementPlugin()
+ ],
+ devServer: {
+ contentBase: path.resolve(__dirname, '..', 'static'),
+ clientLogLevel: 'info',
+ publicPath: '/static/',
+ host: '127.0.0.1',
+ port: 3000,
+ proxy: {
+ '/': {
+ target: TARGET,
+ secure: false,
+ ws: false
+ },
+ '/websocket': {
+ target: TARGET,
+ secure: false,
+ ws: true
+ }
+ }
+ }
+};
+
+watch.plugins = development.plugins.concat(watch.plugins)
+
+module.exports = _.merge(development, watch);
+
diff --git a/awx/ui/client/features/credentials/index.js b/awx/ui/client/features/credentials/index.js
index 391e5acbb6..28266b8b82 100644
--- a/awx/ui/client/features/credentials/index.js
+++ b/awx/ui/client/features/credentials/index.js
@@ -3,6 +3,8 @@ import AddController from './add-credentials.controller';
import EditController from './edit-credentials.controller';
import CredentialsStrings from './credentials.strings'
+const addEditTemplate = require('@features/credentials/add-edit-credentials.view.html');
+
function CredentialsResolve ($q, $stateParams, Me, Credential, CredentialType, Organization) {
let id = $stateParams.credential_id;
@@ -51,8 +53,7 @@ CredentialsResolve.$inject = [
'OrganizationModel'
];
-function CredentialsConfig ($stateExtenderProvider, legacyProvider, pathProvider, stringProvider) {
- let path = pathProvider.$get();
+function CredentialsConfig ($stateExtenderProvider, legacyProvider, stringProvider) {
let stateExtender = $stateExtenderProvider.$get();
let legacy = legacyProvider.$get();
let strings = stringProvider.$get();
@@ -69,7 +70,7 @@ function CredentialsConfig ($stateExtenderProvider, legacyProvider, pathProvider
},
views: {
'add@credentials': {
- templateUrl: path.getViewPath('credentials/add-edit-credentials'),
+ templateUrl: addEditTemplate,
controller: AddController,
controllerAs: 'vm'
}
@@ -92,7 +93,7 @@ function CredentialsConfig ($stateExtenderProvider, legacyProvider, pathProvider
},
views: {
'edit@credentials': {
- templateUrl: path.getViewPath('credentials/add-edit-credentials'),
+ templateUrl: addEditTemplate,
controller: EditController,
controllerAs: 'vm'
}
@@ -114,7 +115,6 @@ function CredentialsConfig ($stateExtenderProvider, legacyProvider, pathProvider
CredentialsConfig.$inject = [
'$stateExtenderProvider',
'LegacyCredentialsServiceProvider',
- 'PathServiceProvider',
'CredentialsStringsProvider'
];
diff --git a/awx/ui/client/features/credentials/legacy.credentials.js b/awx/ui/client/features/credentials/legacy.credentials.js
index d4fc926e68..762ed96b88 100644
--- a/awx/ui/client/features/credentials/legacy.credentials.js
+++ b/awx/ui/client/features/credentials/legacy.credentials.js
@@ -5,7 +5,9 @@ import OrganizationList from '../../src/organizations/organizations.list';
import ListController from '../../src/credentials/list/credentials-list.controller';
import { N_ } from '../../src/i18n';
-function LegacyCredentialsService (pathService) {
+const indexTemplate = require('@features/credentials/index.view.html');
+
+function LegacyCredentialsService () {
this.list = {
name: 'credentials',
route: '/credentials',
@@ -18,7 +20,7 @@ function LegacyCredentialsService (pathService) {
},
views: {
'@': {
- templateUrl: pathService.getViewPath('credentials/index')
+ templateUrl: indexTemplate
},
'list@credentials': {
templateProvider: function(CredentialList, generateList) {
@@ -361,8 +363,4 @@ function LegacyCredentialsService (pathService) {
};
}
-LegacyCredentialsService.$inject = [
- 'PathService'
-];
-
export default LegacyCredentialsService;
diff --git a/awx/ui/client/index.template.ejs b/awx/ui/client/index.template.ejs
new file mode 100644
index 0000000000..ff8f009b51
--- /dev/null
+++ b/awx/ui/client/index.template.ejs
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+
+
+ <% htmlWebpackPlugin.files.css.forEach(file => {%>
+
+ <% }) %>
+ <% htmlWebpackPlugin.files.js.forEach(file => {%>
+
+ <% }) %>
+
+
+
+
+
+
+
+
+
+
+
Your session will expire in 60 seconds, would you like to continue?
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/awx/ui/client/legacy-styles/angular-scheduler.less b/awx/ui/client/legacy/styles/angular-scheduler.less
similarity index 100%
rename from awx/ui/client/legacy-styles/angular-scheduler.less
rename to awx/ui/client/legacy/styles/angular-scheduler.less
diff --git a/awx/ui/client/legacy-styles/animations.less b/awx/ui/client/legacy/styles/animations.less
similarity index 100%
rename from awx/ui/client/legacy-styles/animations.less
rename to awx/ui/client/legacy/styles/animations.less
diff --git a/awx/ui/client/legacy-styles/ansible-ui.less b/awx/ui/client/legacy/styles/ansible-ui.less
similarity index 100%
rename from awx/ui/client/legacy-styles/ansible-ui.less
rename to awx/ui/client/legacy/styles/ansible-ui.less
diff --git a/awx/ui/client/legacy-styles/bootstrap-datepicker.less b/awx/ui/client/legacy/styles/bootstrap-datepicker.less
similarity index 100%
rename from awx/ui/client/legacy-styles/bootstrap-datepicker.less
rename to awx/ui/client/legacy/styles/bootstrap-datepicker.less
diff --git a/awx/ui/client/legacy-styles/codemirror.less b/awx/ui/client/legacy/styles/codemirror.less
similarity index 100%
rename from awx/ui/client/legacy-styles/codemirror.less
rename to awx/ui/client/legacy/styles/codemirror.less
diff --git a/awx/ui/client/legacy-styles/dashboard.less b/awx/ui/client/legacy/styles/dashboard.less
similarity index 100%
rename from awx/ui/client/legacy-styles/dashboard.less
rename to awx/ui/client/legacy/styles/dashboard.less
diff --git a/awx/ui/client/legacy-styles/event-viewer.less b/awx/ui/client/legacy/styles/event-viewer.less
similarity index 100%
rename from awx/ui/client/legacy-styles/event-viewer.less
rename to awx/ui/client/legacy/styles/event-viewer.less
diff --git a/awx/ui/client/legacy-styles/fonts.less b/awx/ui/client/legacy/styles/fonts.less
similarity index 100%
rename from awx/ui/client/legacy-styles/fonts.less
rename to awx/ui/client/legacy/styles/fonts.less
diff --git a/awx/ui/client/legacy-styles/forms.less b/awx/ui/client/legacy/styles/forms.less
similarity index 100%
rename from awx/ui/client/legacy-styles/forms.less
rename to awx/ui/client/legacy/styles/forms.less
diff --git a/awx/ui/client/legacy-styles/inventory-edit.less b/awx/ui/client/legacy/styles/inventory-edit.less
similarity index 100%
rename from awx/ui/client/legacy-styles/inventory-edit.less
rename to awx/ui/client/legacy/styles/inventory-edit.less
diff --git a/awx/ui/client/legacy-styles/job-details.less b/awx/ui/client/legacy/styles/job-details.less
similarity index 100%
rename from awx/ui/client/legacy-styles/job-details.less
rename to awx/ui/client/legacy/styles/job-details.less
diff --git a/awx/ui/client/legacy-styles/jobs.less b/awx/ui/client/legacy/styles/jobs.less
similarity index 100%
rename from awx/ui/client/legacy-styles/jobs.less
rename to awx/ui/client/legacy/styles/jobs.less
diff --git a/awx/ui/client/legacy-styles/jquery-ui-overrides.less b/awx/ui/client/legacy/styles/jquery-ui-overrides.less
similarity index 100%
rename from awx/ui/client/legacy-styles/jquery-ui-overrides.less
rename to awx/ui/client/legacy/styles/jquery-ui-overrides.less
diff --git a/awx/ui/client/legacy-styles/lists.less b/awx/ui/client/legacy/styles/lists.less
similarity index 100%
rename from awx/ui/client/legacy-styles/lists.less
rename to awx/ui/client/legacy/styles/lists.less
diff --git a/awx/ui/client/legacy-styles/log-viewer.less b/awx/ui/client/legacy/styles/log-viewer.less
similarity index 100%
rename from awx/ui/client/legacy-styles/log-viewer.less
rename to awx/ui/client/legacy/styles/log-viewer.less
diff --git a/awx/ui/client/legacy-styles/stdout.less b/awx/ui/client/legacy/styles/stdout.less
similarity index 100%
rename from awx/ui/client/legacy-styles/stdout.less
rename to awx/ui/client/legacy/styles/stdout.less
diff --git a/awx/ui/client/legacy-styles/survey-maker.less b/awx/ui/client/legacy/styles/survey-maker.less
similarity index 100%
rename from awx/ui/client/legacy-styles/survey-maker.less
rename to awx/ui/client/legacy/styles/survey-maker.less
diff --git a/awx/ui/client/legacy-styles/text-label.less b/awx/ui/client/legacy/styles/text-label.less
similarity index 100%
rename from awx/ui/client/legacy-styles/text-label.less
rename to awx/ui/client/legacy/styles/text-label.less
diff --git a/awx/ui/client/lib/components/action/action-group.directive.js b/awx/ui/client/lib/components/action/action-group.directive.js
index 41655c379a..a9bd073d7e 100644
--- a/awx/ui/client/lib/components/action/action-group.directive.js
+++ b/awx/ui/client/lib/components/action/action-group.directive.js
@@ -1,9 +1,11 @@
-function atActionGroup (pathService) {
+const templateUrl = require('@components/action/action-group.partial.html');
+
+function atActionGroup () {
return {
restrict: 'E',
replace: true,
transclude: true,
- templateUrl: pathService.getPartialPath('components/action/action-group'),
+ templateUrl,
scope: {
col: '@',
pos: '@'
@@ -11,6 +13,4 @@ function atActionGroup (pathService) {
};
}
-atActionGroup.$inject = ['PathService'];
-
export default atActionGroup;
diff --git a/awx/ui/client/lib/components/form/action.directive.js b/awx/ui/client/lib/components/form/action.directive.js
index a23367821c..d034d99b79 100644
--- a/awx/ui/client/lib/components/form/action.directive.js
+++ b/awx/ui/client/lib/components/form/action.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/form/action.partial.html');
+
function link (scope, element, attrs, controllers) {
let formController = controllers[0];
let actionController = controllers[1];
@@ -52,13 +54,13 @@ function atFormActionController ($state, strings) {
atFormActionController.$inject = ['$state', 'ComponentsStrings'];
-function atFormAction (pathService) {
+function atFormAction () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^atForm', 'atFormAction'],
- templateUrl: pathService.getPartialPath('components/form/action'),
+ templateUrl,
controller: atFormActionController,
controllerAs: 'vm',
link,
@@ -70,6 +72,4 @@ function atFormAction (pathService) {
};
}
-atFormAction.$inject = ['PathService'];
-
export default atFormAction;
diff --git a/awx/ui/client/lib/components/form/form.directive.js b/awx/ui/client/lib/components/form/form.directive.js
index e4956d1101..04cdc913bb 100644
--- a/awx/ui/client/lib/components/form/form.directive.js
+++ b/awx/ui/client/lib/components/form/form.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/form/form.partial.html');
+
function atFormLink (scope, el, attrs, controllers) {
let formController = controllers[0];
let form = el[0];
@@ -195,13 +197,13 @@ function AtFormController (eventService, strings) {
AtFormController.$inject = ['EventService', 'ComponentsStrings'];
-function atForm (pathService) {
+function atForm () {
return {
restrict: 'E',
replace: true,
transclude: true,
require: ['atForm'],
- templateUrl: pathService.getPartialPath('components/form/form'),
+ templateUrl,
controller: AtFormController,
controllerAs: 'vm',
link: atFormLink,
@@ -211,6 +213,4 @@ function atForm (pathService) {
};
}
-atForm.$inject = ['PathService'];
-
export default atForm;
diff --git a/awx/ui/client/lib/components/index.js b/awx/ui/client/lib/components/index.js
index fad0d7d79d..3f78229f5f 100644
--- a/awx/ui/client/lib/components/index.js
+++ b/awx/ui/client/lib/components/index.js
@@ -1,39 +1,35 @@
-import layout from './layout/layout.directive';
-import topNavItem from './layout/top-nav-item.directive';
-import sideNav from './layout/side-nav.directive';
-import sideNavItem from './layout/side-nav-item.directive';
-import actionGroup from './action/action-group.directive';
-import divider from './utility/divider.directive';
-import form from './form/form.directive';
-import formAction from './form/action.directive';
-import inputCheckbox from './input/checkbox.directive';
-import inputGroup from './input/group.directive';
-import inputLabel from './input/label.directive';
-import inputLookup from './input/lookup.directive';
-import inputMessage from './input/message.directive';
-import inputSecret from './input/secret.directive';
-import inputSelect from './input/select.directive';
-import inputText from './input/text.directive';
-import inputTextarea from './input/textarea.directive';
-import inputTextareaSecret from './input/textarea-secret.directive';
-import modal from './modal/modal.directive';
-import panel from './panel/panel.directive';
-import panelHeading from './panel/heading.directive';
-import panelBody from './panel/body.directive';
-import popover from './popover/popover.directive';
-import tab from './tabs/tab.directive';
-import tabGroup from './tabs/group.directive';
-import truncate from './truncate/truncate.directive';
+import actionGroup from '@components/action/action-group.directive';
+import divider from '@components/utility/divider.directive';
+import form from '@components/form/form.directive';
+import formAction from '@components/form/action.directive';
+import inputCheckbox from '@components/input/checkbox.directive';
+import inputGroup from '@components/input/group.directive';
+import inputLabel from '@components/input/label.directive';
+import inputLookup from '@components/input/lookup.directive';
+import inputMessage from '@components/input/message.directive';
+import inputSecret from '@components/input/secret.directive';
+import inputSelect from '@components/input/select.directive';
+import inputText from '@components/input/text.directive';
+import inputTextarea from '@components/input/textarea.directive';
+import inputTextareaSecret from '@components/input/textarea-secret.directive';
+import layout from '@components/layout/layout.directive';
+import modal from '@components/modal/modal.directive';
+import panel from '@components/panel/panel.directive';
+import panelBody from '@components/panel/body.directive';
+import panelHeading from '@components/panel/heading.directive';
+import popover from '@components/popover/popover.directive';
+import sideNav from '@components/layout/side-nav.directive';
+import sideNavItem from '@components/layout/side-nav-item.directive';
+import tab from '@components/tabs/tab.directive';
+import tabGroup from '@components/tabs/group.directive';
+import topNavItem from '@components/layout/top-nav-item.directive';
+import truncate from '@components/truncate/truncate.directive';
-import BaseInputController from './input/base.controller';
-import ComponentsStrings from './components.strings';
+import BaseInputController from '@components/input/base.controller';
+import ComponentsStrings from '@components/components.strings';
angular
.module('at.lib.components', [])
- .directive('atLayout', layout)
- .directive('atTopNavItem', topNavItem)
- .directive('atSideNav', sideNav)
- .directive('atSideNavItem', sideNavItem)
.directive('atActionGroup', actionGroup)
.directive('atDivider', divider)
.directive('atForm', form)
@@ -48,13 +44,17 @@ angular
.directive('atInputText', inputText)
.directive('atInputTextarea', inputTextarea)
.directive('atInputTextareaSecret', inputTextareaSecret)
+ .directive('atLayout', layout)
.directive('atModal', modal)
.directive('atPanel', panel)
- .directive('atPanelHeading', panelHeading)
.directive('atPanelBody', panelBody)
+ .directive('atPanelHeading', panelHeading)
.directive('atPopover', popover)
+ .directive('atSideNav', sideNav)
+ .directive('atSideNavItem', sideNavItem)
.directive('atTab', tab)
.directive('atTabGroup', tabGroup)
+ .directive('atTopNavItem', topNavItem)
.directive('atTruncate', truncate)
- .service('ComponentsStrings', ComponentsStrings)
- .service('BaseInputController', BaseInputController);
+ .service('BaseInputController', BaseInputController)
+ .service('ComponentsStrings', ComponentsStrings);
diff --git a/awx/ui/client/lib/components/input/checkbox.directive.js b/awx/ui/client/lib/components/input/checkbox.directive.js
index 237973b80e..90bb268e53 100644
--- a/awx/ui/client/lib/components/input/checkbox.directive.js
+++ b/awx/ui/client/lib/components/input/checkbox.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/checkbox.partial.html');
+
function atInputCheckboxLink (scope, element, attrs, controllers) {
let formController = controllers[0];
let inputController = controllers[1];
@@ -23,13 +25,13 @@ function AtInputCheckboxController (baseInputController) {
AtInputCheckboxController.$inject = ['BaseInputController'];
-function atInputCheckbox (pathService) {
+function atInputCheckbox () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^atForm', 'atInputCheckbox'],
- templateUrl: pathService.getPartialPath('components/input/checkbox'),
+ templateUrl,
controller: AtInputCheckboxController,
controllerAs: 'vm',
link: atInputCheckboxLink,
@@ -41,6 +43,4 @@ function atInputCheckbox (pathService) {
};
}
-atInputCheckbox.$inject = ['PathService'];
-
export default atInputCheckbox;
diff --git a/awx/ui/client/lib/components/input/group.directive.js b/awx/ui/client/lib/components/input/group.directive.js
index bc255ba4e7..e8a2a05466 100644
--- a/awx/ui/client/lib/components/input/group.directive.js
+++ b/awx/ui/client/lib/components/input/group.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/group.partial.html');
+
function atInputGroupLink (scope, el, attrs, controllers) {
let groupController = controllers[0];
let formController = controllers[1];
@@ -168,13 +170,13 @@ function AtInputGroupController ($scope, $compile) {
AtInputGroupController.$inject = ['$scope', '$compile'];
-function atInputGroup (pathService) {
+function atInputGroup () {
return {
restrict: 'E',
replace: true,
transclude: true,
require: ['atInputGroup', '^^atForm'],
- templateUrl: pathService.getPartialPath('components/input/group'),
+ templateUrl,
controller: AtInputGroupController,
controllerAs: 'vm',
link: atInputGroupLink,
@@ -186,6 +188,4 @@ function atInputGroup (pathService) {
};
}
-atInputGroup.$inject = ['PathService'];
-
export default atInputGroup;
diff --git a/awx/ui/client/lib/components/input/label.directive.js b/awx/ui/client/lib/components/input/label.directive.js
index 4837c25c14..9fc896b398 100644
--- a/awx/ui/client/lib/components/input/label.directive.js
+++ b/awx/ui/client/lib/components/input/label.directive.js
@@ -1,11 +1,11 @@
-function atInputLabel (pathService) {
+const templateUrl = require('@components/input/label.partial.html');
+
+function atInputLabel () {
return {
restrict: 'E',
replace: true,
- templateUrl: pathService.getPartialPath('components/input/label')
+ templateUrl
};
}
-atInputLabel.$inject = ['PathService'];
-
export default atInputLabel;
diff --git a/awx/ui/client/lib/components/input/lookup.directive.js b/awx/ui/client/lib/components/input/lookup.directive.js
index b2c60e15bd..b5a7945dc8 100644
--- a/awx/ui/client/lib/components/input/lookup.directive.js
+++ b/awx/ui/client/lib/components/input/lookup.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/lookup.partial.html');
+
const DEFAULT_DEBOUNCE = 250;
const DEFAULT_KEY = 'name';
@@ -120,13 +122,13 @@ AtInputLookupController.$inject = [
'$stateParams'
];
-function atInputLookup (pathService) {
+function atInputLookup () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^atForm', 'atInputLookup'],
- templateUrl: pathService.getPartialPath('components/input/lookup'),
+ templateUrl,
controller: AtInputLookupController,
controllerAs: 'vm',
link: atInputLookupLink,
@@ -138,6 +140,4 @@ function atInputLookup (pathService) {
};
}
-atInputLookup.$inject = ['PathService'];
-
export default atInputLookup;
diff --git a/awx/ui/client/lib/components/input/message.directive.js b/awx/ui/client/lib/components/input/message.directive.js
index d3c06fdd57..0637382e6d 100644
--- a/awx/ui/client/lib/components/input/message.directive.js
+++ b/awx/ui/client/lib/components/input/message.directive.js
@@ -1,11 +1,11 @@
-function atInputMessage (pathService) {
+const templateUrl = require('@components/input/message.partial.html');
+
+function atInputMessage () {
return {
restrict: 'E',
replace: true,
- templateUrl: pathService.getPartialPath('components/input/message'),
+ templateUrl
};
}
-atInputMessage.$inject = ['PathService'];
-
export default atInputMessage;
diff --git a/awx/ui/client/lib/components/input/secret.directive.js b/awx/ui/client/lib/components/input/secret.directive.js
index 1d3a03546c..52a11a60a2 100644
--- a/awx/ui/client/lib/components/input/secret.directive.js
+++ b/awx/ui/client/lib/components/input/secret.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/secret.partial.html');
+
function atInputSecretLink (scope, element, attrs, controllers) {
let formController = controllers[0];
let inputController = controllers[1];
@@ -48,13 +50,13 @@ function AtInputSecretController (baseInputController) {
AtInputSecretController.$inject = ['BaseInputController'];
-function atInputSecret (pathService) {
+function atInputSecret () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^atForm', 'atInputSecret'],
- templateUrl: pathService.getPartialPath('components/input/secret'),
+ templateUrl,
controller: AtInputSecretController,
controllerAs: 'vm',
link: atInputSecretLink,
@@ -66,6 +68,4 @@ function atInputSecret (pathService) {
};
}
-atInputSecret.$inject = ['PathService'];
-
export default atInputSecret;
diff --git a/awx/ui/client/lib/components/input/select.directive.js b/awx/ui/client/lib/components/input/select.directive.js
index 4167eac0e5..9d4c6a0347 100644
--- a/awx/ui/client/lib/components/input/select.directive.js
+++ b/awx/ui/client/lib/components/input/select.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/select.partial.html');
+
function atInputSelectLink (scope, element, attrs, controllers) {
let formController = controllers[0];
let inputController = controllers[1];
@@ -72,13 +74,13 @@ function AtInputSelectController (baseInputController, eventService) {
AtInputSelectController.$inject = ['BaseInputController', 'EventService'];
-function atInputSelect (pathService) {
+function atInputSelect () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^at-form', 'atInputSelect'],
- templateUrl: pathService.getPartialPath('components/input/select'),
+ templateUrl,
controller: AtInputSelectController,
controllerAs: 'vm',
link: atInputSelectLink,
@@ -90,6 +92,4 @@ function atInputSelect (pathService) {
};
}
-atInputSelect.$inject = ['PathService'];
-
export default atInputSelect;
diff --git a/awx/ui/client/lib/components/input/text.directive.js b/awx/ui/client/lib/components/input/text.directive.js
index 0135bd8841..384faa25f2 100644
--- a/awx/ui/client/lib/components/input/text.directive.js
+++ b/awx/ui/client/lib/components/input/text.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/text.partial.html');
+
function atInputTextLink (scope, element, attrs, controllers) {
let formController = controllers[0];
let inputController = controllers[1];
@@ -21,13 +23,13 @@ function AtInputTextController (baseInputController) {
AtInputTextController.$inject = ['BaseInputController'];
-function atInputText (pathService) {
+function atInputText () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^atForm', 'atInputText'],
- templateUrl: pathService.getPartialPath('components/input/text'),
+ templateUrl,
controller: AtInputTextController,
controllerAs: 'vm',
link: atInputTextLink,
@@ -39,6 +41,4 @@ function atInputText (pathService) {
};
}
-atInputText.$inject = ['PathService'];
-
export default atInputText;
diff --git a/awx/ui/client/lib/components/input/textarea-secret.directive.js b/awx/ui/client/lib/components/input/textarea-secret.directive.js
index ef28608b9b..48b97382f0 100644
--- a/awx/ui/client/lib/components/input/textarea-secret.directive.js
+++ b/awx/ui/client/lib/components/input/textarea-secret.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/textarea-secret.partial.html');
+
function atInputTextareaSecretLink (scope, element, attrs, controllers) {
let formController = controllers[0];
let inputController = controllers[1];
@@ -96,13 +98,13 @@ AtInputTextareaSecretController.$inject = [
'ComponentsStrings'
];
-function atInputTextareaSecret (pathService) {
+function atInputTextareaSecret () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^atForm', 'atInputTextareaSecret'],
- templateUrl: pathService.getPartialPath('components/input/textarea-secret'),
+ templateUrl,
controller: AtInputTextareaSecretController,
controllerAs: 'vm',
link: atInputTextareaSecretLink,
@@ -114,6 +116,4 @@ function atInputTextareaSecret (pathService) {
};
}
-atInputTextareaSecret.$inject = ['PathService'];
-
export default atInputTextareaSecret;
diff --git a/awx/ui/client/lib/components/input/textarea.directive.js b/awx/ui/client/lib/components/input/textarea.directive.js
index b9ee4eb60b..af5b4e2bcc 100644
--- a/awx/ui/client/lib/components/input/textarea.directive.js
+++ b/awx/ui/client/lib/components/input/textarea.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/input/textarea.partial.html');
+
function atInputTextareaLink (scope, element, attrs, controllers) {
let formController = controllers[0];
let inputController = controllers[1];
@@ -21,13 +23,13 @@ function AtInputTextareaController (baseInputController) {
AtInputTextareaController.$inject = ['BaseInputController'];
-function atInputTextarea (pathService) {
+function atInputTextarea () {
return {
restrict: 'E',
transclude: true,
replace: true,
require: ['^^atForm', 'atInputTextarea'],
- templateUrl: pathService.getPartialPath('components/input/textarea'),
+ templateUrl,
controller: AtInputTextareaController,
controllerAs: 'vm',
link: atInputTextareaLink,
@@ -39,6 +41,4 @@ function atInputTextarea (pathService) {
};
}
-atInputTextarea.$inject = ['PathService'];
-
export default atInputTextarea;
diff --git a/awx/ui/client/lib/components/layout/layout.directive.js b/awx/ui/client/lib/components/layout/layout.directive.js
index 8148942eba..396c290cec 100644
--- a/awx/ui/client/lib/components/layout/layout.directive.js
+++ b/awx/ui/client/lib/components/layout/layout.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/layout/layout.partial.html');
+
function AtLayoutController ($scope, strings) {
let vm = this || {};
@@ -34,12 +36,12 @@ function AtLayoutController ($scope, strings) {
AtLayoutController.$inject = ['$scope', 'ComponentsStrings'];
-function atLayout (pathService) {
+function atLayout () {
return {
restrict: 'E',
replace: true,
transclude: true,
- templateUrl: pathService.getPartialPath('components/layout/layout'),
+ templateUrl,
controller: AtLayoutController,
controllerAs: 'vm',
scope: {
@@ -47,6 +49,4 @@ function atLayout (pathService) {
};
}
-atLayout.$inject = ['PathService'];
-
export default atLayout;
diff --git a/awx/ui/client/lib/components/layout/side-nav-item.directive.js b/awx/ui/client/lib/components/layout/side-nav-item.directive.js
index aafda8aa2d..0f881049ca 100644
--- a/awx/ui/client/lib/components/layout/side-nav-item.directive.js
+++ b/awx/ui/client/lib/components/layout/side-nav-item.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/layout/side-nav-item.partial.html');
+
function atSideNavItemLink (scope, element, attrs, ctrl) {
scope.navVm = ctrl[0];
scope.layoutVm = ctrl[1];
@@ -29,10 +31,10 @@ function AtSideNavItemController ($state, $scope) {
AtSideNavItemController.$inject = ['$state', '$scope'];
-function atSideNavItem (pathService) {
+function atSideNavItem () {
return {
restrict: 'E',
- templateUrl: pathService.getPartialPath('components/layout/side-nav-item'),
+ templateUrl,
require: ['^^atSideNav', '^^atLayout'],
controller: AtSideNavItemController,
controllerAs: 'vm',
@@ -46,6 +48,4 @@ function atSideNavItem (pathService) {
};
}
-atSideNavItem.$inject = ['PathService'];
-
export default atSideNavItem;
diff --git a/awx/ui/client/lib/components/layout/side-nav.directive.js b/awx/ui/client/lib/components/layout/side-nav.directive.js
index 77d2a8a4ec..26e03cc47b 100644
--- a/awx/ui/client/lib/components/layout/side-nav.directive.js
+++ b/awx/ui/client/lib/components/layout/side-nav.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/layout/side-nav.partial.html');
+
function atSideNavLink (scope, element, attrs, ctrl) {
scope.layoutVm = ctrl;
}
@@ -12,7 +14,7 @@ function AtSideNavController () {
}
}
-function atSideNav (pathService) {
+function atSideNav () {
return {
restrict: 'E',
replace: true,
@@ -21,12 +23,10 @@ function atSideNav (pathService) {
controllerAs: 'vm',
link: atSideNavLink,
transclude: true,
- templateUrl: pathService.getPartialPath('components/layout/side-nav'),
+ templateUrl,
scope: {
}
};
}
-atSideNav.$inject = ['PathService'];
-
export default atSideNav;
diff --git a/awx/ui/client/lib/components/layout/top-nav-item.directive.js b/awx/ui/client/lib/components/layout/top-nav-item.directive.js
index e17c5aa3b7..d6c30d9b2a 100644
--- a/awx/ui/client/lib/components/layout/top-nav-item.directive.js
+++ b/awx/ui/client/lib/components/layout/top-nav-item.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/layout/top-nav-item.partial.html');
+
function atTopNavItemLink (scope, element, attrs, ctrl) {
scope.layoutVm = ctrl;
@@ -12,12 +14,12 @@ function atTopNavItemLink (scope, element, attrs, ctrl) {
}
}
-function atTopNavItem (pathService) {
+function atTopNavItem () {
return {
restrict: 'E',
replace: true,
transclude: true,
- templateUrl: pathService.getPartialPath('components/layout/top-nav-item'),
+ templateUrl,
require: '^^atLayout',
link: atTopNavItemLink,
scope: {
@@ -25,6 +27,4 @@ function atTopNavItem (pathService) {
};
}
-atTopNavItem.$inject = ['PathService'];
-
export default atTopNavItem;
diff --git a/awx/ui/client/lib/components/modal/modal.directive.js b/awx/ui/client/lib/components/modal/modal.directive.js
index 604f9f0495..ecb67001b6 100644
--- a/awx/ui/client/lib/components/modal/modal.directive.js
+++ b/awx/ui/client/lib/components/modal/modal.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/modal/modal.partial.html');
+
const DEFAULT_ANIMATION_DURATION = 150;
function atModalLink (scope, el, attrs, controllers) {
@@ -74,13 +76,13 @@ AtModalController.$inject = [
'ComponentsStrings'
]
-function atModal (pathService) {
+function atModal () {
return {
restrict: 'E',
replace: true,
transclude: true,
require: ['atModal'],
- templateUrl: pathService.getPartialPath('components/modal/modal'),
+ templateUrl,
controller: AtModalController,
controllerAs: 'vm',
link: atModalLink,
@@ -88,8 +90,4 @@ function atModal (pathService) {
};
}
-atModal.$inject = [
- 'PathService'
-];
-
export default atModal;
diff --git a/awx/ui/client/lib/components/panel/body.directive.js b/awx/ui/client/lib/components/panel/body.directive.js
index 6011a81d92..b9c0c07b6a 100644
--- a/awx/ui/client/lib/components/panel/body.directive.js
+++ b/awx/ui/client/lib/components/panel/body.directive.js
@@ -1,15 +1,15 @@
-function atPanelBody (pathService) {
+const templateUrl = require('@components/panel/body.partial.html');
+
+function atPanelBody () {
return {
restrict: 'E',
replace: true,
transclude: true,
- templateUrl: pathService.getPartialPath('components/panel/body'),
+ templateUrl,
scope: {
state: '='
}
};
}
-atPanelBody.$inject = ['PathService'];
-
export default atPanelBody;
diff --git a/awx/ui/client/lib/components/panel/heading.directive.js b/awx/ui/client/lib/components/panel/heading.directive.js
index 0ce8b2aee6..fd5da054c1 100644
--- a/awx/ui/client/lib/components/panel/heading.directive.js
+++ b/awx/ui/client/lib/components/panel/heading.directive.js
@@ -1,18 +1,18 @@
+const templateUrl = require('@components/panel/heading.partial.html');
+
function link (scope, el, attrs, panel) {
panel.use(scope);
}
-function atPanelHeading (pathService) {
+function atPanelHeading () {
return {
restrict: 'E',
require: '^^atPanel',
replace: true,
transclude: true,
- templateUrl: pathService.getPartialPath('components/panel/heading'),
+ templateUrl,
link
};
}
-atPanelHeading.$inject = ['PathService'];
-
export default atPanelHeading;
diff --git a/awx/ui/client/lib/components/panel/panel.directive.js b/awx/ui/client/lib/components/panel/panel.directive.js
index 001e564dc2..e6f9c7b59b 100644
--- a/awx/ui/client/lib/components/panel/panel.directive.js
+++ b/awx/ui/client/lib/components/panel/panel.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/panel/panel.partial.html');
+
function atPanelLink (scope, el, attrs, controllers) {
let panelController = controllers[0];
@@ -26,13 +28,13 @@ function AtPanelController ($state) {
AtPanelController.$inject = ['$state'];
-function atPanel (pathService, _$animate_) {
+function atPanel () {
return {
restrict: 'E',
replace: true,
require: ['atPanel'],
transclude: true,
- templateUrl: pathService.getPartialPath('components/panel/panel'),
+ templateUrl,
controller: AtPanelController,
controllerAs: 'vm',
link: atPanelLink,
@@ -43,6 +45,4 @@ function atPanel (pathService, _$animate_) {
};
}
-atPanel.$inject = ['PathService'];
-
export default atPanel;
diff --git a/awx/ui/client/lib/components/popover/popover.directive.js b/awx/ui/client/lib/components/popover/popover.directive.js
index 8f8ee5198a..c07086b427 100644
--- a/awx/ui/client/lib/components/popover/popover.directive.js
+++ b/awx/ui/client/lib/components/popover/popover.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/popover/popover.partial.html');
+
const DEFAULT_POSITION = 'right';
const DEFAULT_ACTION = 'click';
const DEFAULT_ICON = 'fa fa-question-circle';
@@ -201,13 +203,13 @@ function AtPopoverController () {
};
}
-function atPopover (pathService) {
+function atPopover () {
return {
restrict: 'E',
replace: true,
transclude: true,
require: ['atPopover'],
- templateUrl: pathService.getPartialPath('components/popover/popover'),
+ templateUrl,
controller: AtPopoverController,
controllerAs: 'vm',
link: atPopoverLink,
@@ -217,8 +219,4 @@ function atPopover (pathService) {
};
}
-atPopover.$inject = [
- 'PathService'
-];
-
-export default atPopover;
\ No newline at end of file
+export default atPopover;
diff --git a/awx/ui/client/lib/components/tabs/group.directive.js b/awx/ui/client/lib/components/tabs/group.directive.js
index 907d8853fa..771956aa21 100644
--- a/awx/ui/client/lib/components/tabs/group.directive.js
+++ b/awx/ui/client/lib/components/tabs/group.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/tabs/group.partial.html');
+
function atTabGroupLink (scope, el, attrs, controllers) {
let groupController = controllers[0];
@@ -26,13 +28,13 @@ function AtTabGroupController ($state) {
AtTabGroupController.$inject = ['$state'];
-function atTabGroup (pathService, _$animate_) {
+function atTabGroup () {
return {
restrict: 'E',
replace: true,
require: ['atTabGroup'],
transclude: true,
- templateUrl: pathService.getPartialPath('components/tabs/group'),
+ templateUrl,
controller: AtTabGroupController,
controllerAs: 'vm',
link: atTabGroupLink,
@@ -42,6 +44,4 @@ function atTabGroup (pathService, _$animate_) {
};
}
-atTabGroup.$inject = ['PathService'];
-
export default atTabGroup;
diff --git a/awx/ui/client/lib/components/tabs/tab.directive.js b/awx/ui/client/lib/components/tabs/tab.directive.js
index 99e181dfca..e9b9f93eab 100644
--- a/awx/ui/client/lib/components/tabs/tab.directive.js
+++ b/awx/ui/client/lib/components/tabs/tab.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/tabs/tab.partial.html');
+
function atTabLink (scope, el, attrs, controllers) {
let groupController = controllers[0];
let tabController = controllers[1];
@@ -31,13 +33,13 @@ function AtTabController ($state) {
AtTabController.$inject = ['$state'];
-function atTab (pathService, _$animate_) {
+function atTab () {
return {
restrict: 'E',
replace: true,
transclude: true,
require: ['^^atTabGroup', 'atTab'],
- templateUrl: pathService.getPartialPath('components/tabs/tab'),
+ templateUrl,
controller: AtTabController,
controllerAs: 'vm',
link: atTabLink,
@@ -47,6 +49,4 @@ function atTab (pathService, _$animate_) {
};
}
-atTab.$inject = ['PathService'];
-
export default atTab;
diff --git a/awx/ui/client/lib/components/truncate/truncate.directive.js b/awx/ui/client/lib/components/truncate/truncate.directive.js
index fdc2eccb79..39f3f3455c 100644
--- a/awx/ui/client/lib/components/truncate/truncate.directive.js
+++ b/awx/ui/client/lib/components/truncate/truncate.directive.js
@@ -1,3 +1,5 @@
+const templateUrl = require('@components/truncate/truncate.partial.html');
+
function atTruncateLink (scope, el, attr, ctrl) {
let truncateController = ctrl;
let string = attr.string;
@@ -44,12 +46,12 @@ function AtTruncateController (strings) {
AtTruncateController.$inject = ['ComponentsStrings'];
-function atTruncate(pathService) {
+function atTruncate() {
return {
restrict: 'E',
replace: true,
transclude: true,
- templateUrl: pathService.getPartialPath('components/truncate/truncate'),
+ templateUrl,
controller: AtTruncateController,
controllerAs: 'vm',
link: atTruncateLink,
@@ -61,8 +63,4 @@ function atTruncate(pathService) {
}
}
-atTruncate.$inject = [
- 'PathService'
-];
-
export default atTruncate;
diff --git a/awx/ui/client/lib/components/utility/divider.directive.js b/awx/ui/client/lib/components/utility/divider.directive.js
index 0ccb906996..6ce50a512a 100644
--- a/awx/ui/client/lib/components/utility/divider.directive.js
+++ b/awx/ui/client/lib/components/utility/divider.directive.js
@@ -1,12 +1,12 @@
-function atPanelBody (pathService) {
+const templateUrl = require('@components/utility/divider.partial.html');
+
+function atPanelBody () {
return {
restrict: 'E',
replace: true,
- templateUrl: pathService.getPartialPath('components/utility/divider'),
+ templateUrl,
scope: false
};
}
-atPanelBody.$inject = ['PathService'];
-
export default atPanelBody;
diff --git a/awx/ui/client/lib/models/index.js b/awx/ui/client/lib/models/index.js
index c40f9e156d..eac47ce4c3 100644
--- a/awx/ui/client/lib/models/index.js
+++ b/awx/ui/client/lib/models/index.js
@@ -1,9 +1,9 @@
-import Base from './Base';
-import Config from './Config';
-import Credential from './Credential';
-import CredentialType from './CredentialType';
-import Me from './Me';
-import Organization from './Organization';
+import Base from '@models/Base';
+import Config from '@models/Config';
+import Credential from '@models/Credential';
+import CredentialType from '@models/CredentialType';
+import Me from '@models/Me';
+import Organization from '@models/Organization';
angular
.module('at.lib.models', [])
diff --git a/awx/ui/client/lib/services/base-string.service.js b/awx/ui/client/lib/services/base-string.service.js
index 437cd10b2a..1ca71993a1 100644
--- a/awx/ui/client/lib/services/base-string.service.js
+++ b/awx/ui/client/lib/services/base-string.service.js
@@ -1,4 +1,4 @@
-import defaults from '../../assets/default.strings.json';
+import defaults from '@assets/default.strings.json';
let i18n;
diff --git a/awx/ui/client/lib/services/index.js b/awx/ui/client/lib/services/index.js
index 0c7e1d0234..e314f89e99 100644
--- a/awx/ui/client/lib/services/index.js
+++ b/awx/ui/client/lib/services/index.js
@@ -1,13 +1,11 @@
-import CacheService from './cache.service';
-import EventService from './event.service';
-import PathService from './path.service';
-import BaseStringService from './base-string.service';
-import AppStrings from './app.strings';
+import CacheService from '@services/cache.service';
+import EventService from '@services/event.service';
+import BaseStringService from '@services/base-string.service';
+import AppStrings from '@services/app.strings';
angular
.module('at.lib.services', [])
.service('AppStrings', AppStrings)
.service('BaseStringService', BaseStringService)
.service('CacheService', CacheService)
- .service('EventService', EventService)
- .service('PathService', PathService);
+ .service('EventService', EventService);
diff --git a/awx/ui/client/lib/services/path.service.js b/awx/ui/client/lib/services/path.service.js
deleted file mode 100644
index 9d41c25cc2..0000000000
--- a/awx/ui/client/lib/services/path.service.js
+++ /dev/null
@@ -1,11 +0,0 @@
-function PathService () {
- this.getPartialPath = path => {
- return `/static/partials/${path}.partial.html`;
- };
-
- this.getViewPath = path => {
- return `/static/views/${path}.view.html`;
- }
-}
-
-export default PathService;
diff --git a/awx/ui/client/lib/theme/index.less b/awx/ui/client/lib/theme/index.less
index 6177ed35a1..ed4e83e409 100644
--- a/awx/ui/client/lib/theme/index.less
+++ b/awx/ui/client/lib/theme/index.less
@@ -18,24 +18,24 @@
* NOTE: Styles below are a mix of 3rd-party dependencies and in-house code. For the 3rd-party
* stuff, we'd be better off managing them via npm where possible.
*/
-@import '../../legacy-styles/fonts';
-@import '../../legacy-styles/animations';
-@import '../../legacy-styles/jquery-ui-overrides';
-@import '../../legacy-styles/codemirror';
-@import '../../legacy-styles/angular-scheduler';
-@import '../../legacy-styles/log-viewer';
-@import '../../legacy-styles/event-viewer';
-@import '../../legacy-styles/job-details';
-@import '../../legacy-styles/jobs';
-@import '../../legacy-styles/inventory-edit';
-@import '../../legacy-styles/stdout';
-@import '../../legacy-styles/lists';
-@import '../../legacy-styles/forms';
-@import '../../legacy-styles/dashboard';
-@import '../../legacy-styles/survey-maker';
-@import '../../legacy-styles/text-label';
-@import '../../legacy-styles/bootstrap-datepicker';
-@import '../../legacy-styles/ansible-ui';
+@import '../../legacy/styles/fonts';
+@import '../../legacy/styles/animations';
+@import '../../legacy/styles/jquery-ui-overrides';
+@import '../../legacy/styles/codemirror';
+@import '../../legacy/styles/angular-scheduler';
+@import '../../legacy/styles/log-viewer';
+@import '../../legacy/styles/event-viewer';
+@import '../../legacy/styles/job-details';
+@import '../../legacy/styles/jobs';
+@import '../../legacy/styles/inventory-edit';
+@import '../../legacy/styles/stdout';
+@import '../../legacy/styles/lists';
+@import '../../legacy/styles/forms';
+@import '../../legacy/styles/dashboard';
+@import '../../legacy/styles/survey-maker';
+@import '../../legacy/styles/text-label';
+@import '../../legacy/styles/bootstrap-datepicker';
+@import '../../legacy/styles/ansible-ui';
// Dependency Style Overrides
@import '../../src/shared/bootstrap-settings';
diff --git a/awx/ui/client/src/app.js b/awx/ui/client/src/app.js
index dc555489e9..bcda3b236b 100644
--- a/awx/ui/client/src/app.js
+++ b/awx/ui/client/src/app.js
@@ -1,39 +1,17 @@
-/*************************************************
- * Copyright (c) 2016 Ansible, Inc.
- *
- * All Rights Reserved
- *************************************************/
-
-// Vendor dependencies
-import 'jquery';
-import 'angular';
-import 'angular-gettext';
-import 'bootstrap';
-import 'jquery-ui';
-import 'bootstrap-datepicker';
-import 'jquery.resize';
-import 'codemirror';
-import 'js-yaml';
-import 'select2';
-import uiRouter from 'angular-ui-router';
-// backwards compatibility for $stateChange* events
-import 'angular-ui-router/release/stateEvents';
-
-
// Configuration dependencies
global.$AnsibleConfig = null;
// Provided via Webpack DefinePlugin in webpack.config.js
global.$ENV = {} ;
// ui-router debugging
if ($ENV['route-debug']){
- let trace = require('angular-ui-router').trace;
+ let trace = angular.module('ui.router').trace;
trace.enable();
}
var urlPrefix;
if ($basePath) {
- urlPrefix = $basePath;
+ urlPrefix = `${$basePath}`;
}
// Modules
@@ -73,22 +51,21 @@ import '../lib/models';
import '../lib/services';
import '../features';
-var awApp = angular.module('awApp', [
- // how to add CommonJS / AMD third-party dependencies:
- // 1. npm install --save package-name
- // 2. add package name to ./grunt-tasks/webpack.vendorFiles
- require('angular-breadcrumb'),
- require('angular-codemirror'),
- require('angular-drag-and-drop-lists'),
- require('angular-sanitize'),
- require('angular-scheduler').name,
- require('angular-tz-extensions'),
- require('angular-md5'),
- require('lr-infinite-scroll'),
- require('ng-toast'),
- 'gettext',
+angular.module('awApp', [
'I18N',
- uiRouter,
+ 'AngularCodeMirrorModule',
+ 'angular-duration-format',
+ 'angularMoment',
+ 'AngularScheduler',
+ 'angular-md5',
+ 'dndLists',
+ 'ncy-angular-breadcrumb',
+ 'ngSanitize',
+ 'ngCookies',
+ 'ngToast',
+ 'gettext',
+ 'Timezones',
+ 'ui.router',
'ui.router.state.events',
'lrInfiniteScroll',
@@ -134,7 +111,6 @@ var awApp = angular.module('awApp', [
'at.lib.services',
'at.features',
])
-
.constant('AngularScheduler.partials', urlPrefix + 'lib/angular-scheduler/lib/')
.constant('AngularScheduler.useTimezone', true)
.constant('AngularScheduler.showUTCField', true)
@@ -465,5 +441,3 @@ var awApp = angular.module('awApp', [
LoadConfig();
}
]);
-
-export default awApp;
diff --git a/awx/ui/client/src/shared/layouts/one-plus-one.less b/awx/ui/client/src/shared/layouts/one-plus-one.less
index 4b36d0e34c..cc6a098204 100644
--- a/awx/ui/client/src/shared/layouts/one-plus-one.less
+++ b/awx/ui/client/src/shared/layouts/one-plus-one.less
@@ -4,9 +4,6 @@
* Options: static height, custom breakpoint
*/
-@import "./client/src/shared/branding/colors.default.less";
-
-
.OnePlusOne-container(@height: 100%; @breakpoint: 900px){
height: ~"calc(100vh - 150px)";
display: flex;
diff --git a/awx/ui/client/src/shared/layouts/one-plus-two.less b/awx/ui/client/src/shared/layouts/one-plus-two.less
index 227c4fa85d..c0cde59bcd 100644
--- a/awx/ui/client/src/shared/layouts/one-plus-two.less
+++ b/awx/ui/client/src/shared/layouts/one-plus-two.less
@@ -6,8 +6,6 @@
* Style conventions
* .ModuleName-component--subComponent
*/
-@import "./client/src/shared/branding/colors.default.less";
-
.OnePlusTwo-container(@height: 100%; @breakpoint: 900px){
height: @height;
diff --git a/awx/ui/client/src/shared/main.js b/awx/ui/client/src/shared/main.js
index 48351f49cb..ecedd80f35 100644
--- a/awx/ui/client/src/shared/main.js
+++ b/awx/ui/client/src/shared/main.js
@@ -34,10 +34,10 @@ import orgAdminLookup from './org-admin-lookup/main';
import limitPanels from './limit-panels/main';
import multiSelectPreview from './multi-select-preview/main';
import credentialTypesLookup from './credentialTypesLookup.factory';
-import 'angular-duration-format';
export default
-angular.module('shared', [listGenerator.name,
+angular.module('shared', [
+ listGenerator.name,
formGenerator.name,
lookupModal.name,
smartSearch.name,
@@ -64,7 +64,7 @@ angular.module('shared', [listGenerator.name,
orgAdminLookup.name,
limitPanels.name,
multiSelectPreview.name,
- require('angular-cookies'),
+ 'ngCookies',
'angular-duration-format'
])
.factory('stateDefinitions', stateDefinitions)
diff --git a/awx/ui/client/src/shared/moment/main.js b/awx/ui/client/src/shared/moment/main.js
index 57f7309572..f1c70d88c0 100644
--- a/awx/ui/client/src/shared/moment/main.js
+++ b/awx/ui/client/src/shared/moment/main.js
@@ -1,7 +1,7 @@
import newMoment from './moment';
export default
- angular.module('moment', [require('angular-moment').name])
+ angular.module('moment', ['angularMoment'])
.config(function() {
// Remove the global variable for moment
delete window.moment;
diff --git a/awx/ui/client/src/templates/survey-maker/survey-maker.block.less b/awx/ui/client/src/templates/survey-maker/survey-maker.block.less
index 88497a32df..28a07d44b0 100644
--- a/awx/ui/client/src/templates/survey-maker/survey-maker.block.less
+++ b/awx/ui/client/src/templates/survey-maker/survey-maker.block.less
@@ -1,5 +1,3 @@
-@import "./client/src/shared/branding/colors.default.less";
-
.position-center {
left: 0;
right: 0;
@@ -255,4 +253,4 @@
max-width: ~"calc(100vw - 50px)";
}
}
-}
\ No newline at end of file
+}
diff --git a/awx/ui/client/src/vendor.js b/awx/ui/client/src/vendor.js
new file mode 100644
index 0000000000..8f616f8b74
--- /dev/null
+++ b/awx/ui/client/src/vendor.js
@@ -0,0 +1,39 @@
+require('@assets/custom-theme/jquery-ui-1.10.3.custom.min.css');
+require('@assets/ansible-bootstrap.min.css');
+require('@assets/fontcustom/fontcustom.css');
+require('@modules/components-font-awesome/css/font-awesome.min.css');
+require('@modules/select2/dist/css/select2.css');
+require('@modules/codemirror/lib/codemirror.css');
+require('@modules/codemirror/theme/elegant.css');
+require('@modules/codemirror/addon/lint/lint.css');
+require('@modules/nvd3/build/nv.d3.css');
+require('@modules/ng-toast/dist/ngToast.min.css');
+require('jquery');
+require('jquery-resize');
+require('jquery-ui');
+require('bootstrap');
+require('bootstrap-datepicker');
+require('moment');
+require('select2');
+require('sprintf-js');
+require('reconnectingwebsocket');
+require('d3');
+require('nvd3');
+require('angular');
+require('angular-cookies');
+require('angular-sanitize');
+require('angular-breadcrumb');
+require('angular-codemirror');
+require('angular-drag-and-drop-lists');
+require('angular-duration-format');
+require('angular-gettext');
+require('angular-md5');
+require('angular-moment');
+require('angular-scheduler');
+require('angular-tz-extensions');
+require('angular-ui-router');
+require('angular-ui-router-state-events');
+require('ng-toast-provider');
+require('ng-toast-directives');
+require('ng-toast');
+require('lr-infinite-scroll');
diff --git a/awx/ui/grunt-tasks/browserSync.js b/awx/ui/grunt-tasks/browserSync.js
deleted file mode 100644
index 9dc0272d48..0000000000
--- a/awx/ui/grunt-tasks/browserSync.js
+++ /dev/null
@@ -1,30 +0,0 @@
-var django_port = process.env.npm_package_config_django_port,
- django_host = process.env.npm_package_config_django_host;
-
-module.exports = {
- http: {
- bsFiles: {
- src: [
- 'static/**/*',
- '!static/tower.vendor.js',
- '!static/tower.vendor.map.js',
- '!static/tower.js.map'
- ]
- },
- options: {
- proxy: {
- target: `https://${django_host}:${django_port}`,
- ws: true
- },
- keepalive: false,
- watchTask: true,
- reloadDebounce: 1000,
- // The browser-sync-client lib will write your current scroll position to window.name
- // https://github.com/BrowserSync/browser-sync-client/blob/a2718faa91e11553feca7a3962313bf1ec6ba3e5/dist/index.js#L500
- // This strategy is enabled in the core browser-sync lib, and not externally documented as an option. Yay!
- // https://github.com/BrowserSync/browser-sync/blob/a522aaf12b6167d5591ed285eb3086f43a4d9ac2/lib/default-config.js#L312
- scrollRestoreTechnique: null,
- injectChanges: true
- }
- }
-};
diff --git a/awx/ui/grunt-tasks/clean.js b/awx/ui/grunt-tasks/clean.js
deleted file mode 100644
index ddea762235..0000000000
--- a/awx/ui/grunt-tasks/clean.js
+++ /dev/null
@@ -1,7 +0,0 @@
-module.exports = {
- options: { force: true },
- static: 'static/*',
- coverage: 'coverage/*',
- tmp: '../../tmp',
- jshint: 'coverage/jshint.xml'
-};
diff --git a/awx/ui/grunt-tasks/complexity.js b/awx/ui/grunt-tasks/complexity.js
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/awx/ui/grunt-tasks/concat.js b/awx/ui/grunt-tasks/concat.js
deleted file mode 100644
index 3517ef6d60..0000000000
--- a/awx/ui/grunt-tasks/concat.js
+++ /dev/null
@@ -1,17 +0,0 @@
-module.exports = {
- css: {
- src: [
- 'static/assets/custom-theme/jquery-ui-1.10.3.custom.min.css',
- 'static/assets/ansible-bootstrap.min.css',
- 'static/assets/fontcustom/fontcustom.css',
- 'static/lib/components-font-awesome/css/font-awesome.min.css',
- 'static/lib/select2/dist/css/select2.css',
- 'static/lib/codemirror/lib/codemirror.css',
- 'static/lib/codemirror/theme/elegant.css',
- 'static/lib/codemirror/addon/lint/lint.css',
- 'static/lib/nvd3/build/nv.d3.css',
- 'static/lib/ng-toast/dist/ngToast.min.css'
- ],
- dest: 'static/css/app.vendor.css'
- }
-};
diff --git a/awx/ui/grunt-tasks/concurrent.js b/awx/ui/grunt-tasks/concurrent.js
deleted file mode 100644
index 04e8ecd8ab..0000000000
--- a/awx/ui/grunt-tasks/concurrent.js
+++ /dev/null
@@ -1,61 +0,0 @@
-module.exports = {
- dev: {
- tasks: [
- 'copy:vendor',
- 'copy:assets',
- 'copy:icons',
- 'copy:fonts',
- 'copy:images',
- 'copy:partials',
- 'copy:views',
- 'copy:languages',
- 'copy:config',
- 'less:dev'
- ]
- },
- // This concurrent target is intended for development ui builds that do not require raising browser-sync or filesystem polling
- devNoSync: {
- tasks: [
- 'copy:vendor',
- 'copy:assets',
- 'copy:icons',
- 'copy:fonts',
- 'copy:images',
- 'copy:partials',
- 'copy:views',
- 'copy:languages',
- 'copy:config',
- 'less:dev',
- 'webpack:dev'
- ]
- },
- prod: {
- tasks: [
- 'newer:copy:vendor',
- 'newer:copy:assets',
- 'newer:copy:icons',
- 'newer:copy:fonts',
- 'newer:copy:images',
- 'newer:copy:partials',
- 'newer:copy:views',
- 'newer:copy:languages',
- 'newer:copy:config',
- 'newer:less:prod'
- ]
- },
- watch: {
- tasks: [
- 'watch:css',
- 'watch:partials',
- 'watch:views',
- 'watch:assets',
- [
- 'watch:config'
- ]
- ],
- options: {
- logConcurrentOutput: true
- }
- }
-};
-
diff --git a/awx/ui/grunt-tasks/copy.js b/awx/ui/grunt-tasks/copy.js
deleted file mode 100644
index cca102dc8d..0000000000
--- a/awx/ui/grunt-tasks/copy.js
+++ /dev/null
@@ -1,100 +0,0 @@
-var staticFiles = ['angular-tz-extensions/tz/data/*',
- 'angular-scheduler/lib/angular-scheduler-detail.html',
- 'angular-scheduler/lib/angular-scheduler.html',
- 'nvd3/build/nv.d3.css',
- 'ng-toast/dist/ngToast.min.css',
- 'codemirror/addon/lint/lint.css',
- 'codemirror/theme/elegant.css',
- 'codemirror/lib/codemirror.css',
- 'select2/dist/css/select2.css',
- 'components-font-awesome/css/font-awesome.min.css',
- 'components-font-awesome/fonts/fontawesome-webfont.ttf',
- 'components-font-awesome/fonts/fontawesome-webfont.woff',
- 'components-font-awesome/fonts/fontawesome-webfont.woff2'
-];
-
-module.exports = {
- fonts: {
- files: [{
- cwd: 'client/',
- expand: true,
- flatten: true,
- filter: 'isFile',
- src: 'assets/fontcustom/**/*',
- dest: 'static/fonts/'
- }]
- },
- icons: {
- files: [{
- cwd: 'node_modules/',
- expand: true,
- flatten: true,
- filter: 'isFile',
- src: 'components-font-awesome/fonts/*',
- dest: 'static/fonts/'
- }]
- },
- images: {
- files: [{
- cwd: 'client/',
- expand: true,
- flatten: true,
- filter: 'isFile',
- src: 'assets/custom-theme/images.new/*',
- dest: 'static/images/'
- }]
- },
- assets: {
- files: [{
- cwd: 'client/',
- expand: true,
- src: 'assets/**/*',
- dest: 'static/'
- }]
- },
- vendor: {
- files: [{
- expand: true,
- cwd: 'node_modules/',
- src: staticFiles,
- dest: 'static/lib/'
- }]
- },
- views: {
- files: [{
- cwd: 'client/features',
- expand: true,
- src: ['**/*.view.html'],
- dest: 'static/views/'
- }]
- },
- partials: {
- files: [{
- cwd: 'client/src',
- expand: true,
- src: ['**/*.partial.html'],
- dest: 'static/partials'
- }, {
- cwd: 'client/src/partials',
- expand: true,
- src: ['*.html'],
- dest: 'static/partials/'
- }, {
- cwd: 'client/lib/components',
- expand: true,
- src: ['**/*.partial.html'],
- dest: 'static/partials/components/'
- }]
- },
- languages: {
- files: [{
- cwd: 'client/',
- expand: true,
- src: 'languages/*.json',
- dest: 'static/'
- }]
- },
- config: {
- files: { 'static/config.js': ['client/src/config.js'] }
- }
-};
diff --git a/awx/ui/grunt-tasks/cssmin.js b/awx/ui/grunt-tasks/cssmin.js
deleted file mode 100644
index bec94036a2..0000000000
--- a/awx/ui/grunt-tasks/cssmin.js
+++ /dev/null
@@ -1,22 +0,0 @@
-module.exports = {
- vendor: {
- files: [
- {
- expand: true,
- src: 'static/css/app.vendor.css',
- dest: '.',
- ext: '.vendor.css'
- }
- ]
- },
- source: {
- files: [
- {
- expand: true,
- src: 'static/css/app.css',
- dest: '.',
- ext: '.css'
- }
- ]
- }
-};
diff --git a/awx/ui/grunt-tasks/less.js b/awx/ui/grunt-tasks/less.js
deleted file mode 100644
index b0299ecb7d..0000000000
--- a/awx/ui/grunt-tasks/less.js
+++ /dev/null
@@ -1,27 +0,0 @@
-var AutoPrefixer = require('less-plugin-autoprefix');
-
-var autoPrefixer = new AutoPrefixer({
- browsers: [ 'last 2 versions' ]
-});
-
-module.exports = {
- dev: {
- files: {
- 'static/css/app.css': 'client/lib/theme/index.less'
- },
- options: {
- sourceMap: true,
- plugins: [ autoPrefixer ]
- }
- },
- prod: {
- files: {
- 'static/css/app.css': 'client/lib/theme/index.less'
- },
- options: {
- compress: true,
- sourceMap: false,
- plugins: [ autoPrefixer ]
- }
- }
-};
diff --git a/awx/ui/grunt-tasks/nggettext_compile.js b/awx/ui/grunt-tasks/nggettext_compile.js
index c69c159ef7..1fb250a6d4 100644
--- a/awx/ui/grunt-tasks/nggettext_compile.js
+++ b/awx/ui/grunt-tasks/nggettext_compile.js
@@ -3,13 +3,14 @@ module.exports = {
options: {
format: 'json'
},
- files: [ {
+ files: [{
expand: true,
- dot: true,
- dest: 'client/languages',
- cwd: 'po',
- ext: '.json',
- src: ['*.po']
- } ]
+ dot: true,
+ dest: 'client/languages',
+ cwd: 'po',
+ ext: '.json',
+ src: ['*.po']
+ }]
}
};
+
diff --git a/awx/ui/grunt-tasks/watch.js b/awx/ui/grunt-tasks/watch.js
deleted file mode 100644
index e2a6c4e55c..0000000000
--- a/awx/ui/grunt-tasks/watch.js
+++ /dev/null
@@ -1,26 +0,0 @@
-module.exports = {
- css: {
- files: 'client/**/*.less',
- tasks: ['less:dev']
- },
- partials: {
- files: [
- 'client/lib/components/**/*.partial.html',
- 'client/src/**/*.partial.html',
- 'client/src/partials/*.html'
- ],
- tasks: ['newer:copy:partials']
- },
- views: {
- files: 'client/features/**/*.view.html',
- tasks: ['newer:copy:views']
- },
- assets: {
- files: 'client/assets',
- tasks: ['newer:copy:assets']
- },
- config: {
- files: 'client/src/config.js',
- tasks: ['newer:copy:config']
- }
-};
diff --git a/awx/ui/grunt-tasks/webpack.js b/awx/ui/grunt-tasks/webpack.js
deleted file mode 100644
index dca7c96cf1..0000000000
--- a/awx/ui/grunt-tasks/webpack.js
+++ /dev/null
@@ -1,5 +0,0 @@
-var config = require('../webpack.config.js');
-module.exports = {
- dev: config.dev,
- prod: config.release
-};
diff --git a/awx/ui/karma.conf.js b/awx/ui/karma.conf.js
index bd0b3381eb..da9a91d2f2 100644
--- a/awx/ui/karma.conf.js
+++ b/awx/ui/karma.conf.js
@@ -1,5 +1,4 @@
-var path = require('path'),
- webpack = require('webpack');
+const webpackTestConfig = require('./build/webpack.test.js');
module.exports = function(config) {
config.set({
@@ -16,80 +15,20 @@ module.exports = function(config) {
'jasmine',
],
reporters: ['progress', 'coverage', 'junit'],
- files: [
+ files:[
+ './client/src/vendor.js',
'./client/src/app.js',
'./node_modules/angular-mocks/angular-mocks.js',
{ pattern: './tests/**/*-test.js' },
'client/src/**/*.html'
],
preprocessors: {
+ './client/src/vendor.js': ['webpack', 'sourcemap'],
'./client/src/app.js': ['webpack', 'sourcemap'],
'./tests/**/*-test.js': ['webpack', 'sourcemap'],
'client/src/**/*.html': ['html2js']
},
- webpack: {
- plugins: [
- // Django-provided definitions
- new webpack.DefinePlugin({
- $basePath: '/static/'
- }),
- // vendor shims:
- // [{expected_local_var : dependency}, ...]
- new webpack.ProvidePlugin({
- $: 'jquery',
- jQuery: 'jquery',
- 'window.jQuery': 'jquery',
- _: 'lodash',
- 'CodeMirror': 'codemirror',
- '$.fn.datepicker': 'bootstrap-datepicker'
- })
- ],
- module: {
- loaders: [{
- test: /\.angular.js$/,
- loader: 'expose?angular'
- },
- {
- test: /\.json$/,
- loader: 'json-loader',
- exclude: '/(node_modules)/'
- },
- {
- test: /\.js$/,
- loader: 'babel-loader',
- include: [path.resolve() + '/tests/'],
- exclude: '/(node_modules)/',
- query: {
- presets: ['es2015']
- }
- }, {
- test: /\.js$/,
- loader: 'babel-loader',
- include: [
- path.resolve() + '/client/src/',
- path.resolve() + '/client/lib/',
- path.resolve() + '/client/features/'
- ],
- exclude: '/(node_modules)/',
- query: {
- presets: ['es2015'],
- plugins: ['istanbul']
- }
- }
- ]
- },
- resolve: {
- root: [],
- modulesDirectory: ['node_modules'],
- alias: {
- 'jquery.resize': path.resolve() + '/node_modules/javascript-detect-element-resize/jquery.resize.js',
- 'select2': path.resolve() + '/node_modules/select2/dist/js/select2.full.js'
- }
- },
- devtool: 'inline-source-map',
- debug: true,
- cache: true
- },
+ webpack: webpackTestConfig,
webpackMiddleware: {
stats: {
colors: true
diff --git a/awx/ui/npm-shrinkwrap.json b/awx/ui/npm-shrinkwrap.json
deleted file mode 100644
index c46c589ccb..0000000000
--- a/awx/ui/npm-shrinkwrap.json
+++ /dev/null
@@ -1,6187 +0,0 @@
-{
- "name": "ansible-tower",
- "version": "3.1.0",
- "dependencies": {
- "abbrev": {
- "version": "1.1.0",
- "from": "abbrev@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz"
- },
- "accepts": {
- "version": "1.3.3",
- "from": "accepts@>=1.3.3 <1.4.0",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz"
- },
- "acorn": {
- "version": "3.3.0",
- "from": "acorn@>=3.1.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"
- },
- "acorn-jsx": {
- "version": "3.0.1",
- "from": "acorn-jsx@>=3.0.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"
- },
- "acorn-object-spread": {
- "version": "1.0.0",
- "from": "acorn-object-spread@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz",
- "optional": true
- },
- "adm-zip": {
- "version": "0.4.7",
- "from": "adm-zip@>=0.4.3 <0.5.0",
- "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz",
- "dev": true
- },
- "after": {
- "version": "0.8.1",
- "from": "after@0.8.1",
- "resolved": "https://registry.npmjs.org/after/-/after-0.8.1.tgz"
- },
- "agent-base": {
- "version": "2.1.1",
- "from": "agent-base@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz",
- "dev": true,
- "dependencies": {
- "semver": {
- "version": "5.0.3",
- "from": "semver@>=5.0.1 <5.1.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz",
- "dev": true
- }
- }
- },
- "ajv": {
- "version": "4.11.8",
- "from": "ajv@>=4.7.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz",
- "dev": true
- },
- "ajv-keywords": {
- "version": "1.5.1",
- "from": "ajv-keywords@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz",
- "dev": true
- },
- "align-text": {
- "version": "0.1.4",
- "from": "align-text@>=0.1.3 <0.2.0",
- "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
- "dev": true
- },
- "almond": {
- "version": "0.3.3",
- "from": "almond@>=0.3.1 <0.4.0",
- "resolved": "https://registry.npmjs.org/almond/-/almond-0.3.3.tgz"
- },
- "amdefine": {
- "version": "1.0.1",
- "from": "amdefine@>=0.0.4",
- "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
- },
- "angular": {
- "version": "1.4.14",
- "from": "angular@>=1.4.14 <1.5.0",
- "resolved": "https://registry.npmjs.org/angular/-/angular-1.4.14.tgz"
- },
- "angular-breadcrumb": {
- "version": "0.4.1",
- "from": "ansible/angular-breadcrumb#0.4.1",
- "resolved": "git://github.com/ansible/angular-breadcrumb.git#6c2b1ad45ad5fbe7adf39af1ef3b294ca8e207a9"
- },
- "angular-codemirror": {
- "version": "1.0.4",
- "from": "ansible/angular-codemirror#1.0.4",
- "resolved": "git://github.com/ansible/angular-codemirror.git#75c3a2d0ccdf2e4c836fab7d7617d5db6c585c1b",
- "dependencies": {
- "angular": {
- "version": "1.4.7",
- "from": "angular@1.4.7",
- "resolved": "https://registry.npmjs.org/angular/-/angular-1.4.7.tgz"
- }
- }
- },
- "angular-cookies": {
- "version": "1.4.14",
- "from": "angular-cookies@>=1.4.14 <1.5.0",
- "resolved": "https://registry.npmjs.org/angular-cookies/-/angular-cookies-1.4.14.tgz"
- },
- "angular-drag-and-drop-lists": {
- "version": "1.4.0",
- "from": "ansible/angular-drag-and-drop-lists#1.4.0",
- "resolved": "git://github.com/ansible/angular-drag-and-drop-lists.git#4d32654ab7159689a7767b9be8fc85f9812ca5a8"
- },
- "angular-duration-format": {
- "version": "1.0.1",
- "from": "angular-duration-format@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/angular-duration-format/-/angular-duration-format-1.0.1.tgz"
- },
- "angular-filters": {
- "version": "1.1.2",
- "from": "angular-filters@>=1.1.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/angular-filters/-/angular-filters-1.1.2.tgz"
- },
- "angular-gettext": {
- "version": "2.3.10",
- "from": "angular-gettext@>=2.3.5 <3.0.0",
- "resolved": "https://registry.npmjs.org/angular-gettext/-/angular-gettext-2.3.10.tgz"
- },
- "angular-gettext-tools": {
- "version": "2.3.5",
- "from": "angular-gettext-tools@>=2.3.5 <2.4.0",
- "resolved": "https://registry.npmjs.org/angular-gettext-tools/-/angular-gettext-tools-2.3.5.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.0.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "angular-md5": {
- "version": "0.1.10",
- "from": "angular-md5@>=0.1.8 <0.2.0",
- "resolved": "https://registry.npmjs.org/angular-md5/-/angular-md5-0.1.10.tgz"
- },
- "angular-mocks": {
- "version": "1.4.14",
- "from": "angular-mocks@>=1.4.14 <1.5.0",
- "resolved": "https://registry.npmjs.org/angular-mocks/-/angular-mocks-1.4.14.tgz",
- "dev": true
- },
- "angular-moment": {
- "version": "0.10.3",
- "from": "angular-moment@>=0.10.1 <0.11.0",
- "resolved": "https://registry.npmjs.org/angular-moment/-/angular-moment-0.10.3.tgz"
- },
- "angular-resource": {
- "version": "1.4.14",
- "from": "angular-resource@>=1.4.14 <1.5.0",
- "resolved": "https://registry.npmjs.org/angular-resource/-/angular-resource-1.4.14.tgz"
- },
- "angular-sanitize": {
- "version": "1.4.14",
- "from": "angular-sanitize@>=1.4.14 <1.5.0",
- "resolved": "https://registry.npmjs.org/angular-sanitize/-/angular-sanitize-1.4.14.tgz"
- },
- "angular-scheduler": {
- "version": "0.1.0",
- "from": "ansible/angular-scheduler#0.1.1",
- "resolved": "git://github.com/ansible/angular-scheduler.git#9f2893a54c758b05bd6afce897488c01a6e8959d",
- "dependencies": {
- "angular-tz-extensions": {
- "version": "0.3.11",
- "from": "ansible/angular-tz-extensions",
- "resolved": "git://github.com/ansible/angular-tz-extensions.git#33caaa9ccf5dfe29a95962c17c3c9e6b9775be35",
- "dependencies": {
- "angular": {
- "version": "1.4.7",
- "from": "angular@1.4.7",
- "resolved": "https://registry.npmjs.org/angular/-/angular-1.4.7.tgz"
- },
- "jquery": {
- "version": "3.2.1",
- "from": "jquery@>=3.1.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
- }
- }
- }
- }
- },
- "angular-tz-extensions": {
- "version": "0.3.11",
- "from": "ansible/angular-tz-extensions#0.3.13",
- "resolved": "git://github.com/ansible/angular-tz-extensions.git#33caaa9ccf5dfe29a95962c17c3c9e6b9775be35",
- "dependencies": {
- "angular": {
- "version": "1.4.7",
- "from": "angular@1.4.7",
- "resolved": "https://registry.npmjs.org/angular/-/angular-1.4.7.tgz"
- },
- "jquery": {
- "version": "3.2.1",
- "from": "jquery@>=3.1.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
- }
- }
- },
- "angular-ui-router": {
- "version": "1.0.0-beta.3",
- "from": "angular-ui-router@1.0.0-beta.3",
- "resolved": "https://registry.npmjs.org/angular-ui-router/-/angular-ui-router-1.0.0-beta.3.tgz"
- },
- "ansi-escapes": {
- "version": "1.4.0",
- "from": "ansi-escapes@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
- "dev": true
- },
- "ansi-regex": {
- "version": "2.1.1",
- "from": "ansi-regex@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
- },
- "ansi-styles": {
- "version": "2.2.1",
- "from": "ansi-styles@>=2.2.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
- },
- "anymatch": {
- "version": "1.3.0",
- "from": "anymatch@>=1.3.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz"
- },
- "archiver": {
- "version": "1.3.0",
- "from": "archiver@1.3.0",
- "resolved": "https://registry.npmjs.org/archiver/-/archiver-1.3.0.tgz",
- "dev": true,
- "dependencies": {
- "async": {
- "version": "2.4.1",
- "from": "async@^2.0.0",
- "resolved": "https://registry.npmjs.org/async/-/async-2.4.1.tgz",
- "dev": true
- },
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.8.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "archiver-utils": {
- "version": "1.3.0",
- "from": "archiver-utils@>=1.3.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.8.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "argparse": {
- "version": "1.0.9",
- "from": "argparse@>=1.0.7 <2.0.0",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
- "dependencies": {
- "sprintf-js": {
- "version": "1.0.3",
- "from": "sprintf-js@>=1.0.2 <1.1.0",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
- }
- }
- },
- "arr-diff": {
- "version": "2.0.0",
- "from": "arr-diff@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz"
- },
- "arr-flatten": {
- "version": "1.0.3",
- "from": "arr-flatten@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.3.tgz"
- },
- "array-differ": {
- "version": "1.0.0",
- "from": "array-differ@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
- "dev": true
- },
- "array-find-index": {
- "version": "1.0.2",
- "from": "array-find-index@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
- "dev": true
- },
- "array-flatten": {
- "version": "1.1.1",
- "from": "array-flatten@1.1.1",
- "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
- "optional": true
- },
- "array-slice": {
- "version": "0.2.3",
- "from": "array-slice@>=0.2.3 <0.3.0",
- "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz",
- "dev": true
- },
- "array-union": {
- "version": "1.0.2",
- "from": "array-union@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
- "dev": true
- },
- "array-uniq": {
- "version": "1.0.3",
- "from": "array-uniq@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
- "dev": true
- },
- "array-unique": {
- "version": "0.2.1",
- "from": "array-unique@>=0.2.1 <0.3.0",
- "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"
- },
- "arraybuffer.slice": {
- "version": "0.0.6",
- "from": "arraybuffer.slice@0.0.6",
- "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz"
- },
- "arrify": {
- "version": "1.0.1",
- "from": "arrify@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
- },
- "asap": {
- "version": "2.0.5",
- "from": "asap@>=2.0.3 <2.1.0",
- "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.5.tgz",
- "dev": true,
- "optional": true
- },
- "asn1": {
- "version": "0.2.3",
- "from": "asn1@>=0.2.3 <0.3.0",
- "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"
- },
- "assert": {
- "version": "1.4.1",
- "from": "assert@>=1.1.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
- "dev": true
- },
- "assert-plus": {
- "version": "0.2.0",
- "from": "assert-plus@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"
- },
- "async": {
- "version": "1.5.2",
- "from": "async@1.5.2",
- "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz"
- },
- "async-each": {
- "version": "1.0.1",
- "from": "async-each@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz"
- },
- "async-each-series": {
- "version": "0.1.1",
- "from": "async-each-series@0.1.1",
- "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz",
- "optional": true
- },
- "asynckit": {
- "version": "0.4.0",
- "from": "asynckit@>=0.4.0 <0.5.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
- },
- "autoprefixer": {
- "version": "6.7.7",
- "from": "autoprefixer@>=6.0.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz",
- "dev": true
- },
- "aws-sign2": {
- "version": "0.6.0",
- "from": "aws-sign2@>=0.6.0 <0.7.0",
- "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"
- },
- "aws4": {
- "version": "1.6.0",
- "from": "aws4@>=1.2.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz"
- },
- "babel-code-frame": {
- "version": "6.22.0",
- "from": "babel-code-frame@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz",
- "dev": true
- },
- "babel-core": {
- "version": "6.24.1",
- "from": "babel-core@>=6.11.4 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@>=4.2.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- },
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@>=0.5.0 <0.6.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- }
- }
- },
- "babel-generator": {
- "version": "6.24.1",
- "from": "babel-generator@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- },
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@^0.5.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- }
- }
- },
- "babel-helper-call-delegate": {
- "version": "6.24.1",
- "from": "babel-helper-call-delegate@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
- "dev": true
- },
- "babel-helper-define-map": {
- "version": "6.24.1",
- "from": "babel-helper-define-map@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "babel-helper-function-name": {
- "version": "6.24.1",
- "from": "babel-helper-function-name@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
- "dev": true
- },
- "babel-helper-get-function-arity": {
- "version": "6.24.1",
- "from": "babel-helper-get-function-arity@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
- "dev": true
- },
- "babel-helper-hoist-variables": {
- "version": "6.24.1",
- "from": "babel-helper-hoist-variables@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
- "dev": true
- },
- "babel-helper-optimise-call-expression": {
- "version": "6.24.1",
- "from": "babel-helper-optimise-call-expression@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
- "dev": true
- },
- "babel-helper-regex": {
- "version": "6.24.1",
- "from": "babel-helper-regex@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "babel-helper-replace-supers": {
- "version": "6.24.1",
- "from": "babel-helper-replace-supers@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
- "dev": true
- },
- "babel-helpers": {
- "version": "6.24.1",
- "from": "babel-helpers@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
- "dev": true
- },
- "babel-istanbul": {
- "version": "0.11.0",
- "from": "babel-istanbul@>=0.11.0 <0.12.0",
- "resolved": "https://registry.npmjs.org/babel-istanbul/-/babel-istanbul-0.11.0.tgz",
- "dev": true,
- "dependencies": {
- "abbrev": {
- "version": "1.0.9",
- "from": "abbrev@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz",
- "dev": true
- },
- "esprima": {
- "version": "2.7.3",
- "from": "esprima@>=2.7.0 <2.8.0",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz",
- "dev": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@0.5.x",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- },
- "source-map": {
- "version": "0.4.4",
- "from": "source-map@>=0.4.0 <0.5.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
- "dev": true
- },
- "supports-color": {
- "version": "3.1.2",
- "from": "supports-color@>=3.1.0 <3.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz",
- "dev": true
- },
- "wordwrap": {
- "version": "1.0.0",
- "from": "wordwrap@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
- "dev": true
- }
- }
- },
- "babel-loader": {
- "version": "6.4.1",
- "from": "babel-loader@>=6.2.4 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-6.4.1.tgz",
- "dev": true,
- "dependencies": {
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@^0.5.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- }
- }
- },
- "babel-messages": {
- "version": "6.23.0",
- "from": "babel-messages@>=6.23.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "dev": true
- },
- "babel-plugin-check-es2015-constants": {
- "version": "6.22.0",
- "from": "babel-plugin-check-es2015-constants@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
- "dev": true
- },
- "babel-plugin-istanbul": {
- "version": "2.0.3",
- "from": "babel-plugin-istanbul@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-2.0.3.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-arrow-functions": {
- "version": "6.22.0",
- "from": "babel-plugin-transform-es2015-arrow-functions@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-block-scoped-functions": {
- "version": "6.22.0",
- "from": "babel-plugin-transform-es2015-block-scoped-functions@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-block-scoping": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-block-scoping@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "babel-plugin-transform-es2015-classes": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-classes@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-computed-properties": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-computed-properties@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-destructuring": {
- "version": "6.23.0",
- "from": "babel-plugin-transform-es2015-destructuring@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-duplicate-keys": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-duplicate-keys@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-for-of": {
- "version": "6.23.0",
- "from": "babel-plugin-transform-es2015-for-of@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-function-name": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-function-name@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-literals": {
- "version": "6.22.0",
- "from": "babel-plugin-transform-es2015-literals@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-modules-amd": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-modules-amd@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-modules-commonjs": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-modules-commonjs@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-modules-systemjs": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-modules-systemjs@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-modules-umd": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-modules-umd@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-object-super": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-object-super@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-parameters": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-parameters@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-shorthand-properties": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-shorthand-properties@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-spread": {
- "version": "6.22.0",
- "from": "babel-plugin-transform-es2015-spread@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-sticky-regex": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-sticky-regex@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-template-literals": {
- "version": "6.22.0",
- "from": "babel-plugin-transform-es2015-template-literals@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-typeof-symbol": {
- "version": "6.23.0",
- "from": "babel-plugin-transform-es2015-typeof-symbol@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
- "dev": true
- },
- "babel-plugin-transform-es2015-unicode-regex": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-es2015-unicode-regex@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-regenerator": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-regenerator@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz",
- "dev": true
- },
- "babel-plugin-transform-strict-mode": {
- "version": "6.24.1",
- "from": "babel-plugin-transform-strict-mode@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
- "dev": true
- },
- "babel-preset-es2015": {
- "version": "6.24.1",
- "from": "babel-preset-es2015@>=6.9.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz",
- "dev": true
- },
- "babel-register": {
- "version": "6.24.1",
- "from": "babel-register@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@>=0.5.1 <0.6.0",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- }
- }
- },
- "babel-runtime": {
- "version": "6.23.0",
- "from": "babel-runtime@>=6.22.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "dev": true
- },
- "babel-template": {
- "version": "6.24.1",
- "from": "babel-template@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "babel-traverse": {
- "version": "6.24.1",
- "from": "babel-traverse@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "babel-types": {
- "version": "6.24.1",
- "from": "babel-types@>=6.24.1 <7.0.0",
- "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.24.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.2.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "babylon": {
- "version": "6.17.2",
- "from": "babylon@>=6.11.0 <7.0.0",
- "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.17.2.tgz",
- "dev": true
- },
- "backo2": {
- "version": "1.0.2",
- "from": "backo2@1.0.2",
- "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz"
- },
- "balanced-match": {
- "version": "0.4.2",
- "from": "balanced-match@>=0.4.1 <0.5.0",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz"
- },
- "base64-arraybuffer": {
- "version": "0.1.5",
- "from": "base64-arraybuffer@0.1.5",
- "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"
- },
- "base64-js": {
- "version": "1.2.0",
- "from": "base64-js@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz",
- "dev": true
- },
- "base64id": {
- "version": "0.1.0",
- "from": "base64id@0.1.0",
- "resolved": "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz",
- "optional": true
- },
- "batch": {
- "version": "0.5.3",
- "from": "batch@0.5.3",
- "resolved": "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz",
- "optional": true
- },
- "bcrypt-pbkdf": {
- "version": "1.0.1",
- "from": "bcrypt-pbkdf@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
- "optional": true
- },
- "beeper": {
- "version": "1.1.1",
- "from": "beeper@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz",
- "dev": true
- },
- "better-assert": {
- "version": "1.0.2",
- "from": "better-assert@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"
- },
- "big.js": {
- "version": "3.1.3",
- "from": "big.js@>=3.1.3 <4.0.0",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz"
- },
- "binary-extensions": {
- "version": "1.8.0",
- "from": "binary-extensions@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz"
- },
- "binary-search": {
- "version": "1.3.2",
- "from": "binary-search@>=1.2.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/binary-search/-/binary-search-1.3.2.tgz",
- "dev": true
- },
- "bindings": {
- "version": "1.2.1",
- "from": "bindings@>=1.2.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"
- },
- "bl": {
- "version": "1.2.1",
- "from": "bl@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz",
- "dev": true
- },
- "blob": {
- "version": "0.0.4",
- "from": "blob@0.0.4",
- "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz"
- },
- "bluebird": {
- "version": "3.5.0",
- "from": "bluebird@>=3.3.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.0.tgz",
- "dev": true
- },
- "body-parser": {
- "version": "1.14.2",
- "from": "body-parser@>=1.14.0 <1.15.0",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.14.2.tgz",
- "optional": true,
- "dependencies": {
- "http-errors": {
- "version": "1.3.1",
- "from": "http-errors@>=1.3.1 <1.4.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz",
- "optional": true
- },
- "qs": {
- "version": "5.2.0",
- "from": "qs@5.2.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-5.2.0.tgz",
- "optional": true
- }
- }
- },
- "boolbase": {
- "version": "1.0.0",
- "from": "boolbase@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "dev": true
- },
- "boom": {
- "version": "2.10.1",
- "from": "boom@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"
- },
- "bootstrap": {
- "version": "3.3.7",
- "from": "bootstrap@>=3.1.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz"
- },
- "bootstrap-datepicker": {
- "version": "1.6.4",
- "from": "bootstrap-datepicker@>=1.4.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.6.4.tgz"
- },
- "brace-expansion": {
- "version": "1.1.7",
- "from": "brace-expansion@>=1.1.7 <2.0.0",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz"
- },
- "braces": {
- "version": "1.8.5",
- "from": "braces@>=1.8.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz"
- },
- "browser-sync": {
- "version": "2.18.12",
- "from": "browser-sync@>=2.14.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.18.12.tgz",
- "optional": true
- },
- "browser-sync-client": {
- "version": "2.5.1",
- "from": "browser-sync-client@2.5.1",
- "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.5.1.tgz",
- "optional": true
- },
- "browser-sync-ui": {
- "version": "0.6.3",
- "from": "browser-sync-ui@0.6.3",
- "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-0.6.3.tgz",
- "optional": true
- },
- "browserify-aes": {
- "version": "0.4.0",
- "from": "browserify-aes@0.4.0",
- "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-0.4.0.tgz",
- "dev": true
- },
- "browserify-zlib": {
- "version": "0.1.4",
- "from": "browserify-zlib@>=0.1.4 <0.2.0",
- "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz",
- "dev": true
- },
- "browserslist": {
- "version": "1.7.7",
- "from": "browserslist@>=1.7.6 <2.0.0",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz",
- "dev": true
- },
- "bs-recipes": {
- "version": "1.3.4",
- "from": "bs-recipes@1.3.4",
- "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz",
- "optional": true
- },
- "buble": {
- "version": "0.12.5",
- "from": "buble@>=0.12.0 <0.13.0",
- "resolved": "https://registry.npmjs.org/buble/-/buble-0.12.5.tgz",
- "optional": true
- },
- "bubleify": {
- "version": "0.5.1",
- "from": "bubleify@>=0.5.1 <0.6.0",
- "resolved": "https://registry.npmjs.org/bubleify/-/bubleify-0.5.1.tgz",
- "optional": true
- },
- "buffer": {
- "version": "4.9.1",
- "from": "buffer@>=4.9.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
- "dev": true
- },
- "buffer-crc32": {
- "version": "0.2.13",
- "from": "buffer-crc32@>=0.2.1 <0.3.0",
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
- "dev": true
- },
- "builtin-modules": {
- "version": "1.1.1",
- "from": "builtin-modules@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"
- },
- "builtin-status-codes": {
- "version": "3.0.0",
- "from": "builtin-status-codes@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
- "dev": true
- },
- "bytes": {
- "version": "2.2.0",
- "from": "bytes@2.2.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.2.0.tgz",
- "optional": true
- },
- "caller-path": {
- "version": "0.1.0",
- "from": "caller-path@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz",
- "dev": true
- },
- "callsite": {
- "version": "1.0.0",
- "from": "callsite@1.0.0",
- "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"
- },
- "callsites": {
- "version": "0.2.0",
- "from": "callsites@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
- "dev": true
- },
- "camelcase": {
- "version": "1.2.1",
- "from": "camelcase@>=1.2.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"
- },
- "camelcase-keys": {
- "version": "2.1.0",
- "from": "camelcase-keys@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
- "dev": true,
- "dependencies": {
- "camelcase": {
- "version": "2.1.1",
- "from": "camelcase@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
- "dev": true
- }
- }
- },
- "caniuse-db": {
- "version": "1.0.30000679",
- "from": "caniuse-db@>=1.0.30000634 <2.0.0",
- "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000679.tgz",
- "dev": true
- },
- "caseless": {
- "version": "0.11.0",
- "from": "caseless@>=0.11.0 <0.12.0",
- "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"
- },
- "center-align": {
- "version": "0.1.3",
- "from": "center-align@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
- "dev": true
- },
- "chalk": {
- "version": "1.1.3",
- "from": "chalk@>=1.1.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"
- },
- "cheerio": {
- "version": "0.19.0",
- "from": "cheerio@>=0.19.0 <0.20.0",
- "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.19.0.tgz",
- "dev": true
- },
- "chokidar": {
- "version": "1.7.0",
- "from": "chokidar@1.7.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz"
- },
- "circular-json": {
- "version": "0.3.1",
- "from": "circular-json@>=0.3.1 <0.4.0",
- "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.1.tgz",
- "dev": true
- },
- "clean-css": {
- "version": "4.1.7",
- "from": "clean-css@>=4.1.1 <4.2.0",
- "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.1.7.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@>=0.5.0 <0.6.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- }
- }
- },
- "cli": {
- "version": "1.0.1",
- "from": "cli@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz",
- "dev": true
- },
- "cli-cursor": {
- "version": "1.0.2",
- "from": "cli-cursor@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz",
- "dev": true
- },
- "cli-width": {
- "version": "2.1.0",
- "from": "cli-width@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz",
- "dev": true
- },
- "cliui": {
- "version": "3.2.0",
- "from": "cliui@>=3.0.3 <4.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"
- },
- "clone": {
- "version": "1.0.2",
- "from": "clone@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz",
- "dev": true
- },
- "co": {
- "version": "4.6.0",
- "from": "co@>=4.6.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "dev": true
- },
- "code-point-at": {
- "version": "1.1.0",
- "from": "code-point-at@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
- },
- "codemirror": {
- "version": "5.26.0",
- "from": "codemirror@>=5.17.0 <6.0.0",
- "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.26.0.tgz"
- },
- "coffee-script": {
- "version": "1.10.0",
- "from": "coffee-script@>=1.10.0 <1.11.0",
- "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.10.0.tgz",
- "dev": true
- },
- "colors": {
- "version": "1.1.2",
- "from": "colors@>=1.1.2 <1.2.0",
- "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz",
- "dev": true
- },
- "combine-lists": {
- "version": "1.0.1",
- "from": "combine-lists@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.5.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "combined-stream": {
- "version": "1.0.5",
- "from": "combined-stream@>=1.0.5 <1.1.0",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz"
- },
- "commander": {
- "version": "2.9.0",
- "from": "commander@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"
- },
- "commondir": {
- "version": "1.0.1",
- "from": "commondir@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
- "dev": true
- },
- "component-bind": {
- "version": "1.0.0",
- "from": "component-bind@1.0.0",
- "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz"
- },
- "component-emitter": {
- "version": "1.1.2",
- "from": "component-emitter@1.1.2",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz"
- },
- "component-inherit": {
- "version": "0.0.3",
- "from": "component-inherit@0.0.3",
- "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz"
- },
- "components-font-awesome": {
- "version": "4.7.0",
- "from": "components-font-awesome@>=4.6.1 <5.0.0",
- "resolved": "https://registry.npmjs.org/components-font-awesome/-/components-font-awesome-4.7.0.tgz"
- },
- "compress-commons": {
- "version": "1.2.0",
- "from": "compress-commons@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.0.tgz",
- "dev": true
- },
- "compressible": {
- "version": "2.0.10",
- "from": "compressible@>=2.0.8 <2.1.0",
- "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.10.tgz",
- "optional": true
- },
- "compression": {
- "version": "1.6.2",
- "from": "compression@>=1.5.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/compression/-/compression-1.6.2.tgz",
- "optional": true,
- "dependencies": {
- "bytes": {
- "version": "2.3.0",
- "from": "bytes@2.3.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.3.0.tgz",
- "optional": true
- }
- }
- },
- "concat-map": {
- "version": "0.0.1",
- "from": "concat-map@0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
- },
- "concat-stream": {
- "version": "1.6.0",
- "from": "concat-stream@>=1.5.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz",
- "dev": true
- },
- "connect": {
- "version": "3.5.0",
- "from": "connect@3.5.0",
- "resolved": "https://registry.npmjs.org/connect/-/connect-3.5.0.tgz",
- "optional": true
- },
- "connect-history-api-fallback": {
- "version": "1.3.0",
- "from": "connect-history-api-fallback@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz",
- "optional": true
- },
- "console-browserify": {
- "version": "1.1.0",
- "from": "console-browserify@>=1.1.0 <1.2.0",
- "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz",
- "dev": true
- },
- "constants-browserify": {
- "version": "1.0.0",
- "from": "constants-browserify@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
- "dev": true
- },
- "contains-path": {
- "version": "0.1.0",
- "from": "contains-path@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
- "dev": true
- },
- "content-disposition": {
- "version": "0.5.2",
- "from": "content-disposition@0.5.2",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
- "optional": true
- },
- "content-type": {
- "version": "1.0.2",
- "from": "content-type@>=1.0.1 <1.1.0",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz"
- },
- "contextify": {
- "version": "0.1.15",
- "from": "contextify@>=0.1.5 <0.2.0",
- "resolved": "https://registry.npmjs.org/contextify/-/contextify-0.1.15.tgz"
- },
- "convert-source-map": {
- "version": "1.5.0",
- "from": "convert-source-map@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz",
- "dev": true
- },
- "cookie": {
- "version": "0.3.1",
- "from": "cookie@0.3.1",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"
- },
- "cookie-signature": {
- "version": "1.0.6",
- "from": "cookie-signature@1.0.6",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
- "optional": true
- },
- "core-js": {
- "version": "2.4.1",
- "from": "core-js@>=2.4.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz",
- "dev": true
- },
- "core-util-is": {
- "version": "1.0.2",
- "from": "core-util-is@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
- },
- "crc": {
- "version": "3.4.4",
- "from": "crc@>=3.4.4 <4.0.0",
- "resolved": "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz",
- "dev": true
- },
- "crc32-stream": {
- "version": "2.0.0",
- "from": "crc32-stream@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz",
- "dev": true
- },
- "cryptiles": {
- "version": "2.0.5",
- "from": "cryptiles@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"
- },
- "crypto-browserify": {
- "version": "3.3.0",
- "from": "crypto-browserify@3.3.0",
- "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.3.0.tgz",
- "dev": true
- },
- "cson-parser": {
- "version": "1.3.5",
- "from": "cson-parser@>=1.0.9 <2.0.0",
- "resolved": "https://registry.npmjs.org/cson-parser/-/cson-parser-1.3.5.tgz",
- "dev": true
- },
- "css-select": {
- "version": "1.0.0",
- "from": "css-select@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.0.0.tgz",
- "dev": true
- },
- "css-what": {
- "version": "1.0.0",
- "from": "css-what@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-1.0.0.tgz",
- "dev": true
- },
- "cssom": {
- "version": "0.2.5",
- "from": "cssom@>=0.2.5 <0.3.0",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.2.5.tgz"
- },
- "cssstyle": {
- "version": "0.2.37",
- "from": "cssstyle@>=0.2.3 <0.3.0",
- "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz",
- "dependencies": {
- "cssom": {
- "version": "0.3.2",
- "from": "cssom@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz"
- }
- }
- },
- "currently-unhandled": {
- "version": "0.4.1",
- "from": "currently-unhandled@>=0.4.1 <0.5.0",
- "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
- "dev": true
- },
- "custom-event": {
- "version": "1.0.1",
- "from": "custom-event@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz",
- "dev": true
- },
- "d": {
- "version": "1.0.0",
- "from": "d@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz",
- "dev": true
- },
- "d3": {
- "version": "3.3.13",
- "from": "d3@>=3.3.13 <3.4.0",
- "resolved": "https://registry.npmjs.org/d3/-/d3-3.3.13.tgz"
- },
- "dashdash": {
- "version": "1.14.1",
- "from": "dashdash@>=1.12.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "from": "assert-plus@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
- }
- }
- },
- "date-now": {
- "version": "0.1.4",
- "from": "date-now@>=0.1.4 <0.2.0",
- "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz",
- "dev": true
- },
- "date-time": {
- "version": "1.1.0",
- "from": "date-time@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/date-time/-/date-time-1.1.0.tgz",
- "dev": true
- },
- "dateformat": {
- "version": "1.0.12",
- "from": "dateformat@>=1.0.12 <1.1.0",
- "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz",
- "dev": true
- },
- "debug": {
- "version": "2.2.0",
- "from": "debug@>=2.2.0 <2.3.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz"
- },
- "decamelize": {
- "version": "1.2.0",
- "from": "decamelize@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
- },
- "deep-is": {
- "version": "0.1.3",
- "from": "deep-is@>=0.1.3 <0.2.0",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
- "dev": true
- },
- "del": {
- "version": "2.2.2",
- "from": "del@>=2.0.2 <3.0.0",
- "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz",
- "dev": true
- },
- "delayed-stream": {
- "version": "1.0.0",
- "from": "delayed-stream@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
- },
- "depd": {
- "version": "1.1.0",
- "from": "depd@>=1.1.0 <1.2.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz"
- },
- "destroy": {
- "version": "1.0.4",
- "from": "destroy@>=1.0.4 <1.1.0",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"
- },
- "detect-indent": {
- "version": "4.0.0",
- "from": "detect-indent@>=4.0.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
- "dev": true
- },
- "dev-ip": {
- "version": "1.0.1",
- "from": "dev-ip@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz",
- "optional": true
- },
- "di": {
- "version": "0.0.1",
- "from": "di@>=0.0.1 <0.0.2",
- "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz",
- "dev": true
- },
- "doctrine": {
- "version": "2.0.0",
- "from": "doctrine@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.0.0.tgz",
- "dev": true
- },
- "dom-serialize": {
- "version": "2.2.1",
- "from": "dom-serialize@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz",
- "dev": true
- },
- "dom-serializer": {
- "version": "0.1.0",
- "from": "dom-serializer@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz",
- "dev": true,
- "dependencies": {
- "domelementtype": {
- "version": "1.1.3",
- "from": "domelementtype@>=1.1.1 <1.2.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz",
- "dev": true
- }
- }
- },
- "domain-browser": {
- "version": "1.1.7",
- "from": "domain-browser@>=1.1.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz",
- "dev": true
- },
- "domelementtype": {
- "version": "1.3.0",
- "from": "domelementtype@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz",
- "dev": true
- },
- "domhandler": {
- "version": "2.3.0",
- "from": "domhandler@>=2.3.0 <2.4.0",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz",
- "dev": true
- },
- "domutils": {
- "version": "1.4.3",
- "from": "domutils@>=1.4.0 <1.5.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.4.3.tgz",
- "dev": true
- },
- "duplexer": {
- "version": "0.1.1",
- "from": "duplexer@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
- "dev": true
- },
- "duplexify": {
- "version": "3.5.0",
- "from": "duplexify@>=3.1.2 <4.0.0",
- "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.0.tgz",
- "dev": true
- },
- "easy-extender": {
- "version": "2.3.2",
- "from": "easy-extender@2.3.2",
- "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.2.tgz",
- "optional": true,
- "dependencies": {
- "lodash": {
- "version": "3.10.1",
- "from": "lodash@>=3.10.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
- "optional": true
- }
- }
- },
- "eazy-logger": {
- "version": "3.0.2",
- "from": "eazy-logger@3.0.2",
- "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-3.0.2.tgz",
- "optional": true
- },
- "ecc-jsbn": {
- "version": "0.1.1",
- "from": "ecc-jsbn@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
- "optional": true
- },
- "ee-first": {
- "version": "1.1.1",
- "from": "ee-first@1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
- },
- "electron-to-chromium": {
- "version": "1.3.13",
- "from": "electron-to-chromium@>=1.2.7 <2.0.0",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.13.tgz",
- "dev": true
- },
- "emitter-steward": {
- "version": "1.0.0",
- "from": "emitter-steward@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/emitter-steward/-/emitter-steward-1.0.0.tgz",
- "optional": true
- },
- "emojis-list": {
- "version": "2.1.0",
- "from": "emojis-list@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"
- },
- "encodeurl": {
- "version": "1.0.1",
- "from": "encodeurl@>=1.0.1 <1.1.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz"
- },
- "end-of-stream": {
- "version": "1.0.0",
- "from": "end-of-stream@1.0.0",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz",
- "dev": true,
- "dependencies": {
- "once": {
- "version": "1.3.3",
- "from": "once@>=1.3.0 <1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz",
- "dev": true
- }
- }
- },
- "engine.io": {
- "version": "1.8.0",
- "from": "engine.io@1.8.0",
- "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-1.8.0.tgz",
- "optional": true,
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "optional": true
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "optional": true
- }
- }
- },
- "engine.io-client": {
- "version": "1.8.0",
- "from": "engine.io-client@1.8.0",
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.0.tgz",
- "dependencies": {
- "component-emitter": {
- "version": "1.2.1",
- "from": "component-emitter@1.2.1",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"
- },
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz"
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz"
- }
- }
- },
- "engine.io-parser": {
- "version": "1.3.1",
- "from": "engine.io-parser@1.3.1",
- "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.1.tgz",
- "dependencies": {
- "has-binary": {
- "version": "0.1.6",
- "from": "has-binary@0.1.6",
- "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.6.tgz"
- },
- "isarray": {
- "version": "0.0.1",
- "from": "isarray@0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
- }
- }
- },
- "enhanced-resolve": {
- "version": "0.9.1",
- "from": "enhanced-resolve@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz",
- "dev": true,
- "dependencies": {
- "memory-fs": {
- "version": "0.2.0",
- "from": "memory-fs@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz",
- "dev": true
- }
- }
- },
- "ent": {
- "version": "2.2.0",
- "from": "ent@>=2.2.0 <2.3.0",
- "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz",
- "dev": true
- },
- "entities": {
- "version": "1.1.1",
- "from": "entities@>=1.1.1 <1.2.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz",
- "dev": true
- },
- "errno": {
- "version": "0.1.4",
- "from": "errno@>=0.1.3 <0.2.0",
- "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz"
- },
- "error-ex": {
- "version": "1.3.1",
- "from": "error-ex@>=1.2.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz"
- },
- "es5-ext": {
- "version": "0.10.23",
- "from": "es5-ext@>=0.10.14 <0.11.0",
- "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.23.tgz",
- "dev": true
- },
- "es6-iterator": {
- "version": "2.0.1",
- "from": "es6-iterator@>=2.0.1 <2.1.0",
- "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz",
- "dev": true
- },
- "es6-map": {
- "version": "0.1.5",
- "from": "es6-map@>=0.1.3 <0.2.0",
- "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz",
- "dev": true
- },
- "es6-promise": {
- "version": "4.0.5",
- "from": "es6-promise@>=4.0.3 <4.1.0",
- "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.0.5.tgz",
- "dev": true
- },
- "es6-set": {
- "version": "0.1.5",
- "from": "es6-set@>=0.1.5 <0.2.0",
- "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz",
- "dev": true
- },
- "es6-symbol": {
- "version": "3.1.1",
- "from": "es6-symbol@>=3.1.1 <3.2.0",
- "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz",
- "dev": true
- },
- "es6-weak-map": {
- "version": "2.0.2",
- "from": "es6-weak-map@>=2.0.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz",
- "dev": true
- },
- "escape-html": {
- "version": "1.0.3",
- "from": "escape-html@>=1.0.3 <1.1.0",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "from": "escape-string-regexp@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
- },
- "escodegen": {
- "version": "1.8.1",
- "from": "escodegen@>=1.8.0 <1.9.0",
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz",
- "dev": true,
- "dependencies": {
- "esprima": {
- "version": "2.7.3",
- "from": "esprima@^2.7.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz",
- "dev": true
- },
- "source-map": {
- "version": "0.2.0",
- "from": "source-map@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz",
- "dev": true,
- "optional": true
- }
- }
- },
- "escope": {
- "version": "3.6.0",
- "from": "escope@>=3.6.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz",
- "dev": true,
- "dependencies": {
- "estraverse": {
- "version": "4.2.0",
- "from": "estraverse@>=4.1.1 <5.0.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
- "dev": true
- }
- }
- },
- "eslint": {
- "version": "3.19.0",
- "from": "eslint@>=3.18.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-3.19.0.tgz",
- "dev": true,
- "dependencies": {
- "estraverse": {
- "version": "4.2.0",
- "from": "estraverse@>=4.2.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
- "dev": true
- },
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.0.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@^0.5.0",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- },
- "strip-bom": {
- "version": "3.0.0",
- "from": "strip-bom@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "dev": true
- }
- }
- },
- "eslint-config-airbnb-base": {
- "version": "11.2.0",
- "from": "eslint-config-airbnb-base@>=11.1.1 <12.0.0",
- "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz",
- "dev": true
- },
- "eslint-import-resolver-node": {
- "version": "0.2.3",
- "from": "eslint-import-resolver-node@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.2.3.tgz",
- "dev": true
- },
- "eslint-module-utils": {
- "version": "2.0.0",
- "from": "eslint-module-utils@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.0.0.tgz",
- "dev": true
- },
- "eslint-plugin-import": {
- "version": "2.3.0",
- "from": "eslint-plugin-import@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.3.0.tgz",
- "dev": true,
- "dependencies": {
- "doctrine": {
- "version": "1.5.0",
- "from": "doctrine@1.5.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
- "dev": true
- },
- "find-up": {
- "version": "2.1.0",
- "from": "find-up@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
- "dev": true
- },
- "load-json-file": {
- "version": "2.0.0",
- "from": "load-json-file@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
- "dev": true
- },
- "path-type": {
- "version": "2.0.0",
- "from": "path-type@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
- "dev": true
- },
- "read-pkg": {
- "version": "2.0.0",
- "from": "read-pkg@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
- "dev": true
- },
- "read-pkg-up": {
- "version": "2.0.0",
- "from": "read-pkg-up@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
- "dev": true
- },
- "strip-bom": {
- "version": "3.0.0",
- "from": "strip-bom@^3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "dev": true
- }
- }
- },
- "espree": {
- "version": "3.4.3",
- "from": "espree@>=3.4.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/espree/-/espree-3.4.3.tgz",
- "dev": true,
- "dependencies": {
- "acorn": {
- "version": "5.0.3",
- "from": "acorn@>=5.0.1 <6.0.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.0.3.tgz",
- "dev": true
- }
- }
- },
- "esprima": {
- "version": "3.1.3",
- "from": "esprima@>=3.1.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz"
- },
- "esquery": {
- "version": "1.0.0",
- "from": "esquery@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz",
- "dev": true,
- "dependencies": {
- "estraverse": {
- "version": "4.2.0",
- "from": "estraverse@>=4.0.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
- "dev": true
- }
- }
- },
- "esrecurse": {
- "version": "4.1.0",
- "from": "esrecurse@>=4.1.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.1.0.tgz",
- "dev": true,
- "dependencies": {
- "estraverse": {
- "version": "4.1.1",
- "from": "estraverse@>=4.1.0 <4.2.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz",
- "dev": true
- }
- }
- },
- "estraverse": {
- "version": "1.9.3",
- "from": "estraverse@>=1.9.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz",
- "dev": true
- },
- "esutils": {
- "version": "2.0.2",
- "from": "esutils@>=2.0.2 <3.0.0",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
- "dev": true
- },
- "etag": {
- "version": "1.8.0",
- "from": "etag@>=1.7.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz"
- },
- "event-emitter": {
- "version": "0.3.5",
- "from": "event-emitter@>=0.3.5 <0.4.0",
- "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
- "dev": true
- },
- "eventemitter2": {
- "version": "0.4.14",
- "from": "eventemitter2@>=0.4.13 <0.5.0",
- "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz",
- "dev": true
- },
- "eventemitter3": {
- "version": "1.2.0",
- "from": "eventemitter3@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz"
- },
- "events": {
- "version": "1.1.1",
- "from": "events@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz",
- "dev": true
- },
- "eventsource": {
- "version": "0.1.6",
- "from": "eventsource@0.1.6",
- "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz",
- "optional": true
- },
- "exit": {
- "version": "0.1.2",
- "from": "exit@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "dev": true
- },
- "exit-hook": {
- "version": "1.1.1",
- "from": "exit-hook@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz",
- "dev": true
- },
- "expand-braces": {
- "version": "0.1.2",
- "from": "expand-braces@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz",
- "dev": true,
- "dependencies": {
- "braces": {
- "version": "0.1.5",
- "from": "braces@>=0.1.2 <0.2.0",
- "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz",
- "dev": true
- },
- "expand-range": {
- "version": "0.1.1",
- "from": "expand-range@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz",
- "dev": true
- },
- "is-number": {
- "version": "0.1.1",
- "from": "is-number@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz",
- "dev": true
- },
- "repeat-string": {
- "version": "0.2.2",
- "from": "repeat-string@>=0.2.2 <0.3.0",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz",
- "dev": true
- }
- }
- },
- "expand-brackets": {
- "version": "0.1.5",
- "from": "expand-brackets@>=0.1.4 <0.2.0",
- "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz"
- },
- "expand-range": {
- "version": "1.8.2",
- "from": "expand-range@>=1.8.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz"
- },
- "expose-loader": {
- "version": "0.7.3",
- "from": "expose-loader@>=0.7.1 <0.8.0",
- "resolved": "https://registry.npmjs.org/expose-loader/-/expose-loader-0.7.3.tgz",
- "dev": true
- },
- "express": {
- "version": "2.5.11",
- "from": "express@>=2.5.0 <2.6.0",
- "resolved": "https://registry.npmjs.org/express/-/express-2.5.11.tgz",
- "optional": true,
- "dependencies": {
- "connect": {
- "version": "1.9.2",
- "from": "connect@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/connect/-/connect-1.9.2.tgz",
- "optional": true
- },
- "qs": {
- "version": "0.4.2",
- "from": "qs@>=0.4.0 <0.5.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-0.4.2.tgz"
- }
- }
- },
- "extend": {
- "version": "3.0.1",
- "from": "extend@>=3.0.0 <3.1.0",
- "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz"
- },
- "extglob": {
- "version": "0.3.2",
- "from": "extglob@>=0.3.1 <0.4.0",
- "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz"
- },
- "extract-zip": {
- "version": "1.5.0",
- "from": "extract-zip@>=1.5.0 <1.6.0",
- "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz",
- "dev": true,
- "dependencies": {
- "concat-stream": {
- "version": "1.5.0",
- "from": "concat-stream@1.5.0",
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz",
- "dev": true
- },
- "debug": {
- "version": "0.7.4",
- "from": "debug@0.7.4",
- "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz",
- "dev": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.0",
- "from": "mkdirp@0.5.0",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz",
- "dev": true
- },
- "readable-stream": {
- "version": "2.0.6",
- "from": "readable-stream@>=2.0.0 <2.1.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
- "dev": true
- },
- "string_decoder": {
- "version": "0.10.31",
- "from": "string_decoder@~0.10.x",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
- "dev": true
- }
- }
- },
- "extsprintf": {
- "version": "1.0.2",
- "from": "extsprintf@1.0.2",
- "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz"
- },
- "fast-levenshtein": {
- "version": "2.0.6",
- "from": "fast-levenshtein@>=2.0.4 <2.1.0",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "dev": true
- },
- "faye-websocket": {
- "version": "0.10.0",
- "from": "faye-websocket@>=0.10.0 <0.11.0",
- "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
- "optional": true
- },
- "fd-slicer": {
- "version": "1.0.1",
- "from": "fd-slicer@>=1.0.1 <1.1.0",
- "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz",
- "dev": true
- },
- "figures": {
- "version": "1.7.0",
- "from": "figures@>=1.3.5 <2.0.0",
- "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz",
- "dev": true
- },
- "file-entry-cache": {
- "version": "2.0.0",
- "from": "file-entry-cache@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz",
- "dev": true
- },
- "file-sync-cmp": {
- "version": "0.1.1",
- "from": "file-sync-cmp@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz",
- "dev": true
- },
- "filename-regex": {
- "version": "2.0.1",
- "from": "filename-regex@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz"
- },
- "fileset": {
- "version": "0.2.1",
- "from": "fileset@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/fileset/-/fileset-0.2.1.tgz",
- "dev": true,
- "dependencies": {
- "glob": {
- "version": "5.0.15",
- "from": "glob@>=5.0.0 <6.0.0",
- "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
- "dev": true
- },
- "minimatch": {
- "version": "2.0.10",
- "from": "minimatch@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz",
- "dev": true
- }
- }
- },
- "fill-range": {
- "version": "2.2.3",
- "from": "fill-range@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz"
- },
- "finalhandler": {
- "version": "0.5.0",
- "from": "finalhandler@0.5.0",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.5.0.tgz",
- "optional": true
- },
- "find-cache-dir": {
- "version": "0.1.1",
- "from": "find-cache-dir@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz",
- "dev": true,
- "dependencies": {
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@^0.5.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- }
- }
- },
- "find-up": {
- "version": "1.1.2",
- "from": "find-up@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"
- },
- "findup-sync": {
- "version": "0.3.0",
- "from": "findup-sync@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz",
- "dev": true,
- "dependencies": {
- "glob": {
- "version": "5.0.15",
- "from": "glob@~5.0.0",
- "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
- "dev": true
- }
- }
- },
- "flat-cache": {
- "version": "1.2.2",
- "from": "flat-cache@>=1.2.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.2.tgz",
- "dev": true
- },
- "for-in": {
- "version": "1.0.2",
- "from": "for-in@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
- },
- "for-own": {
- "version": "0.1.5",
- "from": "for-own@>=0.1.4 <0.2.0",
- "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz"
- },
- "forever-agent": {
- "version": "0.6.1",
- "from": "forever-agent@>=0.6.1 <0.7.0",
- "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"
- },
- "form-data": {
- "version": "2.1.4",
- "from": "form-data@>=2.1.1 <2.2.0",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"
- },
- "formidable": {
- "version": "1.0.17",
- "from": "formidable@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz",
- "optional": true
- },
- "forwarded": {
- "version": "0.1.0",
- "from": "forwarded@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz",
- "optional": true
- },
- "fresh": {
- "version": "0.3.0",
- "from": "fresh@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz",
- "optional": true
- },
- "fs-access": {
- "version": "1.0.1",
- "from": "fs-access@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz",
- "dev": true
- },
- "fs-extra": {
- "version": "3.0.1",
- "from": "fs-extra@3.0.1",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz",
- "optional": true
- },
- "fs.realpath": {
- "version": "1.0.0",
- "from": "fs.realpath@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
- },
- "function-bind": {
- "version": "1.1.0",
- "from": "function-bind@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.0.tgz",
- "dev": true
- },
- "gaze": {
- "version": "1.1.2",
- "from": "gaze@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz",
- "optional": true
- },
- "generate-function": {
- "version": "2.0.0",
- "from": "generate-function@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz"
- },
- "generate-object-property": {
- "version": "1.2.0",
- "from": "generate-object-property@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"
- },
- "get-caller-file": {
- "version": "1.0.2",
- "from": "get-caller-file@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz",
- "optional": true
- },
- "get-stdin": {
- "version": "4.0.1",
- "from": "get-stdin@>=4.0.1 <5.0.0",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz",
- "dev": true
- },
- "getobject": {
- "version": "0.1.0",
- "from": "getobject@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz",
- "dev": true
- },
- "getpass": {
- "version": "0.1.7",
- "from": "getpass@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "from": "assert-plus@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
- }
- }
- },
- "glob": {
- "version": "7.1.2",
- "from": "glob@>=7.1.1 <7.2.0",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz"
- },
- "glob-base": {
- "version": "0.3.0",
- "from": "glob-base@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz"
- },
- "glob-parent": {
- "version": "2.0.0",
- "from": "glob-parent@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz"
- },
- "globals": {
- "version": "9.18.0",
- "from": "globals@>=9.0.0 <10.0.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
- "dev": true
- },
- "globby": {
- "version": "5.0.0",
- "from": "globby@>=5.0.0 <6.0.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz",
- "dev": true
- },
- "globule": {
- "version": "1.1.0",
- "from": "globule@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/globule/-/globule-1.1.0.tgz",
- "optional": true,
- "dependencies": {
- "lodash": {
- "version": "4.16.6",
- "from": "lodash@>=4.16.4 <4.17.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.16.6.tgz",
- "optional": true
- }
- }
- },
- "graceful-fs": {
- "version": "4.1.11",
- "from": "graceful-fs@>=4.1.2 <5.0.0",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"
- },
- "graceful-readlink": {
- "version": "1.0.1",
- "from": "graceful-readlink@>=1.0.0",
- "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"
- },
- "grunt": {
- "version": "1.0.1",
- "from": "grunt@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.0.1.tgz",
- "dev": true,
- "dependencies": {
- "esprima": {
- "version": "2.7.3",
- "from": "esprima@^2.6.0",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz",
- "dev": true
- },
- "glob": {
- "version": "7.0.6",
- "from": "glob@>=7.0.0 <7.1.0",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz",
- "dev": true
- },
- "js-yaml": {
- "version": "3.5.5",
- "from": "js-yaml@>=3.5.2 <3.6.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz",
- "dev": true
- },
- "rimraf": {
- "version": "2.2.8",
- "from": "rimraf@>=2.2.8 <2.3.0",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz",
- "dev": true
- }
- }
- },
- "grunt-angular-gettext": {
- "version": "2.3.5",
- "from": "grunt-angular-gettext@>=2.2.3 <3.0.0",
- "resolved": "https://registry.npmjs.org/grunt-angular-gettext/-/grunt-angular-gettext-2.3.5.tgz",
- "dev": true
- },
- "grunt-browser-sync": {
- "version": "2.2.0",
- "from": "grunt-browser-sync@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/grunt-browser-sync/-/grunt-browser-sync-2.2.0.tgz",
- "optional": true
- },
- "grunt-cli": {
- "version": "1.2.0",
- "from": "grunt-cli@>=1.2.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz",
- "dev": true
- },
- "grunt-concurrent": {
- "version": "2.3.1",
- "from": "grunt-concurrent@>=2.3.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/grunt-concurrent/-/grunt-concurrent-2.3.1.tgz",
- "dev": true
- },
- "grunt-contrib-clean": {
- "version": "1.1.0",
- "from": "grunt-contrib-clean@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-1.1.0.tgz",
- "dev": true
- },
- "grunt-contrib-concat": {
- "version": "1.0.1",
- "from": "grunt-contrib-concat@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-1.0.1.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@^0.5.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- }
- }
- },
- "grunt-contrib-copy": {
- "version": "1.0.0",
- "from": "grunt-contrib-copy@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz",
- "dev": true
- },
- "grunt-contrib-cssmin": {
- "version": "2.2.0",
- "from": "grunt-contrib-cssmin@latest",
- "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-2.2.0.tgz",
- "dev": true
- },
- "grunt-contrib-jshint": {
- "version": "1.1.0",
- "from": "grunt-contrib-jshint@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-1.1.0.tgz",
- "dev": true
- },
- "grunt-contrib-less": {
- "version": "1.4.1",
- "from": "grunt-contrib-less@>=1.3.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.4.1.tgz",
- "dev": true,
- "dependencies": {
- "async": {
- "version": "2.4.1",
- "from": "async@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/async/-/async-2.4.1.tgz",
- "dev": true
- },
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.8.2",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "grunt-contrib-watch": {
- "version": "1.0.0",
- "from": "grunt-contrib-watch@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.0.0.tgz",
- "optional": true,
- "dependencies": {
- "lodash": {
- "version": "3.10.1",
- "from": "lodash@>=3.10.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
- "optional": true
- }
- }
- },
- "grunt-extract-sourcemap": {
- "version": "0.1.19",
- "from": "grunt-extract-sourcemap@>=0.1.18 <0.2.0",
- "resolved": "https://registry.npmjs.org/grunt-extract-sourcemap/-/grunt-extract-sourcemap-0.1.19.tgz",
- "dev": true
- },
- "grunt-known-options": {
- "version": "1.1.0",
- "from": "grunt-known-options@>=1.1.0 <1.2.0",
- "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz",
- "dev": true
- },
- "grunt-legacy-log": {
- "version": "1.0.0",
- "from": "grunt-legacy-log@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.0.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "3.10.1",
- "from": "lodash@>=3.10.1 <3.11.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
- "dev": true
- }
- }
- },
- "grunt-legacy-log-utils": {
- "version": "1.0.0",
- "from": "grunt-legacy-log-utils@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-1.0.0.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.3.0",
- "from": "lodash@>=4.3.0 <4.4.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.3.0.tgz",
- "dev": true
- }
- }
- },
- "grunt-legacy-util": {
- "version": "1.0.0",
- "from": "grunt-legacy-util@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.0.0.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.3.0",
- "from": "lodash@>=4.3.0 <4.4.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.3.0.tgz",
- "dev": true
- }
- }
- },
- "grunt-newer": {
- "version": "1.3.0",
- "from": "grunt-newer@>=1.2.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-newer/-/grunt-newer-1.3.0.tgz",
- "dev": true
- },
- "grunt-webpack": {
- "version": "1.0.18",
- "from": "grunt-webpack@>=1.0.11 <2.0.0",
- "resolved": "https://registry.npmjs.org/grunt-webpack/-/grunt-webpack-1.0.18.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.7.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "gzip-size": {
- "version": "3.0.0",
- "from": "gzip-size@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz",
- "dev": true
- },
- "handlebars": {
- "version": "4.0.10",
- "from": "handlebars@>=4.0.0 <4.1.0",
- "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.10.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.4.4",
- "from": "source-map@>=0.4.4 <0.5.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
- "dev": true
- }
- }
- },
- "har-validator": {
- "version": "2.0.6",
- "from": "har-validator@>=2.0.6 <2.1.0",
- "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"
- },
- "has": {
- "version": "1.0.1",
- "from": "has@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz",
- "dev": true
- },
- "has-ansi": {
- "version": "2.0.0",
- "from": "has-ansi@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"
- },
- "has-binary": {
- "version": "0.1.7",
- "from": "has-binary@0.1.7",
- "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz",
- "dependencies": {
- "isarray": {
- "version": "0.0.1",
- "from": "isarray@0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
- }
- }
- },
- "has-cors": {
- "version": "1.1.0",
- "from": "has-cors@1.1.0",
- "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz"
- },
- "has-flag": {
- "version": "1.0.0",
- "from": "has-flag@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz"
- },
- "hasha": {
- "version": "2.2.0",
- "from": "hasha@>=2.2.0 <2.3.0",
- "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz",
- "dev": true
- },
- "hawk": {
- "version": "3.1.3",
- "from": "hawk@>=3.1.3 <3.2.0",
- "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"
- },
- "hoek": {
- "version": "2.16.3",
- "from": "hoek@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
- },
- "home-or-tmp": {
- "version": "2.0.0",
- "from": "home-or-tmp@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
- "dev": true
- },
- "hooker": {
- "version": "0.2.3",
- "from": "hooker@>=0.2.3 <0.3.0",
- "resolved": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz",
- "dev": true
- },
- "hosted-git-info": {
- "version": "2.4.2",
- "from": "hosted-git-info@>=2.1.4 <3.0.0",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.2.tgz"
- },
- "htmlparser": {
- "version": "1.7.7",
- "from": "htmlparser@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/htmlparser/-/htmlparser-1.7.7.tgz"
- },
- "htmlparser2": {
- "version": "3.8.3",
- "from": "htmlparser2@>=3.8.1 <3.9.0",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz",
- "dev": true,
- "dependencies": {
- "domutils": {
- "version": "1.5.1",
- "from": "domutils@>=1.5.0 <1.6.0",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
- "dev": true
- },
- "entities": {
- "version": "1.0.0",
- "from": "entities@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz",
- "dev": true
- },
- "isarray": {
- "version": "0.0.1",
- "from": "isarray@0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "dev": true
- },
- "readable-stream": {
- "version": "1.1.14",
- "from": "readable-stream@>=1.1.0 <1.2.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
- "dev": true
- },
- "string_decoder": {
- "version": "0.10.31",
- "from": "string_decoder@>=0.10.0 <0.11.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
- "dev": true
- }
- }
- },
- "http-errors": {
- "version": "1.5.1",
- "from": "http-errors@>=1.5.0 <1.6.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.5.1.tgz",
- "optional": true
- },
- "http-proxy": {
- "version": "1.15.2",
- "from": "http-proxy@1.15.2",
- "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.15.2.tgz"
- },
- "http-proxy-middleware": {
- "version": "0.17.4",
- "from": "http-proxy-middleware@>=0.17.1 <0.18.0",
- "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz",
- "optional": true,
- "dependencies": {
- "http-proxy": {
- "version": "1.16.2",
- "from": "http-proxy@>=1.16.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz",
- "optional": true
- },
- "is-extglob": {
- "version": "2.1.1",
- "from": "is-extglob@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "optional": true
- },
- "is-glob": {
- "version": "3.1.0",
- "from": "is-glob@>=3.1.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
- "optional": true
- },
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@>=4.17.2 <5.0.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "optional": true
- }
- }
- },
- "http-signature": {
- "version": "1.1.1",
- "from": "http-signature@>=1.1.0 <1.2.0",
- "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"
- },
- "https-browserify": {
- "version": "0.0.1",
- "from": "https-browserify@0.0.1",
- "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz",
- "dev": true
- },
- "https-proxy-agent": {
- "version": "1.0.0",
- "from": "https-proxy-agent@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz",
- "dev": true
- },
- "iconv-lite": {
- "version": "0.4.13",
- "from": "iconv-lite@0.4.13",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz"
- },
- "ieee754": {
- "version": "1.1.8",
- "from": "ieee754@>=1.1.4 <2.0.0",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz",
- "dev": true
- },
- "ignore": {
- "version": "3.3.3",
- "from": "ignore@>=3.2.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.3.tgz",
- "dev": true
- },
- "image-size": {
- "version": "0.5.4",
- "from": "image-size@>=0.5.0 <0.6.0",
- "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.4.tgz",
- "dev": true,
- "optional": true
- },
- "immutable": {
- "version": "3.8.1",
- "from": "immutable@3.8.1",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.1.tgz"
- },
- "imports-loader": {
- "version": "0.6.5",
- "from": "imports-loader@>=0.6.5 <0.7.0",
- "resolved": "https://registry.npmjs.org/imports-loader/-/imports-loader-0.6.5.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.1.43",
- "from": "source-map@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
- "dev": true
- }
- }
- },
- "imurmurhash": {
- "version": "0.1.4",
- "from": "imurmurhash@>=0.1.4 <0.2.0",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "dev": true
- },
- "indent-string": {
- "version": "2.1.0",
- "from": "indent-string@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz",
- "dev": true
- },
- "indexof": {
- "version": "0.0.1",
- "from": "indexof@0.0.1",
- "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"
- },
- "inflight": {
- "version": "1.0.6",
- "from": "inflight@>=1.0.4 <2.0.0",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
- },
- "inherits": {
- "version": "2.0.3",
- "from": "inherits@>=2.0.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
- },
- "inquirer": {
- "version": "0.12.0",
- "from": "inquirer@>=0.12.0 <0.13.0",
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.3.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "interpret": {
- "version": "1.0.3",
- "from": "interpret@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz",
- "dev": true
- },
- "invariant": {
- "version": "2.2.2",
- "from": "invariant@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
- "dev": true
- },
- "invert-kv": {
- "version": "1.0.0",
- "from": "invert-kv@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"
- },
- "ipaddr.js": {
- "version": "1.3.0",
- "from": "ipaddr.js@1.3.0",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.3.0.tgz",
- "optional": true
- },
- "irregular-plurals": {
- "version": "1.2.0",
- "from": "irregular-plurals@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.2.0.tgz",
- "dev": true
- },
- "is-arrayish": {
- "version": "0.2.1",
- "from": "is-arrayish@>=0.2.1 <0.3.0",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
- },
- "is-binary-path": {
- "version": "1.0.1",
- "from": "is-binary-path@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"
- },
- "is-buffer": {
- "version": "1.1.5",
- "from": "is-buffer@>=1.1.5 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz"
- },
- "is-builtin-module": {
- "version": "1.0.0",
- "from": "is-builtin-module@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"
- },
- "is-dotfile": {
- "version": "1.0.3",
- "from": "is-dotfile@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz"
- },
- "is-equal-shallow": {
- "version": "0.1.3",
- "from": "is-equal-shallow@>=0.1.3 <0.2.0",
- "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz"
- },
- "is-extendable": {
- "version": "0.1.1",
- "from": "is-extendable@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
- },
- "is-extglob": {
- "version": "1.0.0",
- "from": "is-extglob@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"
- },
- "is-finite": {
- "version": "1.0.2",
- "from": "is-finite@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz",
- "dev": true
- },
- "is-fullwidth-code-point": {
- "version": "1.0.0",
- "from": "is-fullwidth-code-point@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"
- },
- "is-glob": {
- "version": "2.0.1",
- "from": "is-glob@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz"
- },
- "is-my-json-valid": {
- "version": "2.16.0",
- "from": "is-my-json-valid@>=2.12.4 <3.0.0",
- "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz"
- },
- "is-number": {
- "version": "2.1.0",
- "from": "is-number@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz"
- },
- "is-number-like": {
- "version": "1.0.7",
- "from": "is-number-like@>=1.0.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.7.tgz",
- "optional": true
- },
- "is-path-cwd": {
- "version": "1.0.0",
- "from": "is-path-cwd@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
- "dev": true
- },
- "is-path-in-cwd": {
- "version": "1.0.0",
- "from": "is-path-in-cwd@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz",
- "dev": true
- },
- "is-path-inside": {
- "version": "1.0.0",
- "from": "is-path-inside@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz",
- "dev": true
- },
- "is-posix-bracket": {
- "version": "0.1.1",
- "from": "is-posix-bracket@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"
- },
- "is-primitive": {
- "version": "2.0.0",
- "from": "is-primitive@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz"
- },
- "is-property": {
- "version": "1.0.2",
- "from": "is-property@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"
- },
- "is-resolvable": {
- "version": "1.0.0",
- "from": "is-resolvable@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz",
- "dev": true
- },
- "is-stream": {
- "version": "1.1.0",
- "from": "is-stream@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
- "dev": true
- },
- "is-typedarray": {
- "version": "1.0.0",
- "from": "is-typedarray@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
- },
- "is-utf8": {
- "version": "0.2.1",
- "from": "is-utf8@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"
- },
- "isarray": {
- "version": "1.0.0",
- "from": "isarray@1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
- },
- "isbinaryfile": {
- "version": "3.0.2",
- "from": "isbinaryfile@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.2.tgz",
- "dev": true
- },
- "isexe": {
- "version": "2.0.0",
- "from": "isexe@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "dev": true
- },
- "isobject": {
- "version": "2.1.0",
- "from": "isobject@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"
- },
- "isstream": {
- "version": "0.1.2",
- "from": "isstream@>=0.1.2 <0.2.0",
- "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
- },
- "istanbul": {
- "version": "0.4.5",
- "from": "istanbul@>=0.4.0 <0.5.0",
- "resolved": "https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz",
- "dev": true,
- "dependencies": {
- "abbrev": {
- "version": "1.0.9",
- "from": "abbrev@1.0.x",
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz",
- "dev": true
- },
- "esprima": {
- "version": "2.7.3",
- "from": "esprima@2.7.x",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz",
- "dev": true
- },
- "glob": {
- "version": "5.0.15",
- "from": "glob@^5.0.15",
- "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
- "dev": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@0.5.x",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- },
- "supports-color": {
- "version": "3.2.3",
- "from": "supports-color@>=3.1.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
- "dev": true
- },
- "wordwrap": {
- "version": "1.0.0",
- "from": "wordwrap@^1.0.0",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
- "dev": true
- }
- }
- },
- "istanbul-lib-coverage": {
- "version": "1.1.1",
- "from": "istanbul-lib-coverage@>=1.1.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz",
- "dev": true
- },
- "istanbul-lib-instrument": {
- "version": "1.7.2",
- "from": "istanbul-lib-instrument@>=1.1.4 <2.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.2.tgz",
- "dev": true
- },
- "jasmine-core": {
- "version": "2.6.2",
- "from": "jasmine-core@>=2.5.2 <3.0.0",
- "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.6.2.tgz",
- "dev": true
- },
- "javascript-detect-element-resize": {
- "version": "0.5.3",
- "from": "javascript-detect-element-resize@>=0.5.3 <0.6.0",
- "resolved": "https://registry.npmjs.org/javascript-detect-element-resize/-/javascript-detect-element-resize-0.5.3.tgz"
- },
- "jodid25519": {
- "version": "1.0.2",
- "from": "jodid25519@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz",
- "optional": true
- },
- "jquery": {
- "version": "2.2.4",
- "from": "jquery@>=2.2.4 <2.3.0",
- "resolved": "https://registry.npmjs.org/jquery/-/jquery-2.2.4.tgz"
- },
- "jquery-mousewheel": {
- "version": "3.1.13",
- "from": "jquery-mousewheel@>=3.1.13 <3.2.0",
- "resolved": "https://registry.npmjs.org/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz"
- },
- "jquery-ui": {
- "version": "1.10.5",
- "from": "jquery-ui@>=1.10.5 <1.11.0",
- "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.10.5.tgz"
- },
- "js-base64": {
- "version": "2.1.9",
- "from": "js-base64@>=2.1.9 <3.0.0",
- "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz",
- "dev": true
- },
- "js-tokens": {
- "version": "3.0.1",
- "from": "js-tokens@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.1.tgz",
- "dev": true
- },
- "js-yaml": {
- "version": "3.8.4",
- "from": "js-yaml@>=3.2.7 <4.0.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.4.tgz"
- },
- "jsbn": {
- "version": "0.1.1",
- "from": "jsbn@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
- "optional": true
- },
- "jsdom": {
- "version": "0.5.7",
- "from": "jsdom@0.5.7",
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-0.5.7.tgz"
- },
- "jsesc": {
- "version": "1.3.0",
- "from": "jsesc@>=1.3.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
- "dev": true
- },
- "jshint": {
- "version": "2.9.4",
- "from": "jshint@>=2.9.4 <3.0.0",
- "resolved": "https://registry.npmjs.org/jshint/-/jshint-2.9.4.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "3.7.0",
- "from": "lodash@>=3.7.0 <3.8.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz",
- "dev": true
- },
- "shelljs": {
- "version": "0.3.0",
- "from": "shelljs@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz",
- "dev": true
- },
- "strip-json-comments": {
- "version": "1.0.4",
- "from": "strip-json-comments@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
- "dev": true
- }
- }
- },
- "jshint-loader": {
- "version": "0.8.4",
- "from": "jshint-loader@>=0.8.3 <0.9.0",
- "resolved": "https://registry.npmjs.org/jshint-loader/-/jshint-loader-0.8.4.tgz",
- "dev": true,
- "dependencies": {
- "loader-utils": {
- "version": "1.1.0",
- "from": "loader-utils@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz",
- "dev": true
- },
- "strip-json-comments": {
- "version": "0.1.3",
- "from": "strip-json-comments@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz",
- "dev": true
- }
- }
- },
- "jshint-stylish": {
- "version": "2.2.1",
- "from": "jshint-stylish@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/jshint-stylish/-/jshint-stylish-2.2.1.tgz",
- "dev": true
- },
- "json-loader": {
- "version": "0.5.4",
- "from": "json-loader@latest",
- "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.4.tgz",
- "dev": true
- },
- "json-schema": {
- "version": "0.2.3",
- "from": "json-schema@0.2.3",
- "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"
- },
- "json-stable-stringify": {
- "version": "1.0.1",
- "from": "json-stable-stringify@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
- "dev": true
- },
- "json-stringify-safe": {
- "version": "5.0.1",
- "from": "json-stringify-safe@>=5.0.1 <5.1.0",
- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
- },
- "json3": {
- "version": "3.3.2",
- "from": "json3@3.3.2",
- "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz"
- },
- "json5": {
- "version": "0.5.1",
- "from": "json5@>=0.5.0 <0.6.0",
- "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"
- },
- "jsonfile": {
- "version": "3.0.0",
- "from": "jsonfile@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.0.tgz",
- "optional": true
- },
- "jsonify": {
- "version": "0.0.0",
- "from": "jsonify@>=0.0.0 <0.1.0",
- "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
- "dev": true
- },
- "jsonpointer": {
- "version": "4.0.1",
- "from": "jsonpointer@>=4.0.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz"
- },
- "jsprim": {
- "version": "1.4.0",
- "from": "jsprim@>=1.2.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz",
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "from": "assert-plus@1.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
- }
- }
- },
- "jstimezonedetect": {
- "version": "1.0.5",
- "from": "jstimezonedetect@1.0.5",
- "resolved": "https://registry.npmjs.org/jstimezonedetect/-/jstimezonedetect-1.0.5.tgz"
- },
- "karma": {
- "version": "1.7.0",
- "from": "karma@>=1.4.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma/-/karma-1.7.0.tgz",
- "dev": true,
- "dependencies": {
- "after": {
- "version": "0.8.2",
- "from": "after@0.8.2",
- "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz",
- "dev": true
- },
- "base64id": {
- "version": "1.0.0",
- "from": "base64id@1.0.0",
- "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz",
- "dev": true
- },
- "body-parser": {
- "version": "1.17.2",
- "from": "body-parser@>=1.16.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz",
- "dev": true
- },
- "bytes": {
- "version": "2.4.0",
- "from": "bytes@2.4.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz",
- "dev": true
- },
- "component-emitter": {
- "version": "1.2.1",
- "from": "component-emitter@1.2.1",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
- "dev": true
- },
- "connect": {
- "version": "3.6.2",
- "from": "connect@>=3.6.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.2.tgz",
- "dev": true
- },
- "debug": {
- "version": "2.6.7",
- "from": "debug@2.6.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz",
- "dev": true
- },
- "engine.io": {
- "version": "1.8.3",
- "from": "engine.io@1.8.3",
- "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-1.8.3.tgz",
- "dev": true,
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "dev": true
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "dev": true
- }
- }
- },
- "engine.io-client": {
- "version": "1.8.3",
- "from": "engine.io-client@1.8.3",
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.3.tgz",
- "dev": true,
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "dev": true
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "dev": true
- }
- }
- },
- "engine.io-parser": {
- "version": "1.3.2",
- "from": "engine.io-parser@1.3.2",
- "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz",
- "dev": true
- },
- "finalhandler": {
- "version": "1.0.3",
- "from": "finalhandler@1.0.3",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.3.tgz",
- "dev": true
- },
- "http-errors": {
- "version": "1.6.1",
- "from": "http-errors@>=1.6.1 <1.7.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz",
- "dev": true
- },
- "iconv-lite": {
- "version": "0.4.15",
- "from": "iconv-lite@0.4.15",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz",
- "dev": true
- },
- "mime": {
- "version": "1.3.6",
- "from": "mime@^1.3.4",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz",
- "dev": true
- },
- "ms": {
- "version": "2.0.0",
- "from": "ms@2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "dev": true
- },
- "object-assign": {
- "version": "4.1.0",
- "from": "object-assign@4.1.0",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz",
- "dev": true
- },
- "qs": {
- "version": "6.4.0",
- "from": "qs@6.4.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz",
- "dev": true
- },
- "raw-body": {
- "version": "2.2.0",
- "from": "raw-body@>=2.2.0 <2.3.0",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz",
- "dev": true
- },
- "setprototypeof": {
- "version": "1.0.3",
- "from": "setprototypeof@1.0.3",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
- "dev": true
- },
- "socket.io": {
- "version": "1.7.3",
- "from": "socket.io@1.7.3",
- "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz",
- "dev": true,
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "dev": true
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "dev": true
- }
- }
- },
- "socket.io-client": {
- "version": "1.7.3",
- "from": "socket.io-client@1.7.3",
- "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.3.tgz",
- "dev": true,
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "dev": true
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "dev": true
- }
- }
- },
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@^0.5.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- },
- "ws": {
- "version": "1.1.2",
- "from": "ws@1.1.2",
- "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz",
- "dev": true
- }
- }
- },
- "karma-chrome-launcher": {
- "version": "1.0.1",
- "from": "karma-chrome-launcher@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-1.0.1.tgz",
- "dev": true
- },
- "karma-coverage": {
- "version": "1.1.1",
- "from": "karma-coverage@>=1.1.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-coverage/-/karma-coverage-1.1.1.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@^0.5.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- }
- }
- },
- "karma-firefox-launcher": {
- "version": "1.0.1",
- "from": "karma-firefox-launcher@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-1.0.1.tgz",
- "dev": true
- },
- "karma-html2js-preprocessor": {
- "version": "1.1.0",
- "from": "karma-html2js-preprocessor@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-html2js-preprocessor/-/karma-html2js-preprocessor-1.1.0.tgz",
- "dev": true
- },
- "karma-jasmine": {
- "version": "1.1.0",
- "from": "karma-jasmine@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-1.1.0.tgz",
- "dev": true
- },
- "karma-junit-reporter": {
- "version": "1.2.0",
- "from": "karma-junit-reporter@>=1.2.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-1.2.0.tgz",
- "dev": true
- },
- "karma-ng-html2js-preprocessor": {
- "version": "1.0.0",
- "from": "karma-ng-html2js-preprocessor@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-ng-html2js-preprocessor/-/karma-ng-html2js-preprocessor-1.0.0.tgz",
- "dev": true
- },
- "karma-phantomjs-launcher": {
- "version": "1.0.4",
- "from": "karma-phantomjs-launcher@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-phantomjs-launcher/-/karma-phantomjs-launcher-1.0.4.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.0.1",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- },
- "karma-sauce-launcher": {
- "version": "1.1.0",
- "from": "karma-sauce-launcher@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-sauce-launcher/-/karma-sauce-launcher-1.1.0.tgz",
- "dev": true
- },
- "karma-sourcemap-loader": {
- "version": "0.3.7",
- "from": "karma-sourcemap-loader@>=0.3.7 <0.4.0",
- "resolved": "https://registry.npmjs.org/karma-sourcemap-loader/-/karma-sourcemap-loader-0.3.7.tgz",
- "dev": true
- },
- "karma-webpack": {
- "version": "1.8.1",
- "from": "karma-webpack@>=1.8.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/karma-webpack/-/karma-webpack-1.8.1.tgz",
- "dev": true,
- "dependencies": {
- "async": {
- "version": "0.9.2",
- "from": "async@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
- "dev": true
- },
- "source-map": {
- "version": "0.1.43",
- "from": "source-map@>=0.1.41 <0.2.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
- "dev": true
- }
- }
- },
- "kew": {
- "version": "0.7.0",
- "from": "kew@>=0.7.0 <0.8.0",
- "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz",
- "dev": true
- },
- "kind-of": {
- "version": "3.2.2",
- "from": "kind-of@>=3.0.2 <4.0.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
- },
- "klaw": {
- "version": "1.3.1",
- "from": "klaw@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
- "dev": true
- },
- "lazy-cache": {
- "version": "1.0.4",
- "from": "lazy-cache@>=1.0.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
- "dev": true
- },
- "lazy.js": {
- "version": "0.4.3",
- "from": "lazy.js@>=0.4.2 <0.5.0",
- "resolved": "https://registry.npmjs.org/lazy.js/-/lazy.js-0.4.3.tgz",
- "dev": true
- },
- "lazystream": {
- "version": "1.0.0",
- "from": "lazystream@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
- "dev": true
- },
- "lcid": {
- "version": "1.0.0",
- "from": "lcid@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"
- },
- "legacy-loader": {
- "version": "0.0.2",
- "from": "legacy-loader@0.0.2",
- "resolved": "https://registry.npmjs.org/legacy-loader/-/legacy-loader-0.0.2.tgz"
- },
- "less": {
- "version": "2.7.2",
- "from": "less@>=2.7.1 <2.8.0",
- "resolved": "https://registry.npmjs.org/less/-/less-2.7.2.tgz",
- "dev": true,
- "dependencies": {
- "mime": {
- "version": "1.3.6",
- "from": "mime@>=1.2.11 <2.0.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz",
- "dev": true,
- "optional": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true,
- "optional": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@^0.5.0",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true,
- "optional": true
- },
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@^0.5.3",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true,
- "optional": true
- }
- }
- },
- "less-plugin-autoprefix": {
- "version": "1.5.1",
- "from": "less-plugin-autoprefix@>=1.4.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/less-plugin-autoprefix/-/less-plugin-autoprefix-1.5.1.tgz",
- "dev": true
- },
- "levn": {
- "version": "0.3.0",
- "from": "levn@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "dev": true
- },
- "limiter": {
- "version": "1.1.0",
- "from": "limiter@>=1.0.5 <2.0.0",
- "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.0.tgz",
- "optional": true
- },
- "livereload-js": {
- "version": "2.2.2",
- "from": "livereload-js@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.2.2.tgz",
- "optional": true
- },
- "load-grunt-configs": {
- "version": "1.0.0",
- "from": "load-grunt-configs@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/load-grunt-configs/-/load-grunt-configs-1.0.0.tgz",
- "dev": true,
- "dependencies": {
- "ansi-regex": {
- "version": "1.1.1",
- "from": "ansi-regex@>=1.1.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz",
- "dev": true
- },
- "cli-width": {
- "version": "1.1.1",
- "from": "cli-width@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz",
- "dev": true
- },
- "inquirer": {
- "version": "0.8.5",
- "from": "inquirer@>=0.8.2 <0.9.0",
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz",
- "dev": true
- },
- "mute-stream": {
- "version": "0.0.4",
- "from": "mute-stream@0.0.4",
- "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz",
- "dev": true
- },
- "readline2": {
- "version": "0.1.1",
- "from": "readline2@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz",
- "dev": true
- },
- "rx": {
- "version": "2.5.3",
- "from": "rx@>=2.4.3 <3.0.0",
- "resolved": "https://registry.npmjs.org/rx/-/rx-2.5.3.tgz",
- "dev": true
- },
- "strip-ansi": {
- "version": "2.0.1",
- "from": "strip-ansi@>=2.0.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz",
- "dev": true
- }
- }
- },
- "load-grunt-tasks": {
- "version": "3.5.2",
- "from": "load-grunt-tasks@>=3.5.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/load-grunt-tasks/-/load-grunt-tasks-3.5.2.tgz",
- "dev": true
- },
- "load-json-file": {
- "version": "1.1.0",
- "from": "load-json-file@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"
- },
- "loader-utils": {
- "version": "0.2.17",
- "from": "loader-utils@>=0.2.6 <0.3.0",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz"
- },
- "localtunnel": {
- "version": "1.8.2",
- "from": "localtunnel@1.8.2",
- "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-1.8.2.tgz",
- "optional": true,
- "dependencies": {
- "yargs": {
- "version": "3.29.0",
- "from": "yargs@3.29.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.29.0.tgz",
- "optional": true
- }
- }
- },
- "locate-path": {
- "version": "2.0.0",
- "from": "locate-path@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
- "dev": true,
- "dependencies": {
- "path-exists": {
- "version": "3.0.0",
- "from": "path-exists@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
- "dev": true
- }
- }
- },
- "lodash": {
- "version": "3.8.0",
- "from": "lodash@>=3.8.0 <3.9.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz"
- },
- "lodash.clonedeep": {
- "version": "4.5.0",
- "from": "lodash.clonedeep@>=4.3.2 <5.0.0",
- "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
- "dev": true
- },
- "lodash.cond": {
- "version": "4.5.2",
- "from": "lodash.cond@>=4.3.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/lodash.cond/-/lodash.cond-4.5.2.tgz",
- "dev": true
- },
- "lodash.isfinite": {
- "version": "3.3.2",
- "from": "lodash.isfinite@>=3.3.2 <4.0.0",
- "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz",
- "optional": true
- },
- "lodash.tostring": {
- "version": "4.1.4",
- "from": "lodash.tostring@>=4.0.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/lodash.tostring/-/lodash.tostring-4.1.4.tgz",
- "dev": true
- },
- "lodash.unescape": {
- "version": "4.0.0",
- "from": "lodash.unescape@4.0.0",
- "resolved": "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.0.tgz",
- "dev": true
- },
- "log-symbols": {
- "version": "1.0.2",
- "from": "log-symbols@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz",
- "dev": true
- },
- "log4js": {
- "version": "0.6.38",
- "from": "log4js@>=0.6.31 <0.7.0",
- "resolved": "https://registry.npmjs.org/log4js/-/log4js-0.6.38.tgz",
- "dev": true,
- "dependencies": {
- "isarray": {
- "version": "0.0.1",
- "from": "isarray@0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "dev": true
- },
- "readable-stream": {
- "version": "1.0.34",
- "from": "readable-stream@>=1.0.2 <1.1.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
- "dev": true
- },
- "semver": {
- "version": "4.3.6",
- "from": "semver@>=4.3.3 <4.4.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz",
- "dev": true
- },
- "string_decoder": {
- "version": "0.10.31",
- "from": "string_decoder@~0.10.x",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
- "dev": true
- }
- }
- },
- "longest": {
- "version": "1.0.1",
- "from": "longest@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
- "dev": true
- },
- "loose-envify": {
- "version": "1.3.1",
- "from": "loose-envify@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz",
- "dev": true
- },
- "loud-rejection": {
- "version": "1.6.0",
- "from": "loud-rejection@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
- "dev": true
- },
- "lr-infinite-scroll": {
- "version": "1.0.0",
- "from": "lorenzofox3/lrInfiniteScroll",
- "resolved": "git://github.com/lorenzofox3/lrInfiniteScroll.git#59d348bc5c18f164438d2a30f1fd79b333c3b649"
- },
- "lru-cache": {
- "version": "2.2.4",
- "from": "lru-cache@>=2.2.0 <2.3.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz",
- "dev": true
- },
- "magic-string": {
- "version": "0.14.0",
- "from": "magic-string@>=0.14.0 <0.15.0",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.14.0.tgz",
- "optional": true
- },
- "map-obj": {
- "version": "1.0.1",
- "from": "map-obj@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
- "dev": true
- },
- "maxmin": {
- "version": "2.1.0",
- "from": "maxmin@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz",
- "dev": true
- },
- "media-typer": {
- "version": "0.3.0",
- "from": "media-typer@0.3.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"
- },
- "memory-fs": {
- "version": "0.4.1",
- "from": "memory-fs@>=0.4.1 <0.5.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz"
- },
- "meow": {
- "version": "3.7.0",
- "from": "meow@>=3.3.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
- "dev": true
- },
- "merge-descriptors": {
- "version": "1.0.1",
- "from": "merge-descriptors@1.0.1",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
- "optional": true
- },
- "methods": {
- "version": "1.1.2",
- "from": "methods@>=1.1.2 <1.2.0",
- "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
- "optional": true
- },
- "micromatch": {
- "version": "2.3.11",
- "from": "micromatch@2.3.11",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz"
- },
- "mime": {
- "version": "1.2.4",
- "from": "mime@1.2.4",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.4.tgz"
- },
- "mime-db": {
- "version": "1.27.0",
- "from": "mime-db@>=1.27.0 <1.28.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz"
- },
- "mime-types": {
- "version": "2.1.15",
- "from": "mime-types@>=2.1.7 <2.2.0",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz"
- },
- "minimatch": {
- "version": "3.0.4",
- "from": "minimatch@>=3.0.2 <4.0.0",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"
- },
- "minimist": {
- "version": "1.2.0",
- "from": "minimist@>=1.2.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"
- },
- "mkdirp": {
- "version": "0.3.0",
- "from": "mkdirp@0.3.0",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz",
- "optional": true
- },
- "moment": {
- "version": "2.10.6",
- "from": "moment@>=2.10.0 <2.11.0",
- "resolved": "https://registry.npmjs.org/moment/-/moment-2.10.6.tgz"
- },
- "ms": {
- "version": "0.7.1",
- "from": "ms@0.7.1",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"
- },
- "multimatch": {
- "version": "2.1.0",
- "from": "multimatch@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz",
- "dev": true
- },
- "mute-stream": {
- "version": "0.0.5",
- "from": "mute-stream@0.0.5",
- "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz",
- "dev": true
- },
- "nan": {
- "version": "2.6.2",
- "from": "nan@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz"
- },
- "natural-compare": {
- "version": "1.4.0",
- "from": "natural-compare@>=1.4.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "dev": true
- },
- "negotiator": {
- "version": "0.6.1",
- "from": "negotiator@0.6.1",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz"
- },
- "ng-toast": {
- "version": "2.0.0",
- "from": "ansible/ngToast#2.0.1",
- "resolved": "git://github.com/ansible/ngToast.git#fea95bb34d27687e414619b4f72c11735d909f93"
- },
- "node-libs-browser": {
- "version": "0.7.0",
- "from": "node-libs-browser@>=0.7.0 <0.8.0",
- "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.7.0.tgz",
- "dev": true,
- "dependencies": {
- "string_decoder": {
- "version": "0.10.31",
- "from": "string_decoder@^0.10.25",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
- "dev": true
- }
- }
- },
- "node-uuid": {
- "version": "1.4.8",
- "from": "node-uuid@>=1.4.7 <1.5.0",
- "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"
- },
- "nopt": {
- "version": "3.0.6",
- "from": "nopt@>=3.0.0 <3.1.0",
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"
- },
- "normalize-package-data": {
- "version": "2.3.8",
- "from": "normalize-package-data@>=2.3.2 <3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.8.tgz"
- },
- "normalize-path": {
- "version": "2.1.1",
- "from": "normalize-path@>=2.0.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"
- },
- "normalize-range": {
- "version": "0.1.2",
- "from": "normalize-range@>=0.1.2 <0.2.0",
- "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
- "dev": true
- },
- "nth-check": {
- "version": "1.0.1",
- "from": "nth-check@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz",
- "dev": true
- },
- "null-check": {
- "version": "1.0.0",
- "from": "null-check@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz",
- "dev": true
- },
- "num2fraction": {
- "version": "1.2.2",
- "from": "num2fraction@>=1.2.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
- "dev": true
- },
- "number-is-nan": {
- "version": "1.0.1",
- "from": "number-is-nan@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"
- },
- "nvd3": {
- "version": "1.7.1",
- "from": "ansible/nvd3#1.7.1",
- "resolved": "git://github.com/ansible/nvd3.git#a28bcd494a1df0677be7cf2ebc0578f44eb21102"
- },
- "nwmatcher": {
- "version": "1.3.9",
- "from": "nwmatcher@>=1.3.1 <1.4.0",
- "resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.3.9.tgz"
- },
- "oauth-sign": {
- "version": "0.8.2",
- "from": "oauth-sign@>=0.8.1 <0.9.0",
- "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz"
- },
- "object-assign": {
- "version": "4.1.1",
- "from": "object-assign@>=4.0.1 <5.0.0",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
- },
- "object-component": {
- "version": "0.0.3",
- "from": "object-component@0.0.3",
- "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"
- },
- "object-path": {
- "version": "0.9.2",
- "from": "object-path@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz",
- "optional": true
- },
- "object.omit": {
- "version": "2.0.1",
- "from": "object.omit@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz"
- },
- "on-finished": {
- "version": "2.3.0",
- "from": "on-finished@>=2.3.0 <2.4.0",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"
- },
- "on-headers": {
- "version": "1.0.1",
- "from": "on-headers@>=1.0.1 <1.1.0",
- "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz",
- "optional": true
- },
- "once": {
- "version": "1.4.0",
- "from": "once@>=1.3.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
- },
- "onetime": {
- "version": "1.1.0",
- "from": "onetime@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz",
- "dev": true
- },
- "open": {
- "version": "0.0.5",
- "from": "open@0.0.5",
- "resolved": "https://registry.npmjs.org/open/-/open-0.0.5.tgz",
- "optional": true
- },
- "openurl": {
- "version": "1.1.0",
- "from": "openurl@1.1.0",
- "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.0.tgz",
- "optional": true
- },
- "opn": {
- "version": "4.0.2",
- "from": "opn@4.0.2",
- "resolved": "https://registry.npmjs.org/opn/-/opn-4.0.2.tgz",
- "optional": true
- },
- "optimist": {
- "version": "0.6.1",
- "from": "optimist@>=0.6.1 <0.7.0",
- "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
- "dependencies": {
- "minimist": {
- "version": "0.0.10",
- "from": "minimist@>=0.0.1 <0.1.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"
- }
- }
- },
- "optionator": {
- "version": "0.8.2",
- "from": "optionator@>=0.8.1 <0.9.0",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
- "dev": true,
- "dependencies": {
- "wordwrap": {
- "version": "1.0.0",
- "from": "wordwrap@~1.0.0",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
- "dev": true
- }
- }
- },
- "options": {
- "version": "0.0.6",
- "from": "options@>=0.0.5",
- "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz"
- },
- "original": {
- "version": "1.0.0",
- "from": "original@>=0.0.5",
- "resolved": "https://registry.npmjs.org/original/-/original-1.0.0.tgz",
- "optional": true,
- "dependencies": {
- "url-parse": {
- "version": "1.0.5",
- "from": "url-parse@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.0.5.tgz",
- "optional": true
- }
- }
- },
- "os-browserify": {
- "version": "0.2.1",
- "from": "os-browserify@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz",
- "dev": true
- },
- "os-homedir": {
- "version": "1.0.2",
- "from": "os-homedir@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"
- },
- "os-locale": {
- "version": "1.4.0",
- "from": "os-locale@>=1.4.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"
- },
- "os-tmpdir": {
- "version": "1.0.2",
- "from": "os-tmpdir@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
- "dev": true
- },
- "p-limit": {
- "version": "1.1.0",
- "from": "p-limit@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz",
- "dev": true
- },
- "p-locate": {
- "version": "2.0.0",
- "from": "p-locate@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
- "dev": true
- },
- "pad-stream": {
- "version": "1.2.0",
- "from": "pad-stream@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/pad-stream/-/pad-stream-1.2.0.tgz",
- "dev": true
- },
- "pako": {
- "version": "0.2.9",
- "from": "pako@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
- "dev": true
- },
- "parse-glob": {
- "version": "3.0.4",
- "from": "parse-glob@>=3.0.4 <4.0.0",
- "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz"
- },
- "parse-json": {
- "version": "2.2.0",
- "from": "parse-json@>=2.2.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"
- },
- "parse-ms": {
- "version": "1.0.1",
- "from": "parse-ms@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz",
- "dev": true
- },
- "parsejson": {
- "version": "0.0.3",
- "from": "parsejson@0.0.3",
- "resolved": "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz"
- },
- "parseqs": {
- "version": "0.0.5",
- "from": "parseqs@0.0.5",
- "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz"
- },
- "parseuri": {
- "version": "0.0.5",
- "from": "parseuri@0.0.5",
- "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz"
- },
- "parseurl": {
- "version": "1.3.1",
- "from": "parseurl@>=1.3.1 <1.4.0",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz"
- },
- "path-browserify": {
- "version": "0.0.0",
- "from": "path-browserify@0.0.0",
- "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz",
- "dev": true
- },
- "path-exists": {
- "version": "2.1.0",
- "from": "path-exists@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"
- },
- "path-is-absolute": {
- "version": "1.0.1",
- "from": "path-is-absolute@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
- },
- "path-is-inside": {
- "version": "1.0.2",
- "from": "path-is-inside@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
- "dev": true
- },
- "path-to-regexp": {
- "version": "0.1.7",
- "from": "path-to-regexp@0.1.7",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
- "optional": true
- },
- "path-type": {
- "version": "1.1.0",
- "from": "path-type@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"
- },
- "pbkdf2-compat": {
- "version": "2.0.1",
- "from": "pbkdf2-compat@2.0.1",
- "resolved": "https://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz",
- "dev": true
- },
- "pend": {
- "version": "1.2.0",
- "from": "pend@>=1.2.0 <1.3.0",
- "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
- "dev": true
- },
- "phantomjs-prebuilt": {
- "version": "2.1.14",
- "from": "phantomjs-prebuilt@>=2.1.12 <3.0.0",
- "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.14.tgz",
- "dev": true,
- "dependencies": {
- "fs-extra": {
- "version": "1.0.0",
- "from": "fs-extra@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz",
- "dev": true
- },
- "jsonfile": {
- "version": "2.4.0",
- "from": "jsonfile@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
- "dev": true
- },
- "qs": {
- "version": "6.3.2",
- "from": "qs@>=6.3.0 <6.4.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz",
- "dev": true
- },
- "request": {
- "version": "2.79.0",
- "from": "request@>=2.79.0 <2.80.0",
- "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz",
- "dev": true
- },
- "uuid": {
- "version": "3.0.1",
- "from": "uuid@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz",
- "dev": true
- }
- }
- },
- "pify": {
- "version": "2.3.0",
- "from": "pify@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
- },
- "pinkie": {
- "version": "2.0.4",
- "from": "pinkie@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"
- },
- "pinkie-promise": {
- "version": "2.0.1",
- "from": "pinkie-promise@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"
- },
- "pkg-dir": {
- "version": "1.0.0",
- "from": "pkg-dir@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz",
- "dev": true
- },
- "pkg-up": {
- "version": "1.0.0",
- "from": "pkg-up@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-1.0.0.tgz",
- "dev": true
- },
- "plur": {
- "version": "2.1.2",
- "from": "plur@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz",
- "dev": true
- },
- "pluralize": {
- "version": "1.2.1",
- "from": "pluralize@>=1.2.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz",
- "dev": true
- },
- "pofile": {
- "version": "1.0.8",
- "from": "pofile@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/pofile/-/pofile-1.0.8.tgz",
- "dev": true
- },
- "portscanner": {
- "version": "2.1.1",
- "from": "portscanner@2.1.1",
- "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz",
- "optional": true
- },
- "postcss": {
- "version": "5.2.17",
- "from": "postcss@>=5.0.0 <6.0.0",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@^0.5.6",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- },
- "supports-color": {
- "version": "3.2.3",
- "from": "supports-color@>=3.2.3 <4.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
- "dev": true
- }
- }
- },
- "postcss-value-parser": {
- "version": "3.3.0",
- "from": "postcss-value-parser@>=3.2.3 <4.0.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz",
- "dev": true
- },
- "prelude-ls": {
- "version": "1.1.2",
- "from": "prelude-ls@>=1.1.2 <1.2.0",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
- "dev": true
- },
- "preserve": {
- "version": "0.2.0",
- "from": "preserve@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz"
- },
- "pretty-bytes": {
- "version": "3.0.1",
- "from": "pretty-bytes@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz",
- "dev": true
- },
- "pretty-ms": {
- "version": "2.1.0",
- "from": "pretty-ms@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz",
- "dev": true,
- "dependencies": {
- "plur": {
- "version": "1.0.0",
- "from": "plur@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz",
- "dev": true
- }
- }
- },
- "private": {
- "version": "0.1.7",
- "from": "private@>=0.1.6 <0.2.0",
- "resolved": "https://registry.npmjs.org/private/-/private-0.1.7.tgz",
- "dev": true
- },
- "process": {
- "version": "0.11.10",
- "from": "process@>=0.11.0 <0.12.0",
- "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
- "dev": true
- },
- "process-nextick-args": {
- "version": "1.0.7",
- "from": "process-nextick-args@>=1.0.6 <1.1.0",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz"
- },
- "progress": {
- "version": "1.1.8",
- "from": "progress@>=1.1.8 <2.0.0",
- "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz",
- "dev": true
- },
- "promise": {
- "version": "7.1.1",
- "from": "promise@>=7.1.1 <8.0.0",
- "resolved": "https://registry.npmjs.org/promise/-/promise-7.1.1.tgz",
- "dev": true,
- "optional": true
- },
- "proxy-addr": {
- "version": "1.1.4",
- "from": "proxy-addr@>=1.1.4 <1.2.0",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.4.tgz",
- "optional": true
- },
- "prr": {
- "version": "0.0.0",
- "from": "prr@>=0.0.0 <0.1.0",
- "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz"
- },
- "pump": {
- "version": "1.0.2",
- "from": "pump@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/pump/-/pump-1.0.2.tgz",
- "dev": true,
- "dependencies": {
- "end-of-stream": {
- "version": "1.4.0",
- "from": "end-of-stream@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz",
- "dev": true
- }
- }
- },
- "pumpify": {
- "version": "1.3.5",
- "from": "pumpify@>=1.3.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.3.5.tgz",
- "dev": true
- },
- "punycode": {
- "version": "1.4.1",
- "from": "punycode@>=1.4.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"
- },
- "q": {
- "version": "1.5.0",
- "from": "q@>=1.4.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/q/-/q-1.5.0.tgz",
- "dev": true
- },
- "qjobs": {
- "version": "1.1.5",
- "from": "qjobs@>=1.1.4 <2.0.0",
- "resolved": "https://registry.npmjs.org/qjobs/-/qjobs-1.1.5.tgz",
- "dev": true
- },
- "qs": {
- "version": "6.2.1",
- "from": "qs@6.2.1",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.1.tgz",
- "optional": true
- },
- "querystring": {
- "version": "0.2.0",
- "from": "querystring@0.2.0",
- "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
- "dev": true
- },
- "querystring-es3": {
- "version": "0.2.1",
- "from": "querystring-es3@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
- "dev": true
- },
- "querystringify": {
- "version": "0.0.4",
- "from": "querystringify@>=0.0.0 <0.1.0",
- "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-0.0.4.tgz",
- "optional": true
- },
- "randomatic": {
- "version": "1.1.6",
- "from": "randomatic@>=1.1.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.6.tgz"
- },
- "range-parser": {
- "version": "1.2.0",
- "from": "range-parser@>=1.2.0 <1.3.0",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz"
- },
- "raw-body": {
- "version": "2.1.7",
- "from": "raw-body@>=2.1.5 <2.2.0",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz",
- "optional": true,
- "dependencies": {
- "bytes": {
- "version": "2.4.0",
- "from": "bytes@2.4.0",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz",
- "optional": true
- }
- }
- },
- "rcfinder": {
- "version": "0.1.9",
- "from": "rcfinder@>=0.1.6 <0.2.0",
- "resolved": "https://registry.npmjs.org/rcfinder/-/rcfinder-0.1.9.tgz",
- "dev": true
- },
- "rcloader": {
- "version": "0.1.2",
- "from": "rcloader@0.1.2",
- "resolved": "https://registry.npmjs.org/rcloader/-/rcloader-0.1.2.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "2.4.2",
- "from": "lodash@>=2.4.1 <2.5.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz",
- "dev": true
- }
- }
- },
- "read-pkg": {
- "version": "1.1.0",
- "from": "read-pkg@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"
- },
- "read-pkg-up": {
- "version": "1.0.1",
- "from": "read-pkg-up@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"
- },
- "readable-stream": {
- "version": "2.2.11",
- "from": "readable-stream@>=2.0.2 <3.0.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.11.tgz"
- },
- "readdirp": {
- "version": "2.1.0",
- "from": "readdirp@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz"
- },
- "readline2": {
- "version": "1.0.1",
- "from": "readline2@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz",
- "dev": true
- },
- "rechoir": {
- "version": "0.6.2",
- "from": "rechoir@>=0.6.2 <0.7.0",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
- "dev": true
- },
- "reconnectingwebsocket": {
- "version": "1.0.0",
- "from": "reconnectingwebsocket@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/reconnectingwebsocket/-/reconnectingwebsocket-1.0.0.tgz"
- },
- "redent": {
- "version": "1.0.0",
- "from": "redent@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz",
- "dev": true
- },
- "regenerate": {
- "version": "1.3.2",
- "from": "regenerate@>=1.2.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.2.tgz",
- "dev": true
- },
- "regenerator-runtime": {
- "version": "0.10.5",
- "from": "regenerator-runtime@>=0.10.0 <0.11.0",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
- "dev": true
- },
- "regenerator-transform": {
- "version": "0.9.11",
- "from": "regenerator-transform@0.9.11",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.9.11.tgz",
- "dev": true
- },
- "regex-cache": {
- "version": "0.4.3",
- "from": "regex-cache@>=0.4.2 <0.5.0",
- "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz"
- },
- "regexpu-core": {
- "version": "2.0.0",
- "from": "regexpu-core@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
- "dev": true
- },
- "regjsgen": {
- "version": "0.2.0",
- "from": "regjsgen@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
- "dev": true
- },
- "regjsparser": {
- "version": "0.1.5",
- "from": "regjsparser@>=0.1.4 <0.2.0",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
- "dev": true,
- "dependencies": {
- "jsesc": {
- "version": "0.5.0",
- "from": "jsesc@>=0.5.0 <0.6.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
- "dev": true
- }
- }
- },
- "remove-trailing-separator": {
- "version": "1.0.1",
- "from": "remove-trailing-separator@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz"
- },
- "repeat-element": {
- "version": "1.1.2",
- "from": "repeat-element@>=1.1.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz"
- },
- "repeat-string": {
- "version": "1.6.1",
- "from": "repeat-string@>=1.5.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
- },
- "repeating": {
- "version": "2.0.1",
- "from": "repeating@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
- "dev": true
- },
- "request": {
- "version": "2.78.0",
- "from": "request@2.78.0",
- "resolved": "https://registry.npmjs.org/request/-/request-2.78.0.tgz",
- "dependencies": {
- "qs": {
- "version": "6.3.2",
- "from": "qs@>=6.3.0 <6.4.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz"
- }
- }
- },
- "request-progress": {
- "version": "2.0.1",
- "from": "request-progress@>=2.0.1 <2.1.0",
- "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz",
- "dev": true
- },
- "require-directory": {
- "version": "2.1.1",
- "from": "require-directory@>=2.1.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "optional": true
- },
- "require-main-filename": {
- "version": "1.0.1",
- "from": "require-main-filename@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"
- },
- "require-uncached": {
- "version": "1.0.3",
- "from": "require-uncached@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz",
- "dev": true
- },
- "requires-port": {
- "version": "1.0.0",
- "from": "requires-port@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"
- },
- "resolve": {
- "version": "1.1.7",
- "from": "resolve@>=1.1.0 <1.2.0",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
- "dev": true
- },
- "resolve-from": {
- "version": "1.0.1",
- "from": "resolve-from@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz",
- "dev": true
- },
- "resolve-pkg": {
- "version": "0.1.0",
- "from": "resolve-pkg@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/resolve-pkg/-/resolve-pkg-0.1.0.tgz",
- "dev": true,
- "dependencies": {
- "resolve-from": {
- "version": "2.0.0",
- "from": "resolve-from@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz",
- "dev": true
- }
- }
- },
- "resp-modifier": {
- "version": "6.0.2",
- "from": "resp-modifier@6.0.2",
- "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz",
- "optional": true
- },
- "restore-cursor": {
- "version": "1.0.1",
- "from": "restore-cursor@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz",
- "dev": true
- },
- "right-align": {
- "version": "0.1.3",
- "from": "right-align@>=0.1.1 <0.2.0",
- "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz",
- "dev": true
- },
- "rimraf": {
- "version": "2.6.1",
- "from": "rimraf@>=2.2.8 <3.0.0",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz",
- "dev": true
- },
- "ripemd160": {
- "version": "0.2.0",
- "from": "ripemd160@0.2.0",
- "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-0.2.0.tgz",
- "dev": true
- },
- "rrule": {
- "version": "2.2.0-dev",
- "from": "jkbrzt/rrule#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c",
- "resolved": "git://github.com/jkbrzt/rrule.git#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c"
- },
- "run-async": {
- "version": "0.1.0",
- "from": "run-async@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz",
- "dev": true
- },
- "rx": {
- "version": "4.1.0",
- "from": "rx@4.1.0",
- "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz",
- "optional": true
- },
- "rx-lite": {
- "version": "3.1.2",
- "from": "rx-lite@>=3.1.2 <4.0.0",
- "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz",
- "dev": true
- },
- "safe-buffer": {
- "version": "5.0.1",
- "from": "safe-buffer@>=5.0.1 <5.1.0",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz"
- },
- "sauce-connect-launcher": {
- "version": "0.17.0",
- "from": "sauce-connect-launcher@>=0.17.0 <0.18.0",
- "resolved": "https://registry.npmjs.org/sauce-connect-launcher/-/sauce-connect-launcher-0.17.0.tgz",
- "dev": true,
- "dependencies": {
- "async": {
- "version": "1.4.0",
- "from": "async@1.4.0",
- "resolved": "https://registry.npmjs.org/async/-/async-1.4.0.tgz",
- "dev": true
- },
- "glob": {
- "version": "5.0.15",
- "from": "glob@^5.0.14",
- "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
- "dev": true
- },
- "lodash": {
- "version": "3.10.1",
- "from": "lodash@3.10.1",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
- "dev": true
- },
- "rimraf": {
- "version": "2.4.3",
- "from": "rimraf@2.4.3",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz",
- "dev": true
- }
- }
- },
- "saucelabs": {
- "version": "1.4.0",
- "from": "saucelabs@>=1.3.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.4.0.tgz",
- "dev": true
- },
- "select2": {
- "version": "4.0.3",
- "from": "select2@>=4.0.2 <5.0.0",
- "resolved": "https://registry.npmjs.org/select2/-/select2-4.0.3.tgz"
- },
- "semver": {
- "version": "5.3.0",
- "from": "semver@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0||>=4.0.0 <5.0.0||>=5.0.0 <6.0.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"
- },
- "send": {
- "version": "0.15.2",
- "from": "send@0.15.2",
- "resolved": "https://registry.npmjs.org/send/-/send-0.15.2.tgz",
- "optional": true,
- "dependencies": {
- "debug": {
- "version": "2.6.4",
- "from": "debug@2.6.4",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.4.tgz",
- "optional": true,
- "dependencies": {
- "ms": {
- "version": "0.7.3",
- "from": "ms@0.7.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.3.tgz",
- "optional": true
- }
- }
- },
- "fresh": {
- "version": "0.5.0",
- "from": "fresh@0.5.0",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz",
- "optional": true
- },
- "http-errors": {
- "version": "1.6.1",
- "from": "http-errors@>=1.6.1 <1.7.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz",
- "optional": true
- },
- "mime": {
- "version": "1.3.4",
- "from": "mime@1.3.4",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz",
- "optional": true
- },
- "ms": {
- "version": "1.0.0",
- "from": "ms@1.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-1.0.0.tgz",
- "optional": true
- },
- "setprototypeof": {
- "version": "1.0.3",
- "from": "setprototypeof@1.0.3",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
- "optional": true
- }
- }
- },
- "serve-index": {
- "version": "1.8.0",
- "from": "serve-index@1.8.0",
- "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.8.0.tgz",
- "optional": true
- },
- "serve-static": {
- "version": "1.12.2",
- "from": "serve-static@1.12.2",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.12.2.tgz",
- "optional": true
- },
- "server-destroy": {
- "version": "1.0.1",
- "from": "server-destroy@1.0.1",
- "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz"
- },
- "set-blocking": {
- "version": "2.0.0",
- "from": "set-blocking@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
- "optional": true
- },
- "set-immediate-shim": {
- "version": "1.0.1",
- "from": "set-immediate-shim@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz"
- },
- "setimmediate": {
- "version": "1.0.5",
- "from": "setimmediate@>=1.0.4 <2.0.0",
- "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "dev": true
- },
- "setprototypeof": {
- "version": "1.0.2",
- "from": "setprototypeof@1.0.2",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.2.tgz",
- "optional": true
- },
- "sha.js": {
- "version": "2.2.6",
- "from": "sha.js@2.2.6",
- "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.2.6.tgz",
- "dev": true
- },
- "shelljs": {
- "version": "0.7.8",
- "from": "shelljs@>=0.7.5 <0.8.0",
- "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz",
- "dev": true
- },
- "signal-exit": {
- "version": "3.0.2",
- "from": "signal-exit@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
- "dev": true
- },
- "slash": {
- "version": "1.0.0",
- "from": "slash@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
- "dev": true
- },
- "slice-ansi": {
- "version": "0.0.4",
- "from": "slice-ansi@0.0.4",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz",
- "dev": true
- },
- "sntp": {
- "version": "1.0.9",
- "from": "sntp@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"
- },
- "socket.io": {
- "version": "1.6.0",
- "from": "socket.io@1.6.0",
- "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.6.0.tgz",
- "optional": true,
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz",
- "optional": true
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
- "optional": true
- },
- "object-assign": {
- "version": "4.1.0",
- "from": "object-assign@4.1.0",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz",
- "optional": true
- }
- }
- },
- "socket.io-adapter": {
- "version": "0.5.0",
- "from": "socket.io-adapter@0.5.0",
- "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz",
- "dependencies": {
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz"
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz"
- }
- }
- },
- "socket.io-client": {
- "version": "1.6.0",
- "from": "socket.io-client@1.6.0",
- "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.6.0.tgz",
- "dependencies": {
- "component-emitter": {
- "version": "1.2.1",
- "from": "component-emitter@1.2.1",
- "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"
- },
- "debug": {
- "version": "2.3.3",
- "from": "debug@2.3.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz"
- },
- "ms": {
- "version": "0.7.2",
- "from": "ms@0.7.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz"
- }
- }
- },
- "socket.io-parser": {
- "version": "2.3.1",
- "from": "socket.io-parser@2.3.1",
- "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz",
- "dependencies": {
- "isarray": {
- "version": "0.0.1",
- "from": "isarray@0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
- }
- }
- },
- "sockjs": {
- "version": "0.3.18",
- "from": "sockjs@>=0.3.15 <0.4.0",
- "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.18.tgz",
- "optional": true
- },
- "sockjs-client": {
- "version": "1.1.4",
- "from": "sockjs-client@>=1.0.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.4.tgz",
- "optional": true,
- "dependencies": {
- "debug": {
- "version": "2.6.8",
- "from": "debug@>=2.6.6 <3.0.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz",
- "optional": true
- },
- "faye-websocket": {
- "version": "0.11.1",
- "from": "faye-websocket@>=0.11.0 <0.12.0",
- "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz",
- "optional": true
- },
- "ms": {
- "version": "2.0.0",
- "from": "ms@2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "optional": true
- }
- }
- },
- "source-list-map": {
- "version": "0.1.8",
- "from": "source-list-map@>=0.1.7 <0.2.0",
- "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz",
- "dev": true
- },
- "source-map": {
- "version": "0.3.0",
- "from": "source-map@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz"
- },
- "source-map-support": {
- "version": "0.4.15",
- "from": "source-map-support@>=0.4.2 <0.5.0",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.15.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@^0.5.6",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- }
- }
- },
- "spdx-correct": {
- "version": "1.0.2",
- "from": "spdx-correct@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz"
- },
- "spdx-expression-parse": {
- "version": "1.0.4",
- "from": "spdx-expression-parse@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz"
- },
- "spdx-license-ids": {
- "version": "1.2.2",
- "from": "spdx-license-ids@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz"
- },
- "split2": {
- "version": "1.1.1",
- "from": "split2@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/split2/-/split2-1.1.1.tgz",
- "dev": true
- },
- "sprintf-js": {
- "version": "1.1.1",
- "from": "sprintf-js@>=1.0.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz"
- },
- "sshpk": {
- "version": "1.13.0",
- "from": "sshpk@>=1.7.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.0.tgz",
- "dependencies": {
- "assert-plus": {
- "version": "1.0.0",
- "from": "assert-plus@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
- }
- }
- },
- "statuses": {
- "version": "1.3.1",
- "from": "statuses@>=1.3.0 <1.4.0",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz"
- },
- "stream-browserify": {
- "version": "2.0.1",
- "from": "stream-browserify@>=2.0.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz",
- "dev": true
- },
- "stream-cache": {
- "version": "0.0.2",
- "from": "stream-cache@>=0.0.1 <0.1.0",
- "resolved": "https://registry.npmjs.org/stream-cache/-/stream-cache-0.0.2.tgz",
- "optional": true
- },
- "stream-http": {
- "version": "2.7.1",
- "from": "stream-http@>=2.3.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.1.tgz",
- "dev": true
- },
- "stream-shift": {
- "version": "1.0.0",
- "from": "stream-shift@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz",
- "dev": true
- },
- "stream-throttle": {
- "version": "0.1.3",
- "from": "stream-throttle@>=0.1.3 <0.2.0",
- "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz",
- "optional": true
- },
- "string_decoder": {
- "version": "1.0.2",
- "from": "string_decoder@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.2.tgz"
- },
- "string-length": {
- "version": "1.0.1",
- "from": "string-length@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz",
- "dev": true
- },
- "string-width": {
- "version": "1.0.2",
- "from": "string-width@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"
- },
- "stringstream": {
- "version": "0.0.5",
- "from": "stringstream@>=0.0.4 <0.1.0",
- "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz"
- },
- "strip-ansi": {
- "version": "3.0.1",
- "from": "strip-ansi@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
- },
- "strip-bom": {
- "version": "2.0.0",
- "from": "strip-bom@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"
- },
- "strip-indent": {
- "version": "1.0.1",
- "from": "strip-indent@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz",
- "dev": true
- },
- "strip-json-comments": {
- "version": "2.0.1",
- "from": "strip-json-comments@>=2.0.1 <2.1.0",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
- "dev": true
- },
- "supports-color": {
- "version": "2.0.0",
- "from": "supports-color@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"
- },
- "table": {
- "version": "3.8.3",
- "from": "table@>=3.7.8 <4.0.0",
- "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz",
- "dev": true,
- "dependencies": {
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "from": "is-fullwidth-code-point@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "dev": true
- },
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.0.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- },
- "string-width": {
- "version": "2.0.0",
- "from": "string-width@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.0.0.tgz",
- "dev": true
- }
- }
- },
- "tapable": {
- "version": "0.1.10",
- "from": "tapable@>=0.1.8 <0.2.0",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz",
- "dev": true
- },
- "tar-stream": {
- "version": "1.5.4",
- "from": "tar-stream@>=1.5.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.4.tgz",
- "dev": true
- },
- "test-exclude": {
- "version": "2.1.3",
- "from": "test-exclude@>=2.1.1 <3.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-2.1.3.tgz",
- "dev": true
- },
- "text-table": {
- "version": "0.2.0",
- "from": "text-table@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "dev": true
- },
- "tfunk": {
- "version": "3.1.0",
- "from": "tfunk@>=3.0.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/tfunk/-/tfunk-3.1.0.tgz",
- "optional": true
- },
- "throttleit": {
- "version": "1.0.0",
- "from": "throttleit@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz",
- "dev": true
- },
- "through": {
- "version": "2.3.8",
- "from": "through@>=2.3.6 <3.0.0",
- "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
- "dev": true
- },
- "through2": {
- "version": "2.0.3",
- "from": "through2@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
- "dev": true
- },
- "time-grunt": {
- "version": "1.4.0",
- "from": "time-grunt@>=1.4.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/time-grunt/-/time-grunt-1.4.0.tgz",
- "dev": true
- },
- "time-zone": {
- "version": "0.1.0",
- "from": "time-zone@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/time-zone/-/time-zone-0.1.0.tgz",
- "dev": true
- },
- "timers-browserify": {
- "version": "2.0.2",
- "from": "timers-browserify@>=2.0.2 <3.0.0",
- "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.2.tgz",
- "dev": true
- },
- "timezone-js": {
- "version": "0.4.14",
- "from": "ansible/timezone-js#0.4.14",
- "resolved": "git://github.com/ansible/timezone-js.git#6937de14ce0c193961538bb5b3b12b7ef62a358f"
- },
- "tiny-lr": {
- "version": "0.2.1",
- "from": "tiny-lr@>=0.2.1 <0.3.0",
- "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz",
- "optional": true,
- "dependencies": {
- "qs": {
- "version": "5.1.0",
- "from": "qs@>=5.1.0 <5.2.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-5.1.0.tgz",
- "optional": true
- }
- }
- },
- "tmp": {
- "version": "0.0.31",
- "from": "tmp@0.0.31",
- "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz",
- "dev": true
- },
- "to-array": {
- "version": "0.1.4",
- "from": "to-array@0.1.4",
- "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz"
- },
- "to-arraybuffer": {
- "version": "1.0.1",
- "from": "to-arraybuffer@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
- "dev": true
- },
- "to-fast-properties": {
- "version": "1.0.3",
- "from": "to-fast-properties@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
- "dev": true
- },
- "tough-cookie": {
- "version": "2.3.2",
- "from": "tough-cookie@>=2.3.0 <2.4.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz"
- },
- "trim-newlines": {
- "version": "1.0.0",
- "from": "trim-newlines@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz",
- "dev": true
- },
- "trim-right": {
- "version": "1.0.1",
- "from": "trim-right@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
- "dev": true
- },
- "tryit": {
- "version": "1.0.3",
- "from": "tryit@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/tryit/-/tryit-1.0.3.tgz",
- "dev": true
- },
- "tty-browserify": {
- "version": "0.0.0",
- "from": "tty-browserify@0.0.0",
- "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
- "dev": true
- },
- "tunnel-agent": {
- "version": "0.4.3",
- "from": "tunnel-agent@>=0.4.1 <0.5.0",
- "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz"
- },
- "tweetnacl": {
- "version": "0.14.5",
- "from": "tweetnacl@>=0.14.0 <0.15.0",
- "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
- "optional": true
- },
- "type-check": {
- "version": "0.3.2",
- "from": "type-check@>=0.3.2 <0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
- "dev": true
- },
- "type-is": {
- "version": "1.6.15",
- "from": "type-is@>=1.6.10 <1.7.0",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz"
- },
- "typedarray": {
- "version": "0.0.6",
- "from": "typedarray@>=0.0.6 <0.0.7",
- "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
- "dev": true
- },
- "typescript": {
- "version": "2.0.10",
- "from": "typescript@>=2.0.3 <2.1.0",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.0.10.tgz",
- "dev": true
- },
- "typescript-eslint-parser": {
- "version": "1.0.3",
- "from": "typescript-eslint-parser@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/typescript-eslint-parser/-/typescript-eslint-parser-1.0.3.tgz",
- "dev": true
- },
- "ua-parser-js": {
- "version": "0.7.12",
- "from": "ua-parser-js@0.7.12",
- "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.12.tgz",
- "optional": true
- },
- "uglify-js": {
- "version": "2.8.28",
- "from": "uglify-js@>=2.6.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.28.tgz",
- "dev": true,
- "optional": true,
- "dependencies": {
- "cliui": {
- "version": "2.1.0",
- "from": "cliui@>=2.1.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
- "dev": true,
- "optional": true
- },
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@~0.5.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true,
- "optional": true
- },
- "window-size": {
- "version": "0.1.0",
- "from": "window-size@0.1.0",
- "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz",
- "dev": true,
- "optional": true
- },
- "wordwrap": {
- "version": "0.0.2",
- "from": "wordwrap@0.0.2",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
- "dev": true,
- "optional": true
- },
- "yargs": {
- "version": "3.10.0",
- "from": "yargs@>=3.10.0 <3.11.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz",
- "dev": true,
- "optional": true
- }
- }
- },
- "uglify-to-browserify": {
- "version": "1.0.2",
- "from": "uglify-to-browserify@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz",
- "dev": true
- },
- "ultron": {
- "version": "1.0.2",
- "from": "ultron@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz"
- },
- "underscore": {
- "version": "1.7.0",
- "from": "underscore@>=1.7.0 <1.8.0",
- "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz",
- "optional": true
- },
- "underscore.string": {
- "version": "3.2.3",
- "from": "underscore.string@>=3.2.3 <3.3.0",
- "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.2.3.tgz",
- "dev": true
- },
- "universalify": {
- "version": "0.1.0",
- "from": "universalify@>=0.1.0 <0.2.0",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.0.tgz",
- "optional": true
- },
- "unpipe": {
- "version": "1.0.0",
- "from": "unpipe@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
- },
- "url": {
- "version": "0.11.0",
- "from": "url@>=0.11.0 <0.12.0",
- "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
- "dev": true,
- "dependencies": {
- "punycode": {
- "version": "1.3.2",
- "from": "punycode@1.3.2",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
- "dev": true
- }
- }
- },
- "url-parse": {
- "version": "1.1.9",
- "from": "url-parse@>=1.1.8 <2.0.0",
- "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.1.9.tgz",
- "optional": true,
- "dependencies": {
- "querystringify": {
- "version": "1.0.0",
- "from": "querystringify@>=1.0.0 <1.1.0",
- "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-1.0.0.tgz",
- "optional": true
- }
- }
- },
- "user-home": {
- "version": "2.0.0",
- "from": "user-home@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz",
- "dev": true
- },
- "useragent": {
- "version": "2.1.13",
- "from": "useragent@>=2.1.12 <3.0.0",
- "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.1.13.tgz",
- "dev": true
- },
- "util": {
- "version": "0.10.3",
- "from": "util@>=0.10.3 <0.11.0",
- "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
- "dev": true,
- "dependencies": {
- "inherits": {
- "version": "2.0.1",
- "from": "inherits@2.0.1",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
- "dev": true
- }
- }
- },
- "util-deprecate": {
- "version": "1.0.2",
- "from": "util-deprecate@>=1.0.1 <1.1.0",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
- },
- "utils-merge": {
- "version": "1.0.0",
- "from": "utils-merge@1.0.0",
- "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz"
- },
- "uuid": {
- "version": "2.0.3",
- "from": "uuid@>=2.0.2 <3.0.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz",
- "optional": true
- },
- "validate-npm-package-license": {
- "version": "3.0.1",
- "from": "validate-npm-package-license@>=3.0.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz"
- },
- "vargs": {
- "version": "0.1.0",
- "from": "vargs@0.1.0",
- "resolved": "https://registry.npmjs.org/vargs/-/vargs-0.1.0.tgz",
- "dev": true
- },
- "vary": {
- "version": "1.1.1",
- "from": "vary@>=1.1.0 <1.2.0",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz"
- },
- "verror": {
- "version": "1.3.6",
- "from": "verror@1.3.6",
- "resolved": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz"
- },
- "vlq": {
- "version": "0.2.2",
- "from": "vlq@>=0.2.1 <0.3.0",
- "resolved": "https://registry.npmjs.org/vlq/-/vlq-0.2.2.tgz",
- "optional": true
- },
- "vm-browserify": {
- "version": "0.0.4",
- "from": "vm-browserify@0.0.4",
- "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz",
- "dev": true
- },
- "void-elements": {
- "version": "2.0.1",
- "from": "void-elements@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz",
- "dev": true
- },
- "walkdir": {
- "version": "0.0.11",
- "from": "walkdir@>=0.0.11 <0.0.12",
- "resolved": "https://registry.npmjs.org/walkdir/-/walkdir-0.0.11.tgz",
- "dev": true
- },
- "watchpack": {
- "version": "0.2.9",
- "from": "watchpack@>=0.2.1 <0.3.0",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-0.2.9.tgz",
- "dev": true,
- "dependencies": {
- "async": {
- "version": "0.9.2",
- "from": "async@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
- "dev": true
- }
- }
- },
- "wd": {
- "version": "1.2.0",
- "from": "wd@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/wd/-/wd-1.2.0.tgz",
- "dev": true,
- "dependencies": {
- "async": {
- "version": "2.0.1",
- "from": "async@2.0.1",
- "resolved": "https://registry.npmjs.org/async/-/async-2.0.1.tgz",
- "dev": true
- },
- "lodash": {
- "version": "4.16.2",
- "from": "lodash@4.16.2",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.16.2.tgz",
- "dev": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@^0.5.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- },
- "q": {
- "version": "1.4.1",
- "from": "q@1.4.1",
- "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz",
- "dev": true
- },
- "qs": {
- "version": "6.3.2",
- "from": "qs@>=6.3.0 <6.4.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz",
- "dev": true
- },
- "request": {
- "version": "2.79.0",
- "from": "request@2.79.0",
- "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz",
- "dev": true
- },
- "underscore.string": {
- "version": "3.3.4",
- "from": "underscore.string@3.3.4",
- "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.4.tgz",
- "dev": true
- },
- "uuid": {
- "version": "3.0.1",
- "from": "uuid@^3.0.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz",
- "dev": true
- }
- }
- },
- "webpack": {
- "version": "1.15.0",
- "from": "webpack@>=1.13.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-1.15.0.tgz",
- "dev": true,
- "dependencies": {
- "cliui": {
- "version": "2.1.0",
- "from": "cliui@^2.1.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
- "dev": true
- },
- "interpret": {
- "version": "0.6.6",
- "from": "interpret@>=0.6.4 <0.7.0",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-0.6.6.tgz",
- "dev": true
- },
- "memory-fs": {
- "version": "0.3.0",
- "from": "memory-fs@>=0.3.0 <0.4.0",
- "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.3.0.tgz",
- "dev": true
- },
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@~0.5.0",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- },
- "source-map": {
- "version": "0.5.6",
- "from": "source-map@~0.5.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz",
- "dev": true
- },
- "supports-color": {
- "version": "3.2.3",
- "from": "supports-color@>=3.1.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
- "dev": true
- },
- "uglify-js": {
- "version": "2.7.5",
- "from": "uglify-js@>=2.7.3 <2.8.0",
- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz",
- "dev": true,
- "dependencies": {
- "async": {
- "version": "0.2.10",
- "from": "async@>=0.2.6 <0.3.0",
- "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz",
- "dev": true
- }
- }
- },
- "window-size": {
- "version": "0.1.0",
- "from": "window-size@0.1.0",
- "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz",
- "dev": true
- },
- "wordwrap": {
- "version": "0.0.2",
- "from": "wordwrap@0.0.2",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
- "dev": true
- },
- "yargs": {
- "version": "3.10.0",
- "from": "yargs@~3.10.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz",
- "dev": true
- }
- }
- },
- "webpack-core": {
- "version": "0.6.9",
- "from": "webpack-core@>=0.6.9 <0.7.0",
- "resolved": "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz",
- "dev": true,
- "dependencies": {
- "source-map": {
- "version": "0.4.4",
- "from": "source-map@>=0.4.1 <0.5.0",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
- "dev": true
- }
- }
- },
- "webpack-dev-middleware": {
- "version": "1.10.2",
- "from": "webpack-dev-middleware@>=1.10.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.10.2.tgz",
- "dependencies": {
- "mime": {
- "version": "1.3.6",
- "from": "mime@>=1.3.4 <2.0.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz"
- }
- }
- },
- "webpack-dev-server": {
- "version": "1.16.5",
- "from": "webpack-dev-server@>=1.14.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-1.16.5.tgz",
- "optional": true,
- "dependencies": {
- "debug": {
- "version": "2.6.7",
- "from": "debug@2.6.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz"
- },
- "express": {
- "version": "4.15.3",
- "from": "express@>=4.13.3 <5.0.0",
- "resolved": "https://registry.npmjs.org/express/-/express-4.15.3.tgz",
- "optional": true
- },
- "finalhandler": {
- "version": "1.0.3",
- "from": "finalhandler@>=1.0.3 <1.1.0",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.3.tgz",
- "optional": true
- },
- "fresh": {
- "version": "0.5.0",
- "from": "fresh@0.5.0",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz"
- },
- "http-errors": {
- "version": "1.6.1",
- "from": "http-errors@>=1.6.1 <1.7.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz"
- },
- "mime": {
- "version": "1.3.4",
- "from": "mime@1.3.4",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz"
- },
- "ms": {
- "version": "2.0.0",
- "from": "ms@2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
- },
- "qs": {
- "version": "6.4.0",
- "from": "qs@6.4.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz",
- "optional": true
- },
- "send": {
- "version": "0.15.3",
- "from": "send@0.15.3",
- "resolved": "https://registry.npmjs.org/send/-/send-0.15.3.tgz"
- },
- "serve-static": {
- "version": "1.12.3",
- "from": "serve-static@1.12.3",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.12.3.tgz",
- "optional": true
- },
- "setprototypeof": {
- "version": "1.0.3",
- "from": "setprototypeof@1.0.3",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz"
- },
- "supports-color": {
- "version": "3.2.3",
- "from": "supports-color@>=3.1.1 <4.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
- "optional": true
- }
- }
- },
- "websocket-driver": {
- "version": "0.6.5",
- "from": "websocket-driver@>=0.5.1",
- "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz"
- },
- "websocket-extensions": {
- "version": "0.1.1",
- "from": "websocket-extensions@>=0.1.1",
- "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.1.tgz"
- },
- "weinre": {
- "version": "2.0.0-pre-I0Z7U9OV",
- "from": "weinre@>=2.0.0-pre-I0Z7U9OV <3.0.0",
- "resolved": "https://registry.npmjs.org/weinre/-/weinre-2.0.0-pre-I0Z7U9OV.tgz",
- "optional": true
- },
- "which": {
- "version": "1.2.14",
- "from": "which@>=1.2.0 <1.3.0",
- "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz",
- "dev": true
- },
- "which-module": {
- "version": "1.0.0",
- "from": "which-module@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz",
- "optional": true
- },
- "window-size": {
- "version": "0.1.4",
- "from": "window-size@>=0.1.2 <0.2.0",
- "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz",
- "optional": true
- },
- "wordwrap": {
- "version": "0.0.3",
- "from": "wordwrap@>=0.0.2 <0.1.0",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz"
- },
- "wrap-ansi": {
- "version": "2.1.0",
- "from": "wrap-ansi@>=2.0.0 <3.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"
- },
- "wrappy": {
- "version": "1.0.2",
- "from": "wrappy@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
- },
- "write": {
- "version": "0.2.1",
- "from": "write@>=0.2.1 <0.3.0",
- "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz",
- "dev": true,
- "dependencies": {
- "minimist": {
- "version": "0.0.8",
- "from": "minimist@0.0.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
- "dev": true
- },
- "mkdirp": {
- "version": "0.5.1",
- "from": "mkdirp@^0.5.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "dev": true
- }
- }
- },
- "ws": {
- "version": "1.1.1",
- "from": "ws@1.1.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.1.tgz"
- },
- "wtf-8": {
- "version": "1.0.0",
- "from": "wtf-8@1.0.0",
- "resolved": "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz"
- },
- "xmlbuilder": {
- "version": "8.2.2",
- "from": "xmlbuilder@8.2.2",
- "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz",
- "dev": true
- },
- "xmlhttprequest-ssl": {
- "version": "1.5.3",
- "from": "xmlhttprequest-ssl@1.5.3",
- "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz"
- },
- "xtend": {
- "version": "4.0.1",
- "from": "xtend@>=4.0.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"
- },
- "y18n": {
- "version": "3.2.1",
- "from": "y18n@>=3.2.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"
- },
- "yargs": {
- "version": "6.4.0",
- "from": "yargs@6.4.0",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.4.0.tgz",
- "optional": true,
- "dependencies": {
- "camelcase": {
- "version": "3.0.0",
- "from": "camelcase@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
- "optional": true
- },
- "window-size": {
- "version": "0.2.0",
- "from": "window-size@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz",
- "optional": true
- }
- }
- },
- "yargs-parser": {
- "version": "4.2.1",
- "from": "yargs-parser@>=4.1.0 <5.0.0",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz",
- "optional": true,
- "dependencies": {
- "camelcase": {
- "version": "3.0.0",
- "from": "camelcase@>=3.0.0 <4.0.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
- "optional": true
- }
- }
- },
- "yauzl": {
- "version": "2.4.1",
- "from": "yauzl@2.4.1",
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz",
- "dev": true
- },
- "yeast": {
- "version": "0.1.2",
- "from": "yeast@0.1.2",
- "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz"
- },
- "zip-stream": {
- "version": "1.1.1",
- "from": "zip-stream@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-1.1.1.tgz",
- "dev": true,
- "dependencies": {
- "lodash": {
- "version": "4.17.4",
- "from": "lodash@^4.8.0",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
- "dev": true
- }
- }
- }
- }
-}
diff --git a/awx/ui/package.json b/awx/ui/package.json
index cbb998b181..162df7cc93 100644
--- a/awx/ui/package.json
+++ b/awx/ui/package.json
@@ -1,65 +1,61 @@
{
- "name": "ansible-tower",
- "version": "3.1.0",
+ "name": "awx",
+ "version": "1.0.0",
"repository": {
"type": "git",
- "url": ""
+ "url": "https://github.com/ansible/awx"
},
"config": {
"django_port": "8043",
"django_host": "localhost"
},
"engines": {
- "node": "^6.3.1",
- "npm": "^3.10.3"
+ "node": "^6.11.3",
+ "npm": "^3.10.10"
},
"scripts": {
"ui-docker-machine": "ip=$(docker-machine ip $DOCKER_MACHINE_NAME); npm set ansible-tower:django_host ${ip}; grunt dev;",
- "ui-docker": "grunt dev;",
- "build-devel": "grunt devNoSync",
+ "ui-docker": "npm run watch;",
+ "build-devel": "npm run dev",
"pot": "grunt nggettext_extract",
"languages": "grunt nggettext_compile",
- "build-release": "grunt release",
- "pretest": "grunt clean:coverage",
+ "build-release": "npm run production",
+ "pretest": "",
"test": "karma start karma.conf.js",
- "jshint": "grunt clean:jshint jshint:source --no-color",
+ "jshint": "grunt jshint:source --no-color",
"test:ci": "npm run test -- --single-run --reporter junit,dots --browsers=PhantomJS",
"lint": "./node_modules/.bin/eslint -c .eslintrc.js .",
"component-test": "./node_modules/.bin/karma start client/test/karma.conf.js",
"lint-dev": "./node_modules/.bin/nodemon --exec \"./node_modules/.bin/eslint -c .eslintrc.js .\" --watch \"client/components/**/*.js\"",
- "component-dev": "./node_modules/.bin/karma start client/test/karma.conf.js --auto-watch --no-single-run"
- },
- "optionalDependencies": {
- "browser-sync": "^2.14.0",
- "grunt-browser-sync": "^2.2.0",
- "grunt-contrib-watch": "^1.0.0",
- "webpack-dev-server": "^1.14.1"
+ "dev": "./node_modules/.bin/webpack --config build/webpack.development.js --progress",
+ "watch": "./node_modules/.bin/webpack-dev-server --config build/webpack.watch.js --progress",
+ "production": "./node_modules/.bin/webpack --config build/webpack.production.js"
},
"devDependencies": {
"angular-mocks": "~1.4.14",
- "babel-core": "^6.11.4",
+ "babel-core": "^6.26.0",
"babel-istanbul": "^0.11.0",
- "babel-loader": "^6.2.4",
+ "babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^2.0.0",
- "babel-preset-es2015": "^6.9.0",
+ "babel-preset-es2015": "^6.24.1",
+ "clean-webpack-plugin": "^0.1.16",
+ "copy-webpack-plugin": "^4.0.1",
+ "css-loader": "^0.28.5",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
- "expose-loader": "^0.7.1",
+ "expose-loader": "^0.7.3",
+ "extract-text-webpack-plugin": "^3.0.0",
"grunt": "^1.0.1",
"grunt-angular-gettext": "^2.2.3",
"grunt-cli": "^1.2.0",
"grunt-concurrent": "^2.3.0",
- "grunt-contrib-clean": "^1.0.0",
- "grunt-contrib-concat": "^1.0.1",
- "grunt-contrib-copy": "^1.0.0",
- "grunt-contrib-cssmin": "^2.2.0",
"grunt-contrib-jshint": "^1.0.0",
- "grunt-contrib-less": "^1.3.0",
- "grunt-extract-sourcemap": "^0.1.18",
"grunt-newer": "^1.2.0",
- "grunt-webpack": "^1.0.11",
- "imports-loader": "^0.6.5",
+ "html-loader": "^0.5.1",
+ "html-webpack-harddisk-plugin": "^0.1.0",
+ "html-webpack-plugin": "^2.30.1",
+ "imports-loader": "^0.7.1",
"jasmine-core": "^2.5.2",
"jshint": "^2.9.4",
"jshint-loader": "^0.8.3",
@@ -77,31 +73,38 @@
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
+ "less": "^2.7.2",
+ "less-loader": "^4.0.5",
"less-plugin-autoprefix": "^1.4.2",
"load-grunt-configs": "^1.0.0",
"load-grunt-tasks": "^3.5.0",
"minimist": "^1.2.0",
+ "ngtemplate-loader": "^2.0.1",
"phantomjs-prebuilt": "^2.1.12",
+ "script-loader": "^0.7.0",
+ "style-loader": "^0.18.2",
"time-grunt": "^1.4.0",
- "webpack": "^1.13.1"
+ "uglifyjs-webpack-plugin": "^0.4.6",
+ "webpack": "^3.0.0",
+ "webpack-dev-server": "^2.7.1"
},
"dependencies": {
"angular": "~1.4.14",
- "angular-breadcrumb": "github:ansible/angular-breadcrumb#0.4.1",
- "angular-codemirror": "github:ansible/angular-codemirror#1.0.4",
+ "angular-breadcrumb": "git+https://git@github.com/ansible/angular-breadcrumb#0.4.1",
+ "angular-codemirror": "git+https://git@github.com/ansible/angular-codemirror#1.0.4",
"angular-cookies": "~1.4.14",
- "angular-drag-and-drop-lists": "github:ansible/angular-drag-and-drop-lists#1.4.0",
+ "angular-drag-and-drop-lists": "git+https://git@github.com/ansible/angular-drag-and-drop-lists#1.4.0",
"angular-duration-format": "^1.0.1",
"angular-gettext": "^2.3.5",
"angular-md5": "^0.1.8",
"angular-moment": "^0.10.1",
"angular-resource": "~1.4.14",
"angular-sanitize": "~1.4.14",
- "angular-scheduler": "github:ansible/angular-scheduler#0.1.1",
- "angular-tz-extensions": "github:ansible/angular-tz-extensions#0.3.13",
+ "angular-scheduler": "git+https://git@github.com/ansible/angular-scheduler#0.1.1",
+ "angular-tz-extensions": "git+https://git@github.com/ansible/angular-tz-extensions#0.3.13",
"angular-ui-router": "1.0.0-beta.3",
- "bootstrap": "^3.1.1",
- "bootstrap-datepicker": "^1.4.0",
+ "bootstrap": "^3.3.7",
+ "bootstrap-datepicker": "^1.7.1",
"codemirror": "^5.17.0",
"components-font-awesome": "^4.6.1",
"d3": "~3.3.13",
@@ -111,12 +114,12 @@
"js-yaml": "^3.2.7",
"legacy-loader": "0.0.2",
"lodash": "~3.8.0",
- "lr-infinite-scroll": "github:lorenzofox3/lrInfiniteScroll",
+ "lr-infinite-scroll": "git+https://git@github.com/lorenzofox3/lrInfiniteScroll",
"moment": "~2.10.0",
- "ng-toast": "github:ansible/ngToast#2.0.1",
- "nvd3": "github:ansible/nvd3#1.7.1",
+ "ng-toast": "git+https://git@github.com/ansible/ngToast#2.0.1",
+ "nvd3": "git+https://git@github.com/ansible/nvd3#1.7.1",
"reconnectingwebsocket": "^1.0.0",
- "rrule": "github:jkbrzt/rrule#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c",
+ "rrule": "git+https://git@github.com/jkbrzt/rrule#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c",
"select2": "^4.0.2",
"sprintf-js": "^1.0.3"
}
diff --git a/awx/ui/po/ansible-tower-ui.pot b/awx/ui/po/ansible-tower-ui.pot
index 7c6796f637..fc4f77774a 100644
--- a/awx/ui/po/ansible-tower-ui.pot
+++ b/awx/ui/po/ansible-tower-ui.pot
@@ -4,6 +4,10 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Project-Id-Version: \n"
+#: client/src/notifications/notificationTemplates.form.js:378
+msgid "%s or %s"
+msgstr ""
+
#: client/src/projects/add/projects-add.controller.js:153
#: client/src/projects/edit/projects-edit.controller.js:282
msgid "%sNote:%s Mercurial does not support password authentication for SSH. Do not put the username and key in the URL. If using Bitbucket and SSH, do not supply your Bitbucket username."
@@ -18,7 +22,7 @@ msgstr ""
msgid "(defaults to %s)"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:378
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:400
msgid "(seconds)"
msgstr ""
@@ -68,7 +72,7 @@ msgstr ""
msgid "ACTIVITY STREAM"
msgstr ""
-#: client/features/credentials/legacy.credentials.js:79
+#: client/features/credentials/legacy.credentials.js:81
#: client/src/credential-types/credential-types.list.js:44
#: client/src/credentials/credentials.form.js:449
#: client/src/credentials/credentials.list.js:54
@@ -84,9 +88,9 @@ msgstr ""
#: client/src/scheduler/schedules.list.js:68
#: client/src/teams/teams.form.js:85
#: client/src/teams/teams.list.js:45
-#: client/src/templates/job_templates/job-template.form.js:402
+#: client/src/templates/job_templates/job-template.form.js:420
#: client/src/templates/templates.list.js:58
-#: client/src/templates/workflows.form.js:125
+#: client/src/templates/workflows.form.js:130
#: client/src/users/users.list.js:50
msgid "ADD"
msgstr ""
@@ -129,16 +133,11 @@ msgstr ""
msgid "ALL JOBS"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:185
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:267
-msgid "ANY"
-msgstr ""
-
#: client/src/credentials/credentials.form.js:198
msgid "API Key"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:246
+#: client/src/notifications/notificationTemplates.form.js:251
msgid "API Service/Integration Key"
msgstr ""
@@ -168,11 +167,11 @@ msgstr ""
msgid "Access Key"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:224
+#: client/src/notifications/notificationTemplates.form.js:229
msgid "Account SID"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:183
+#: client/src/notifications/notificationTemplates.form.js:186
msgid "Account Token"
msgstr ""
@@ -196,10 +195,10 @@ msgid "Activity Stream"
msgstr ""
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:134
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:137
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:143
#: client/src/organizations/organizations.form.js:81
#: client/src/teams/teams.form.js:82
-#: client/src/templates/workflows.form.js:122
+#: client/src/templates/workflows.form.js:127
msgid "Add"
msgstr ""
@@ -219,9 +218,9 @@ msgstr ""
msgid "Add Project"
msgstr ""
-#: client/src/shared/form-generator.js:1703
-#: client/src/templates/job_templates/job-template.form.js:450
-#: client/src/templates/workflows.form.js:170
+#: client/src/shared/form-generator.js:1701
+#: client/src/templates/job_templates/job-template.form.js:468
+#: client/src/templates/workflows.form.js:175
msgid "Add Survey"
msgstr ""
@@ -233,8 +232,8 @@ msgstr ""
msgid "Add User"
msgstr ""
-#: client/src/shared/stateDefinitions.factory.js:410
-#: client/src/shared/stateDefinitions.factory.js:578
+#: client/src/shared/stateDefinitions.factory.js:364
+#: client/src/shared/stateDefinitions.factory.js:532
#: client/src/users/users.list.js:17
msgid "Add Users"
msgstr ""
@@ -255,13 +254,13 @@ msgstr ""
msgid "Add a new schedule"
msgstr ""
-#: client/features/credentials/legacy.credentials.js:77
+#: client/features/credentials/legacy.credentials.js:79
#: client/src/credentials/credentials.form.js:447
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:136
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:139
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:145
#: client/src/projects/projects.form.js:241
-#: client/src/templates/job_templates/job-template.form.js:400
-#: client/src/templates/workflows.form.js:123
+#: client/src/templates/job_templates/job-template.form.js:418
+#: client/src/templates/workflows.form.js:128
msgid "Add a permission"
msgstr ""
@@ -269,7 +268,7 @@ msgstr ""
msgid "Add passwords, SSH keys, and other credentials to use when launching jobs against machines, or when syncing inventories or projects."
msgstr ""
-#: client/src/shared/form-generator.js:1439
+#: client/src/shared/form-generator.js:1437
msgid "Admin"
msgstr ""
@@ -277,15 +276,11 @@ msgstr ""
msgid "Admins"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:367
-msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format."
-msgstr ""
-
#: client/src/home/dashboard/graphs/dashboard-graphs.partial.html:37
#: client/src/home/dashboard/graphs/dashboard-graphs.partial.html:43
#: client/src/home/dashboard/graphs/dashboard-graphs.partial.html:65
#: client/src/home/dashboard/graphs/dashboard-graphs.partial.html:74
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:139
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:138
msgid "All"
msgstr ""
@@ -298,8 +293,8 @@ msgstr ""
msgid "All Jobs"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:280
-#: client/src/templates/job_templates/job-template.form.js:287
+#: client/src/templates/job_templates/job-template.form.js:293
+#: client/src/templates/job_templates/job-template.form.js:300
msgid "Allow Provisioning Callbacks"
msgstr ""
@@ -315,8 +310,7 @@ msgstr ""
msgid "An SCM update does not appear to be running for project: %s. Click the %sRefresh%s button to view the latest status."
msgstr ""
-#: client/src/templates/survey-maker/shared/question-definition.form.js:59
-#: client/src/templates/survey-maker/shared/question-definition.form.js:65
+#: client/src/templates/survey-maker/shared/question-definition.form.js:60
msgid "Answer Type"
msgstr ""
@@ -398,7 +392,7 @@ msgstr ""
msgid "Associate this host with a new group"
msgstr ""
-#: client/src/shared/form-generator.js:1441
+#: client/src/shared/form-generator.js:1439
msgid "Auditor"
msgstr ""
@@ -422,11 +416,6 @@ msgstr ""
msgid "Authorize Password"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:172
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:253
-msgid "Availability Zone:"
-msgstr ""
-
#: client/src/configuration/auth-form/configuration-auth.controller.js:106
msgid "Azure AD"
msgstr ""
@@ -440,6 +429,7 @@ msgid "Base path used for locating playbooks. Directories found inside this path
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:128
+#: client/src/templates/job_templates/job-template.form.js:287
msgid "Become Privilege Escalation"
msgstr ""
@@ -457,7 +447,7 @@ msgstr ""
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory-host-filter/host-filter-modal/host-filter-modal.partial.html:16
#: client/src/inventories-hosts/shared/associate-groups/associate-groups.partial.html:16
#: client/src/inventories-hosts/shared/associate-hosts/associate-hosts.partial.html:16
-#: client/src/job-submission/job-submission.partial.html:363
+#: client/src/job-submission/job-submission.partial.html:362
#: client/src/partials/survey-maker-modal.html:17
#: client/src/partials/survey-maker-modal.html:84
#: client/src/shared/instance-groups-multiselect/instance-groups-modal/instance-groups-modal.partial.html:17
@@ -530,9 +520,9 @@ msgstr ""
msgid "CREATE SOURCE"
msgstr ""
-#: client/src/job-submission/job-submission.partial.html:344
+#: client/src/job-submission/job-submission.partial.html:343
#: client/src/partials/job-template-details.html:2
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:93
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:80
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:82
msgid "CREDENTIAL"
msgstr ""
@@ -552,7 +542,7 @@ msgstr ""
msgid "CREDENTIAL TYPES"
msgstr ""
-#: client/features/credentials/legacy.credentials.js:14
+#: client/features/credentials/legacy.credentials.js:16
#: client/src/activity-stream/get-target-title.factory.js:17
#: client/src/credentials/credentials.list.js:15
#: client/src/credentials/credentials.list.js:16
@@ -564,8 +554,8 @@ msgstr ""
msgid "CREDENTIALS PERMISSIONS"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:378
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:390
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:400
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:412
#: client/src/projects/projects.form.js:199
msgid "Cache Timeout"
msgstr ""
@@ -605,7 +595,7 @@ msgstr ""
#: client/src/configuration/configuration.controller.js:535
#: client/src/job-results/job-results.partial.html:42
#: client/src/jobs/factories/delete-job.factory.js:33
-#: client/src/shared/form-generator.js:1691
+#: client/src/shared/form-generator.js:1689
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:12
#: client/src/workflow-results/workflow-results.partial.html:42
msgid "Cancel"
@@ -654,22 +644,14 @@ msgstr ""
msgid "Changes"
msgstr ""
-#: client/src/shared/form-generator.js:1064
+#: client/src/shared/form-generator.js:1062
msgid "Choose a %s"
msgstr ""
-#: client/src/templates/survey-maker/shared/question-definition.form.js:61
+#: client/src/templates/survey-maker/shared/question-definition.form.js:62
msgid "Choose an answer type"
msgstr ""
-#: client/src/templates/survey-maker/shared/question-definition.form.js:64
-msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:112
-msgid "Choose an inventory file"
-msgstr ""
-
#: client/src/shared/directives.js:76
msgid "Choose file"
msgstr ""
@@ -682,7 +664,7 @@ msgstr ""
msgid "Clean"
msgstr ""
-#: client/src/templates/survey-maker/shared/question-definition.form.js:296
+#: client/src/templates/survey-maker/shared/question-definition.form.js:300
msgid "Clear"
msgstr ""
@@ -707,7 +689,7 @@ msgstr ""
msgid "Click on a row to select it, and click Finished when done. Use the %s button to create a new job template."
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:138
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:137
msgid "Click on the regions field to see a list of regions for your cloud provider. You can select multiple regions, or choose"
msgstr ""
@@ -715,7 +697,7 @@ msgstr ""
msgid "Client ID"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:257
+#: client/src/notifications/notificationTemplates.form.js:262
msgid "Client Identifier"
msgstr ""
@@ -723,11 +705,11 @@ msgstr ""
msgid "Client Secret"
msgstr ""
-#: client/src/shared/form-generator.js:1695
+#: client/src/shared/form-generator.js:1693
msgid "Close"
msgstr ""
-#: client/src/job-results/job-results.partial.html:288
+#: client/src/job-results/job-results.partial.html:299
msgid "Cloud Credential"
msgstr ""
@@ -744,12 +726,16 @@ msgstr ""
msgid "CloudForms URL"
msgstr ""
-#: client/src/job-results/job-results.controller.js:226
-#: client/src/standard-out/standard-out.controller.js:243
+#: client/src/job-results/job-results.controller.js:224
+#: client/src/standard-out/standard-out.controller.js:209
#: client/src/workflow-results/workflow-results.controller.js:118
msgid "Collapse Output"
msgstr ""
+#: client/src/notifications/notificationTemplates.form.js:300
+msgid "Color can be one of %s."
+msgstr ""
+
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:13
#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:21
msgid "Completed Jobs"
@@ -779,6 +765,8 @@ msgstr ""
msgid "Confirm the removal of the"
msgstr ""
+#: client/src/templates/job_templates/job-template.form.js:223
+#: client/src/templates/job_templates/job-template.form.js:242
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:134
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:149
msgid "Consult the Ansible documentation for further details on the usage of tags."
@@ -788,11 +776,11 @@ msgstr ""
msgid "Contains 0 hosts."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:185
+#: client/src/templates/job_templates/job-template.form.js:195
msgid "Control the level of output ansible will produce as the playbook executes."
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:313
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:333
msgid "Control the level of output ansible will produce for inventory source update jobs."
msgstr ""
@@ -894,7 +882,7 @@ msgstr ""
#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:74
#: client/src/job-submission/job-submission.partial.html:18
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:67
-#: client/src/templates/job_templates/job-template.form.js:126
+#: client/src/templates/job_templates/job-template.form.js:130
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:53
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:62
msgid "Credential"
@@ -909,7 +897,7 @@ msgstr ""
#: client/src/access/add-rbac-user-team/rbac-user-team.partial.html:59
#: client/src/activity-stream/streamDropdownNav/stream-dropdown-nav.directive.js:24
#: client/src/setup-menu/setup-menu.partial.html:22
-#: client/src/templates/job_templates/job-template.form.js:139
+#: client/src/templates/job_templates/job-template.form.js:143
msgid "Credentials"
msgstr ""
@@ -921,16 +909,16 @@ msgstr ""
msgid "Current Image:"
msgstr ""
-#: client/src/job-results/job-results.controller.js:271
+#: client/src/job-results/job-results.controller.js:269
msgid "Currently following standard out as it comes in. Click to unfollow."
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:171
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:170
msgid "Custom Inventory Script"
msgstr ""
#: client/src/inventory-scripts/inventory-scripts.form.js:53
-#: client/src/inventory-scripts/inventory-scripts.form.js:63
+#: client/src/inventory-scripts/inventory-scripts.form.js:64
msgid "Custom Script"
msgstr ""
@@ -1106,11 +1094,6 @@ msgstr ""
msgid "Depending on the size of the repository this may significantly increase the amount of time required to complete an update."
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:192
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:274
-msgid "Describe Instances documentation"
-msgstr ""
-
#: client/src/credential-types/credential-types.form.js:34
#: client/src/credentials/credentials.form.js:39
#: client/src/inventories-hosts/hosts/host.form.js:63
@@ -1134,26 +1117,26 @@ msgstr ""
msgid "Description"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:139
-#: client/src/notifications/notificationTemplates.form.js:143
-#: client/src/notifications/notificationTemplates.form.js:155
-#: client/src/notifications/notificationTemplates.form.js:159
+#: client/src/notifications/notificationTemplates.form.js:140
+#: client/src/notifications/notificationTemplates.form.js:145
+#: client/src/notifications/notificationTemplates.form.js:157
+#: client/src/notifications/notificationTemplates.form.js:162
+#: client/src/notifications/notificationTemplates.form.js:379
msgid "Destination Channels"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:362
-#: client/src/notifications/notificationTemplates.form.js:366
+#: client/src/notifications/notificationTemplates.form.js:374
msgid "Destination Channels or Users"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:208
-#: client/src/notifications/notificationTemplates.form.js:209
+#: client/src/notifications/notificationTemplates.form.js:212
+#: client/src/notifications/notificationTemplates.form.js:213
msgid "Destination SMS Number"
msgstr ""
#: client/features/credentials/credentials.strings.js:13
#: client/src/license/license.partial.html:5
-#: client/src/shared/form-generator.js:1474
+#: client/src/shared/form-generator.js:1472
msgid "Details"
msgstr ""
@@ -1204,13 +1187,13 @@ msgstr ""
#: client/src/job-results/job-results.controller.js:15
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:134
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:141
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:128
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:102
msgid "Download Output"
msgstr ""
#: client/src/inventory-scripts/inventory-scripts.form.js:62
-msgid "Drag and drop your custom inventory script file here or create one in the field to import your custom inventory. Refer to the Ansible Tower documentation for example syntax."
+msgid "Drag and drop your custom inventory script file here or create one in the field to import your custom inventory."
msgstr ""
#: client/src/partials/survey-maker-modal.html:76
@@ -1234,7 +1217,7 @@ msgid "EDIT SURVEY PROMPT"
msgstr ""
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:46
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:79
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:66
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:59
msgid "ELAPSED"
msgstr ""
@@ -1251,14 +1234,6 @@ msgstr ""
msgid "EXECUTE COMMAND"
msgstr ""
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:46
-msgid "EXPLANATION"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:355
-msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks."
-msgstr ""
-
#: client/src/projects/projects.form.js:179
msgid "Each time a job runs using this project, perform an update to the local repository prior to starting the job."
msgstr ""
@@ -1276,9 +1251,9 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: client/src/shared/form-generator.js:1707
-#: client/src/templates/job_templates/job-template.form.js:457
-#: client/src/templates/workflows.form.js:177
+#: client/src/shared/form-generator.js:1705
+#: client/src/templates/job_templates/job-template.form.js:475
+#: client/src/templates/workflows.form.js:182
msgid "Edit Survey"
msgstr ""
@@ -1330,32 +1305,32 @@ msgstr ""
msgid "Edit template"
msgstr ""
-#: client/src/job-results/job-results.partial.html:188
+#: client/src/job-results/job-results.partial.html:199
msgid "Edit the Schedule"
msgstr ""
-#: client/src/job-results/job-results.partial.html:172
+#: client/src/job-results/job-results.partial.html:183
#: client/src/workflow-results/workflow-results.partial.html:124
msgid "Edit the User"
msgstr ""
-#: client/src/job-results/job-results.partial.html:262
-#: client/src/job-results/job-results.partial.html:277
-#: client/src/job-results/job-results.partial.html:293
-#: client/src/job-results/job-results.partial.html:308
-#: client/src/job-results/job-results.partial.html:323
+#: client/src/job-results/job-results.partial.html:273
+#: client/src/job-results/job-results.partial.html:288
+#: client/src/job-results/job-results.partial.html:304
+#: client/src/job-results/job-results.partial.html:319
+#: client/src/job-results/job-results.partial.html:334
msgid "Edit the credential"
msgstr ""
-#: client/src/job-results/job-results.partial.html:203
+#: client/src/job-results/job-results.partial.html:214
msgid "Edit the inventory"
msgstr ""
-#: client/src/job-results/job-results.partial.html:137
+#: client/src/job-results/job-results.partial.html:148
msgid "Edit the job template"
msgstr ""
-#: client/src/job-results/job-results.partial.html:226
+#: client/src/job-results/job-results.partial.html:237
#: client/src/projects/projects.list.js:105
msgid "Edit the project"
msgstr ""
@@ -1376,7 +1351,7 @@ msgstr ""
msgid "Either you do not have access or the SCM update process completed. Click the %sRefresh%s button to view the latest status."
msgstr ""
-#: client/src/job-results/job-results.partial.html:517
+#: client/src/job-results/job-results.partial.html:528
msgid "Elapsed"
msgstr ""
@@ -1385,18 +1360,17 @@ msgstr ""
msgid "Email"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:293
-#: client/src/templates/job_templates/job-template.form.js:298
+#: client/src/templates/job_templates/job-template.form.js:306
+#: client/src/templates/job_templates/job-template.form.js:311
msgid "Enable Concurrent Jobs"
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:123
-#: client/src/templates/job_templates/job-template.form.js:269
-#: client/src/templates/job_templates/job-template.form.js:274
+#: client/src/templates/job_templates/job-template.form.js:282
msgid "Enable Privilege Escalation"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:284
+#: client/src/templates/job_templates/job-template.form.js:297
msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {{BRAND_NAME}} and request a configuration update using this job template."
msgstr ""
@@ -1412,31 +1386,8 @@ msgstr ""
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.form.js:72
#: client/src/inventories-hosts/inventories/related/hosts/related-host.form.js:72
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:89
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr ""
-
#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:98
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
-msgstr ""
-
-#: client/src/notifications/notificationTemplates.form.js:158
-msgid "Enter one HipChat channel per line. The pound symbol (#) is not required."
-msgstr ""
-
-#: client/src/notifications/notificationTemplates.form.js:365
-msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required."
-msgstr ""
-
-#: client/src/notifications/notificationTemplates.form.js:142
-msgid "Enter one Slack channel per line. The pound symbol (#) is not required."
-msgstr ""
-
-#: client/src/notifications/notificationTemplates.form.js:100
-msgid "Enter one email address per line to create a recipient list for this type of notification."
-msgstr ""
-
-#: client/src/notifications/notificationTemplates.form.js:212
-msgid "Enter one phone number per line to specify where to route SMS messages."
+msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
msgstr ""
#: client/src/credentials/factories/become-method-change.factory.js:87
@@ -1454,18 +1405,8 @@ msgstr ""
msgid "Enter the hostname or IP address which corresponds to your VMware vCenter."
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:198
-msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:197
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:221
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:245
-msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:187
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:194
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:186
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:193
msgid "Environment Variables"
msgstr ""
@@ -1526,7 +1467,7 @@ msgid "Example URLs for Subversion SCM include:"
msgstr ""
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:68
-msgid "Example: ansible_facts.ansible_distribution:\"RedHat\""
+msgid "Example: ansible_facts.ansible_distribution:\"RHEL\""
msgstr ""
#: client/src/inventories-hosts/inventories/related/groups/related/nested-groups/group-nested-groups.list.js:76
@@ -1538,9 +1479,9 @@ msgid "Existing Host"
msgstr ""
#: client/src/job-results/job-results.controller.js:18
-#: client/src/job-results/job-results.controller.js:228
-#: client/src/standard-out/standard-out.controller.js:24
-#: client/src/standard-out/standard-out.controller.js:245
+#: client/src/job-results/job-results.controller.js:226
+#: client/src/standard-out/standard-out.controller.js:211
+#: client/src/standard-out/standard-out.controller.js:23
#: client/src/workflow-results/workflow-results.controller.js:120
#: client/src/workflow-results/workflow-results.controller.js:76
msgid "Expand Output"
@@ -1550,24 +1491,24 @@ msgstr ""
msgid "Expires On"
msgstr ""
-#: client/src/job-results/job-results.partial.html:81
+#: client/src/job-results/job-results.partial.html:104
msgid "Explanation"
msgstr ""
-#: client/src/job-results/job-results.partial.html:272
+#: client/src/job-results/job-results.partial.html:283
msgid "Extra Credentials"
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:132
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:144
-#: client/src/job-results/job-results.partial.html:406
+#: client/src/job-results/job-results.partial.html:417
#: client/src/job-submission/job-submission.partial.html:161
#: client/src/partials/logviewer.html:8
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:105
-#: client/src/templates/job_templates/job-template.form.js:347
-#: client/src/templates/job_templates/job-template.form.js:354
+#: client/src/templates/job_templates/job-template.form.js:360
+#: client/src/templates/job_templates/job-template.form.js:372
#: client/src/templates/workflows.form.js:74
-#: client/src/templates/workflows.form.js:81
+#: client/src/templates/workflows.form.js:86
msgid "Extra Variables"
msgstr ""
@@ -1585,7 +1526,7 @@ msgid "FIELDS:"
msgstr ""
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:39
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:72
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:59
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:52
msgid "FINISHED"
msgstr ""
@@ -1668,7 +1609,7 @@ msgstr ""
#: client/src/inventories-hosts/inventories/list/host-summary-popover/host-summary-popover.directive.js:54
#: client/src/inventories-hosts/inventories/related/completed-jobs/completed-jobs.list.js:58
#: client/src/inventories-hosts/shared/factories/set-status.factory.js:44
-#: client/src/job-results/job-results.partial.html:108
+#: client/src/job-results/job-results.partial.html:92
#: client/src/jobs/all-jobs.list.js:66
#: client/src/portal-mode/portal-jobs.list.js:40
#: client/src/templates/completed-jobs.list.js:59
@@ -1694,6 +1635,15 @@ msgstr ""
msgid "For example, %s"
msgstr ""
+#: client/src/notifications/notificationTemplates.form.js:101
+#: client/src/notifications/notificationTemplates.form.js:144
+#: client/src/notifications/notificationTemplates.form.js:161
+#: client/src/notifications/notificationTemplates.form.js:217
+#: client/src/notifications/notificationTemplates.form.js:340
+#: client/src/notifications/notificationTemplates.form.js:378
+msgid "For example:"
+msgstr ""
+
#: client/src/inventories-hosts/hosts/host.form.js:36
#: client/src/inventories-hosts/hosts/host.list.js:36
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.form.js:35
@@ -1703,20 +1653,17 @@ msgstr ""
msgid "For hosts that are part of an external inventory, this flag cannot be changed. It will be set by the inventory sync process."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:54
-msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook."
-msgstr ""
-
+#: client/src/templates/job_templates/job-template.form.js:177
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:118
msgid "For more information and examples see %sthe Patterns topic at docs.ansible.com%s."
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:109
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:96
-#: client/src/job-results/job-results.partial.html:333
+#: client/src/job-results/job-results.partial.html:344
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:87
-#: client/src/templates/job_templates/job-template.form.js:149
-#: client/src/templates/job_templates/job-template.form.js:159
+#: client/src/templates/job_templates/job-template.form.js:153
+#: client/src/templates/job_templates/job-template.form.js:166
msgid "Forks"
msgstr ""
@@ -1778,7 +1725,7 @@ msgstr ""
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.form.js:114
#: client/src/inventories-hosts/inventories/related/hosts/related-host.form.js:114
#: client/src/inventories-hosts/inventories/related/hosts/related/nested-groups/host-nested-groups.list.js:32
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:172
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:178
msgid "Groups"
msgstr ""
@@ -1799,8 +1746,8 @@ msgstr ""
msgid "HOSTS"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:323
-#: client/src/notifications/notificationTemplates.form.js:324
+#: client/src/notifications/notificationTemplates.form.js:329
+#: client/src/notifications/notificationTemplates.form.js:330
msgid "HTTP Headers"
msgstr ""
@@ -1822,8 +1769,8 @@ msgstr ""
msgid "Host (Authentication URL)"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:329
-#: client/src/templates/job_templates/job-template.form.js:338
+#: client/src/templates/job_templates/job-template.form.js:342
+#: client/src/templates/job_templates/job-template.form.js:351
msgid "Host Config Key"
msgstr ""
@@ -1870,8 +1817,8 @@ msgstr ""
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.list.js:57
#: client/src/inventories-hosts/inventories/related/hosts/related-host.list.js:56
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:170
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:181
-#: client/src/job-results/job-results.partial.html:501
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:187
+#: client/src/job-results/job-results.partial.html:512
msgid "Hosts"
msgstr ""
@@ -1887,11 +1834,6 @@ msgstr ""
msgid "Hosts Used"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:185
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:267
-msgid "Hosts are imported to"
-msgstr ""
-
#: client/src/license/license.partial.html:116
msgid "I agree to the End User License Agreement"
msgstr ""
@@ -1938,7 +1880,7 @@ msgstr ""
msgid "INVENTORIES"
msgstr ""
-#: client/src/job-submission/job-submission.partial.html:339
+#: client/src/job-submission/job-submission.partial.html:338
#: client/src/partials/job-template-details.html:2
msgid "INVENTORY"
msgstr ""
@@ -1957,11 +1899,11 @@ msgstr ""
msgid "INVENTORY SOURCES"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:351
+#: client/src/notifications/notificationTemplates.form.js:363
msgid "IRC Nick"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:340
+#: client/src/notifications/notificationTemplates.form.js:352
msgid "IRC Server Address"
msgstr ""
@@ -1985,33 +1927,20 @@ msgstr ""
msgid "Idle Session"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:182
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:263
-msgid "If blank, all groups above are created except"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:331
-msgid "If checked, all child groups and hosts not found on the external source will be deleted from the local inventory."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:343
-msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
-msgstr ""
-
-#: client/src/templates/job_templates/job-template.form.js:272
-msgid "If enabled, run this playbook as an administrator."
+#: client/src/templates/job_templates/job-template.form.js:285
+msgid "If enabled, run this playbook as an administrator. This is the equivalent of passing the %s option to the %s command."
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:120
-#: client/src/templates/job_templates/job-template.form.js:256
+#: client/src/templates/job_templates/job-template.form.js:270
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:296
+#: client/src/templates/job_templates/job-template.form.js:309
msgid "If enabled, simultaneous runs of this job template will be allowed."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:307
+#: client/src/templates/job_templates/job-template.form.js:320
msgid "If enabled, use cached facts if available and store discovered facts in the cache."
msgstr ""
@@ -2023,11 +1952,6 @@ msgstr ""
msgid "If you are ready to upgrade, please contact us by clicking the button below"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:173
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:254
-msgid "Image ID:"
-msgstr ""
-
#: client/src/inventories-hosts/hosts/host.form.js:34
#: client/src/inventories-hosts/hosts/host.list.js:34
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.form.js:33
@@ -2061,12 +1985,11 @@ msgstr ""
msgid "Insights Credential"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:145
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:148
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:144
msgid "Instance Filters"
msgstr ""
-#: client/src/job-results/job-results.partial.html:366
+#: client/src/job-results/job-results.partial.html:377
msgid "Instance Group"
msgstr ""
@@ -2077,24 +2000,13 @@ msgstr ""
#: client/src/organizations/organizations.form.js:38
#: client/src/organizations/organizations.form.js:41
#: client/src/setup-menu/setup-menu.partial.html:54
-#: client/src/templates/job_templates/job-template.form.js:196
-#: client/src/templates/job_templates/job-template.form.js:199
+#: client/src/templates/job_templates/job-template.form.js:206
+#: client/src/templates/job_templates/job-template.form.js:209
msgid "Instance Groups"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:182
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:263
-msgid "Instance ID"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:174
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:255
-msgid "Instance ID:"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:175
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:256
-msgid "Instance Type:"
+#: client/src/templates/job_templates/job-template.form.js:57
+msgid "Instead, %s will check playbook syntax, test environment setup and report problems."
msgstr ""
#: client/src/license/license.partial.html:11
@@ -2125,19 +2037,19 @@ msgstr ""
#: client/src/inventories-hosts/hosts/host.list.js:69
#: client/src/inventories-hosts/inventories/inventory.list.js:80
#: client/src/inventories-hosts/inventories/list/inventory-list.controller.js:69
-#: client/src/job-results/job-results.partial.html:198
+#: client/src/job-results/job-results.partial.html:209
#: client/src/job-submission/job-submission.partial.html:17
#: client/src/organizations/linkout/controllers/organizations-inventories.controller.js:70
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:58
-#: client/src/templates/job_templates/job-template.form.js:66
-#: client/src/templates/job_templates/job-template.form.js:80
+#: client/src/templates/job_templates/job-template.form.js:70
+#: client/src/templates/job_templates/job-template.form.js:84
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:72
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:82
msgid "Inventory"
msgstr ""
#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:110
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:124
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:123
msgid "Inventory File"
msgstr ""
@@ -2155,6 +2067,7 @@ msgid "Inventory Sync Failures"
msgstr ""
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:96
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:105
msgid "Inventory Variables"
msgstr ""
@@ -2194,16 +2107,10 @@ msgstr ""
msgid "JSON"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:198
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:222
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:246
-msgid "JSON:"
-msgstr ""
-
-#: client/src/job-results/job-results.partial.html:381
+#: client/src/job-results/job-results.partial.html:392
#: client/src/job-submission/job-submission.partial.html:222
-#: client/src/templates/job_templates/job-template.form.js:205
-#: client/src/templates/job_templates/job-template.form.js:212
+#: client/src/templates/job_templates/job-template.form.js:215
+#: client/src/templates/job_templates/job-template.form.js:224
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:127
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:135
msgid "Job Tags"
@@ -2220,10 +2127,10 @@ msgid "Job Templates"
msgstr ""
#: client/src/home/dashboard/graphs/dashboard-graphs.partial.html:32
-#: client/src/job-results/job-results.partial.html:156
+#: client/src/job-results/job-results.partial.html:167
#: client/src/job-submission/job-submission.partial.html:196
#: client/src/templates/job_templates/job-template.form.js:47
-#: client/src/templates/job_templates/job-template.form.js:55
+#: client/src/templates/job_templates/job-template.form.js:59
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:103
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:92
msgid "Job Type"
@@ -2239,8 +2146,8 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: client/src/job-results/job-results.controller.js:269
-#: client/src/job-results/job-results.controller.js:321
+#: client/src/job-results/job-results.controller.js:267
+#: client/src/job-results/job-results.controller.js:319
msgid "Jump to last line of standard out."
msgstr ""
@@ -2250,11 +2157,6 @@ msgstr ""
msgid "Key"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:176
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:257
-msgid "Key Name:"
-msgstr ""
-
#: client/src/credential-types/credential-types.list.js:31
#: client/src/credentials/credentials.list.js:33
msgid "Kind"
@@ -2264,7 +2166,7 @@ msgstr ""
msgid "LAUNCH JOB"
msgstr ""
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:86
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:73
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:66
msgid "LAUNCH TYPE"
msgstr ""
@@ -2277,7 +2179,7 @@ msgstr ""
msgid "LICENSE"
msgstr ""
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:58
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:45
msgid "LICENSE ERROR"
msgstr ""
@@ -2287,11 +2189,11 @@ msgstr ""
#: client/src/instance-groups/instances/instance-jobs/instance-jobs.list.js:68
#: client/src/instance-groups/jobs/jobs.list.js:66
-#: client/src/job-results/job-results.partial.html:431
-#: client/src/job-results/job-results.partial.html:440
+#: client/src/job-results/job-results.partial.html:442
+#: client/src/job-results/job-results.partial.html:451
#: client/src/jobs/all-jobs.list.js:74
-#: client/src/templates/job_templates/job-template.form.js:239
-#: client/src/templates/job_templates/job-template.form.js:243
+#: client/src/templates/job_templates/job-template.form.js:253
+#: client/src/templates/job_templates/job-template.form.js:257
#: client/src/templates/templates.list.js:43
#: client/src/templates/workflows.form.js:62
#: client/src/templates/workflows.form.js:67
@@ -2313,7 +2215,7 @@ msgid "Last Updated"
msgstr ""
#: client/src/portal-mode/portal-job-templates.list.js:36
-#: client/src/shared/form-generator.js:1699
+#: client/src/shared/form-generator.js:1697
#: client/src/templates/templates.list.js:80
msgid "Launch"
msgstr ""
@@ -2322,8 +2224,8 @@ msgstr ""
msgid "Launch Management Job"
msgstr ""
-#: client/src/job-results/job-results.partial.html:167
-#: client/src/job-results/job-results.partial.html:182
+#: client/src/job-results/job-results.partial.html:178
+#: client/src/job-results/job-results.partial.html:193
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:76
msgid "Launched By"
msgstr ""
@@ -2332,7 +2234,7 @@ msgstr ""
msgid "Launching this job requires the passwords listed below. Enter and confirm each password before continuing."
msgstr ""
-#: client/features/credentials/legacy.credentials.js:360
+#: client/features/credentials/legacy.credentials.js:351
msgid "Legacy state configuration for does not exist"
msgstr ""
@@ -2359,31 +2261,16 @@ msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:45
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:55
-#: client/src/job-results/job-results.partial.html:344
+#: client/src/job-results/job-results.partial.html:355
#: client/src/job-submission/job-submission.partial.html:214
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:92
-#: client/src/templates/job_templates/job-template.form.js:165
-#: client/src/templates/job_templates/job-template.form.js:169
+#: client/src/templates/job_templates/job-template.form.js:172
+#: client/src/templates/job_templates/job-template.form.js:179
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:113
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:120
msgid "Limit"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:186
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:268
-msgid "Limit to hosts having a tag:"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:188
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:270
-msgid "Limit to hosts using either key pair:"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:190
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:272
-msgid "Limit to hosts where the Name tag begins with"
-msgstr ""
-
#: client/src/shared/socket/socket.service.js:168
msgid "Live events: attempting to connect to the server."
msgstr ""
@@ -2396,7 +2283,7 @@ msgstr ""
msgid "Live events: error connecting to the server."
msgstr ""
-#: client/src/shared/form-generator.js:1975
+#: client/src/shared/form-generator.js:1973
msgid "Loading..."
msgstr ""
@@ -2434,12 +2321,12 @@ msgid "MY VIEW"
msgstr ""
#: client/src/credentials/credentials.form.js:67
-#: client/src/job-submission/job-submission.partial.html:349
+#: client/src/job-submission/job-submission.partial.html:348
msgid "Machine"
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:60
-#: client/src/job-results/job-results.partial.html:257
+#: client/src/job-results/job-results.partial.html:268
msgid "Machine Credential"
msgstr ""
@@ -2498,7 +2385,8 @@ msgstr ""
msgid "Most recent job successful. Click to view jobs."
msgstr ""
-#: client/src/templates/survey-maker/shared/question-definition.form.js:74
+#: client/src/templates/survey-maker/shared/question-definition.form.js:72
+#: client/src/templates/survey-maker/shared/question-definition.form.js:82
msgid "Multiple Choice Options"
msgstr ""
@@ -2646,7 +2534,7 @@ msgstr ""
msgid "Network"
msgstr ""
-#: client/src/job-results/job-results.partial.html:303
+#: client/src/job-results/job-results.partial.html:314
msgid "Network Credential"
msgstr ""
@@ -2773,7 +2661,7 @@ msgid "No recent notifications."
msgstr ""
#: client/src/inventories-hosts/hosts/hosts.partial.html:36
-#: client/src/shared/form-generator.js:1871
+#: client/src/shared/form-generator.js:1869
msgid "No records matched your search."
msgstr ""
@@ -2781,8 +2669,8 @@ msgstr ""
msgid "No schedules exist"
msgstr ""
-#: client/src/job-submission/job-submission.partial.html:341
-#: client/src/job-submission/job-submission.partial.html:346
+#: client/src/job-submission/job-submission.partial.html:340
+#: client/src/job-submission/job-submission.partial.html:345
msgid "None selected"
msgstr ""
@@ -2800,8 +2688,8 @@ msgstr ""
msgid "Not configured for inventory sync."
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:291
-#: client/src/notifications/notificationTemplates.form.js:292
+#: client/src/notifications/notificationTemplates.form.js:296
+#: client/src/notifications/notificationTemplates.form.js:297
msgid "Notification Color"
msgstr ""
@@ -2809,7 +2697,7 @@ msgstr ""
msgid "Notification Failed."
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:280
+#: client/src/notifications/notificationTemplates.form.js:285
msgid "Notification Label"
msgstr ""
@@ -2824,12 +2712,16 @@ msgstr ""
msgid "Notifications"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:305
+#: client/src/notifications/notificationTemplates.form.js:311
msgid "Notify Channel"
msgstr ""
+#: client/src/notifications/notificationTemplates.form.js:201
+msgid "Number associated with the \"Messaging Service\" in Twilio."
+msgstr ""
+
#: client/src/inventories-hosts/hosts/hosts.partial.html:55
-#: client/src/job-submission/job-submission.partial.html:263
+#: client/src/job-submission/job-submission.partial.html:262
#: client/src/partials/survey-maker-modal.html:27
#: client/src/shared/form-generator.js:538
#: client/src/shared/generator-helpers.js:551
@@ -2858,11 +2750,11 @@ msgstr ""
msgid "ORGANIZATIONS"
msgstr ""
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:116
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:103
msgid "OVERWRITE"
msgstr ""
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:123
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:110
msgid "OVERWRITE VARS"
msgstr ""
@@ -2874,8 +2766,7 @@ msgstr ""
msgid "On Success"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:157
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:162
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:156
msgid "Only Group By"
msgstr ""
@@ -2883,14 +2774,14 @@ msgstr ""
msgid "OpenStack domains define administrative boundaries. It is only needed for Keystone v3 authentication URLs. Common scenarios include:"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:245
+#: client/src/templates/job_templates/job-template.form.js:259
#: client/src/templates/workflows.form.js:69
msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs."
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:385
+#: client/src/notifications/notificationTemplates.form.js:398
#: client/src/partials/logviewer.html:7
-#: client/src/templates/job_templates/job-template.form.js:264
+#: client/src/templates/job_templates/job-template.form.js:277
msgid "Options"
msgstr ""
@@ -2928,42 +2819,13 @@ msgstr ""
msgid "Others (Cloud Providers)"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:283
-msgid ""
-"Override variables found in cloudforms.ini and used by the inventory update script. For an example variable configuration\n"
-" \n"
-" view cloudforms.ini in the Ansible github repo. Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:218
-msgid "Override variables found in ec2.ini and used by the inventory update script. For a detailed description of these variables"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:300
-msgid ""
-"Override variables found in foreman.ini and used by the inventory update script. For an example variable configuration\n"
-" \n"
-" view foreman.ini in the Ansible github repo. Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:266
-msgid ""
-"Override variables found in openstack.yml and used by the inventory update script. For an example variable configuration\n"
-" \n"
-" view openstack.yml in the Ansible github repo. Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:242
-msgid "Override variables found in vmware.ini and used by the inventory update script. For a detailed description of these variables"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:328
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:333
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:348
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:354
msgid "Overwrite"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:340
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:345
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:361
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:367
msgid "Overwrite Variables"
msgstr ""
@@ -2975,7 +2837,7 @@ msgstr ""
msgid "PASSWORD"
msgstr ""
-#: client/features/credentials/legacy.credentials.js:125
+#: client/features/credentials/legacy.credentials.js:127
msgid "PERMISSIONS"
msgstr ""
@@ -2984,13 +2846,13 @@ msgid "PLAYBOOK"
msgstr ""
#: client/src/partials/survey-maker-modal.html:45
-msgid "PLEASE ADD A SURVEY PROMPT."
+msgid "PLEASE ADD A SURVEY PROMPT ON THE LEFT."
msgstr ""
#: client/src/instance-groups/instances/instances-list.partial.html:6
#: client/src/instance-groups/list/instance-groups-list.partial.html:16
#: client/src/organizations/list/organizations-list.partial.html:47
-#: client/src/shared/form-generator.js:1877
+#: client/src/shared/form-generator.js:1875
#: client/src/shared/list-generator/list-generator.factory.js:248
msgid "PLEASE ADD ITEMS TO THIS LIST"
msgstr ""
@@ -3023,16 +2885,13 @@ msgstr ""
msgid "Page"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:235
+#: client/src/notifications/notificationTemplates.form.js:240
msgid "Pagerduty subdomain"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:353
-msgid "Pass extra command line variables to the playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax."
-msgstr ""
-
+#: client/src/templates/job_templates/job-template.form.js:366
#: client/src/templates/workflows.form.js:80
-msgid "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentaton for example syntax."
+msgid "Pass extra command line variables to the playbook. This is the %s or %s command line parameter for %s. Provide key/value pairs using either YAML or JSON."
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:138
@@ -3108,22 +2967,22 @@ msgid "Permission Error"
msgstr ""
#: client/features/credentials/credentials.strings.js:14
-#: client/features/credentials/legacy.credentials.js:69
+#: client/features/credentials/legacy.credentials.js:71
#: client/src/credentials/credentials.form.js:439
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:125
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:128
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:134
#: client/src/projects/projects.form.js:233
#: client/src/teams/teams.form.js:117
-#: client/src/templates/job_templates/job-template.form.js:391
-#: client/src/templates/workflows.form.js:114
+#: client/src/templates/job_templates/job-template.form.js:409
+#: client/src/templates/workflows.form.js:119
#: client/src/users/users.form.js:183
msgid "Permissions"
msgstr ""
-#: client/src/job-results/job-results.partial.html:246
-#: client/src/shared/form-generator.js:1062
-#: client/src/templates/job_templates/job-template.form.js:109
-#: client/src/templates/job_templates/job-template.form.js:120
+#: client/src/job-results/job-results.partial.html:257
+#: client/src/shared/form-generator.js:1060
+#: client/src/templates/job_templates/job-template.form.js:113
+#: client/src/templates/job_templates/job-template.form.js:124
msgid "Playbook"
msgstr ""
@@ -3135,7 +2994,7 @@ msgstr ""
msgid "Playbook Run"
msgstr ""
-#: client/src/job-results/job-results.partial.html:485
+#: client/src/job-results/job-results.partial.html:496
msgid "Plays"
msgstr ""
@@ -3159,20 +3018,20 @@ msgstr ""
msgid "Please click the icon to edit the host filter."
msgstr ""
-#: client/src/shared/form-generator.js:854
-#: client/src/shared/form-generator.js:949
+#: client/src/shared/form-generator.js:852
+#: client/src/shared/form-generator.js:947
msgid "Please enter a URL that begins with ssh, http or https. The URL may not contain the '@' character."
msgstr ""
-#: client/src/shared/form-generator.js:1151
+#: client/src/shared/form-generator.js:1149
msgid "Please enter a number greater than %d and less than %d."
msgstr ""
-#: client/src/shared/form-generator.js:1153
+#: client/src/shared/form-generator.js:1151
msgid "Please enter a number greater than %d."
msgstr ""
-#: client/src/shared/form-generator.js:1145
+#: client/src/shared/form-generator.js:1143
msgid "Please enter a number."
msgstr ""
@@ -3188,39 +3047,39 @@ msgstr ""
msgid "Please enter a username."
msgstr ""
-#: client/src/shared/form-generator.js:844
-#: client/src/shared/form-generator.js:939
+#: client/src/shared/form-generator.js:842
+#: client/src/shared/form-generator.js:937
msgid "Please enter a valid email address."
msgstr ""
#: client/lib/components/components.strings.js:15
-#: client/src/shared/form-generator.js:1009
-#: client/src/shared/form-generator.js:839
-#: client/src/shared/form-generator.js:934
+#: client/src/shared/form-generator.js:1007
+#: client/src/shared/form-generator.js:837
+#: client/src/shared/form-generator.js:932
msgid "Please enter a value."
msgstr ""
-#: client/src/job-submission/job-submission.partial.html:282
-#: client/src/job-submission/job-submission.partial.html:287
-#: client/src/job-submission/job-submission.partial.html:298
-#: client/src/job-submission/job-submission.partial.html:304
-#: client/src/job-submission/job-submission.partial.html:310
-msgid "Please enter an answer between"
-msgstr ""
-
-#: client/src/job-submission/job-submission.partial.html:309
-msgid "Please enter an answer that is a decimal number."
-msgstr ""
-
-#: client/src/job-submission/job-submission.partial.html:303
-msgid "Please enter an answer that is a valid integer."
-msgstr ""
-
#: client/src/job-submission/job-submission.partial.html:281
#: client/src/job-submission/job-submission.partial.html:286
#: client/src/job-submission/job-submission.partial.html:297
-#: client/src/job-submission/job-submission.partial.html:302
+#: client/src/job-submission/job-submission.partial.html:303
+#: client/src/job-submission/job-submission.partial.html:309
+msgid "Please enter an answer between"
+msgstr ""
+
#: client/src/job-submission/job-submission.partial.html:308
+msgid "Please enter an answer that is a decimal number."
+msgstr ""
+
+#: client/src/job-submission/job-submission.partial.html:302
+msgid "Please enter an answer that is a valid integer."
+msgstr ""
+
+#: client/src/job-submission/job-submission.partial.html:280
+#: client/src/job-submission/job-submission.partial.html:285
+#: client/src/job-submission/job-submission.partial.html:296
+#: client/src/job-submission/job-submission.partial.html:301
+#: client/src/job-submission/job-submission.partial.html:307
msgid "Please enter an answer."
msgstr ""
@@ -3247,11 +3106,11 @@ msgid "Please save before adding users."
msgstr ""
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:121
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:124
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:130
#: client/src/projects/projects.form.js:225
#: client/src/teams/teams.form.js:113
-#: client/src/templates/job_templates/job-template.form.js:384
-#: client/src/templates/workflows.form.js:107
+#: client/src/templates/job_templates/job-template.form.js:402
+#: client/src/templates/workflows.form.js:112
msgid "Please save before assigning permissions."
msgstr ""
@@ -3264,11 +3123,11 @@ msgstr ""
msgid "Please save before assigning to teams."
msgstr ""
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:169
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:175
msgid "Please save before creating groups."
msgstr ""
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:178
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:184
msgid "Please save before creating hosts."
msgstr ""
@@ -3283,7 +3142,7 @@ msgstr ""
msgid "Please save before defining hosts."
msgstr ""
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:187
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:193
msgid "Please save before defining inventory sources."
msgstr ""
@@ -3322,22 +3181,22 @@ msgstr ""
msgid "Please select a machine (SSH) credential or check the \"Prompt on launch\" option."
msgstr ""
-#: client/src/shared/form-generator.js:1186
+#: client/src/shared/form-generator.js:1184
msgid "Please select a number between"
msgstr ""
-#: client/src/shared/form-generator.js:1182
+#: client/src/shared/form-generator.js:1180
msgid "Please select a number."
msgstr ""
-#: client/src/shared/form-generator.js:1074
-#: client/src/shared/form-generator.js:1142
-#: client/src/shared/form-generator.js:1263
-#: client/src/shared/form-generator.js:1371
+#: client/src/shared/form-generator.js:1072
+#: client/src/shared/form-generator.js:1140
+#: client/src/shared/form-generator.js:1261
+#: client/src/shared/form-generator.js:1369
msgid "Please select a value."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:77
+#: client/src/templates/job_templates/job-template.form.js:81
msgid "Please select an Inventory or check the Prompt on launch option."
msgstr ""
@@ -3345,7 +3204,7 @@ msgstr ""
msgid "Please select an Inventory."
msgstr ""
-#: client/src/shared/form-generator.js:1179
+#: client/src/shared/form-generator.js:1177
msgid "Please select at least one value."
msgstr ""
@@ -3361,6 +3220,10 @@ msgstr ""
msgid "Port"
msgstr ""
+#: client/src/job-results/job-results.partial.html:112
+msgid "Previous Task Failed"
+msgstr ""
+
#: client/src/credentials/credentials.form.js:257
#: client/src/credentials/factories/kind-change.factory.js:21
#: client/src/credentials/factories/kind-change.factory.js:45
@@ -3389,9 +3252,9 @@ msgstr ""
#: client/src/credentials/factories/become-method-change.factory.js:30
#: client/src/credentials/factories/kind-change.factory.js:87
#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:93
-#: client/src/job-results/job-results.partial.html:213
-#: client/src/templates/job_templates/job-template.form.js:103
-#: client/src/templates/job_templates/job-template.form.js:91
+#: client/src/job-results/job-results.partial.html:224
+#: client/src/templates/job_templates/job-template.form.js:107
+#: client/src/templates/job_templates/job-template.form.js:95
msgid "Project"
msgstr ""
@@ -3462,53 +3325,38 @@ msgid "Prompt"
msgstr ""
#: client/lib/components/components.strings.js:30
-#: client/src/templates/job_templates/job-template.form.js:144
-#: client/src/templates/job_templates/job-template.form.js:174
-#: client/src/templates/job_templates/job-template.form.js:191
-#: client/src/templates/job_templates/job-template.form.js:217
-#: client/src/templates/job_templates/job-template.form.js:234
-#: client/src/templates/job_templates/job-template.form.js:259
-#: client/src/templates/job_templates/job-template.form.js:359
-#: client/src/templates/job_templates/job-template.form.js:60
-#: client/src/templates/job_templates/job-template.form.js:86
+#: client/src/templates/job_templates/job-template.form.js:148
+#: client/src/templates/job_templates/job-template.form.js:184
+#: client/src/templates/job_templates/job-template.form.js:201
+#: client/src/templates/job_templates/job-template.form.js:229
+#: client/src/templates/job_templates/job-template.form.js:248
+#: client/src/templates/job_templates/job-template.form.js:273
+#: client/src/templates/job_templates/job-template.form.js:377
+#: client/src/templates/job_templates/job-template.form.js:64
+#: client/src/templates/job_templates/job-template.form.js:90
msgid "Prompt on launch"
msgstr ""
+#: client/src/templates/job_templates/job-template.form.js:221
+#: client/src/templates/job_templates/job-template.form.js:240
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:132
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:147
msgid "Provide a comma separated list of tags."
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:184
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:266
-msgid "Provide a comma-separated list of filter expressions."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:200
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:284
-msgid "Provide a comma-separated list of filter expressions. Hosts are imported when all of the filters match. Refer to Ansible Tower documentation for more detail."
-msgstr ""
-
#: client/src/inventories-hosts/hosts/host.form.js:50
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.form.js:49
#: client/src/inventories-hosts/inventories/related/hosts/related-host.form.js:49
msgid "Provide a host name, ip address, or ip address:port. Examples include:"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:168
-msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns."
-msgstr ""
-
+#: client/src/templates/job_templates/job-template.form.js:175
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:116
msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns can be separated by %s %s or %s"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:196
-msgid "Provide environment variables to pass to the custom inventory script."
-msgstr ""
-
-#: client/src/templates/job_templates/job-template.form.js:316
-#: client/src/templates/job_templates/job-template.form.js:324
+#: client/src/templates/job_templates/job-template.form.js:329
+#: client/src/templates/job_templates/job-template.form.js:337
msgid "Provisioning Callback URL"
msgstr ""
@@ -3556,7 +3404,7 @@ msgstr ""
msgid "REFRESH"
msgstr ""
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:109
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:96
msgid "REGIONS"
msgstr ""
@@ -3607,7 +3455,7 @@ msgstr ""
msgid "Random"
msgstr ""
-#: client/src/job-results/job-results.partial.html:408
+#: client/src/job-results/job-results.partial.html:419
msgid "Read only view of extra variables added to the job template."
msgstr ""
@@ -3619,7 +3467,7 @@ msgstr ""
msgid "Recent Notifications"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:101
+#: client/src/notifications/notificationTemplates.form.js:102
#: client/src/notifications/notificationTemplates.form.js:97
msgid "Recipient List"
msgstr ""
@@ -3647,12 +3495,7 @@ msgstr ""
msgid "Refresh the page"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:177
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:258
-msgid "Region:"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:131
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:130
msgid "Regions"
msgstr ""
@@ -3669,7 +3512,7 @@ msgstr ""
msgid "Relaunch using the same parameters"
msgstr ""
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:199
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:205
msgid "Remediate Inventory"
msgstr ""
@@ -3692,7 +3535,7 @@ msgstr ""
msgid "Request License"
msgstr ""
-#: client/src/templates/survey-maker/shared/question-definition.form.js:288
+#: client/src/templates/survey-maker/shared/question-definition.form.js:292
msgid "Required"
msgstr ""
@@ -3700,7 +3543,7 @@ msgstr ""
msgid "Reset"
msgstr ""
-#: client/src/job-results/job-results.partial.html:120
+#: client/src/job-results/job-results.partial.html:131
msgid "Results Traceback"
msgstr ""
@@ -3725,7 +3568,7 @@ msgstr ""
msgid "Revert all to default"
msgstr ""
-#: client/src/job-results/job-results.partial.html:236
+#: client/src/job-results/job-results.partial.html:247
#: client/src/projects/projects.list.js:50
msgid "Revision"
msgstr ""
@@ -3735,15 +3578,15 @@ msgstr ""
msgid "Revision #"
msgstr ""
-#: client/features/credentials/legacy.credentials.js:91
+#: client/features/credentials/legacy.credentials.js:93
#: client/src/credentials/credentials.form.js:461
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:151
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:154
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:160
#: client/src/organizations/organizations.form.js:97
#: client/src/projects/projects.form.js:255
#: client/src/teams/teams.form.js:135
#: client/src/teams/teams.form.js:98
-#: client/src/templates/workflows.form.js:138
+#: client/src/templates/workflows.form.js:143
#: client/src/users/users.form.js:201
msgid "Role"
msgstr ""
@@ -3895,7 +3738,7 @@ msgstr ""
msgid "SMART INVENTORY"
msgstr ""
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:102
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:89
msgid "SOURCE"
msgstr ""
@@ -3912,18 +3755,18 @@ msgstr ""
msgid "SSH key description"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:378
+#: client/src/notifications/notificationTemplates.form.js:391
msgid "SSL Connection"
msgstr ""
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:128
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:135
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:122
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:96
msgid "STANDARD OUT"
msgstr ""
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:32
-#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:65
+#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:52
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:45
msgid "STARTED"
msgstr ""
@@ -3963,7 +3806,7 @@ msgstr ""
#: client/src/access/add-rbac-resource/rbac-resource.partial.html:110
#: client/src/access/add-rbac-user-team/rbac-user-team.partial.html:196
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:157
-#: client/src/shared/form-generator.js:1683
+#: client/src/shared/form-generator.js:1681
msgid "Save"
msgstr ""
@@ -4003,6 +3846,10 @@ msgstr ""
msgid "Schedules"
msgstr ""
+#: client/src/inventory-scripts/inventory-scripts.form.js:63
+msgid "Script must begin with a hashbang sequence: i.e.... %s"
+msgstr ""
+
#: client/src/shared/smart-search/smart-search.controller.js:49
#: client/src/shared/smart-search/smart-search.controller.js:94
msgid "Search"
@@ -4012,16 +3859,11 @@ msgstr ""
msgid "Secret Key"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:178
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:259
-msgid "Security Group:"
-msgstr ""
-
#: client/src/credentials/credentials.form.js:124
msgid "Security Token Service (STS) is a web service that enables you to request temporary, limited-privilege credentials for AWS Identity and Access Management (IAM) users."
msgstr ""
-#: client/src/shared/form-generator.js:1687
+#: client/src/shared/form-generator.js:1685
msgid "Select"
msgstr ""
@@ -4058,8 +3900,8 @@ msgstr ""
msgid "Select commands"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:138
-msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time."
+#: client/src/templates/job_templates/job-template.form.js:142
+msgid "Select credentials that allow {{BRAND_NAME}} to access the nodes this job will be ran against. You can only select one credential of each type. You must select either a machine (SSH) credential or \"Prompt on launch\". \"Prompt on launch\" requires you to select a machine credential at run time. If you select credentials AND check the \"Prompt on launch\" box, you make the selected credentials the defaults that can be updated at run time."
msgstr ""
#: client/src/projects/projects.form.js:98
@@ -4076,14 +3918,11 @@ msgid "Select roles"
msgstr ""
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:77
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:85
msgid "Select the Instance Groups for this Inventory to run on."
msgstr ""
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:85
-msgid "Select the Instance Groups for this Inventory to run on. Refer to the Ansible Tower documentation for more detail."
-msgstr ""
-
-#: client/src/templates/job_templates/job-template.form.js:198
+#: client/src/templates/job_templates/job-template.form.js:208
msgid "Select the Instance Groups for this Job Template to run on."
msgstr ""
@@ -4095,20 +3934,20 @@ msgstr ""
msgid "Select the credential you want the job to use when accessing the remote hosts. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:79
+#: client/src/templates/job_templates/job-template.form.js:83
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:81
msgid "Select the inventory containing the hosts you want this job to manage."
msgstr ""
#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:122
-msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
+msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:119
+#: client/src/templates/job_templates/job-template.form.js:123
msgid "Select the playbook to be executed by this job."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:102
+#: client/src/templates/job_templates/job-template.form.js:106
msgid "Select the project containing the playbook you want this job to execute."
msgstr ""
@@ -4116,12 +3955,7 @@ msgstr ""
msgid "Select types"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:170
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:251
-msgid "Select which groups to create automatically."
-msgstr ""
-
-#: client/src/notifications/notificationTemplates.form.js:113
+#: client/src/notifications/notificationTemplates.form.js:114
msgid "Sender Email"
msgstr ""
@@ -4134,6 +3968,10 @@ msgstr ""
msgid "Setting the type to %s will execute the playbook and store any scanned facts for use with 's System Tracking feature."
msgstr ""
+#: client/src/templates/job_templates/job-template.form.js:56
+msgid "Setting the type to %s will not execute the playbook."
+msgstr ""
+
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:99
msgid "Setting the type to %s will not execute the playbook. Instead, %s will check playbook syntax, test environment setup and report problems."
msgstr ""
@@ -4146,15 +3984,15 @@ msgstr ""
#: client/src/job-submission/job-submission.partial.html:120
#: client/src/job-submission/job-submission.partial.html:133
#: client/src/job-submission/job-submission.partial.html:146
-#: client/src/job-submission/job-submission.partial.html:292
-#: client/src/shared/form-generator.js:869
+#: client/src/job-submission/job-submission.partial.html:291
+#: client/src/shared/form-generator.js:867
msgid "Show"
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:114
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:117
-#: client/src/templates/job_templates/job-template.form.js:250
-#: client/src/templates/job_templates/job-template.form.js:253
+#: client/src/templates/job_templates/job-template.form.js:264
+#: client/src/templates/job_templates/job-template.form.js:267
msgid "Show Changes"
msgstr ""
@@ -4173,23 +4011,20 @@ msgstr ""
msgid "Sign in with %s Teams"
msgstr ""
-#: client/src/job-results/job-results.partial.html:392
+#: client/src/job-results/job-results.partial.html:403
#: client/src/job-submission/job-submission.partial.html:239
-#: client/src/templates/job_templates/job-template.form.js:222
-#: client/src/templates/job_templates/job-template.form.js:229
+#: client/src/templates/job_templates/job-template.form.js:234
+#: client/src/templates/job_templates/job-template.form.js:243
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:142
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:150
msgid "Skip Tags"
msgstr ""
+#: client/src/templates/job_templates/job-template.form.js:241
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:148
msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:228
-msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr ""
-
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:65
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:69
msgid "Smart Host Filter"
@@ -4198,7 +4033,7 @@ msgstr ""
#: client/src/inventories-hosts/inventories/inventory.list.js:85
#: client/src/inventories-hosts/inventories/list/inventory-list.controller.js:69
#: client/src/organizations/linkout/controllers/organizations-inventories.controller.js:70
-#: client/src/shared/form-generator.js:1449
+#: client/src/shared/form-generator.js:1447
msgid "Smart Inventory"
msgstr ""
@@ -4220,25 +4055,21 @@ msgstr ""
msgid "Source Details"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:195
-#: client/src/notifications/notificationTemplates.form.js:196
+#: client/src/notifications/notificationTemplates.form.js:198
+#: client/src/notifications/notificationTemplates.form.js:199
msgid "Source Phone Number"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:136
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:135
msgid "Source Regions"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:209
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:216
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:233
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:240
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:257
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:264
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:274
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:281
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:291
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:298
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:208
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:215
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:232
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:256
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:280
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:304
msgid "Source Variables"
msgstr ""
@@ -4247,27 +4078,18 @@ msgid "Source Vars"
msgstr ""
#: client/src/inventories-hosts/inventories/related/sources/sources.list.js:34
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:189
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:195
msgid "Sources"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:333
-msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax."
+#: client/src/notifications/notificationTemplates.form.js:339
+msgid "Specify HTTP Headers in JSON format"
msgstr ""
#: client/src/credentials/credentials.form.js:285
msgid "Specify a method for %s operations. This is equivalent to specifying the %s parameter, where %s could be %s"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:295
-msgid "Specify a notification color. Acceptable colors are: yellow, green, red purple, gray or random."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:199
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:283
-msgid "Specify which groups to create automatically. Group names will be created similar to the options selected. If blank, all groups above are created. Refer to Ansible Tower documentation for more detail."
-msgstr ""
-
#: client/src/setup-menu/setup-menu.partial.html:17
msgid "Split up your organization to associate content and control permissions for groups."
msgstr ""
@@ -4298,7 +4120,7 @@ msgstr ""
msgid "Start sync process"
msgstr ""
-#: client/src/job-results/job-results.partial.html:97
+#: client/src/job-results/job-results.partial.html:81
msgid "Started"
msgstr ""
@@ -4440,38 +4262,25 @@ msgstr ""
msgid "TOP"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:181
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:262
-msgid "Tag None:"
-msgstr ""
-
+#: client/src/templates/job_templates/job-template.form.js:222
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:133
msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:211
-msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:179
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:260
-msgid "Tags:"
-msgstr ""
-
-#: client/src/notifications/notificationTemplates.form.js:312
+#: client/src/notifications/notificationTemplates.form.js:318
msgid "Target URL"
msgstr ""
-#: client/src/job-results/job-results.partial.html:493
+#: client/src/job-results/job-results.partial.html:504
msgid "Tasks"
msgstr ""
-#: client/features/credentials/legacy.credentials.js:97
+#: client/features/credentials/legacy.credentials.js:99
#: client/src/credentials/credentials.form.js:467
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:157
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:160
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:166
#: client/src/projects/projects.form.js:261
-#: client/src/templates/workflows.form.js:144
+#: client/src/templates/workflows.form.js:149
msgid "Team Roles"
msgstr ""
@@ -4479,12 +4288,12 @@ msgstr ""
#: client/src/activity-stream/streamDropdownNav/stream-dropdown-nav.directive.js:34
#: client/src/organizations/linkout/organizations-linkout.route.js:108
#: client/src/setup-menu/setup-menu.partial.html:16
-#: client/src/shared/stateDefinitions.factory.js:410
+#: client/src/shared/stateDefinitions.factory.js:364
#: client/src/users/users.form.js:155
msgid "Teams"
msgstr ""
-#: client/src/job-results/job-results.partial.html:132
+#: client/src/job-results/job-results.partial.html:143
#: client/src/templates/templates.list.js:14
msgid "Template"
msgstr ""
@@ -4505,8 +4314,8 @@ msgstr ""
msgid "Test notification"
msgstr ""
-#: client/src/shared/form-generator.js:1379
-#: client/src/shared/form-generator.js:1385
+#: client/src/shared/form-generator.js:1377
+#: client/src/shared/form-generator.js:1383
msgid "That value was not found. Please enter or select a valid value."
msgstr ""
@@ -4535,7 +4344,7 @@ msgstr ""
msgid "The email address assigned to the Google Compute Engine %sservice account."
msgstr ""
-#: client/src/job-results/job-results.partial.html:510
+#: client/src/job-results/job-results.partial.html:521
msgid "The host count will update when the job is complete."
msgstr ""
@@ -4557,14 +4366,11 @@ msgid "The inventory will be in a pending status until the final delete is proce
msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:104
+#: client/src/templates/job_templates/job-template.form.js:161
msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the %sansible configuration file%s."
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:157
-msgid "The number of parallel or simultaneous processes to use while executing the playbook. Value defaults to 0. Refer to the Ansible documentation for details about the configuration file."
-msgstr ""
-
-#: client/src/job-results/job-results.controller.js:590
+#: client/src/job-results/job-results.controller.js:588
msgid "The output is too large to display. Please download."
msgstr ""
@@ -4646,6 +4452,10 @@ msgstr ""
msgid "This machine has not checked in with Insights in {{last_check_in}} hours"
msgstr ""
+#: client/src/notifications/notificationTemplates.form.js:202
+msgid "This must be of the form %s."
+msgstr ""
+
#: client/src/shared/form-generator.js:740
msgid "This setting has been set manually in a settings file and is now disabled."
msgstr ""
@@ -4654,8 +4464,8 @@ msgstr ""
msgid "This user is not a member of any teams"
msgstr ""
-#: client/src/shared/form-generator.js:849
-#: client/src/shared/form-generator.js:944
+#: client/src/shared/form-generator.js:847
+#: client/src/shared/form-generator.js:942
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr ""
@@ -4677,15 +4487,11 @@ msgstr ""
msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed."
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:387
-msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed."
-msgstr ""
-
#: client/src/credentials/credentials.form.js:125
msgid "To learn more about the IAM STS Token, refer to the %sAmazon documentation%s."
msgstr ""
-#: client/src/shared/form-generator.js:874
+#: client/src/shared/form-generator.js:872
msgid "Toggle the display of plaintext."
msgstr ""
@@ -4733,6 +4539,17 @@ msgstr ""
msgid "Type Details"
msgstr ""
+#: client/src/notifications/notificationTemplates.form.js:100
+#: client/src/notifications/notificationTemplates.form.js:216
+msgid "Type an option on each line."
+msgstr ""
+
+#: client/src/notifications/notificationTemplates.form.js:143
+#: client/src/notifications/notificationTemplates.form.js:160
+#: client/src/notifications/notificationTemplates.form.js:377
+msgid "Type an option on each line. The pound symbol (#) is not required."
+msgstr ""
+
#: client/src/projects/add/projects-add.controller.js:169
#: client/src/projects/edit/projects-edit.controller.js:298
msgid "URL popover text"
@@ -4775,7 +4592,7 @@ msgstr ""
msgid "Update Not Found"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:321
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:341
msgid "Update Options"
msgstr ""
@@ -4783,17 +4600,17 @@ msgstr ""
msgid "Update in Progress"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:352
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:357
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:374
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:379
#: client/src/projects/projects.form.js:177
msgid "Update on Launch"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:364
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:386
msgid "Update on Project Change"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:370
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:392
msgid "Update on Project Update"
msgstr ""
@@ -4801,16 +4618,16 @@ msgstr ""
msgid "Upgrade"
msgstr ""
-#: client/src/templates/job_templates/job-template.form.js:304
-#: client/src/templates/job_templates/job-template.form.js:309
+#: client/src/templates/job_templates/job-template.form.js:317
+#: client/src/templates/job_templates/job-template.form.js:322
msgid "Use Fact Cache"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:398
+#: client/src/notifications/notificationTemplates.form.js:411
msgid "Use SSL"
msgstr ""
-#: client/src/notifications/notificationTemplates.form.js:393
+#: client/src/notifications/notificationTemplates.form.js:406
msgid "Use TLS"
msgstr ""
@@ -4818,14 +4635,14 @@ msgstr ""
msgid "Used to check out and synchronize playbook repositories with a remote source control management system such as Git, Subversion (svn), or Mercurial (hg). These credentials are used by Projects."
msgstr ""
-#: client/features/credentials/legacy.credentials.js:86
+#: client/features/credentials/legacy.credentials.js:88
#: client/src/credentials/credentials.form.js:456
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:146
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:149
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:155
#: client/src/organizations/organizations.form.js:92
#: client/src/projects/projects.form.js:250
#: client/src/teams/teams.form.js:93
-#: client/src/templates/workflows.form.js:133
+#: client/src/templates/workflows.form.js:138
msgid "User"
msgstr ""
@@ -4879,11 +4696,6 @@ msgstr ""
msgid "VIEW USER PAGE FOR {{ $root.current_user.username | uppercase }}"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:180
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:261
-msgid "VPC ID:"
-msgstr ""
-
#: client/src/license/license.partial.html:10
msgid "Valid License"
msgstr ""
@@ -4895,15 +4707,14 @@ msgstr ""
#: client/src/inventories-hosts/inventories/related/hosts/related-host.form.js:67
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:84
#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:93
-#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:99
msgid "Variables"
msgstr ""
-#: client/src/job-submission/job-submission.partial.html:357
+#: client/src/job-submission/job-submission.partial.html:356
msgid "Vault"
msgstr ""
-#: client/src/job-results/job-results.partial.html:318
+#: client/src/job-results/job-results.partial.html:329
msgid "Vault Credential"
msgstr ""
@@ -4914,13 +4725,13 @@ msgstr ""
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:81
#: client/src/inventories-hosts/inventories/adhoc/adhoc.form.js:90
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:307
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:314
-#: client/src/job-results/job-results.partial.html:355
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:327
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:334
+#: client/src/job-results/job-results.partial.html:366
#: client/src/job-submission/job-submission.partial.html:178
#: client/src/standard-out/adhoc/standard-out-adhoc.partial.html:99
-#: client/src/templates/job_templates/job-template.form.js:179
-#: client/src/templates/job_templates/job-template.form.js:186
+#: client/src/templates/job_templates/job-template.form.js:189
+#: client/src/templates/job_templates/job-template.form.js:196
msgid "Verbosity"
msgstr ""
@@ -4954,16 +4765,11 @@ msgstr ""
msgid "View Insights Data"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:202
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:226
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:250
-msgid "View JSON examples at"
-msgstr ""
-
#: client/src/inventories-hosts/hosts/host.form.js:78
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.form.js:77
#: client/src/inventories-hosts/inventories/related/hosts/related-host.form.js:77
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:94
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:103
msgid "View JSON examples at %s"
msgstr ""
@@ -4975,22 +4781,17 @@ msgstr ""
msgid "View More"
msgstr ""
-#: client/src/shared/form-generator.js:1711
-#: client/src/templates/job_templates/job-template.form.js:441
-#: client/src/templates/workflows.form.js:161
+#: client/src/shared/form-generator.js:1709
+#: client/src/templates/job_templates/job-template.form.js:459
+#: client/src/templates/workflows.form.js:166
msgid "View Survey"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:203
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:227
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:251
-msgid "View YAML examples at"
-msgstr ""
-
#: client/src/inventories-hosts/hosts/host.form.js:79
#: client/src/inventories-hosts/inventories/related/groups/related/nested-hosts/group-nested-hosts.form.js:78
#: client/src/inventories-hosts/inventories/related/hosts/related-host.form.js:78
#: client/src/inventories-hosts/inventories/smart-inventory/smart-inventory.form.js:95
+#: client/src/inventories-hosts/inventories/standard-inventory/inventory.form.js:104
msgid "View YAML examples at %s"
msgstr ""
@@ -5046,7 +4847,7 @@ msgstr ""
msgid "View notification"
msgstr ""
-#: client/src/job-results/job-results.partial.html:219
+#: client/src/job-results/job-results.partial.html:230
msgid "View project sync results"
msgstr ""
@@ -5066,11 +4867,6 @@ msgstr ""
msgid "View template"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:192
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:274
-msgid "View the"
-msgstr ""
-
#: client/src/jobs/all-jobs.list.js:92
msgid "View the job"
msgstr ""
@@ -5089,7 +4885,7 @@ msgstr ""
#: client/src/instance-groups/instances/instance-jobs/instance-jobs.list.js:42
#: client/src/instance-groups/jobs/jobs.list.js:41
-#: client/src/job-results/job-results.partial.html:142
+#: client/src/job-results/job-results.partial.html:153
#: client/src/jobs/all-jobs.list.js:49
#: client/src/standard-out/inventory-sync/standard-out-inventory-sync.partial.html:25
#: client/src/standard-out/scm-update/standard-out-scm-update.partial.html:25
@@ -5115,20 +4911,13 @@ msgstr ""
msgid "Welcome to Ansible {{BRAND_NAME}}! Please sign in."
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:344
-msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:332
-msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process."
-msgstr ""
-
+#: client/src/templates/job_templates/job-template.form.js:54
#: client/src/templates/workflows/workflow-maker/workflow-maker.form.js:97
msgid "When this template is submitted as a job, setting the type to %s will execute the playbook, running tasks on the selected hosts."
msgstr ""
-#: client/src/shared/form-generator.js:1715
-#: client/src/templates/workflows.form.js:187
+#: client/src/shared/form-generator.js:1713
+#: client/src/templates/workflows.form.js:192
msgid "Workflow Editor"
msgstr ""
@@ -5145,12 +4934,6 @@ msgstr ""
msgid "YAML"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:200
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:224
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:248
-msgid "YAML:"
-msgstr ""
-
#: client/src/notifications/add/add.controller.js:78
#: client/src/notifications/edit/edit.controller.js:125
msgid "Yellow"
@@ -5188,14 +4971,14 @@ msgid "Your session timed out due to inactivity. Please sign in."
msgstr ""
#: client/src/inventories-hosts/inventories/related/groups/list/groups-list.partial.html:24
-#: client/src/job-submission/job-submission.partial.html:310
-#: client/src/shared/form-generator.js:1186
+#: client/src/job-submission/job-submission.partial.html:309
+#: client/src/shared/form-generator.js:1184
msgid "and"
msgstr ""
-#: client/src/job-submission/job-submission.partial.html:282
-#: client/src/job-submission/job-submission.partial.html:287
-#: client/src/job-submission/job-submission.partial.html:298
+#: client/src/job-submission/job-submission.partial.html:281
+#: client/src/job-submission/job-submission.partial.html:286
+#: client/src/job-submission/job-submission.partial.html:297
msgid "characters long."
msgstr ""
@@ -5203,11 +4986,6 @@ msgstr ""
msgid "documentation"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:193
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:275
-msgid "for a complete list of supported filters."
-msgstr ""
-
#: client/src/inventories-hosts/inventories/related/hosts/related-groups-labels/relatedGroupsLabelsList.directive.js:82
msgid "from the"
msgstr ""
@@ -5250,16 +5028,11 @@ msgstr ""
msgid "of"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:185
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:267
-msgid "of the filters match."
-msgstr ""
-
#: client/src/access/rbac-multiselect/permissionsTeams.list.js:24
msgid "organization"
msgstr ""
-#: client/src/shared/form-generator.js:1062
+#: client/src/shared/form-generator.js:1060
msgid "playbook"
msgstr ""
@@ -5272,18 +5045,13 @@ msgstr ""
msgid "sources with sync failures. Click for details"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:190
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:272
-msgid "test"
-msgstr ""
-
-#: client/src/job-submission/job-submission.partial.html:282
-#: client/src/job-submission/job-submission.partial.html:287
-#: client/src/job-submission/job-submission.partial.html:298
+#: client/src/job-submission/job-submission.partial.html:281
+#: client/src/job-submission/job-submission.partial.html:286
+#: client/src/job-submission/job-submission.partial.html:297
msgid "to"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:139
+#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:138
msgid "to include all regions. Only Hosts associated with the selected regions will be updated."
msgstr ""
@@ -5307,24 +5075,6 @@ msgstr ""
msgid "v3 multi-domain%s - your domain name"
msgstr ""
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:220
-msgid "view ec2.ini in the Ansible github repo."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/sources.form.js:244
-msgid "view vmware_inventory.ini in the Ansible github repo."
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:185
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:267
-msgid "when"
-msgstr ""
-
-#: client/src/inventories-hosts/inventories/related/sources/add/sources-add.controller.js:171
-#: client/src/inventories-hosts/inventories/related/sources/edit/sources-edit.controller.js:252
-msgid "will create group names similar to the following examples based on the options selected:"
-msgstr ""
-
#: client/src/inventories-hosts/inventories/related/groups/factories/get-hosts-status-msg.factory.js:11
msgid "with failed jobs."
msgstr ""
@@ -5333,10 +5083,6 @@ msgstr ""
msgid "{{ breadcrumb.instance_name }}"
msgstr ""
-#: client/lib/components/input/label.partial.html:5
-msgid "{{::state._hint}}"
-msgstr ""
-
#: client/src/instance-groups/instances/instances-list.route.js:10
msgid "{{breadcrumb.instance_group_name}}"
msgstr ""
diff --git a/awx/ui/templates/ui/index.html b/awx/ui/templates/ui/index.html
index ddab3734d1..e58e03b78f 100644
--- a/awx/ui/templates/ui/index.html
+++ b/awx/ui/templates/ui/index.html
@@ -1,20 +1,23 @@
-{% load i18n %}
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -28,7 +31,7 @@
- {% blocktrans %}Your session will expire in 60 seconds, would you like to continue?{% endblocktrans %}
+ Your session will expire in 60 seconds, would you like to continue?
@@ -64,7 +67,7 @@
@@ -83,7 +86,7 @@
@@ -95,28 +98,27 @@