{"_id":"tui-code-snippet","_rev":"28-ceb5daada24020e0f2b7b3f4d17b2d62","name":"tui-code-snippet","time":{"modified":"2022-06-27T23:11:02.441Z","created":"2015-10-29T07:44:42.237Z","1.0.4":"2015-10-29T07:44:42.237Z","1.0.5":"2015-11-10T13:33:58.720Z","1.0.6":"2015-11-10T14:14:35.239Z","1.2.2":"2017-02-06T03:48:20.986Z","1.2.5":"2017-07-13T07:04:02.196Z","1.2.6":"2017-08-24T11:34:45.467Z","1.2.7":"2017-08-24T12:21:52.555Z","1.2.8":"2017-08-28T10:11:49.705Z","1.2.9":"2017-11-14T01:45:36.100Z","1.3.0":"2018-03-28T07:49:34.714Z","1.4.0":"2018-04-27T08:15:08.290Z","1.5.0":"2018-12-05T07:22:22.868Z","1.5.1":"2019-04-09T07:16:30.962Z","1.5.2":"2019-07-25T08:15:32.257Z","2.0.0":"2019-09-04T09:24:14.580Z","2.1.0":"2019-11-29T07:51:24.510Z","2.2.0":"2019-12-19T02:19:46.427Z","2.3.0":"2020-01-28T06:08:23.245Z","2.3.1":"2020-01-29T08:24:10.541Z","2.3.2":"2020-04-06T01:29:48.314Z","2.3.3":"2021-06-18T18:33:41.355Z"},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhn.com"}],"dist-tags":{"latest":"2.3.3"},"description":"TOAST UI Utility: CodeSnippet","readme":"# TOAST UI Tools: Code Snippet\n> Group of utility methods to make ease with developing javascript applications.\n\n[![GitHub release](https://img.shields.io/github/release/nhn/tui.code-snippet.svg)](https://github.com/nhn/tui.code-snippet/releases/latest)\n[![npm](https://img.shields.io/npm/v/tui-code-snippet.svg)](https://www.npmjs.com/package/tui-code-snippet)\n[![GitHub license](https://img.shields.io/github/license/nhn/tui.code-snippet.svg)](https://github.com/nhn/tui.code-snippet/blob/production/LICENSE)\n[![PRs welcome](https://img.shields.io/badge/PRs-welcome-ff69b4.svg)](https://github.com/nhn/tui.code-snippet/labels/help%20wanted)\n[![code with hearth by NHN](https://img.shields.io/badge/%3C%2F%3E%20with%20%E2%99%A5%20by-NHN-ff1414.svg)](https://github.com/nhn)\n\n\n## 🚩 Table of Contents\n\n- [📙 Documents](#-documents)\n- [🎨 Features](#-features)\n- [💾 Install](#-install)\n  - [Via Package Manager](#via-package-manager)\n    - [npm](#npm)\n  - [Download Source Files](#download-source-files)\n- [🔨 Usage](#-usage)\n  - [Bundle](#bundle)\n- [🌏 Browser Support](#-browser-support)\n- [🔧 Pull Request Steps](#-pull-request-steps)\n  - [Setup](#setup)\n  - [Develop](#develop)\n    - [Running test](#running-test)\n  - [Pull Request](#pull-request)\n- [💬 Contributing](#-contributing)\n- [🍞 TOAST UI Family](#-toast-ui-family)\n- [📜 License](#-license)\n\n\n## 📙 Documents\n\n* [APIs](https://nhn.github.io/tui.code-snippet/latest/)\n* [v2.0 Migration Guide](https://github.com/nhn/tui.code-snippet/blob/v2.1.0/docs/v2.0-migration-guide.md)\n\nYou can also see the older versions of API page on the [releases page](https://github.com/nhn/tui.code-snippet/releases).\n\n\n## 🎨 Features\n\n* ajax\n  * Send the Ajax request\n* array\n  * Handle arrays\n* browser\n  * Detect browser\n* collection\n  * Process collections\n  * Support util methods for collections\n* customEvents\n  * Add/Remove/fire custom events\n* defineClass\n  * Define classes\n* domEvent\n  * Add, remove, fire DOM events\n  * Control mouse events\n* domUtil\n  * Control the information of DOM\n  * Add, remove, find DOM class name\n* enum\n  * Manage constant value\n  * Make immutability values but IE8 low\n* formatDate\n  * Format date strings\n* inheritance\n  * Simple inheritance (Nicholas C. Zakas, YUI Library)\n  * Call supur constructor of superclass\n  * Have to get inheritance before define child\n  * Use mixin and inner object\n* object\n  * Support utils to control object\n* request\n  * Request image ping\n* string\n  * Support utils such as decodeHTMLEntity, encodeHTMLEntity\n* tricks\n  * Creates a debounced function and a throttled function\n* type\n  * Check data type\n\n\n## 💾 Install\n\nTOAST UI products can be used by using the package manager or downloading the source directly. However, we highly recommend using the package manager.\n\n### Via Package Manager\n\nTOAST UI products are registered in two package managers, [npm](https://www.npmjs.com/).\nYou can conveniently install it using the commands provided by each package manager.\nWhen using npm, be sure to use it in the environment [Node.js](https://nodejs.org/) is installed.\n\n#### npm\n\n``` sh\n$ npm install --save tui-code-snippet # Latest version\n$ npm install --save tui-code-snippet@<version> # Specific version\n```\n\n### Download Source Files\n\n* [Download all sources for each version](https://github.com/nhn/tui.code-snippet/releases)\n\n\n## 🔨 Usage\n\nImport only functions that you need in your code:\n\n```javascript\n// CommonJS\nconst func = require('tui-code-snippet/<folder>/<function>');\n\n// for example,\nconst inArray = require('tui-code-snippet/array/inArray');\nconst customEvents = require('tui-code-snippet/customEvents/customEvents');\n```\n```javascript\n// ES6\nimport func from 'tui-code-snippet/<folder>/<function>';\n\n// for example,\nimport inArray from 'tui-code-snippet/array/inArray';\nimport customEvents from 'tui-code-snippet/customEvents/customEvents';\n```\n\nThe folder structure can be found [here](https://github.com/nhn/tui.code-snippet/tree/master).\n\n### Bundle\n\nSince v2.0, it does not provide bundle files. If you need a bundle file, you should make it yourself using the command `npm run bundle`.\n\n```sh\n$ git clone https://github.com/nhn/tui.code-snippet.git\n$ cd tui.code-snippet\n$ npm install\n$ npm run bundle\n```\n\nAfter executing `npm run bundle`, the uncompressed(`tui-code-snippet.js`) and minified(`tui-code-snippet.min.js`) files are created in the `dist` folder.\n\n```\ntui.code-snippet/\n├─ dist\n│  ├─ tui-code-snippet.js\n│  ├─ tui-code-snippet.min.js\n├─ ...\n```\n\nThe entry file is `index.js`. When you do not modify `index.js`, all methods of tui.code-snippet will be included in the bundle file. To bundle the methods you need, remove other methods in the entry file.\n\n```javascript\n// index.js\n// for example, you need inArray, forEach and isArray methods only.\nrequire('./array/inArray');\nrequire('./collection/forEach');\nrequire('./type/isArray');\n```\n\n\n## 🌏 Browser Support\n\n| <img src=\"https://user-images.githubusercontent.com/1215767/34348387-a2e64588-ea4d-11e7-8267-a43365103afe.png\" alt=\"Chrome\" width=\"16px\" height=\"16px\" /> Chrome | <img src=\"https://user-images.githubusercontent.com/1215767/34348590-250b3ca2-ea4f-11e7-9efb-da953359321f.png\" alt=\"IE\" width=\"16px\" height=\"16px\" /> Internet Explorer | <img src=\"https://user-images.githubusercontent.com/1215767/34348380-93e77ae8-ea4d-11e7-8696-9a989ddbbbf5.png\" alt=\"Edge\" width=\"16px\" height=\"16px\" /> Edge | <img src=\"https://user-images.githubusercontent.com/1215767/34348394-a981f892-ea4d-11e7-9156-d128d58386b9.png\" alt=\"Safari\" width=\"16px\" height=\"16px\" /> Safari | <img src=\"https://user-images.githubusercontent.com/1215767/34348383-9e7ed492-ea4d-11e7-910c-03b39d52f496.png\" alt=\"Firefox\" width=\"16px\" height=\"16px\" /> Firefox |\n| :---------: | :---------: | :---------: | :---------: | :---------: |\n| Yes | 8+ | Yes | Yes | Yes |\n\n\n## 🔧 Pull Request Steps\n\nTOAST UI products are open source, so you can create a pull request(PR) after you fix issues.\nRun npm scripts and develop yourself with the following process.\n\n### Setup\n\nFork `master` branch into your personal repository.\nClone it to local computer. Install node modules.\nBefore starting development, you should check to have any errors.\n\n``` sh\n$ git clone https://github.com/{your-personal-repo}/tui.code-snippet.git\n$ cd tui.code-snippet\n$ npm install\n$ npm run test\n```\n\n### Develop\n\nLet's start development!\nDon't miss adding test cases and then make green rights.\n\n#### Running test\n\n``` sh\n$ npm run test\n```\n\n### Pull Request\n\nBefore PR, check to test lastly and then check any errors.\nIf it has no error, commit and then push it!\n\nFor more information on PR's step, please see links of Contributing section.\n\n\n## 💬 Contributing\n* [Code of Conduct](https://github.com/nhn/tui.code-snippet/blob/master/CODE_OF_CONDUCT.md)\n* [Contributing guideline](https://github.com/nhn/tui.code-snippet/blob/master/CONTRIBUTING.md)\n* [Issue guideline](https://github.com/nhn/tui.code-snippet/blob/master/docs/ISSUE_TEMPLATE.md)\n* [Commit convention](https://github.com/nhn/tui.code-snippet/blob/master/docs/COMMIT_MESSAGE_CONVENTION.md)\n\n\n## 🍞 TOAST UI Family\n\n* [TOAST UI Editor](https://github.com/nhn/tui.editor)\n* [TOAST UI Calendar](https://github.com/nhn/tui.calendar)\n* [TOAST UI Chart](https://github.com/nhn/tui.chart)\n* [TOAST UI Image-Editor](https://github.com/nhn/tui.image-editor)\n* [TOAST UI Grid](https://github.com/nhn/tui.grid)\n* [TOAST UI Components](https://github.com/nhn)\n\n\n## 📜 License\nThis software is licensed under the [MIT License](https://github.com/nhn/tui.code-snippet/blob/master/LICENSE) © [NHN](https://github.com/nhn).","versions":{"1.0.6":{"name":"tui-code-snippet","version":"1.0.6","description":"useful code snippets from frontend development team","main":"code-snippet.js","scripts":{"doc":"jsdoc -c conf.json"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"author":{"name":"FE"},"license":"MIT","devDependencies":{"fedoc-template":"git+http://14bfd38a036366f7ca90355d202038126127bd01:x-oauth-basic@github.nhnent.com/fe/share-fedoc-template.git#snippet","grunt":"^0.4.5","grunt-contrib-concat":"^0.5.0","grunt-contrib-uglify":"^0.6.0","jasmine-ajax":"^2.0.1","jasmine-core":"^2.2.0","jasmine-jquery":"^2.0.5","jquery":"1.8.3","jsdoc":"git+https://github.com/jsdoc3/jsdoc.git","karma":"^0.12.31","karma-chrome-launcher":"^0.1.5","karma-coverage":"^0.2.6","karma-jasmine":"^0.3.5","karma-junit-reporter":"^0.2.2","karma-mocha-reporter":"^1.0.2","karma-phantomjs-launcher":"^0.2.0","karma-webdriver-launcher":"git+https://github.com/everedifice/karma-webdriver-launcher.git","phantomjs":"^1.9.17","body-parser":"^1.14.1","express":"^4.13.3","serve-static":"^1.10.0"},"gitHead":"3d13e73449a372b7d5ce511e1a86e1f0e1254289","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.0.6","_shasum":"0b6942ca0360207672b57e1c8dcb82f4e4d05995","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"shasum":"0b6942ca0360207672b57e1c8dcb82f4e4d05995","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.0.6.tgz","integrity":"sha512-6hv1yMjsv2jO55Uk7aBPNQZmh86nimq1Qb/Yxc0xRr4JCimH7XAdRBA01lM6/eX/A/TbocuygNoRmJJHqbtshA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4jZnRBAThcN6RMdE5MCEN+KAnFHyztbglfIgUoyFOIQIhAPRWHCFTSWhVH0dyNpXHJymqx/RKkbUZCkzRH9JaR2JU"}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"directories":{}},"1.2.2":{"name":"tui-code-snippet","version":"1.2.2","description":"useful code snippets from frontend development team","main":"code-snippet.js","scripts":{"doc":"jsdoc -c conf.json"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"author":{"name":"FE"},"license":"MIT","devDependencies":{"fedoc-template":"git+https://14bfd38a036366f7ca90355d202038126127bd01:x-oauth-basic@github.nhnent.com/fe/share-fedoc-template.git#snippet","grunt":"^0.4.5","grunt-contrib-concat":"^0.5.0","grunt-contrib-uglify":"^0.6.0","jasmine-ajax":"latest","jasmine-core":"latest","jasmine-jquery":"latest","jsdoc":"git+https://github.com/jsdoc3/jsdoc.git","karma":"0.13.22","karma-chrome-launcher":"latest","karma-coverage":"latest","karma-jasmine":"0.3.8","karma-junit-reporter":"latest","karma-mocha-reporter":"latest","karma-phantomjs-launcher":"latest","karma-webdriver-launcher":"git+https://github.com/everedifice/karma-webdriver-launcher.git","phantomjs-prebuilt":"latest"},"gitHead":"54c2c7f2087acfd1b83ec67c35cc333815b699b2","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.2.2","_shasum":"1961a0f6b6e5cc6005a1cedf7baddfb066c3b337","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.6.0","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"shasum":"1961a0f6b6e5cc6005a1cedf7baddfb066c3b337","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.2.2.tgz","integrity":"sha512-JrhG4lySKqOctPmQOIvDV3ggq8fp/hfrxqXUveKhVZ0x6ZSpx/5MBL2LK2IKKYu3Vs2v33rVVcKKLurTDHU/kA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDdP79abG6eavpss7ulO6M+qkTJPOL0y/F8gw0cSCRgMAiBpVkHWSnOrZK+mvatXBeA9jgb/OXAFSHEjyUaiZ2Yr9w=="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/tui-code-snippet-1.2.2.tgz_1486352900754_0.37114362558349967"},"directories":{}},"1.2.5":{"name":"tui-code-snippet","version":"1.2.5","description":"useful code snippets from frontend development team","main":"./dist/tui-code-snippet.js","scripts":{"test":"karma start","test:ne":"SERVER=ne karma start","cpy-dist2doc":"mkdir -p doc/dist && cp -f dist/tui-code-snippet.js doc/dist","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc","bundle":"webpack && webpack -p","dev":"webpack --watch"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"author":{"name":"FE Development Lab"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-loader":"^1.8.0","jquery":"^1.8.0","jasmine-ajax":"latest","jasmine-core":"latest","jasmine-jquery":"latest","jsdoc":"git+https://github.com/jsdoc3/jsdoc.git","karma":"1.3.0","karma-chrome-launcher":"latest","karma-coverage":"latest","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"latest","karma-mocha-reporter":"latest","karma-phantomjs-launcher":"latest","karma-safari-launcher":"^1.0.0","karma-webdriver-launcher":"git+https://github.com/everedifice/karma-webdriver-launcher.git","karma-webpack":"^2.0.3","phantomjs-prebuilt":"latest","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"695d5cbf83cb9a6b95ab2fa436a512befdced073","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.2.5","_npmVersion":"5.1.0","_nodeVersion":"8.0.0","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"integrity":"sha512-QnDL8t3ltXPhc1v7FQj9DrzGIiw+MKgNBpd4Q9DZnqmAnFUEko3ZigheP7moU+7/v/EeASGj+tCOy2Ru4CUR3g==","shasum":"564c6ed1168286c5591e724e58c07b5621a6f5d9","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.2.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFHpSax8rgZLLJl4xyyT72fMEaj+4naPpAvOSduRyrmSAiEAw3D0un/8m0LS8pjdoKxr0PdSszVXgV/YgBr3m/s0amY="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet-1.2.5.tgz_1499929442024_0.6414210454095155"},"directories":{}},"1.2.8":{"name":"tui-code-snippet","version":"1.2.8","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack && webpack -p","cpy-dist2doc":"mkdir -p doc/dist && cp -f -r dist doc","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"keywords":["nhnent","tui","utility","code-snippet"],"author":{"name":"NHNEnt FE Development Lab","email":"dl_javascript@nhnent.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","jquery":"^1.8.0","jsdoc":"^3.5.4","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhnent/karma-webdriver-launcher.git#v1.1.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"de1b33dbb5a243c8ebda1d7b9de80c6db6091b7e","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.2.8","_npmVersion":"5.1.0","_nodeVersion":"8.0.0","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"integrity":"sha512-+22cUX9saeF4tNFlia61HQnQlLKwov9X+cOqaHT7rQNjTuFMAGpzQUBrcgH2SMRYNbZE6Pi/+n9ozHUznEe5Hg==","shasum":"9ace7be4108a232f93ab287d9f610fe9ae7fe19c","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.2.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+WULka3yLKzE2g7K1WHyK3iDQXTnlbwypsum6UymulwIhAJ9Q048HSBWTZP8ijO6LoCPoS2XoekmjEYTO2ENAh89o"}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet-1.2.8.tgz_1503915109340_0.46656194259412587"},"directories":{}},"1.2.9":{"name":"tui-code-snippet","version":"1.2.9","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack --production","cpy-dist2doc":"mkdir -p doc/dist && cp -f -r dist doc","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"keywords":["nhnent","tui","utility","code-snippet"],"author":{"name":"NHNEnt FE Development Lab","email":"dl_javascript@nhnent.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","jquery":"^1.8.0","jsdoc":"^3.5.4","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhnent/karma-webdriver-launcher.git#v1.1.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"a325b8740ea54dabf0712bd9fc3f864f32fe909e","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.2.9","_npmVersion":"5.5.1","_nodeVersion":"6.10.0","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"integrity":"sha512-hCNeB81R3dlnbojYhcfu3Z8binnarFanbJiS3hFkORt5FiEqHfQ1YL82xyQLby5IUaykZJAdCY7l+6hJxwfVSw==","shasum":"5178f477f19e0fc09266133f461a16e14fa21114","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.2.9.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDpdbjVP7Haeg9y8pNlbCsp0Ckrl03drDrvEO45Hb/vFAiEAnQOc04Mxna3Rm571a8TA/3QWVfqLD5ToDIFy+z8XFgE="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet-1.2.9.tgz_1510623935953_0.1310051097534597"},"directories":{}},"1.3.0":{"name":"tui-code-snippet","version":"1.3.0","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack --production","cpy-dist2doc":"mkdir -p doc/dist && cp -f -r dist doc","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"keywords":["nhnent","tui","utility","code-snippet"],"author":{"name":"NHNEnt FE Development Lab","email":"dl_javascript@nhnent.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","jquery":"^1.8.0","jsdoc":"^3.5.4","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhnent/karma-webdriver-launcher.git#v1.1.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"d45c5e45ef78c8c23d2becb2671657e73d01e733","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.3.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.3","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"integrity":"sha512-OJUibhjdfq6jsav8ss6bg3qB8Mi7ugXprXZBOSAaNLy8GRUD3tt9TP9tF154419CCfo2tIIYl9KEJqznJg4+rA==","shasum":"a490822354a2e181a901a786990b21dab21152f9","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.3.0.tgz","fileCount":56,"unpackedSize":385948,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICUDObnre2zBvyAvlMd2UPe5ELuktlEUHH3KZSi0Q36DAiAkhYUyzAnFkNLm+KRhnvqRJbfp8J+GlZkKE6wbUoG4jw=="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_1.3.0_1522223374619_0.8231518707038978"},"_hasShrinkwrap":false},"1.4.0":{"name":"tui-code-snippet","version":"1.4.0","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack --production","cpy-dist2doc":"mkdir -p doc/dist && cp -f -r dist doc","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"keywords":["nhnent","tui","utility","code-snippet"],"author":{"name":"NHNEnt FE Development Lab","email":"dl_javascript@nhnent.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","jquery":"^1.8.0","jsdoc":"^3.5.4","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhnent/karma-webdriver-launcher.git#v1.1.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"a0374aeb35bbb4c484dca9bad57f11ede9b71e96","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.4.0","_npmVersion":"5.8.0","_nodeVersion":"8.9.4","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"integrity":"sha512-a7XzHRbRDi6Tt4lGcopq6ctQjVrzmnw9JMoTFqur5gczgtw5tmgUqXHjg8D9IonDkzZNq5gYLhkzykx4fmn+GA==","shasum":"b09bb8e621e382af23024363d5763f9be44412b4","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.4.0.tgz","fileCount":56,"unpackedSize":389168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4twNCRA9TVsSAnZWagAAJdcP/Ai/btVs1ygTD7BHhbDO\noB8O/1gy6uEWFSvOqyD+4ZooY46OzbNqeHpISWQpR4wZEnOIzw1emSOiLbdZ\nHMDfRWalB6tUdB5JaMMqK3GY8JmdlthLsB7VESxCLrJEmJ7PvHqRvjbLtTT5\nTzzLh30ySZfSjddDEk+HUG6H+di67wnSxFMAMsr81P5kejVLTb/8lJ4vU0hl\nATjmTSR903mSk0Mv29EH4IntKRge8ilQQY9FQaL/I8Bp9Y19Er3eIpaRFlC0\n3TRaHH92FMrTeolneD17fxk/XKDlGKrh13Ee6vk6FJPJ1OuvYZjZekGUcRzm\nI301NNe3RFK7f2RDGquJZuCAeZnEDGIraxAer0Q11RDPOu6wVwAE+Ozqwt1q\nmYWm6bkmSyfQoWGySmvFAWNh59t9/JY4eczy9VFmh5NH9iw3Ermma5hEXGP7\nh9b3mQnKqlsnSyr2j+XRxD6Tro0x5aP+DXqcS2pKnQSDTHDnk2vokMpT+nXV\nDTIMwqnZVfTgWEXAkjsGMNXhxx/ZbvdV1LeqHalUw0oNMyNBw8I9Pz3j5TSe\nwJNQY0GOOTJKLyL23KK8pEH433lXtvn+nNA9N/FyQt15KkvryztgJzNL8f6s\nSg+FV1h0x4KPR1yQEo6LMDxrglviO82S5DD/JGMkDjQVXkF/cMetouKg+T5X\nqqwm\r\n=S5Sh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICF4BcevalwKzwOkjTjuJPpdtcDUItTWmq1bNSKZ8QLkAiAzM8foVodMf1vU17X+Cy26MfTqS9bu3JCvWG20sszOXQ=="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_1.4.0_1524816908171_0.81480127049141"},"_hasShrinkwrap":false},"1.5.0":{"name":"tui-code-snippet","version":"1.5.0","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack --production","cpy-dist2doc":"mkdir -p doc/dist && cp -f -r dist doc","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"keywords":["nhnent","tui","utility","code-snippet"],"author":{"name":"NHNEnt FE Development Lab","email":"dl_javascript@nhnent.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","jquery":"^1.8.0","jsdoc":"^3.5.4","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhnent/karma-webdriver-launcher.git#v1.1.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"d5aae8979cabb0cd10d29ddb4273d2312d1a227d","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.5.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"dist":{"integrity":"sha512-grVv/lrHDXp9sRWypmMe76fHDlpdSfVYLiVmy8f765mWEBk+2JtiKgH+ACuipNtPZbUAy2pYgIWRQfDcg0zdCw==","shasum":"91c076ae84e3d619c783bb91d72ca462b06303c2","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.5.0.tgz","fileCount":56,"unpackedSize":392168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcB3yvCRA9TVsSAnZWagAAeXQQAIVwvY6M3uwZXz/Z0vWy\naRg/9a/nmDVEIdNLhuKDh4rcObO5dMNtDoX0TRpIzGBrORPkZ/gbvRSWtx7Z\nlApIrFYlPkYEkGrSd3dXz8hF6HxYjqjcNjQ82CyiytP+hMMo8M4Ae9E4Wvca\nqUbq88e2BGhuprhpK1ouRAZjWS5EgtPuXVp64QQ1UtKMaqa629JndS273SCg\nAvfKDqkSdkSVJX+4/6MSmPlMe0FIvyCoxa+8gITU3XTZwsF3e4iaUr1AO9V6\nnPOySKqAj6mrJ2fEPPEriszfq9o7zcbQU10LSXdaiSAZikClejAOGxg7EuVk\nGhctscR+z2vaiguhDvxIF9TOitmKnrnCfXaWOfXepffqCeR4zrPrdl5gUT5v\nUEe/lCMXETPLNbVFgAtWUkmETjBgCg6me4dn/jgfkZ1TbemKgeFrp9ymYsBV\nQekMW4xc9j4DT9gd8XKrx4bwRefi8CwkkITGrQcinvPPL7XYWe4yYFneMBL0\nue+9R17mf6pshgKT3N5wo3OwzJopS8BkRWxzOm1Q+4B5BXPNAXp2ORwUsLPk\n84XpMfAR4PbWZJpNszJbK5moV0mO4cjmJs8PQ7zHKQvfU9WBPRppTitZFpAB\nV2Q59Gh6khaPpgjO2FlIhyQqsWgGSaN4KY1BLkeBhQCWuJD2zqMO63Z/BrxL\ndtDZ\r\n=uTHR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMY12f2dPzKI8NoM76m3gMHzRf4Rdu9C+/0x4kNVurBwIhAJOpRz+RzKcZDErwweDBBXVf+xqLOavmgVuv2idfOjOt"}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_1.5.0_1543994542708_0.2953060153385252"},"_hasShrinkwrap":false},"1.5.1":{"name":"tui-code-snippet","version":"1.5.1","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack --production","cpy-dist2doc":"mkdir -p doc/dist && cp -f -r dist doc","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc"},"repository":{"type":"git","url":"git+https://github.com/nhnent/tui.code-snippet.git"},"keywords":["nhn","nhnent","tui","utility","code-snippet","nhn"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","jquery":"^1.8.0","jsdoc":"^3.5.4","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhnent/karma-webdriver-launcher.git#v1.1.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"60e3d67d5147164a7aae2d59edf1ac133fe17731","bugs":{"url":"https://github.com/nhnent/tui.code-snippet/issues"},"homepage":"https://github.com/nhnent/tui.code-snippet#readme","_id":"tui-code-snippet@1.5.1","_nodeVersion":"11.9.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-a3udDRNFAJBKz7B/004ew4uyokObOrKpR8o0eq/33qap4i0xCah6SQ3eHDatZ+kdezJxSGEjW0FwewfX0d6PrQ==","shasum":"0f6512979024a959a59404afa6ff28416421e4dd","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.5.1.tgz","fileCount":56,"unpackedSize":392011,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrEbPCRA9TVsSAnZWagAAC5EP/iCDgl+6c4RmG6egbYjK\nZ39nkcy1XMtfwt0fxJyKW8tk1MZEYKVAyQtsznV+7cATCdQpXWJQv2xmSTNO\nA5LAJUKtN8yudjjlV0kUxd59mEFFkHC4zQdB3tIyZewguxG2uczFKNdnZc2W\ntIUd7Y7PyW/byA4U/IdzVsgyMSDqyZ2Okv3cH/qi499wNXv0t1A2E7UHoI2Z\nptbkHb9p55BSjzHJ1epufZLqwionXlsCxMoVgJPjVuiV+YUJHAr47YlsGSne\nhNDDFh47Y88kgZnyvUVWqHaO7AyKlxJNDI+CMLfTJqQrg5OlF8kOPfmBXL2q\n6iG28mj00omb8RuWWMTRvayB6TMpEEgEEgyumRMhQmfSJGqjMUFo/0caaJGG\nM8cL+8GNHuFrUiisu9fTXiBv0zvORQIXReA9tXHoomHcOlWxa2w5BHYLvTg8\nWQj4SJbNha2pQqvkM0WdIVozefU/ARIGY4t+ZC/0sZ+zkIt1ztr/nO2eygW5\nwoMFnjByngrzE1wMZSKD2h0o5ciIjroIqHAL07e22+xBl6tRO+adjYoCVmJc\nj57RdFWGhlxXu42DN8tlYu60Vg048tDdkXpvifeUzw5gW3JXwraGPhbqL/Nw\nxIt5R0to7kLzB8MdDK/BLhTturD+cl6ciDcWiY8ADlpVh6yCf3znP8qGEUTz\nIWnC\r\n=lNjz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCoR8p6nY6kZEFKGW1riO7Jqb3giSIIuz9X0XsekM6AlgIhAPTGH7Uddtqj39il1ZLk+ie4tsvQ2z2qH1GtXsGwi0OG"}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhnent.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_1.5.1_1554794190805_0.06779726778811446"},"_hasShrinkwrap":false},"1.5.2":{"name":"tui-code-snippet","version":"1.5.2","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack --production","cpy-dist2doc":"mkdir -p doc/dist && cp -f -r dist doc","doc":"jsdoc -c jsdoc.conf.json && npm run cpy-dist2doc"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","jquery":"^1.8.0","jsdoc":"^3.5.4","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhn/karma-webdriver-launcher.git#v1.1.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","tui-jsdoc-template":"^1.0.4","webpack":"^1.1.0"},"gitHead":"2a459f7c94b98fffc107b73b97e6b752ceaa1c80","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@1.5.2","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-6UqTlQaaC1KLcmC0HAoq5dtl1G4Fib+R+NC7pmaV7kiIlZ7JqKhUmnOoGRcreAyzd81UTK/vCvhrw9QJskpCFQ==","shasum":"f4b8f0f1ac996b0b5b621f77c9507af19a0de238","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-1.5.2.tgz","fileCount":56,"unpackedSize":392671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOWUkCRA9TVsSAnZWagAACZkP/jUdKFsuCer6MFqaK4uB\naN2mnxTJyvRmiB/cxr93COqEKjJo4yCWv6oX9Jmk/gSdmKsilgx7PktwMhRz\nZUoOCsUfSJ+Ns3rVcV5sSmDNXtmiorhNADDS4zdm7uEcWJR5IlQXAepEM4pi\n391flhy6u/ogMclPfL7TryZgttmQFraI/mdT3QdxchrJAN567z4IcKJVJ6sb\n7ZdfC7c3iU9kwkzsYcUHiFuHZU96ZFPPwj22lQ8v3zEke80fX2V/HICJThDg\nto0M5eqgjEW/kcwVk7nJwjx01+Z6jUMcXibZ5DK0uz66+JfbMwLR1KXmKtfM\nupK8pIMvSe2PTp8P77tZ/FUIGY6Wwf1LJQviMHtbxPH8gB/Ite56s7iWuqzX\ndVZdbCln6LLtlgDWhePCGVRVBiqOvFUeiwDhPgN8Mir3rhJTws12y1VHTAww\n3lcJChXo1D1MwUWWnehVt5KCX3GGTOKvURl+MhFX1vvv32uT4poZkcTCLZqW\ndUdtiq5WIDkRtZjL6Xp2V8Rq/JReZ3qCUWRjMwNu4T2e+OUD2oNNPLjj0kNp\nR91j7A28KpTDavej1fA4+f1ps11FoIt+cFIyWrVS0Py7OdXlJYR9nZlI3I6z\nDH9Yk1uGvyPZuCYYZqSdIExlK02n9ksS6HruSVHCojEgNewQO0ppNs7EAM0a\nkLcz\r\n=VXNU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEIzxTU5CwDnfgduVDjg8K97kLw/ehVstSJbq6VZVBBDAiEAwd+YI7ssw2NGxVKdz2qRhRSBarBtt0KlNMMuhs79mwA="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_1.5.2_1564042532154_0.9117774788731992"},"_hasShrinkwrap":false},"2.0.0":{"name":"tui-code-snippet","version":"2.0.0","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack --production","doc:serve":"tuidoc --serv","doc":"tuidoc"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"eslint":"^4.1.1","eslint-config-tui":"^1.0.1","eslint-loader":"^1.8.0","istanbul-instrumenter-loader":"^2.0.0","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-fixture":"^0.2.6","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhn/karma-webdriver-launcher.git#v1.2.0","karma-webpack":"^2.0.3","safe-umd-webpack-plugin":"0.0.2","webpack":"^1.1.0"},"gitHead":"47bccf71a370e64895db9e7cc72c16a85b550a95","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@2.0.0","_nodeVersion":"10.15.3","_npmVersion":"6.11.2","dist":{"integrity":"sha512-o/QBdTm7FtERnbcemXL7zTupX3bxLPt92fNWCdM+IPu059K5koUTEeme9m3yEgGoeOEMXpUz1EpmqAn0jFB5vA==","shasum":"866dff9fa650158fdb1dc540e4ca8a1c5bf8b5b7","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-2.0.0.tgz","fileCount":74,"unpackedSize":95655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdb4K/CRA9TVsSAnZWagAAGKsQAJzQqmrrc2woaSKzcO3E\nZmcrtkxFTW+5hrRGMIRB9byHcpFgFn2czZMdPf7hn4TztY39ish6DSwR5qwX\nlt8p7j3ViWM2B4loZOJOnHezwabJdCzmd+XbCJ8UWZ1/G65PafI2M5rM8BJ8\nGY5C2R9J2jK0+TFgjwHCVXayRy59xYxePgWtESw+hJmn2ijimYcG2j0joq7H\n619h2h/pHW97Jhv3+lbMfkoatasK4KZPPHfTUvHkVi19RJIuRxHLHmDv+uQ0\nS+EwqlApJyI76mPY7Sq6FXpX1lzXvLmVGOFI112xBPG3X0N3s0PQAE2CFbiO\nolu1OZfGYW3mzaJOqu7zuUiTVmIkcsq8sNfM+g18aY1g2wr+6DkO9t7/IQef\nkP/pURqLCaF4Q33760kp2FIl0p9gtPcbbQIJenZU+ccktbD+SyWzpjYQ64VG\nfu9o+CTzP/BJNUzO3c1de8I9veHH7LcFLM8xcBTlaPaERVW8Dh0sdcJ4jA/f\n5W+QZ95fV0jjFy0elBxPNnRc3cR1mNuyupieOqwr5b4wUasbN+wpLOsXzPeU\nHMEjJXGmB1K6/Mji3Sug2pYXzcvrVOtgpZwKKad58Il576wRNlD1HR1NDrs4\nwZMkd97iohgcyQDZNdtDRqwyl/zC9BHThgwD9mTu2TkJeyOOpbX72ZpjXFB/\ndJZa\r\n=v0qT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBRMqFcm++nN8PEI8kcMygQrkpZ7h4PD2L9JUPW2szGIAiEA75U4UOW4n9avhIvYqDKfEaCAOwfn6RSl1nmpvG+eino="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_2.0.0_1567589054350_0.5643872029691492"},"_hasShrinkwrap":false},"2.1.0":{"name":"tui-code-snippet","version":"2.1.0","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"eslint":"eslint \"**/*.js\"","test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack & webpack -p","doc:serve":"tuidoc --serv","doc":"tuidoc","note":"tui-note"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"@toast-ui/release-notes":"^2.0.0","eslint":"^6.7.1","eslint-config-prettier":"^6.7.0","eslint-config-tui":"^3.0.0","eslint-loader":"^3.0.2","eslint-plugin-prettier":"^3.1.1","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-fixture":"^0.2.6","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhn/karma-webdriver-launcher.git#v1.2.0","karma-webpack":"^4.0.2","prettier":"^1.19.1","webpack":"^4.0.0","webpack-cli":"^3.3.10"},"gitHead":"c0c085e698a84a4e997712c1ddd9e75683b0dabe","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@2.1.0","_nodeVersion":"10.15.3","_npmVersion":"6.12.1","dist":{"integrity":"sha512-CkplvTODsvISAYENLPS/JIGjXWUc6xWzQ9owAquXOEHh3Y8ny8+zfXONKDJ0i7uA79JzKaohc8MoiCfhCxyY3g==","shasum":"5133642a37fb02b34da1e00174ef8701a1631d6f","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-2.1.0.tgz","fileCount":77,"unpackedSize":244697,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4M38CRA9TVsSAnZWagAADUIP/RgMwn3AKOghqD/f3Gdd\nxVeC1gtPtNdr9VeJWt+CkH7OOc7VdpZ454AAZrnn57LdByt1UKkg/v2XEecC\nwu3sxZ2H5FZ1UMedOyETclUYi3569c44nafn7s7MprC0VBHlYUmGZbX48XC0\nAb7xBMpDkPKuXlCBKanEKjvGnhy0DKSo8E+qSNfn4N//4Q9SmzLIhObAlas6\nk95ktYA0h4XHgRQF+TEJND5ixaLL2WyPIgczS0q2Uvt7wbRbbo9H7hjfsDVX\nv0NDVzUJb/wZgYt44HSZko1h1/eelxDprlTjW6InsAijAKFVxbsMoMl9UrHo\nxnMfYbXmaSl7eO/WQSMEOEEbro3bNSBgGgizTU2bLlLf7uay73QN5DZaVQQY\nnRP7QAbbe4XXrn9iJHwXVlHybSzy8XJ4PR8nMfXmSvDXoH/C94Gn9q7j5jp+\n0c+841Z/5WDPfeg9TLKqJAOJLyY7qv+MFfdYW/LWJonsv1qBtH4H3q6Pll6q\nWgudE6/YrqCYpY9GhQXIt1UASyXetOToaRwfJTQ3a8COjfUKWyY83574EBHX\nzIS/ZCK8hil0HXDaaG+2+3xEHkkslU9dq+GVH6ZnuMrW+uIkBOLFpyFXCudz\nz3JYPIr8iSoucZmVtpNFnWSRkJAZx8C5N786KhOL09vbs9cs64kNBSa2R3v2\nsun5\r\n=bE0j\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYUVZWNf3BLZgMqlmshInkRpNYPWJLSWoqFjO0o3azmwIhAONgypJb2kOMLATaQ7A89CWb2N9JyENfbQCsLwnWf8ox"}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_2.1.0_1575013884370_0.38631893945925544"},"_hasShrinkwrap":false},"2.2.0":{"name":"tui-code-snippet","version":"2.2.0","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"eslint":"eslint \"**/*.js\"","test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack --mode=production & webpack --mode=production --minify","doc:serve":"tuidoc --serv","doc":"tuidoc","note":"tui-note"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"@toast-ui/release-notes":"^2.0.1","eslint":"^6.7.1","eslint-config-prettier":"^6.7.0","eslint-config-tui":"^3.0.0","eslint-loader":"^3.0.2","eslint-plugin-prettier":"^3.1.1","jasmine-ajax":"^3.3.1","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-fixture":"^0.2.6","karma-jasmine":"1.0.2","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhn/karma-webdriver-launcher.git#v1.2.0","karma-webpack":"^4.0.2","prettier":"^1.19.1","webpack":"^4.0.0","webpack-cli":"^3.3.10"},"gitHead":"dc3f74150848389a895fc302efc1732a0b2ef319","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@2.2.0","_nodeVersion":"10.15.3","_npmVersion":"6.13.1","dist":{"integrity":"sha512-d2xS3f5m9CqOXI8R5anwr0kRQai4nVJ96pVNz0AEDZ0FCsi++45EXEBOZxhYbO2deOAXfkGO6HRlXKOy9ByFlw==","shasum":"969af71a9e79c60d13d234604460b073bd75b06e","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-2.2.0.tgz","fileCount":77,"unpackedSize":220584,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+t5CCRA9TVsSAnZWagAAdVQQAIeba6vsImI2bDG8WrRR\nTeI0u7ipwknxt3ineLnaGikiNWS9pm+2d9/dL4dzT9keI3YwVlgAQ+ZNY2pT\nfh1BOM8ydX6tHGHbr/+gJnfTRDOXxHPrHYbLbcEG/+nYEsZ5CdOrhrjsvg5p\nr7+r9ys16otOhjpe5+52nLkmurBb4UTAuU3hLniHLvQUAlKU2pMwPEy1E/4+\ntUo1Io2iyJs65h6TFm8J2o018EAIWvQVJ/anDdxgQJb2WbZBcR04WkzKuWZh\n8faI+X7ZdPtma1Zdb8fadB16DtIFOTrumqV+DKU9VQoVqLxvZSg3SG0slfeg\nH5gctWMFxOisjmyXPePsDjLLuLWfMJ0/9ELZPT2s9Ove3C6r+fnmcHaeGuyL\nC/OMfMycQjzX39fXHOnmura0JAsjie/vV8RwyjMMZhc7FY8qT1frq9kOBv+X\nyfvcvVQv8CHopd2VtoxGRLA+Uh7gQSxbIklqe7NfsqNiiNb3ZvJ4aWHoMg8K\n0pw9A3DyXrBxWd5ztBcQd9dAKn5s2c68IZHzbdDwcmvDX0m0uSXVzAylxWzq\nvBxyHkuCKV3rLwEgrrFnUj0BjDIMMXpKI0iFfVJ98CuFSzhYjDCErPI26MgR\nF6kmuNIyOPwaxkLP1zKOfsNhxEQ9UOW7qJoQUbD96B9vvNcAUY+lrAOOoWad\nNPLf\r\n=kjzf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmqYQssgBRcHLhMmp9Wq1P5BOIegeMGZivBJuBb78AxAIhAKmczafgFS5jV6t5Po+KOXqnmuxy46YtgS9G2nuzrImm"}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_2.2.0_1576721986095_0.43623122027622174"},"_hasShrinkwrap":false},"2.3.0":{"name":"tui-code-snippet","version":"2.3.0","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"eslint":"eslint \"**/*.js\"","test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack --mode=production & webpack --mode=production --minify","transpile":"babel --plugins babel-plugin-add-module-exports ajax/index.mjs --out-file ajax/index.js && babel --plugins @babel/plugin-transform-member-expression-literals ajax/index.js --out-file ajax/index.js","doc:serve":"tuidoc --serv","doc":"tuidoc","note":"tui-note"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"@babel/cli":"^7.8.3","@babel/core":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3","@babel/preset-env":"^7.8.3","@toast-ui/release-notes":"^2.0.1","babel-plugin-add-module-exports":"^1.0.2","eslint":"^6.7.1","eslint-config-prettier":"^6.7.0","eslint-config-tui":"^3.0.0","eslint-loader":"^3.0.2","eslint-plugin-prettier":"^3.1.2","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-fixture":"^0.2.6","karma-jasmine":"1.0.2","karma-jasmine-ajax":"^0.1.13","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhn/karma-webdriver-launcher.git#v1.2.0","karma-webpack":"^4.0.2","prettier":"^1.19.1","webpack":"^4.0.0","webpack-cli":"^3.3.10"},"gitHead":"b04e5147dc5ff3851a332628e6f06f4341b17467","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@2.3.0","_nodeVersion":"10.18.1","_npmVersion":"6.13.6","dist":{"integrity":"sha512-0VjCuVB7N6kA6AVHVYCHupm5hksdzQqdcGhWdFZc9VfOaVmiF8MCVmbT9gV+q3nDxS9X377/bWmTdXrJ9ECKeQ==","shasum":"f5a81dd0aea8fd110340b96fde1ad1efc3ee540f","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-2.3.0.tgz","fileCount":80,"unpackedSize":268591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeL8/XCRA9TVsSAnZWagAAfGAP/0Q8SyLgli6f9Y3uM3Qy\nQQtcq0K1fK4UjWW4e6DjGyH1M7qbPrI3bDS6lln5Gy1BnWtogfQDp6SNwyGW\nNsu4L+gmnDin086X8rYquTBMbAs+8jhfPFQkkaUdutHgsCZWKHZh+QRSlp5B\n7HXqdpNdXeyePvpbRyOWRu+W+mrC/koJgFQVfzdjlIg4afh31yBsMCg94pr4\n9Q/jjidRVZFS3v2ICuxx+jw8cNV/C1ikp0LhmFXRkuZBudIcoqrd3utTjU7P\nUuFVUIS7L4AB/s6wYgXK9Olx6nRyxShIQlXHgGylaAhIX5+fVKKxtBeIDAh8\nATNLRuSzU2F9/JhhHEEDZSrZqF/suD6COu+zXFZFeWOpzGIqesJtqSx3l0Jb\nGdH6xdT6iWIxTd2u60TDCHTNyFG1E3RcbYNSDFEQ8P3y6keYEyouXQUcFgnd\nx8VRYkPK9eyXkeojsWOxCpsRms30T4hBCxWxdm8PcF5EDJMWfi0fC91sTKtY\n3lN/vzNGyNwb9MjsYL0/gUROEHoxnDgCw1AFuLvB+/kZkOkII5UnimW8COj5\nd+1G65nvoy9ebluwnDtDKVJMZZVC4m1Sd9cbIcVM+apEcaxVO0C6zoE03pz/\npSmTLHz6tKarc8xKrfUcn2Q1tNb5K2iRVZAf9kFJWA25zm/vzStP5K6D39Y/\nrjDU\r\n=1ZXL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSje5sf0NTgZg2k8069P03aerAZ+MmGOax1IMVefOd/gIhAN5Kwl3Fosy3VDlLY96h3LDFsVTuoz5uqIRPOrLW3HU3"}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_2.3.0_1580191703017_0.6190334240829127"},"_hasShrinkwrap":false},"2.3.1":{"name":"tui-code-snippet","version":"2.3.1","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"eslint":"eslint \"**/*.js\"","test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack --mode=production & webpack --mode=production --minify","transpile":"babel --plugins babel-plugin-add-module-exports ajax/index.mjs --out-file ajax/index.js && babel --plugins @babel/plugin-transform-member-expression-literals ajax/index.js --out-file ajax/index.js","doc:serve":"tuidoc --serv","doc":"tuidoc","note":"tui-note"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"@babel/cli":"^7.8.3","@babel/core":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3","@babel/preset-env":"^7.8.3","@toast-ui/release-notes":"^2.0.1","babel-plugin-add-module-exports":"^1.0.2","eslint":"^6.7.1","eslint-config-prettier":"^6.7.0","eslint-config-tui":"^3.0.0","eslint-loader":"^3.0.2","eslint-plugin-prettier":"^3.1.2","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-fixture":"^0.2.6","karma-jasmine":"1.0.2","karma-jasmine-ajax":"^0.1.13","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhn/karma-webdriver-launcher.git#v1.2.0","karma-webpack":"^4.0.2","prettier":"^1.19.1","webpack":"^4.0.0","webpack-cli":"^3.3.10"},"gitHead":"be5fa8aa36d615be453a4e6c5be5737ceb86fcf1","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@2.3.1","_nodeVersion":"10.18.1","_npmVersion":"6.13.6","dist":{"integrity":"sha512-HopmhYTLLHAF0aUnGN+ICQzX0j6T2dXhLeW+oupH58MktsWes19vW5BbUgFjONsq2gDT8+B1lOKdRliRAqnKXg==","shasum":"d11d9838c90a2e14decb10deba595758731c66de","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-2.3.1.tgz","fileCount":80,"unpackedSize":268685,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMUEqCRA9TVsSAnZWagAAcSEQAJjEViL28cPFI1ljgqAO\nTKJV3EdjCMhvYbbO8dZCjiTwDBxB9Rz1NiucwLoSvUZYa3yHh1t5EoWpU2aI\nmSx2L8jYiTY8yEAyj8SxuMNqaod8K45h3gVOCoFGl6+wfWdLmqztJ5zYeZ4c\nSHiG3Tt7sD4EfEIxhvQ/E26UZmGVRNPTrdZ+/PpmQ6DMEegWWTjMs6JxDrPr\nPNOieBK1MMkakiVIET/0MGXZfxZMt+t/eNCj4oiWrSRBJwvjsifqq4IIXYVm\n6GeQMcbaKZu4Q1u8SymbLXRD3412wWbwAt3JfwSkMvnsOo7YjyRUv/sjcYdv\nym7JU+bzcgTI4SSprC81yVyCuv2yL9ydGfpRxWwMsyF9SQfSZ52jNVnFKutv\nM+fL1ZsTXW36uCHwSVv2zxowRk4WtD+af15q6Dqjjpa/SI2shSEErAqsMm7s\nBL/c/dnAm7oawzxBo0Fi8W5nkb1mh26CbWlQ5P9/u2Ml45runai4kh1ykkoz\nLhrfhk4/yIALqolWbe1jwqDLd0eZLz2JoNvm0lfuH1NO+M65skjGp1Qjl1Nu\nrC9SYNtn9xn8J/A/LMZcc0jtOFUAizCWIgZ3n0qtBkC2KaeulG0AFmluAaoc\n1gndq9cv1m9RznstftS9oDJEGt1DR+m39E5dIH+CfV5S3Uc3QpShAcWxK7r8\nZRmN\r\n=M5vl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDWmkg/bb5R78EL93i3nnZvcD8crLhmXDmwhtngPhmuVAiAAi6fSxqCKw7hq8NI1BKwIK3JeHGleGb3JOMzE4VSg8w=="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_2.3.1_1580286250420_0.8681179141861513"},"_hasShrinkwrap":false},"2.3.2":{"name":"tui-code-snippet","version":"2.3.2","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"eslint":"eslint \"**/*.js\"","test":"karma start --no-single-run","test:ne":"KARMA_SERVER=ne karma start","bundle":"webpack --mode=production & webpack --mode=production --minify","transpile":"babel --plugins babel-plugin-add-module-exports ajax/index.mjs --out-file ajax/index.js && babel --plugins @babel/plugin-transform-member-expression-literals ajax/index.js --out-file ajax/index.js","doc:serve":"tuidoc --serv","doc":"tuidoc","note":"tui-note"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"@babel/cli":"^7.8.3","@babel/core":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3","@babel/preset-env":"^7.8.3","@toast-ui/release-notes":"^2.0.1","babel-plugin-add-module-exports":"^1.0.2","eslint":"^6.7.1","eslint-config-prettier":"^6.7.0","eslint-config-tui":"^3.0.0","eslint-loader":"^3.0.2","eslint-plugin-prettier":"^3.1.2","jasmine-core":"^2.7.0","jasmine-jquery":"^2.1.1","karma":"1.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.1","karma-edge-launcher":"^0.4.1","karma-firefox-launcher":"^1.0.1","karma-fixture":"^0.2.6","karma-jasmine":"1.0.2","karma-jasmine-ajax":"^0.1.13","karma-junit-reporter":"^1.2.0","karma-safari-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-webdriver-launcher":"git+https://github.com/nhn/karma-webdriver-launcher.git#v1.2.0","karma-webpack":"^4.0.2","prettier":"^1.19.1","webpack":"^4.0.0","webpack-cli":"^3.3.10"},"gitHead":"69e98584f471a44ab7b4f8a5a2ff6f71d937df1f","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@2.3.2","_nodeVersion":"10.18.1","_npmVersion":"6.13.6","dist":{"integrity":"sha512-6jGbM/m7A2L59lJSripwMVp87awrWgJXezlLV8GuAha3s0k01E4+MndoU5WlXd4dauVRgzHhKguTVslx/jMehw==","shasum":"39eb3ce46ea92043b3244f155797248535880c5d","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-2.3.2.tgz","fileCount":80,"unpackedSize":268789,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeioYMCRA9TVsSAnZWagAAc7sQAIXec08zxueYqWqvbyNR\nKO3wrzLnU+3YhnQlwwx251L8Usg710DPdjLhHnmooovs/gUdI5OjYvhYRfjs\nxeBCarAzcN66DwO50Hmkkc3YXGL+WwID4TiW2UfTuBXP1fwcTjOBzx8GRle9\nS53hSzgNTYVJ5tIQbI499mE9NZuhYHA8u3qvAX+wJfm6jhbDhKJ30yx0aP2Z\nl0RAnwg+Q4dpxacGhauV/GdqaJzpDoGUJB4FaZUY6hfmAG1v9T5y8FSpy2xB\nTUSEIMvmf8G0Ln9t70ifWMDji3/ZO/614K1xbXFSg9PXwXYj0iq3A2+3KIG/\nBzKZlh9sHjV8Z3tYQLQYMyGLNeM2UToiUk7OqceNm4BkLZ+ALWUyI191+C20\nSxysaFOTXh25J1eWOVhlVo9beFi64/03+JSUOF1WZTlo2ZQluazuC3SFWhnY\njB5lDrazn7T1nZ+baoJl7hmsGXDhb0Hvfss1+CEp/sgErcgi3J+8xqYPOEdJ\nyTavg/0vZZzlOvETyUoLyfQmnvOsqQiut2/T8qGfJ1vLE/YQlctycgt7VGHS\n0pNsPgCzdjLs/u9ejbkI1qHQf5ZHaajW5PA/zUvrcavpci61T2opeWBJCqij\nNtvThq4P6/mGdpDlIvGZwMDc8sgop4kHWQwTFpDrAkEFXBBobcdLTCgnrbnS\nsytW\r\n=CrNN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHO/VcsgjUyXGWtf9oFnRdb1Y7UF2U0/1VmcurMI8OLeAiEAwYSji9ahuRDPQfsxWi9WcIFD1FE9JifygEi46Ff6LMU="}]},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhnent.com"}],"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_2.3.2_1586136588157_0.263081683996401"},"_hasShrinkwrap":false},"2.3.3":{"name":"tui-code-snippet","version":"2.3.3","description":"TOAST UI Utility: CodeSnippet","main":"dist/tui-code-snippet.js","scripts":{"eslint":"eslint \"**/*.js\"","test":"jest","bundle":"webpack --mode=production & webpack --mode=production --minify","transpile":"babel --plugins babel-plugin-add-module-exports ajax/index.mjs --out-file ajax/index.js && babel --plugins @babel/plugin-transform-member-expression-literals ajax/index.js --out-file ajax/index.js","doc:serve":"tuidoc --serv","doc":"tuidoc","note":"tui-note"},"repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"keywords":["nhn","tui","utility","code-snippet"],"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"license":"MIT","devDependencies":{"@babel/cli":"^7.8.3","@babel/core":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3","@babel/preset-env":"^7.8.3","@toast-ui/release-notes":"^2.0.1","babel-plugin-add-module-exports":"^1.0.2","eslint":"^6.7.1","eslint-config-prettier":"^6.7.0","eslint-config-tui":"^3.0.0","eslint-loader":"^3.0.2","eslint-plugin-jest":"^24.3.6","eslint-plugin-prettier":"^3.1.2","jest":"^27.0.4","jest-extended":"^0.11.5","prettier":"^1.19.1","webpack":"^4.0.0","webpack-cli":"^3.3.10"},"gitHead":"f494f654c9a4b0ddd681da1f650341567b3c080b","bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"homepage":"https://github.com/nhn/tui.code-snippet#readme","_id":"tui-code-snippet@2.3.3","_nodeVersion":"15.14.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-5NEHTDFKillDNPy6MCgpXDNBTB7SZkHBFOF6vXfCDIFZcBdFYFXTd2xvAVvIeM3UYFRWu27xUf/Kxl5f9+RooQ==","shasum":"87e2e31a6396a1ea1ae0f401fd84833a9bca8535","tarball":"https://registry.npmjs.org/tui-code-snippet/-/tui-code-snippet-2.3.3.tgz","fileCount":79,"unpackedSize":139601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzOcFCRA9TVsSAnZWagAA2OYP/0giFmf+Fs9wqVRDFTBn\nE42o0NpcaTG5DVLrRkkg0YdjU2MqYh4ERYG55REpjbuM4OJe7CnBSfnIcLa7\ns+4g1QaQQGjUfwaphZBEi4c3cj2PqV7yDc6pN4pmJMwETpuLoB6o9SRgid7R\n58PJLgvW2I8pNJKasN1HmcgJ53qCH6UDptRmAwkrmW5TXoZ1wbEq+AdAAnZP\nM3i25/6g1gb5UEFCw/MDAesXuyExAsMXM4E/6MHna3PXfzcD6DahYGU8KbSj\nrIFbSNei9Z/LSwo219AQ3195q8fsiBKKTxtyFcVTm1QEi97ktkZZ2km1mC+N\nm0btRUiAIoXjwGQ1EICDoJIO9xfSMw1O3F5kHvHufsPvHjiEkHdm+eluqE0V\nhI5rwbod4ofya6xYgSKAZDIa2Uxx1Z0rCKLh4DeV35nJpb+s1J5AKZWWZ3FB\n4G5sMW8cPOZeja9AaR7+4DNJzGZ1DJDvopdKFlfx6wxnqRNu+hjf4EPEgFjL\ntQYNrvGaoAYa0ZMbL5oOEO+kYJK8DLK1M+wB7roEuIkstO5Mjx51l05evnyz\nq2e2QUXtLmHxy53Y4/e6qFpj2wfhCsz1kCmJywByRmJJ+ffK0C7pJJY79aUa\nNSNmK4tOtk443XCrr2qd9KyhSMCfM21Hcv5tN6VWEe4eZ5kKqf+x+dWVHkWZ\ngPLQ\r\n=rcgW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFtMa0wYt5yP8RH8KpevbVM0v8/TSsOcSbtGj3xF4fNGAiEAns2OUFJEbIEkksUFxZL0PEtYvPxgQJ+dsbKyyYlC/qw="}]},"_npmUser":{"name":"nhnent","email":"dl_javascript@nhn.com"},"directories":{},"maintainers":[{"name":"nhnent","email":"dl_javascript@nhn.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/tui-code-snippet_2.3.3_1624041221170_0.3180898584528591"},"_hasShrinkwrap":false}},"homepage":"https://github.com/nhn/tui.code-snippet#readme","repository":{"type":"git","url":"git+https://github.com/nhn/tui.code-snippet.git"},"author":{"name":"NHN. FE Development Lab","email":"dl_javascript@nhn.com"},"bugs":{"url":"https://github.com/nhn/tui.code-snippet/issues"},"license":"MIT","readmeFilename":"README.md","keywords":["nhn","tui","utility","code-snippet"]}