{"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"dist-tags":{"latest":"1.3.2"},"author":{"name":"Alex Oleshkevich"},"description":"intro.js bindings for Vue","readme":"# vue-introjs\nintro.js bindings for Vue.\n\n## Installation\n### Add package\n```bash\nyarn add vue-introjs\n\n# or via npm:\nnpm i vue-introjs\n```\n\n### Install plugin\n```javascript\nimport VueIntro from 'vue-introjs';\nVue.use(VueIntro);\n```\n\n#### Use CDN version of introJs\nMake sure you have installed and attached [`intro.js`](http://introjs.com/docs/getting-started/install) scripts and styles to the page.\nThis plugin **does not** come with intro.js built-in.\n\nThe motivation of it is to give the developer more control on intro.js versions.\n\n#### Use with webpack\nInstall required dependency:\n```bash\nyarn add intro.js\n```\n\nAs this plugin relies on global `introJs` variable, webpack's should provide it:\n```javascript\n// webpack.config.js\n{\n    plugins: [\n        new webpack.ProvidePlugin({\n            // other modules\n            introJs: ['intro.js', 'introJs']\n        })\n    ]\n}\n\n// attach CSS\n// SomeComponent.vue\nimport 'intro.js/introjs.css';\n```\n\n#### Use with vue-cli and webpack template\nAdd to your `src/main.js` something like this for global, or per SFC like above:\n```javascript\nimport VueIntro from 'vue-introjs'\nVue.use(VueIntro)\n\nimport 'intro.js/introjs.css';\n```\nthen add into the `plugins` sections of `build/webpack.dev.conf.js` and `build/webpack.prod.conf.js` the `new webpack.ProvidePlugin({` section from above.\n\nDon't forget to install `intro.js` though and save it (via yarn or npm). The `webpack.ProvidePlugin` will pull it in, so no need to `import introJs from 'intro.js'` in `src/main.js`\n\n\n## Contents\nThe plugin extends Vue with a set of directives and `$intro()` constructor function.\n\n\n## Define steps and hints\nDirectives, to define introductional steps:\n### Steps\n\n```html\nThe tooltip text of step.\n<div v-intro=\"'The content of tooltip'\"></div>\n```\n\n```html\nOptionally define the number (priority) of step.\n<div v-intro=\"'The content of tooltip'\" v-intro-step=\"2\"></div>\n```\n\n```html\nOptionally define a CSS class for tooltip.\n<div v-intro=\"'The content of tooltip'\" v-intro-tooltip-class=\"'red-bg'\"></div>\n```\n\n```html\nOptionally append a CSS class to the helperLayer.\n<div v-intro=\"'The content of tooltip'\" v-intro-highlight-class=\"'blue-bg'\"></div>\n```\n\n```html\nOptionally define the position of tooltip, `top`, `left`, `right`, `bottom`, `bottom-left-aligned` (same as `bottom`), `bottom-middle-aligned`, `bottom-right-aligned` or `auto` (to detect the position of element and assign the correct position automatically). Default is `bottom`.\n<div v-intro=\"'The content of tooltip'\" v-intro-position=\"'top'\"></div>\n```\n\n```html\nOptionally define the element to scroll to, `element` or `tooltip`. Default is `element`.\n<div v-intro=\"'The content of tooltip'\" v-intro-scroll-to=\"'element'\"></div>\n```\n\n```html\nTo disable interactions with elements inside the highlighted box, `true` or `false` (also `1` or `0`).\n<div v-intro=\"'The content of tooltip'\" v-intro-disable-interaction=\"false\"></div>\n```\n\nMore about [intro steps](http://introjs.com/docs/intro/attributes/)\n\n### Hints\nDirectives, to define hints:\n\n```html\nThe tooltip text of hint.\n<div v-intro-hint=\"'The content of tooltip'\"></div>\n```\n\n```html\nOptionally define the position of hint. Options: `top-middle`, `top-left`, `top-right`, `bottom-left`, `bottom-right`, `bottom-middle`, `middle-left`, `middle-right`, `middle-middle`. Default: `top-middle`.\n<div v-intro-hint=\"'The content of tooltip'\" v-intro-hint-position=\"'top'\"></div>\n```\n\nMore about [hints](http://introjs.com/docs/hints/attributes/)\n\nAlso refer `example` directory for live examples.\n\n## Usage\nOnce all steps are defined, call `start()` or `showHints()` to start the show:\n```javascript\n// SomeComponent.vue\n{\n    mounted() {\n        this.$intro().start(); // start the guide\n        this.$intro().showHints(); // show hints\n    }\n}\n```\n\n## Configuration\nWhen the defaults are not enough, then fine tuning is required.\nConstruct a new `introJs` instance and configure in own way:\n```javascript\nthis.$intro('#intro-farm'); // //start introduction for element id='intro-farm'\nthis.$intro().addStep({}); // Add a new step to introJs programmatically.\n```\n\nBasically, `$intro()` returns a new `introJs` instance which then can be configured usign it's [API](http://introjs.com/docs/intro/api).\n\n## Registering callbacks\nJust call `this.$intro().<callback-name>`. Example:\n```javascript\n// SomeComponent\nthis.$intro().oncomplete(function () {\n    console.log('completed');\n});\n```\n\n## Autostart\nIf tour should start automatically when all directives loaded,\nadd `v-intro-autostart=\"true\"` directive.\nAlso extra configuration required for plugin:\n```javascript\nimport VueIntro from 'intro.js';\nVue.use(VueIntro, {\n    waitTimeout: 400\n});\n```\n\nFor hints use `v-intro-autostart:hints=\"true\"`.\n\n### How it works\nThe plugin starts a timer with `waitTimeout`.\nEvery `v-intro` directive restarts that timer. This lets the plugin to wait for async components, router views or other components to load before tour will be autostarted.\n\n### Configure intro.js instance\nAdd `v-intro-autostart.config` next to `v-intro-autostart` with intro.js configuration object as an argument.\nThat object then passed to `introJs(obj)` constructor.\n```html\n<div v-intro-autostart=\"true\" v-intro-autostart.config=\"{ doneLabel: 'DONE!' }\"></div>\n```\n\n### Listening for intro.js events\nIt is possible to add event listeners to automatically started tour.\nThe format is:\n```\nv-intro-autostart:on.<event-name>=\"<callback>\"\n```\nwhere `event-name` is any of intro.js supported hooks (see [intro.js hooks](http://introjs.com/docs/intro/api/#introjsoncompleteprovidedcallback)) for more details.\nSame applies to hints.\n\n**Note**, the plugin defines two more events, designed to work with the autostart feature:\n`onautostart` and `onautostarthints`. These callbacks receive two arguments: `element` and current `introjs` instance.\n\nFor example:\n```html\n<div v-intro-autostart=\"true\" v-intro-autostart:on.complete=\"onComplete\"></div>\n<div v-intro-autostart=\"true\" v-intro-autostart:on.autostart=\"onAutostarted\"></div>\n```\n\n## Conditional steps and hints\nWhen it is required to bind intro only when some expression evaluates to `true`,\nuse `v-intro-if` directive.\nIt accepts any valid expression that evaluates to either `true` or `false`:\n```html\n<div v-intro=\"'Conditional step'\" v-intro-if=\"item.id == 1\" v-for=\"item in items\" :key=\"item.id\"></div>\n```\n\nNote, that `v-intro-if` directive must go after `v-intro`.\n\n## Credits\n1. [http://introjs.com](http://introjs.com)\n2. Gabriel J Perez Irizarry\n","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"license":"MIT","versions":{"1.0.0":{"name":"vue-introjs","version":"1.0.0","description":"intro.js binding for Vue","main":"index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","dependencies":{"intro.js":"^2.8.0-alpha.1"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"0adb626021658b5209d667fa932c812cb9fd778c","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.0","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-UAeBw8vQ55+416stBPCTr+ASwXbf3fVTeqLRreC6LM2jVjo7QKi5vlOoiZmPMpjPhAks9654+tVATqSOKARfTw==","shasum":"b6084841de8cd4caf334fd4133ad3fd029dd8a7b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.0.tgz","size":5137},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.0.tgz_1507844260417_0.013863739557564259"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:27.646Z"},"1.0.1":{"name":"vue-introjs","version":"1.0.1","description":"intro.js binding for Vue","main":"index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"64cd8f897edb1cf426066c5788e1798f685a21c7","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.1","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-e3KXkxz3PeZt7iQLvobnxrXIyar7YfxsbrPHMcYlwcRDiKgQJhHQcW0AGi08xuwZHkghuwhRTbxkplwj1tfp0Q==","shasum":"6a44042a5f1ec02ebc59bcb8eb17f748e982d49b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.1.tgz","size":5190},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.1.tgz_1507844410354_0.062140244990587234"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:28.547Z"},"1.0.2":{"name":"vue-introjs","version":"1.0.2","description":"intro.js binding for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"64cd8f897edb1cf426066c5788e1798f685a21c7","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.2","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-whEO5YkfhzzZxodUWFaAQbxB7pf4zRT5fm0mTWEgtpJSmVzS6V6h+OoisGYjGckmNDwO5t6uCse6RfG6ZshNAw==","shasum":"2e0b3cd3307562989f84b7501ed548b131dda1f8","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.2.tgz","size":5917},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.2.tgz_1507844890760_0.08952894806861877"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:29.668Z"},"1.0.3":{"name":"vue-introjs","version":"1.0.3","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","webpack":"^3.7.1"},"gitHead":"ba836afb4a53c66b9a537424765274375c70eaf9","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.3","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-lmpyXt0sDF7Lqno0l/QyCQu4d1N+Im8PqJwdcFHQB2rogpPz6vY9UwIHgBNnrw1fox/KSbjYKnvdWMsOVPAdDA==","shasum":"52fdc35e485e8506eee688288bc407f318524419","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.3.tgz","size":5764},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.3.tgz_1507846328149_0.8343658414669335"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:30.603Z"},"1.0.4":{"name":"vue-introjs","version":"1.0.4","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","webpack":"^3.7.1"},"gitHead":"17b0532c230566e1f7237fbae0f6e0ea6a003324","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.4","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-O4hWI7susfwhr/bUhUa4BD+EALdAjQYYVdM3yVGgfm52EyJ+zOrmg+FDSwfCAOcui+WYGXtfTvayhDed7fwYTg==","shasum":"8fa697b2f4487904c47fa1b280ae3d944cb3a835","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.4.tgz","size":5950},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.4.tgz_1507846890958_0.6421507732011378"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:31.490Z"},"1.0.5":{"name":"vue-introjs","version":"1.0.5","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","find-root":"^1.1.0","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"a359b2b8d89aa17196185cefc6cbf2e819e3bfbf","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.5","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-a7eIt8i7Ao5lTJbr4vkbzFlj/qlqxYFGBKS6PR6a+Yy0Gr62Y+4Ja7ZP6KQXiFFEnYUO+lP7auLxq8eHgpJkkQ==","shasum":"4364dd47b73528b316a33ec127ba6b370e1d1a06","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.5.tgz","size":25994},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.5.tgz_1507851681615_0.2542022380512208"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:32.620Z"},"1.0.6":{"name":"vue-introjs","version":"1.0.6","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","find-root":"^1.1.0","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"8b52a3d05d29da733542c63cba93153c2cecabd2","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.6","_npmVersion":"5.4.2","_nodeVersion":"8.6.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-ZY5PepAqB9dMWkDq2kJ6m4tB7k8v+CGSDiC9R0MRuuB1RX3RdHGdw2Lcrm7SL6qrRpmwH15pI28+Buo7Bqx6Xw==","shasum":"4ff7c86575f1dd151b62eb7b41d613c5f3c5df6f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.6.tgz","size":16172},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.6.tgz_1507851793075_0.7889585001394153"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:33.492Z"},"1.0.7":{"name":"vue-introjs","version":"1.0.7","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","find-root":"^1.1.0","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"dc6fbc823b2a147ce5a22019ec04d3a23079be7f","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.7","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-uI2KcYWyFqaeh5qkjTrMCniNVwEN6VPbr/7dYO7YH/WYn44kMt0F5/PucgArg1VcfDIuWdKBPIjQdU1FPH/EYQ==","shasum":"7385530fb61d8622a18ea74a991d4ed1504a5145","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.7.tgz","size":152594},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.7.tgz_1507914770740_0.5393000226467848"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:35.203Z"},"1.0.8":{"name":"vue-introjs","version":"1.0.8","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","find-root":"^1.1.0","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"589a7b01c116b3b17b5a7aa80c27da7ca241c9ee","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.0.8","_npmVersion":"5.5.1","_nodeVersion":"8.7.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-4JWa1KfXxQ66LmWddk4i0mTF+6nlWLeWWSXbNe/Payhen9PjNHmx29hcxkOQqKegQLyCi1/i2yHsac0EoL0xrw==","shasum":"a3b7fb9ce3fff5cdc10e9fc28c531ab1e831c360","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.0.8.tgz","size":77412},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.0.8.tgz_1508096555553_0.6469961241818964"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:36.506Z"},"1.1.0":{"name":"vue-introjs","version":"1.1.0","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","expose-loader":"^0.7.3","find-root":"^1.1.0","intro.js":"^2.8.0-alpha.1","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"b91386a66cb3ed985aff9c199cea9c45dedae88c","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.1.0","_npmVersion":"5.5.1","_nodeVersion":"8.7.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-Tf8z0XlouIpGVpFn66Sv73LmLw47pLoTYcfx6y2eTmbDiqhR8ITLpoD0L7wz3o7x6BAyjThaW6AOon1Kg2Hz4Q==","shasum":"eb419cacf68a13c40d34b3d705d64dba7a6e8e63","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.1.0.tgz","size":81664},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.1.0.tgz_1508279607241_0.2031250805594027"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:37.848Z"},"1.1.1":{"name":"vue-introjs","version":"1.1.1","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","expose-loader":"^0.7.3","find-root":"^1.1.0","intro.js":"^2.8.0-alpha.1","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"3e69bea9ca0bd2fed596ed392765fee24d778a6c","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.1.1","_npmVersion":"5.5.1","_nodeVersion":"8.7.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-gxtMifo2j6+4e5Vpv8Ptd9nV8xDKgv7uU6e4tGcO9K6pFcKwd4o5QIN+Yjh8wFXBrydfNQNIDSWmMyynpAI6NQ==","shasum":"e130bc66cc52f2a09ca3f5f14c665e4bdcd935e7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.1.1.tgz","size":81731},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.1.1.tgz_1508279752518_0.7539527309127152"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:39.158Z"},"1.1.2":{"name":"vue-introjs","version":"1.1.2","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","expose-loader":"^0.7.3","find-root":"^1.1.0","intro.js":"^2.8.0-alpha.1","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"acd70e593d8d58d146c40bef1163b03930f1c2b3","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.1.2","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-P6UF6hyLUULo5ftnuGAjX17RVPVWOozsD7Vxv6IZ368j0yKht9t8c+3T0ALDbqeL1RB2bR8q+oSORTO+jA93Rw==","shasum":"f5d3774990610c4627e03f0a848bff4b67e38571","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.1.2.tgz","size":170362},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs-1.1.2.tgz_1517257510914_0.9430110971443355"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T20:05:40.630Z"},"1.1.3":{"name":"vue-introjs","version":"1.1.3","description":"intro.js bindings for Vue","main":"src/index.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","expose-loader":"^0.7.3","find-root":"^1.1.0","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"4abb93bdc88f6ed121bf5529900183b1c4f864b2","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.1.3","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-xA4aMd3bZpjHn86M61jRl3hTmqhynMVxhe2wDT/AB6deHQGVNYZI4hZ1UUWKBVlPS785M2UKVEgCsWh1vmeBbA==","shasum":"f35189331656f7c37b7c4a925554d157153d2227","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.1.3.tgz","fileCount":34,"unpackedSize":398335,"size":170579},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs_1.1.3_1518795272686_0.4766924737653977"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-23T20:05:42.102Z"},"1.2.0":{"name":"vue-introjs","version":"1.2.0","description":"intro.js bindings for Vue","main":"dist/index.min.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"unit":"cross-env BABEL_ENV=test karma start --single-run --no-fail-on-empty-test-suite tests/unit/karma.conf.js","unit-watch":"cross-env BABEL_ENV=test karma start --no-fail-on-empty-test-suite tests/unit/karma.conf.js --auto-watch"},"devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","babel-plugin-istanbul":"^4.1.5","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","babel-register":"^6.26.0","chai":"^4.1.2","cross-env":"^5.0.5","eslint":"^4.8.0","eslint-config-node":"^1.6.0","eslint-config-promise":"^1.1.3","eslint-config-standard":"^10.2.1","eslint-friendly-formatter":"^3.0.0","eslint-loader":"^1.8.0","eslint-plugin-html":"^3.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-node":"^5.0.0","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","expose-loader":"^0.7.3","find-root":"^1.1.0","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-junit-reporter":"^1.2.0","karma-mocha":"^1.3.0","karma-sinon-chai":"^1.3.2","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"^0.0.31","karma-webpack":"^2.0.5","mocha":"^4.0.1","sinon":"^4.0.1","sinon-chai":"^2.14.0","vue":"^2.4.4","webpack":"^3.7.1"},"gitHead":"6fb561676d301b9c5acc6a34ab4ec8f315961ae3","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.2.0","_npmVersion":"6.0.0","_nodeVersion":"9.11.1","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-sdoW2pEDy3u4j3JNQZIt/KPcHkxSh5Dx8pUUgPSRijNrLQm2WHmu2DhA9bIRDdffwyZrD7U+lEra1PGrnNS70g==","shasum":"a0945771f8b4a47fd12544b63c73815918a09776","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.2.0.tgz","fileCount":34,"unpackedSize":398907,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6enRCRA9TVsSAnZWagAAqLkQAJp3MYfKJJVb7tFoJmIf\nyFBTjUpspDyZNKgJpMMBr4pnmFoMT/u0iDExLt5Vm5rr9hYsIZQ8lU6kjB27\nUs547y5R38HQDdUBAj2rQ+Yj2e0Kk+5HekRGJG8Ds9Q/jzxLuQAVTy9CIiH6\nAJJuWLmqJgqk6aVAu4dodAqE2ff2Tl16Gx2mqHs852y7F5TXWRPWc1klZ71Z\ndwztu1xf//gGjVi4CwIT1BUcqWdPidSXr+kOY3hlrSyHTWtqzTRhKalZZc1c\nrXIeEvIw8z/ClBv6aXNsfJ6GAVLKTqnuNvBsNA0ZL8rjc26qrmkOQ+AnnIBp\nFYtuT9Z1bbmSUF8UNCj5PVuDIPEWu5j/VKiGt7pazgiYD1OT4ZUNqG39+taX\nquMxDeeKjtJG/BgdXKgDTUhb9DnRCojByK/YqEUSA5RppEjkKcudqWjYgdpd\nGWQ/8DuidYRcIUhoMsu7ba8YZt5QDb8nn2XIrZJhNUV+L8GZgHO4Wrd9LF5Q\npjfUHRZeTsoCaQmZoYjYBCAYkGn/nFnRPk1r6uTPtJjmTRWRcnW4Dpom4hlR\nZqtwu63ndGyHGYjE+2o01hlQD78Yhz28mfzvQiIBfqqdA+cWXR58BssYamS3\naSD7DBQnnuBL3IuXJZ4H2FVeM5kM6yJiNGWh+xIzAI8Ggmga/fYtWcIu0RFl\n3N5O\r\n=8Qej\r\n-----END PGP SIGNATURE-----\r\n","size":170644},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs_1.2.0_1525279184205_0.698229033736351"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-23T20:05:44.135Z"},"1.3.0":{"name":"vue-introjs","version":"1.3.0","description":"intro.js bindings for Vue","main":"dist/index.min.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"watch":"webpack -w","build:dev":"webpack","build":"webpack -p","test":"jest","lint":"eslint --ext .js src/"},"devDependencies":{"babel-core":"^6.26.3","babel-eslint":"^8.2.5","babel-jest":"^23.2.0","babel-loader":"^7.1.4","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","clean-webpack-plugin":"^0.1.19","eslint":"^5.0.1","eslint-friendly-formatter":"^4.0.1","eslint-loader":"^2.0.0","eslint-plugin-html":"^4.0.5","intro.js":"^2.9.3","jest":"^23.2.0","jest-serializer-vue":"^2.0.2","uglifyjs-webpack-plugin":"^1.2.7","vue":"^2.5.16","webpack":"^4.14.0","webpack-cli":"^3.0.8"},"gitHead":"cf09d7988f663a4e57e75a7bd27dbb79717197c7","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.3.0","_npmVersion":"6.1.0","_nodeVersion":"10.5.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-gsYDzuNon/WtPOqiMU5xHftJ70NbCq7+fxklD3mQgUxC9dXX6CgO2ryEY6+8iMvTAnH0O2k3A6rD3WkZukK3Bw==","shasum":"97fb2fd4e34a892b7ae6c04f8db875c1ac824d32","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.3.0.tgz","fileCount":33,"unpackedSize":736346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbO5VbCRA9TVsSAnZWagAAkkAP/jeqSsdS1l/Dt+aAkqPA\n3IbsyJniF8ylvS0+M+VX3HSJbD7BiByzqfzG6ytC6VN9cLTvlWg1UKT7ebXC\n5sqcZ+5U+HTbQeMht2jl63IBbxHQITODphABvn1IgAbbQ5vh9KOIvODmLobz\nijY8jqeAcvYZ4yyGDDDHjKjRKkh0JnOoajbVhBNE90NaOx6XgOUJdLNAmj7z\nweHRr+THQCGjbtuFajoMEphMxuZE77H/95eDRuwTT14I5eld6sJnx+wrhRCi\nDun5/g5+Z2OlaYaxEg4ofpVFYml0iLSRnAeIoP8OAbPLZSnYw0rWBfxCd283\nQnenWHer/VSrh+jr9KAPeYkacnvUv/8x4XOhaBk9cN+p5TrDjMZDf/SAXB1v\nJLmD8u6KsDn5Tvr+Zjj9jNcSin6Tjy4AviULyN7IAvdlRY2QeYEDW1DHlUdT\nXAelJRMKPXqtF+i7HjofbsA3KNWQVMofRj8M1OHfOgMZ1bh4VhdmGJ5oFW/k\nf8mu68qSLDObXVOj4w4zUA7YntglDOTiw8AkxKIx9YIGOfEd0NzNWjfA7IL0\n9E/jUqOZxZ1eRiwxcaIHhpxjuBLx7ajdAdnv9IYqE35M6Pu0dP83KTJJpXqd\neBtRilY2m/qGjjAA/uHYCS9TxOzGCk73LyyoxlQ0GyibZQanZwd8SMh7RWvA\n2Y63\r\n=NPba\r\n-----END PGP SIGNATURE-----\r\n","size":521923},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs_1.3.0_1530631506258_0.28092373395825576"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-23T20:05:45.961Z"},"1.3.1":{"name":"vue-introjs","version":"1.3.1","description":"intro.js bindings for Vue","main":"dist/index.min.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"watch":"webpack -w","build:dev":"webpack","build":"webpack -p","test":"jest","lint":"eslint --ext .js src/"},"peerDependencies":{"intro.js":"^2.7.0"},"devDependencies":{"babel-core":"^6.26.3","babel-eslint":"^8.2.5","babel-jest":"^23.2.0","babel-loader":"^7.1.4","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","clean-webpack-plugin":"^0.1.19","eslint":"^5.0.1","eslint-friendly-formatter":"^4.0.1","eslint-loader":"^2.0.0","eslint-plugin-html":"^4.0.5","jest":"^23.2.0","jest-serializer-vue":"^2.0.2","uglifyjs-webpack-plugin":"^1.2.7","vue":"^2.5.16","webpack":"^4.14.0","webpack-cli":"^3.0.8"},"gitHead":"2858a1f51362cab24480f90c99b63915ad72ba3a","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.3.1","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-BlzMwIC57xSghqW1QvabmJN/oUFO6KeVIrdBMGinRpJFPGpn7oM0A9EEhOCc9eUXDTIcpxkZtw+nY79IdDeBMw==","shasum":"c5e6df0c8b940758623164cc02d566962f28783a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.3.1.tgz","fileCount":29,"unpackedSize":237146,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsMnfCRA9TVsSAnZWagAAFO4P+gIemGrbtNuKa4bqohA7\naxFY5FLBmko2YXbHpUIQZYnJI93e0pN+o66JofA2nCSOhpQBq4eOGl3wVUXn\nEbopzSIReZOqupD0bXyg9aRsu7suaaYcXgriBNpzlpvXncEhlbKuD/aq27rq\nsCYbsMubm5RwmkgzssqFTg2e0QbhFtT1JJhOL3faP8tuvh/3IN0IP2BsAoGq\ncBD+uKqOzuoHGlduBsBs3kJpU/+BklJDsG8mKSXUDiJ6Tqa5hjPTLOqTH0fq\naRzZar+V+9VX7BFaeF2cQKqSLWV7Bw5zu8uXlAElQ+Tt2n0LqjxqIaXi13+t\nQ3ngyWxj3mwDyRKhnd+ZqdwooIaS8J4ZrRn5iOxyqEQRbO9jWl/OtB/RUtuv\n4+X701iKKFGyKg8KBCCmjSbky+udYQm3yC1i68Q+jmKoWxQm6nv06b8kIrIK\nv4GwGlTTrbitEtwLFMff93brw2Rsp4ZMzQjCBr89vYjNU1Y1QIpY7NLpJm/f\n/XFqVYGR2eygB+sgOP0ywrtwvqPy9u6YzpnhIZoqZPd6UAN02sCtqY3Dw+Bj\nPne+spry0mQMkxnpc8TM0YBkt6DxaXQAPJytky91RJ4uKq2//EDDbJWyOtMh\nckJD7bfh2TznU9jc2XxJ2dixAh0tHDLrYgRQAOrYinJiYzGVfNCZUTp4NTQl\nrD3j\r\n=S5a+\r\n-----END PGP SIGNATURE-----\r\n","size":59867},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs_1.3.1_1538312671261_0.9347668513776091"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-23T20:05:47.274Z"},"1.3.2":{"name":"vue-introjs","version":"1.3.2","description":"intro.js bindings for Vue","main":"dist/index.min.js","repository":{"type":"git","url":"git+https://github.com/alex-oleshkevich/vue-introjs.git"},"author":{"name":"Alex Oleshkevich"},"license":"MIT","scripts":{"watch":"webpack -w","build:dev":"webpack","build":"webpack -p","test":"jest","lint":"eslint --ext .js src/"},"peerDependencies":{"intro.js":"^2.7.0"},"devDependencies":{"babel-core":"^6.26.3","babel-eslint":"^8.2.5","babel-jest":"^23.2.0","babel-loader":"^7.1.4","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","clean-webpack-plugin":"^0.1.19","eslint":"^5.0.1","eslint-friendly-formatter":"^4.0.1","eslint-loader":"^2.0.0","eslint-plugin-html":"^4.0.5","jest":"^23.2.0","jest-serializer-vue":"^2.0.2","uglifyjs-webpack-plugin":"^1.2.7","vue":"^2.5.16","webpack":"^4.14.0","webpack-cli":"^3.0.8"},"gitHead":"2858a1f51362cab24480f90c99b63915ad72ba3a","bugs":{"url":"https://github.com/alex-oleshkevich/vue-introjs/issues"},"homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme","_id":"vue-introjs@1.3.2","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"},"dist":{"integrity":"sha512-Bj27iGimO6VKr/Ngxs5hr/Fh8ONSHmvTUj2gh1f5CGZC5vfF1Vb5VyetjXiDdMXhLsqeGSIhac6SbVNHwUh9yQ==","shasum":"ff2e3628adaab6c54cae47c12234cce00dd1db34","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/vue-introjs/-/vue-introjs-1.3.2.tgz","fileCount":30,"unpackedSize":202224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsdyGCRA9TVsSAnZWagAACp4P/RIR3DgdN7lMxPqLvZ+R\nsly4yUzz9mZLsaW9cNM8KMztZwyWynFw7/dqRNqvXG5/1FpyXMcuTDVL5IKY\n6UwTZOFfnPgwrMRxsvjvlvp27Lt83Z6HluiL14cmS6nUsEslYuB3DJED4SOF\ntkzRNFAbbGQ6Gs6PxPupwGNdeaLL4+h2Uv7Taux9NFiPHUPQ0WcLd0TBu5e8\nfOLe6rTZ5w+pHxRh/Sc95fViRWQSiWrSZ2qNQPKLjTp7VSYCPAGSW3D4q/YY\nLJIN+pl5tVB89otcLLEy1bGNOofYNRFHnMCVMzVcAX7TX2IuUVC/QKfkfPE/\nEvhEggqv1o6jBbc+96CkERwBfng8WqmOprQn7p9ESoAJgdVFmzwhwWgt6QGQ\nkxE3ova16PmDS3kdmAsjyhURGpgPv3zv/N3D8H1uyT71C9stl6OWjpbeaz8P\n0OZRmHjumRIa4XqOPaYJoRE6KRM8FSUTZbZC0ojcj53BU9Y8ouyqNVJ1KbXJ\nE7fdsZg8m+QBfdY5pYNYacFjdDnOgzBpcBhxdQmKc9WaT5al9f58ywPdL+l7\nyjnuF2znboy2IGfP6OGLF5bZdG98ijROhmrcVqiXopUYuFri30tkvm9i0y83\nr7gaw4LIFnzvB8Vztxy+jxeKAIWmUz04mmDG1dGN6z23EfQrvJ6fkHnZtpQy\nk9AU\r\n=Yw63\r\n-----END PGP SIGNATURE-----\r\n","size":58127},"maintainers":[{"name":"alex.oleshkevich","email":"alex.oleshkevich@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-introjs_1.3.2_1538382982040_0.31475699784649525"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-23T20:05:47.393Z"}},"name":"vue-introjs","time":{"modified":"2022-03-15T09:18:06.275Z","created":"2022-01-27T06:18:57.556Z","1.0.0":"2017-10-12T21:37:41.349Z","1.0.1":"2017-10-12T21:40:11.318Z","1.0.2":"2017-10-12T21:48:11.730Z","1.0.3":"2017-10-12T22:12:09.324Z","1.0.4":"2017-10-12T22:21:31.895Z","1.0.5":"2017-10-12T23:41:22.657Z","1.0.6":"2017-10-12T23:43:14.127Z","1.0.7":"2017-10-13T17:12:51.860Z","1.0.8":"2017-10-15T19:42:36.703Z","1.1.0":"2017-10-17T22:33:28.581Z","1.1.1":"2017-10-17T22:35:53.751Z","1.1.2":"2018-01-29T20:25:12.205Z","1.1.3":"2018-02-16T15:34:32.842Z","1.2.0":"2018-05-02T16:39:44.293Z","1.3.0":"2018-07-03T15:25:15.297Z","1.3.1":"2018-09-30T13:04:31.448Z","1.3.2":"2018-10-01T08:36:22.202Z"},"readmeFilename":"README.md","homepage":"https://github.com/alex-oleshkevich/vue-introjs#readme"}