{"_id":"ng2-ckeditor","_rev":"55-8b8c305f818f96a0985e5994f9f54e47","name":"ng2-ckeditor","time":{"modified":"2022-08-13T20:28:47.988Z","created":"2016-02-04T12:37:51.576Z","0.0.1":"2016-02-04T12:37:51.576Z","1.0.0":"2016-02-04T20:29:53.462Z","1.0.2":"2016-04-20T20:11:22.164Z","1.0.3":"2016-05-12T11:24:30.735Z","1.0.4":"2016-07-06T22:45:58.934Z","1.0.5":"2016-07-29T16:53:26.985Z","1.0.6":"2016-08-11T15:50:02.058Z","1.0.7":"2016-09-01T13:47:52.241Z","1.1.0":"2016-10-16T20:17:01.567Z","1.1.1":"2016-10-16T20:18:52.444Z","1.1.2":"2016-10-16T20:23:19.382Z","1.1.3":"2016-10-16T20:25:57.485Z","1.1.4":"2016-10-16T20:49:32.773Z","1.1.5":"2016-11-20T19:38:18.178Z","1.1.6":"2017-02-23T17:52:58.128Z","1.1.7":"2017-05-14T15:14:02.308Z","1.1.8":"2017-06-02T16:04:50.633Z","1.1.9":"2017-06-23T08:53:56.103Z","1.1.10":"2017-12-04T19:13:14.347Z","1.1.11":"2017-12-04T19:46:15.366Z","1.1.12":"2017-12-04T20:29:05.648Z","1.1.13":"2017-12-05T19:42:21.538Z","1.1.14":"2018-01-17T08:31:37.331Z","1.2.0":"2018-02-22T22:54:58.091Z","1.2.1":"2018-06-20T16:25:51.127Z","1.2.2":"2018-10-22T12:25:55.193Z","1.2.3":"2019-05-30T09:54:45.687Z","1.2.4":"2019-07-24T21:38:10.459Z","1.2.5":"2019-09-19T08:17:37.417Z","1.2.6":"2019-09-19T15:48:18.345Z","1.2.7":"2020-03-01T20:38:40.252Z","1.2.8":"2020-07-26T22:12:32.814Z","1.2.9":"2020-07-28T12:15:49.080Z","1.3.0":"2020-12-14T22:23:51.893Z","1.3.1":"2020-12-15T17:04:54.507Z","1.3.2":"2021-02-07T17:08:24.417Z","1.3.3":"2021-02-09T13:13:18.397Z","1.3.4":"2021-06-18T09:44:58.804Z","1.3.5":"2022-01-12T14:20:07.049Z","1.3.6":"2022-01-19T20:49:16.903Z","1.3.7":"2022-08-13T20:28:47.924Z"},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"dist-tags":{"latest":"1.3.7"},"description":"Angular CKEditor component","readme":"# Angular - CKEditor component\n\nUse the [CKEditor (4.x)](http://ckeditor.com/) wysiwyg in your Angular application.\n\n[**Demo**](https://stackblitz.com/edit/ng2-ckeditor)\n\n### <a name=\"install\"></a>Installation\n\n* Include CKEditor javascript files in your application :\n\n```\n<script src=\"https://cdn.ckeditor.com/4.19.1/full-all/ckeditor.js\"></script>\n```\n\n* Install ng2-ckeditor\n\n  * JSPM : `jspm install npm:ng2-ckeditor`\n  * NPM : `npm install ng2-ckeditor`\n  * YARN: `yarn add ng2-ckeditor`\n\n* Install @types/ckeditor\n\n  * JSPM : `jspm install npm:@types/ckeditor`\n  * NPM : `npm install --save @types/ckeditor`\n  * YARN : `yarn add @types/ckeditor`\n\n* SystemJS Config :\n\n```javascript\nSystem.config({\n  map: {\n    'ng2-ckeditor': 'npm:ng2-ckeditor',\n  },\n  packages: {\n    'ng2-ckeditor': {\n      main: 'lib/index.js',\n      defaultExtension: 'js',\n    },\n  },\n});\n```\n\n* Please consider usage of the plugin `divarea` of CKEditor (see [Issues](#issues))\n\n### <a name=\"sample\"></a>Sample\n\nInclude `CKEditorModule` in your main module :\n\n```javascript\nimport { CKEditorModule } from 'ng2-ckeditor';\nimport { FormsModule } from '@angular/forms';\n\n@NgModule({\n  // ...\n  imports: [CKEditorModule, FormsModule],\n  // ...\n})\nexport class AppModule {}\n```\n\nThen use it in your component :\n\n```javascript\nimport { Component } from '@angular/core';\n\n@Component({\n  selector: 'sample',\n  template: `\n  <ckeditor\n    [(ngModel)]=\"ckeditorContent\"\n    [config]=\"{uiColor: '#99000'}\"\n    [readonly]=\"false\"\n    (change)=\"onChange($event)\"\n    (editorChange)=\"onEditorChange($event)\" <!-- CKEditor change event -->\n    (ready)=\"onReady($event)\"\n    (focus)=\"onFocus($event)\"\n    (blur)=\"onBlur($event)\"\n    (contentDom)=\"onContentDom($event)\"\n    (fileUploadRequest)=\"onFileUploadRequest($event)\"\n    (fileUploadResponse)=\"onFileUploadResponse($event)\"\n    (paste)=\"onPaste($event)\"\n    (drop)=\"onDrop($event)\"\n    debounce=\"500\">\n  </ckeditor>\n  `,\n})\nexport class Sample {\n  ckeditorContent: string = '<p>Some html</p>';\n}\n```\n\n### <a name=\"config\"></a>Configuration\n\n* `config` : The configuration object for CKEditor see http://docs.ckeditor.com/#!/api/CKEDITOR.config\n* `debounce` : You can add a delay (ms) when updating ngModel\n* `readonly` : Enabled / disable readonly on editor\n\n### <a name=\"toolbar\"></a>Toolbar Directives\n\nYou can use the following directives to add custom buttons to CKEditor's toolbar and organize them into groups.\nFor more info about CKEditor's Toolbar API refer to http://docs.ckeditor.com/#!/api/CKEDITOR.ui\n\n* `<ckbutton>` : Note that the `name` and `command` attributes are mandatory for this one.\n\n```javascript\n<ckeditor\n  [(ngModel)]=\"ckeditorContent\">\n    <ckbutton [name]=\"'saveButton'\"\n      [command]=\"'saveCmd'\"\n      (click)=\"save($event)\"\n      [icon]=\"'save.png'\"\n      [label]=\"'Save Document'\"\n      [toolbar]=\"'clipboard,1'\">\n    </ckbutton>\n</ckeditor>\n```\n\n* `<ckgroup>` : Can be used to organize multiple buttons into groups.\n\n```javascript\n<ckeditor\n  [(ngModel)]=\"ckeditorContent\">\n    <ckgroup\n      [name]=\"'documenthandling'\"\n      [previous]=\"'1'\">\n        <ckbutton .... ></ckbutton>\n        <ckbutton .... ></ckbutton>\n    </ckgroup>\n</ckeditor>\n```\n\n### <a name=\"issues\"></a>Issues\n\n* [with ngFor](https://github.com/chymz/ng2-ckeditor/issues/23)\n* [[CKEDITOR] Error code: editor-destroy-iframe](https://github.com/chymz/ng2-ckeditor/issues/24)\n\n### <a name=\"licence\"></a>Licence\n\nSee `LICENSE` file\n","versions":{"1.0.0":{"name":"ng2-ckeditor","version":"1.0.0","description":"Angular2 CKEditor component","main":"lib/CKEditor.js","typings":"./CKEditor.d.ts","scripts":{},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"babel-cli":"^6.4.0","babel-plugin-angular2-annotations":"^5.0.0","babel-plugin-transform-class-properties":"^6.3.13","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-es2015-modules-commonjs":"^6.4.5","babel-plugin-transform-flow-strip-types":"~6.3.15","babel-preset-es2015":"~6.3.13","gulp":"^3.9.0","gulp-babel":"^6.1.1","gulp-sourcemaps":"^1.6.0"},"gitHead":"b63227daddf979163f7ba13f30da21d42acedbdc","_id":"ng2-ckeditor@1.0.0","_shasum":"077c500f85d042a49747acdc221086cdcaf16f6a","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"077c500f85d042a49747acdc221086cdcaf16f6a","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.0.0.tgz","integrity":"sha512-7TrD0oc9fzTm3D5YAeH2P6MmdpdlzK9eC6mb6+k3+Qu9VvBvnJBhRjKYRrKi1eGmkKmL0qy4iiQ0Y+0/XwXM7g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7HBW+Qu/hYbK748aoAEmeQVRZoKtTxIRyJ9fDhj9PlAIhAMDQ43ZeFGXGpibfp7ymh2/lRZdTKzfl1gfb1BU/CawN"}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.0.0.tgz_1454617790662_0.5928600484039634"},"directories":{}},"1.0.2":{"name":"ng2-ckeditor","version":"1.0.2","description":"Angular2 CKEditor component","main":"lib/CKEditor.js","typings":"./CKEditor.d.ts","scripts":{},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"babel-cli":"~6.7.5","babel-plugin-angular2-annotations":"~5.0.0","babel-plugin-transform-class-properties":"~6.6.0","babel-plugin-transform-decorators-legacy":"~1.3.4","babel-plugin-transform-es2015-modules-commonjs":"~6.7.4","babel-plugin-transform-flow-strip-types":"~6.7.0","babel-preset-es2015":"~6.6.0","gulp":"~3.9.0","gulp-babel":"~6.1.1","gulp-cached":"~1.1.0","gulp-sourcemaps":"~2.0.0-alpha"},"gitHead":"a65820950389c918b1460ffd1c3183a855a17163","_id":"ng2-ckeditor@1.0.2","_shasum":"781b0bea0193be094f06d6e3fcc81b9018583995","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"781b0bea0193be094f06d6e3fcc81b9018583995","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.0.2.tgz","integrity":"sha512-dBMvEYNLDkz8NCOMpWjUhqjdkV3byOaQ7cKdtvlKneSxVUWSsJ39XuypHikO2xH6n8n4X++VmwCWUYcyTz88dw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICXA6ucOC9zDSVQYdN/lWbojWtUUdKnzazGHWaw1IFTkAiEAizZeTB0ADwOFIyynTU2sKn4i3GX9641ixB29wgnlrRQ="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.0.2.tgz_1461183081178_0.5673448629677296"},"directories":{}},"1.0.3":{"name":"ng2-ckeditor","version":"1.0.3","description":"Angular2 CKEditor component","main":"lib/CKEditor.js","typings":"./CKEditor.d.ts","scripts":{},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"babel-cli":"~6.7.5","babel-plugin-angular2-annotations":"~5.0.0","babel-plugin-transform-class-properties":"~6.6.0","babel-plugin-transform-decorators-legacy":"~1.3.4","babel-plugin-transform-es2015-modules-commonjs":"~6.7.4","babel-plugin-transform-flow-strip-types":"~6.7.0","babel-preset-es2015":"~6.6.0","gulp":"~3.9.0","gulp-babel":"~6.1.1","gulp-cached":"~1.1.0","gulp-sourcemaps":"~2.0.0-alpha"},"gitHead":"1684c76c51bfd731493b5bab5167fc6c5444e92c","_id":"ng2-ckeditor@1.0.3","_shasum":"0bb18a23f7608707e23d0dd9bfa1f1bc6fcd1638","_from":".","_npmVersion":"3.8.9","_nodeVersion":"5.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"0bb18a23f7608707e23d0dd9bfa1f1bc6fcd1638","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.0.3.tgz","integrity":"sha512-NndYlDPFNagLuJcLSflFp7GekpvvjFjdivXnrDbfQjkNmLHl6T+bFrjbbTl4ITJaP19otVyzhCObXaoQ+C5Ffw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQzXyPrCIVgrHwjjH0/CcsUEGqYAwGm2HX6ptKl65r7QIhANhF34MWI+nc7nR2bt7y6d+AM3kPCFjRfzm1XJENvgrv"}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.0.3.tgz_1463052269108_0.9865072499960661"},"directories":{}},"1.0.4":{"name":"ng2-ckeditor","version":"1.0.4","description":"Angular2 CKEditor component","main":"lib/CKEditor.js","typings":"./CKEditor.d.ts","scripts":{},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"babel-cli":"^6.7.5","babel-plugin-angular2-annotations":"^5.0.0","babel-plugin-transform-class-properties":"^6.6.0","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-es2015-modules-commonjs":"^6.7.4","babel-plugin-transform-flow-strip-types":"^6.7.0","babel-preset-es2015":"^6.6.0","gulp":"^3.9.0","gulp-babel":"^6.1.1","gulp-cached":"^1.1.0","gulp-sourcemaps":"^2.0.0-alpha"},"gitHead":"6eaff6db2e9b3a44f5802db03d715fb8d8fe59bd","_id":"ng2-ckeditor@1.0.4","_shasum":"58f8a98f7f03e1512ade6ef18a436c2c754d70ff","_from":".","_npmVersion":"3.8.9","_nodeVersion":"5.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"58f8a98f7f03e1512ade6ef18a436c2c754d70ff","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.0.4.tgz","integrity":"sha512-LgEde2PI9HFa2n7HtNwWQ1VndiIIE6F8/Xx0BAGmuL90h/CWKA6ftjwugIe4tjzVZiybuYObNUIDVapX9WY5ow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDpwbUIJV2obFDIUYZZIIsTy9B+w8ellpRAeF1DNPhTkAiA+i73Yc0/5QNuzm6viXJ+7vHX/+j+Ohsqc4eMjvkNkVw=="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.0.4.tgz_1467845157667_0.3300472463015467"},"directories":{}},"1.0.5":{"name":"ng2-ckeditor","version":"1.0.5","description":"Angular2 CKEditor component","main":"lib/CKEditor.js","typings":"./CKEditor.d.ts","scripts":{},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"babel-cli":"^6.7.5","babel-plugin-angular2-annotations":"^5.0.0","babel-plugin-transform-class-properties":"^6.6.0","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-es2015-modules-commonjs":"^6.7.4","babel-plugin-transform-flow-strip-types":"^6.7.0","babel-preset-es2015":"^6.6.0","gulp":"^3.9.0","gulp-babel":"^6.1.1","gulp-cached":"^1.1.0","gulp-sourcemaps":"^2.0.0-alpha"},"gitHead":"fbe74444937e624fec85e57b225cb6d4ef90e7de","_id":"ng2-ckeditor@1.0.5","_shasum":"3f3cc7abdb1949d070efc9daf51493c40e278967","_from":".","_npmVersion":"3.8.9","_nodeVersion":"5.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"3f3cc7abdb1949d070efc9daf51493c40e278967","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.0.5.tgz","integrity":"sha512-SrQATLvM+Ic3FH+bcwChSgjAGe74TfatysmOPpII+i6KlIPtpFWX1xvrJAviwwIk5KDw34XuZZ10km3S8bGZnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8PLTJ3oWjmYl8Qe0haH45NT8BaUcUcUyoBIR7l5VbvwIgGEL5IVp9MxWKJra7Ikc2AlX3sQRsn9A5P84YeJtvsIY="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.0.5.tgz_1469811205124_0.342795442789793"},"directories":{}},"1.0.6":{"name":"ng2-ckeditor","version":"1.0.6","description":"Angular2 CKEditor component","main":"lib/CKEditor.js","typings":"./CKEditor.d.ts","scripts":{},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"babel-cli":"^6.7.5","babel-plugin-angular2-annotations":"^5.0.0","babel-plugin-transform-class-properties":"^6.6.0","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-es2015-modules-commonjs":"^6.7.4","babel-plugin-transform-flow-strip-types":"^6.7.0","babel-preset-es2015":"^6.6.0","gulp":"^3.9.0","gulp-babel":"^6.1.1","gulp-cached":"^1.1.0","gulp-sourcemaps":"^2.0.0-alpha"},"gitHead":"3b88f129d3dcb48878aee58f0c5f8727377767e0","_id":"ng2-ckeditor@1.0.6","_shasum":"42715e062b02fceae0aeb4269304388cc46f7700","_from":".","_npmVersion":"3.8.9","_nodeVersion":"5.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"42715e062b02fceae0aeb4269304388cc46f7700","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.0.6.tgz","integrity":"sha512-WUQzqXNmVMVhDlA9h1mqi8q3IoGfCmDQ/wdFvNEpIo7lKFCG2ilmW5gg8+btc66syRgnNNjPfvH8bkiAVuxs+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICl0e48WYWgZMasGAOmPQUsxDmYfk3koGEPhSmYbUPQKAiEAi9yVNZO7nCsT3JwAt3YnHW9u268VcfvC0iHTgTvD46Q="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.0.6.tgz_1470930600797_0.5310464750509709"},"directories":{}},"1.0.7":{"name":"ng2-ckeditor","version":"1.0.7","description":"Angular2 CKEditor component","main":"lib/CKEditor.js","typings":"./CKEditor.d.ts","scripts":{},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"babel-cli":"^6.7.5","babel-plugin-angular2-annotations":"^5.0.0","babel-plugin-transform-class-properties":"^6.6.0","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-es2015-modules-commonjs":"^6.7.4","babel-plugin-transform-flow-strip-types":"^6.7.0","babel-preset-es2015":"^6.6.0","gulp":"^3.9.0","gulp-babel":"^6.1.1","gulp-cached":"^1.1.0","gulp-sourcemaps":"^2.0.0-alpha"},"gitHead":"7c2177aecc8a021f4a413a425473e88e20e4d1ef","_id":"ng2-ckeditor@1.0.7","_shasum":"9bc6fdeb76f9b43aa7f0fac57b7197a218390026","_from":".","_npmVersion":"3.8.9","_nodeVersion":"5.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"9bc6fdeb76f9b43aa7f0fac57b7197a218390026","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.0.7.tgz","integrity":"sha512-+9Vhvvma8L5R9ExZC846OU/eTgn5mxTnYyLYJRx2O9Rsa+BhLOS3ZItZdfUQ0T3gZnytbNKRHPL+PHw4J8YdHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZDARn2LXD2VOLqyPVENM6+HT3fI9jAS+6rHacQ9GaUQIgZFoN6seQlV+26oTk7u3nMlpPvpZtzSLZMiOLEUUE3Gc="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.0.7.tgz_1472737670736_0.9585473740007728"},"directories":{}},"1.1.0":{"name":"ng2-ckeditor","version":"1.1.0","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"postinstall":"npm run build","build":"tsc","build:aot":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/compiler-cli":"^2.1.0","@angular/platform-server":"^2.1.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","typescript":"^2.0.3"},"dependencies":{"@angular/core":"^2.1.0","@angular/forms":"^2.1.0"},"gitHead":"d4008e7f30574988d4a736e57c4125883b8cecd3","_id":"ng2-ckeditor@1.1.0","_shasum":"3213b02e4f49ddc81c85038fb05b48dc3a4cb289","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"3213b02e4f49ddc81c85038fb05b48dc3a4cb289","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.0.tgz","integrity":"sha512-u+66Al+2UE1GkUGaSXKmWqTpd79aho1Z5quaa+Inyy0QueG+ya4ctmpHDdjt9zBBEGEGfrUKC+MXiY/DYrO0xg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGzfC3HU8NabuKTlRo7Z/y0K06sygqo8IcLY4VSfxbZyAiEA29WJteQbZvkopEGPXL+86WIJJQkMeduyIT1cKVpMPwg="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.0.tgz_1476649019961_0.5372447969857603"},"directories":{}},"1.1.1":{"name":"ng2-ckeditor","version":"1.1.1","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"build":"tsc","build:aot":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/compiler-cli":"^2.1.0","@angular/platform-server":"^2.1.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","typescript":"^2.0.3"},"dependencies":{"@angular/core":"^2.1.0","@angular/forms":"^2.1.0"},"gitHead":"d4008e7f30574988d4a736e57c4125883b8cecd3","_id":"ng2-ckeditor@1.1.1","_shasum":"f9bcd874a4b40cde75555031465209c27f612f6b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"f9bcd874a4b40cde75555031465209c27f612f6b","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.1.tgz","integrity":"sha512-6j47aPz0CpIqfq4IzlLY5KfZ3btRVUVb/8oPFOoYA0y33SGvtTeVq1iq0OiAVzXzK5QmFGYJzZy1rRh5g/ILOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKAV5aI/lDaD7FyZSGLaT42ymDw5aRybsQLk9hdpJiTwIhAPXcDMJDfdmQELsK93a5WaCxfxxki6UN98LlB5BPXhCT"}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.1.tgz_1476649130867_0.8785441778600216"},"directories":{}},"1.1.2":{"name":"ng2-ckeditor","version":"1.1.2","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"build":"tsc","build:aot":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/compiler-cli":"^2.1.0","@angular/platform-server":"^2.1.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","typescript":"^2.0.3"},"dependencies":{"@angular/common":"^2.1.0","@angular/core":"^2.1.0","@angular/forms":"^2.1.0","zone.js":"^0.6.25"},"gitHead":"a9b85f490054152e831f3417b8689334acd73204","_id":"ng2-ckeditor@1.1.2","_shasum":"bd7a013e5503dd53160f5b934fcc0c2a5c0e5df8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"bd7a013e5503dd53160f5b934fcc0c2a5c0e5df8","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.2.tgz","integrity":"sha512-+Lx14dY9N7QgoCC5NXtRsNhxqpS1ecmyRm3dc5/KZVVHYn57DYm1m3+aPP+O1gUCkosBMrnzD68IDZfbrZkvGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH+5lQuODo1Au0LHY+yfgLxrmxrS3fb5lQTUqiFM5HpkAiEAmuGSjuvoZzhTApO7o6Skoe+8QLqrNnyxT58/ppm34+8="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.2.tgz_1476649397578_0.5351999441627413"},"directories":{}},"1.1.3":{"name":"ng2-ckeditor","version":"1.1.3","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"build":"tsc","build:aot":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/compiler-cli":"^2.1.0","@angular/platform-server":"^2.1.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","typescript":"^2.0.3"},"dependencies":{"@angular/common":"^2.1.0","@angular/core":"^2.1.0","@angular/forms":"^2.1.0","rxjs":"^5.0.0-rc.1","zone.js":"^0.6.25"},"gitHead":"5ba84304637f175b5f2ab00d0471f67ea80d1303","_id":"ng2-ckeditor@1.1.3","_shasum":"0c240957ebe86846b7d33b145d3c4816ade2e9a6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"0c240957ebe86846b7d33b145d3c4816ade2e9a6","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.3.tgz","integrity":"sha512-sQkMHMbcCnsLds42CZhOau2zFUKAYEwb4610rMGwdwjaswJtF1gMXJWk3Mypho39ydQ7B2aRctrIPH4ytLiUaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXjApG6cfvGVqHpxAswY2XgxfXVjRjPqLHUjJyP+X5YQIgZqPIAURbtCrCKoJVS6sOk185zZEFciGw/dp0V0j6gBA="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.3.tgz_1476649555891_0.3912679466884583"},"directories":{}},"1.1.4":{"name":"ng2-ckeditor","version":"1.1.4","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"prepublish":"npm run build && npm run build:aot","build":"tsc","build:aot":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/compiler":"^2.1.0","@angular/compiler-cli":"^2.1.0","@angular/platform-server":"^2.1.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","typescript":"^2.0.3"},"dependencies":{"@angular/common":"^2.1.0","@angular/core":"^2.1.0","@angular/forms":"^2.1.0","rxjs":"^5.0.0-rc.1","zone.js":"^0.6.25"},"gitHead":"d5411e0f4513457d6ef1db0aad80a45017b6f9a3","_id":"ng2-ckeditor@1.1.4","_shasum":"c7be8b318417adac1e25b835dde815b56bcb716f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"c7be8b318417adac1e25b835dde815b56bcb716f","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.4.tgz","integrity":"sha512-e2/u+4ICAE7Qy0SPAeIkJtzmmilT1/SH2D1dzaz9lRB+TkTvD1OScxnyg06+KyRh4EaWLXSqBa2FUZbu4J5rwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDf22HDONFwwmnsphy6OVHazWVH7eDeUlU7J4LrCLoq2AiBGwkZxbxyZJP+sqBeTJyTvrwT+bmmBELIxUMftSxSTOg=="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.4.tgz_1476650971201_0.5506692032795399"},"directories":{}},"1.1.5":{"name":"ng2-ckeditor","version":"1.1.5","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"prepublish":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^2.1.0","@angular/compiler":"^2.1.0","@angular/compiler-cli":"^2.1.0","@angular/core":"^2.1.0","@angular/forms":"^2.1.0","@angular/platform-browser":"^2.1.0","@angular/platform-server":"^2.1.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","rxjs":"5.0.0-beta.12","typescript":"^2.0.3","zone.js":"^0.6.26"},"peerDependencies":{"@angular/core":"^2.1.0","@angular/forms":"^2.1.0","@angular/common":"^2.1.0"},"dependencies":{},"gitHead":"5ee7174bb2faf56d676be6358673818b6b88a9ce","_id":"ng2-ckeditor@1.1.5","_shasum":"b2c57f73b3b51bffb5e0dc668beeed049e4add4d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"b2c57f73b3b51bffb5e0dc668beeed049e4add4d","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.5.tgz","integrity":"sha512-paZZ7WO4f4noX9A7FyPGltZxUC+D8YN8rKlqk8D4ME5c9B0HTkYeazy+I2tfWr4fKG8bk2+JWXbb1yaNoxao7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICDATjriPFv473Mr2vilK4YEXaAzRqnf8gDjWcpNJfY4AiEArto7clcLZ5fGSASEAkiYDFfFlEeI0j2zz/VMt0e2QMM="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.5.tgz_1479670695886_0.7023679534904659"},"directories":{}},"1.1.6":{"name":"ng2-ckeditor","version":"1.1.6","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"prepublish":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^2.1.0","@angular/compiler":"^2.1.0","@angular/compiler-cli":"^2.1.0","@angular/core":"^2.1.0","@angular/forms":"^2.1.0","@angular/platform-browser":"^2.1.0","@angular/platform-server":"^2.1.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","rxjs":"5.0.0-beta.12","typescript":"^2.0.3","zone.js":"^0.6.26"},"peerDependencies":{"@angular/core":"^2.1.0","@angular/forms":"^2.1.0","@angular/common":"^2.1.0"},"dependencies":{},"gitHead":"cb0595998cba03ba313d8d2c052f59220ab883a6","_id":"ng2-ckeditor@1.1.6","_shasum":"fa3afb86982b725f7f3a609924c64821c2719875","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"fa3afb86982b725f7f3a609924c64821c2719875","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.6.tgz","integrity":"sha512-C1hperk4HRgfpOCnmivtl2aMqZLFH6a3WH7nsgb8uJITgrvJtpXxcuSoHDOnT1eM7UidZl+3WrhpU/wjWe6Bug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFWvBlfH42rWRUv+kUovaV4lDbd0Y1+d6WlVSO2XQNrMAiAGPONX+H+/KuWpyEmm1xpPWgcJJGKKrJHRJR3kKvQI5w=="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.6.tgz_1487872376254_0.7321080814581364"},"directories":{}},"1.1.7":{"name":"ng2-ckeditor","version":"1.1.7","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"prepublish":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^2.1.0 || ^4.0.0","@angular/compiler":"^2.1.0 || ^4.0.0","@angular/compiler-cli":"^2.1.0 || ^4.0.0","@angular/core":"^2.1.0 || ^4.0.0","@angular/forms":"^2.1.0 || ^4.0.0","@angular/platform-browser":"^2.1.0 || ^4.0.0","@angular/platform-server":"^2.1.0  || ^4.0.0","@angular/animations":"^4.0.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","rxjs":"5.2.0","typescript":"^2.2.1","zone.js":"^0.8.5"},"peerDependencies":{"@angular/core":"^2.1.0 || ^4.0.0","@angular/forms":"^2.1.0 || ^4.0.0","@angular/common":"^2.1.0 || ^4.0.0"},"dependencies":{},"gitHead":"cdaf4a038f54f442d0481ef6891c8759f4911137","_id":"ng2-ckeditor@1.1.7","_shasum":"5b50df23dccb06f60fead5e01cb19e4ca4b5f175","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"shasum":"5b50df23dccb06f60fead5e01cb19e4ca4b5f175","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.7.tgz","integrity":"sha512-tl0RlYCuCR0MLV/9VejhqibtNTZ2BCdSwag6WTvWsfLZR/XOOBPzk8ezdLBbCxLyr74Fca5n99x5dDmvVm+pFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPL8dUg1U8gQ9JzHSDT4r9h9KoZbjtL4+ZN19HkVPXlQIgGteUEV9b1vUmILponlrdTMvgSzmaaNlDoMZ1NnDqIU0="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ng2-ckeditor-1.1.7.tgz_1494774840775_0.7309989766217768"},"directories":{}},"1.1.8":{"name":"ng2-ckeditor","version":"1.1.8","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"prepublish":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^2.1.0 || ^4.0.0","@angular/compiler":"^2.1.0 || ^4.0.0","@angular/compiler-cli":"^2.1.0 || ^4.0.0","@angular/core":"^2.1.0 || ^4.0.0","@angular/forms":"^2.1.0 || ^4.0.0","@angular/platform-browser":"^2.1.0 || ^4.0.0","@angular/platform-server":"^2.1.0  || ^4.0.0","@angular/animations":"^4.0.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","rxjs":"5.2.0","typescript":"^2.2.1","zone.js":"^0.8.5"},"peerDependencies":{"@angular/core":"^2.1.0 || ^4.0.0","@angular/forms":"^2.1.0 || ^4.0.0","@angular/common":"^2.1.0 || ^4.0.0"},"dependencies":{},"gitHead":"4d7e46b59ba54315ae8c5f07313aecdb86548d92","_id":"ng2-ckeditor@1.1.8","_npmVersion":"5.0.1","_nodeVersion":"7.10.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-KvhhgFopuC+9MuiZrFXJUXV3GKOno6yEAe62lREoPq8PTvV0VsPrtX7s8TBxwgdO5gNloWqdoI8N9mBZZfmSSg==","shasum":"d8b72d4eef32fc035833c0faf1adb33eaa13225c","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOjF2QmkJINV3BXyMQ596FdTOsJ8q8vKlJR2eFiZZwewIhANsWHZgf6zIBgTB5wvxziETiQHqMkLlQNXTpWXBjlDcj"}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor-1.1.8.tgz_1496419489668_0.4223511815071106"},"directories":{}},"1.1.9":{"name":"ng2-ckeditor","version":"1.1.9","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"prepublish":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^2.1.0 || ^4.0.0","@angular/compiler":"^2.1.0 || ^4.0.0","@angular/compiler-cli":"^2.1.0 || ^4.0.0","@angular/core":"^2.1.0 || ^4.0.0","@angular/forms":"^2.1.0 || ^4.0.0","@angular/platform-browser":"^2.1.0 || ^4.0.0","@angular/platform-server":"^2.1.0  || ^4.0.0","@angular/animations":"^4.0.0","@types/ckeditor":"0.0.33","@types/core-js":"^0.9.34","@types/node":"^6.0.45","rxjs":"5.2.0","typescript":"^2.2.1","zone.js":"^0.8.5"},"peerDependencies":{"@angular/core":"^2.1.0 || ^4.0.0","@angular/forms":"^2.1.0 || ^4.0.0","@angular/common":"^2.1.0 || ^4.0.0"},"dependencies":{},"gitHead":"c04a4e01563cc3cd4ac1c410569932c0668d1cdf","_id":"ng2-ckeditor@1.1.9","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-CkxiEqsB67osdc+Uh9N6UamTf0ZzfOB+iNWWFIrMDvwYrfHnYPJLfJt6NOEafEnCui7zbDS/Llyv5UNkjbBUrA==","shasum":"f865f0f99c5b069521e91b9bd2f9a23ee1aaf52f","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.9.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFE89EZVqSI7p6fdqJbs9KHVPiUgHcWUmLMxSt1Zdy4rAiEA6pKnsaVbjXSQIG9WDuRIPGZth0XiZc7GUr4sJVOnn7I="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor-1.1.9.tgz_1498208035211_0.07668787892907858"},"directories":{}},"1.1.10":{"name":"ng2-ckeditor","version":"1.1.10","description":"Angular2 CKEditor component","main":"lib/index.js","typings":"lib/index.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^5.0.5","@angular/compiler":"^5.0.5","@angular/compiler-cli":"^5.0.5","@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/platform-browser":"^5.0.5","@angular/platform-server":"^5.0.5","@angular/animations":"^5.0.5","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","rxjs":"5.5.3","typescript":"^2.6.2","zone.js":"^0.8.18"},"peerDependencies":{"@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/common":"^5.0.5"},"dependencies":{},"gitHead":"aba83354258bf6e8c7ddb29d0d38be9a3e8df5a6","_id":"ng2-ckeditor@1.1.10","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-SB2INZ50EeyccFB/yDjx6fraTe57t7Fs2hDmdQLAh3s+MkqzOIXJSpdODke9lJMtdQt1yH7cHBc5Sr+O4M3Olg==","shasum":"518d5c4132ae6217a794bae11aa5c97bf7cf44ac","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.10.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE729pT4Wubn/qXbT4IC7OhxXgoq/vPLVhPiq9ixwUTdAiEAldo8TXQSHKJDlzeNDI1nzVgRWrCu1DJLX0SaU3nR7pg="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor-1.1.10.tgz_1512414793314_0.7969142561778426"},"directories":{}},"1.1.11":{"name":"ng2-ckeditor","version":"1.1.11","description":"Angular2 CKEditor component","main":"lib/ng2-ckeditor.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^5.0.5","@angular/compiler":"^5.0.5","@angular/compiler-cli":"^5.0.5","@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/platform-browser":"^5.0.5","@angular/platform-server":"^5.0.5","@angular/animations":"^5.0.5","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","rxjs":"5.5.3","typescript":"^2.6.2","zone.js":"^0.8.18"},"peerDependencies":{"@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/common":"^5.0.5"},"dependencies":{},"gitHead":"fad2cab6edb7cd0cbc77bc82dbe01434e4b4ea3d","_id":"ng2-ckeditor@1.1.11","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-a2KbCKZA8zK92dg7w4jyKfRgIOerpZfDM3cXRLNCyWS8m1bHEh42EHP9TSv7BvW3iLW9d80IIuhh0ldQ5TXfyg==","shasum":"27302b799e4fbf5aadfd8b1e3e307e84d22f7f3f","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.11.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC087Kz8zeJhzVwvEBsFALpyOwOg0KBWyCwHbrJirbq8AIhAIG1HR/VDAjc/G22wn1s43zVO4NH0wxJdXyRVFbS/XVW"}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor-1.1.11.tgz_1512416774401_0.49230974493548274"},"directories":{}},"1.1.12":{"name":"ng2-ckeditor","version":"1.1.12","description":"Angular2 CKEditor component","main":"lib/ng2-ckeditor.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^5.0.5","@angular/compiler":"^5.0.5","@angular/compiler-cli":"^5.0.5","@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/platform-browser":"^5.0.5","@angular/platform-server":"^5.0.5","@angular/animations":"^5.0.5","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","rxjs":"^5.5.2","typescript":"^2.6.2","zone.js":"^0.8.14"},"peerDependencies":{"@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/common":"^5.0.5"},"dependencies":{},"gitHead":"5d2d7081a11a089f76474a2216e71239dda0a483","_id":"ng2-ckeditor@1.1.12","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-6TKWp4AZIE2iMh1hBFm3jkbSbhTVULUOWPB4pkp4LlRmVgfBpks27jcf3KOKyAOmG3YFTfgWTrHu1Xw5k2rvOA==","shasum":"c5b512a301018246fdab57653d02a2075738166b","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.12.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAEslcX0S1D8vhfta87IIc/UrNBANfPSXxEk0Moeekf4AiEAigeRK+5gCMF27JN8fVho0ebNhElFF9OVA1a2/V18Jno="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor-1.1.12.tgz_1512419344434_0.5201763021759689"},"directories":{}},"1.1.13":{"name":"ng2-ckeditor","version":"1.1.13","description":"Angular2 CKEditor component","main":"lib/ng2-ckeditor.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^5.0.5","@angular/compiler":"^5.0.5","@angular/compiler-cli":"^5.0.5","@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/platform-browser":"^5.0.5","@angular/platform-server":"^5.0.5","@angular/animations":"^5.0.5","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","rxjs":"^5.5.2","typescript":"^2.6.2","zone.js":"^0.8.14"},"peerDependencies":{"@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/common":"^5.0.5"},"dependencies":{},"gitHead":"45d852e46d186e591d163d9341a0304ee4efffc1","_id":"ng2-ckeditor@1.1.13","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-hOECJiTlIJYdhWAo/jYbOm6NSUR38PTSJJHDDSpYzfb3k22ilTyJUEv8u9GxdGNwJsQuANvYTslCpabES0Ea0A==","shasum":"c831708285d7a1f0c3f7bbb06ed9c520d41afcbd","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.13.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsKNRK5hrAsPn0qnY3otC79dwe3fpmvT1x0RnRTND2/QIgV8+u9WBJc3+TC4ds2REROcoVtkhdVx9Wd3MDKO57CtU="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor-1.1.13.tgz_1512502940519_0.6445885337889194"},"directories":{}},"1.1.14":{"name":"ng2-ckeditor","version":"1.1.14","description":"Angular2 CKEditor component","main":"lib/ng2-ckeditor.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/common":"^5.0.5","@angular/compiler":"^5.0.5","@angular/compiler-cli":"^5.0.5","@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/platform-browser":"^5.0.5","@angular/platform-server":"^5.0.5","@angular/animations":"^5.0.5","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","rxjs":"^5.5.2","typescript":"^2.6.2","zone.js":"^0.8.14"},"peerDependencies":{"@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/common":"^5.0.5"},"dependencies":{},"gitHead":"159b4c5b2f7ab3e6dccc6f6c00f1316c7f778953","_id":"ng2-ckeditor@1.1.14","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-+nb+G/0JjD0GM9h/P+W7lr6idVbVp4DMGyl5O86P3FkaA8JQODSXMM9BhUbtyAeRltmv/CVnwAXrfRjZKvTC1A==","shasum":"f66e35c7dd609e4775f2fdc685289aa3fc7cea52","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.1.14.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRlyky8hNf33GFdd60S6YN8ESWgN0GmiKFSA/cwAwWlQIhAL755Y52wA4xGRq1FZkz9w/5Ydpg6ND7EE0SLqJ8y9k3"}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor-1.1.14.tgz_1516177896242_0.536970779299736"},"directories":{}},"1.2.0":{"name":"ng2-ckeditor","version":"1.2.0","description":"Angular CKEditor component","main":"lib/ng2-ckeditor.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json","lint":"tslint -p tsconfig.json -c tslint.json","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^5.0.5","@angular/common":"^5.0.5","@angular/compiler":"^5.0.5","@angular/compiler-cli":"^5.0.5","@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/platform-browser":"^5.0.5","@angular/platform-server":"^5.0.5","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","prettier":"^1.10.2","rxjs":"^5.5.2","tslint":"^5.9.1","typescript":"^2.6.2","zone.js":"^0.8.14"},"peerDependencies":{"@angular/core":"^5.0.5","@angular/forms":"^5.0.5","@angular/common":"^5.0.5"},"dependencies":{},"gitHead":"df537ca86d8586ab3d9879719c11988b364c19b9","_id":"ng2-ckeditor@1.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-VOJh4dUDCnlHCiQkb5DphqRVLgBmC0XMxgSGbYGW3cgfR+Gp7nTIS+RYp2TCKbs6dG+BUxIbToEw7r7BQ4m/Iw==","shasum":"5298746234fd4b3b9ffc010bfbc704e2b4e77f4b","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.0.tgz","fileCount":93,"unpackedSize":539741,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGNDI995EwDUMZJ+yTnEbLXQI8kkYeTg/2CPbc63OIgAIgN+lGeflfRiaz8bRE9M6e57Zn/8r3wJuoSSx9D3rnpgE="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.0_1519340097974_0.6814268465710647"},"_hasShrinkwrap":false},"1.2.1":{"name":"ng2-ckeditor","version":"1.2.1","description":"Angular CKEditor component","main":"lib/ng2-ckeditor.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json","lint":"tslint -p tsconfig.json -c tslint.json","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^6.0.0","@angular/compiler":"^6.0.0","@angular/compiler-cli":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","@angular/platform-browser":"^6.0.0","@angular/platform-server":"^6.0.0","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","prettier":"^1.10.2","rxjs":"^6.1.0","tslint":"^5.9.1","typescript":">=2.7.0 <2.8.0","zone.js":"^0.8.14"},"peerDependencies":{"@angular/core":"^6.0.0","@angular/forms":"^6.0.0","@angular/common":"^6.0.0"},"dependencies":{},"gitHead":"1c2994207b6849ae463e31cc76aee7bcb39443e8","_id":"ng2-ckeditor@1.2.1","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-NaaahJlC+osz+FIj6TSfKjU/VHAC6ocepG+u+tislV9+CYAeWpiukIhjqwlayicZWt+LnxA+B4MmIPE0Z7yXEA==","shasum":"473c7a6339cea688bd69bde6d335e92b7c0ea57f","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.1.tgz","fileCount":93,"unpackedSize":543154,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKoAXCRA9TVsSAnZWagAAuBUQAJVPf9tPFfUA2lIw8TE0\nXu+9fJNceY7VT+WhM48P8y/82POGICaIxXlTXhsQDcD0kvaJz0rI0v3OHnt5\nij7GXzM7w3NkQjXjHA5SWnrIB+XSQUSqRXfzqVZPs51RFvdKVdC3kjKBix9+\nnpFVW0nFXGnrT09GAOtjDqinLHSn4AKAspe+3j/VMdAvUcljiNx6tdrS7AYI\nRFQBr+Bu39TqbK0RzOUTVMft64mIPJNu04cZqXRYU1h+fGgIXrBohRKobhs6\nZT4S4y+SnugCG1vkLpk7xVqXpkYXo7F2jbSWkVor7a17vIxX9zsHhDqXlnRv\nB9nZEYr9untDnF2gPxFNuXngaKFL97dAvmWe5isp/bDsepDABNkaMuDtzDnA\ny7fAIeN5/+iB06b9tjUyKh5QfM0x9Wao8A1Qqmhv4STdrkluJQgYAoPhmznn\nCSwZIY9wcR9uM+5UP4BI7GDwPYk39sFAnQAiTY+xJRxhfsoTTLNzno/whOl1\nzfaYIPNT1G/UT0kjsSWLU8mgMYuoA8JAfcZZ3v7kq7edyYCVcEnrqbmh54AD\nprZ/sPrYU2nCB3v5kPpmHvfKm3IP28HKQ1id5XRCQccueBWg2i28SUiuPjN/\nFSu/Ri92PvUIWZdABnjX6f4NOz2k8jfIxbZFSzQXZw5bB6sKFy6GDeglULEK\nN555\r\n=lILL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHRSP47WaE1vZoQF77fVRaN3pbJzdIvevEHkgE8Sg1v9AiEAsdIBlNPTQx/5ll/RYHVyVqmOWZyyXFbf9ZCOmnnZJgI="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.1_1529511951011_0.5815106096313583"},"_hasShrinkwrap":false},"1.2.2":{"name":"ng2-ckeditor","version":"1.2.2","description":"Angular CKEditor component","main":"lib/ng2-ckeditor.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ngc -p tsconfig-aot.json","lint":"tslint -p tsconfig.json -c tslint.json","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^7.0.0","@angular/common":"^7.0.0","@angular/compiler":"^7.0.0","@angular/compiler-cli":"^7.0.0","@angular/core":"^7.0.0","@angular/forms":"^7.0.0","@angular/platform-browser":"^7.0.0","@angular/platform-server":"^7.0.0","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","prettier":"^1.10.2","rxjs":"^6.1.0","tslint":"^5.9.1","typescript":">=3.1.1 <3.2.0","zone.js":"^0.8.14"},"peerDependencies":{"@angular/core":"^7.0.0","@angular/forms":"^7.0.0","@angular/common":"^7.0.0"},"dependencies":{},"gitHead":"be96bb2ab8e17fdf473a916293f76a6203c58db8","_id":"ng2-ckeditor@1.2.2","_npmVersion":"6.2.0","_nodeVersion":"10.6.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-4md+hLpELy1ni0SbUYDD0XPpwjn9PUT+Loq8AyXzJutwg3xBQB7K4P2TxDr6wTiYZX+ZVSqmUOFwTL25LW129A==","shasum":"b2f55c3e929a72c15336106950df0bf5ad31b806","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.2.tgz","fileCount":143,"unpackedSize":679919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbzcHTCRA9TVsSAnZWagAAX1wQAIfJqZQaSsI6CrZP0pLS\nsHq4jnc1JGAb6NUVihLjD5PUGnBpvbBSq3HBBgtRVeB5tp66CNbIz0EfmZqO\nEkhpnPRuyuCITvJsrvzijDk6iLfqXtPsMsTz64gN+rL4ft6j3qG/Boutujsr\npbBawAWuC1weeXV5E0IFzVeiodaFeQv8liz4Hc+IVedW15+7UaiviXZ4MUqk\n0gaOXTcDNjaB9nfPk6BuOpDNswbCfKestW1vcwv+BspRkXK+Ir4PQ01pTRSn\nwhg6L8bQXcpZ+0CdVRhZsDzGaq45oYnkchwv+Io+7MOyfO4yVrBX9HfRutVR\nTb5IWt6/BY0pKklTH39jBI3OyfNLdlE+qcz0kD6H/eHWFYxecX5KoP3Sh5C1\nUl0Y41Y8qLxkfDRJ36YOKDTtGe6a0efXDQGK8JdgAwax7aspCYDIqtkafYvD\nRAVDJywOSR3KeO6QFjK6caq5d6CJekRzIWhpwLPsY65d3SRLk+7QGi0DjMB6\n7MSwP6/yqX85ZZagei5soZGmo5vwaHmbi1BD2drF21lw0QTTAdAuG7BB/plm\nvKu+dZYuf0huEiZmBQecsjFeIQFLUHtcfZLnDyjLp1BBqg6h3TCRZ3GciRaR\njEkoovLoVMdQdzYf5/DWfuvOjuK29/WpUS0gNzJJVSoerLh8+hqA2aHX61V4\nfpjM\r\n=LjE3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7jUZDBApGGYKVTU5unkpXs+yjwy8Fz/zdsbAk2EE4hwIgPGYdZfbyHJzm9r053zS78TIMpnsV9ESsYQTkfAve5Ag="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.2_1540211154932_0.9536175205747393"},"_hasShrinkwrap":false},"1.2.3":{"name":"ng2-ckeditor","version":"1.2.3","description":"Angular CKEditor component","main":"lib/bundles/ng2-ckeditor.umd.min.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ng-packagr -p package.json","lint":"tslint -p tsconfig.json -c tslint.json","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^7.0.0","@angular/common":"^7.0.0","@angular/compiler":"^7.0.0","@angular/compiler-cli":"^7.0.0","@angular/core":"^7.0.0","@angular/forms":"^7.0.0","@angular/platform-browser":"^7.0.0","@angular/platform-server":"^7.0.0","@types/ckeditor":"0.0.45","@types/core-js":"^0.9.43","@types/node":"^8.0.54","ng-packagr":"^5.2.0","prettier":"^1.17.1","rxjs":"^6.1.0","tslint":"^5.9.1","typescript":">=3.1.1 <3.2.0","zone.js":"^0.8.14"},"peerDependencies":{"@angular/core":"^7.0.0","@angular/forms":"^7.0.0","@angular/common":"^7.0.0"},"dependencies":{},"ngPackage":{"lib":{"entryFile":"./src/index.ts","languageLevel":["dom","es2017"]},"dest":"lib"},"gitHead":"af0536e3fe5bb278d1579d03bbd187556fe45603","_id":"ng2-ckeditor@1.2.3","_npmVersion":"6.4.1","_nodeVersion":"10.15.0","_npmUser":{"name":"chymz","email":"simon@babay.fr"},"dist":{"integrity":"sha512-BoD5jjqI+y/0XO7+Pn1BeTGBFeXST95Ji7AVVBXHtQCg+fyURFhAPI5ot5N+1KE+DSqPCBJnpGUYe7z8DTo7Yg==","shasum":"b96e2d521e385de32c8a297610218417a6da6693","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.3.tgz","fileCount":44,"unpackedSize":256681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc76hmCRA9TVsSAnZWagAATD4P/0YQvEfUtUgINDLCQ/Tx\nY5raVF4Qh5PqjO4GolcjEKb9/HG+2vS+huuwN5zc2kQ5x7Ng8j/u2PV7fh1c\nfx2rJP3Iti8WpSekazj4micobuUFUZz5E9zxftPhax8wqGW4OI6TstNR5bzM\nFiOsgM7NQDpSx0ZS76rj+WxFdAteMmalmuebnaRt38SEwcpgjaDWckPiRtlt\nJID7m2GLZQwpq5HZuXdI8wwhWsS/CWgplqvGqWWs+X47QFnJpu/LzdJlCp76\nS+wLINCUe5Wtvzl5AbB3Zfl/BlSS6io9zutZhy9C3vGfWs7Hhug7lzrNHkAC\n2ZIsj0knERj7R1hHMiH7GM1CCgmv5I/j2PGk1+FtiJLrQHD74ecRFK3KT8uI\nQGrm6tXaCUZidhPz6VZvYqF9XrBm+nVgH6ozn9oG9zcJiqdFutFKkAoLP74H\nde0XY474kaYIRJk0QXnRHh1ETf+i9Gxagca456hq+6G2N4vAbe+hYfPLghFE\nTK+KB36+nEV+CPbHx16Eh4O9D6itF9LfhvI0g3dM5Mam8GcTK9DZ4DcptYzr\nZ3Ui2P39oamZWODH96Kts8LwOuN34iB7PxlKMZ+kfHH8QWAiDUziSlmRBYxU\nlENOf41RwspKsQwiBMaZXUCnK4MNhY52Bf0oh/n40YjCL0xz9AaMCeTVxeFy\nCnS0\r\n=mYrX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCewvUfGyhcc7dfgrRsEbtXrguEWZ4vb+sRb89HQTPq3gIgY0ibJG1ONJH+GO0RKolHBgwYfwLs6UaT4HxnhWVOQag="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.3_1559210085505_0.23870317160763554"},"_hasShrinkwrap":false},"1.2.4":{"name":"ng2-ckeditor","version":"1.2.4","description":"Angular CKEditor component","main":"lib/bundles/ng2-ckeditor.umd.min.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ng-packagr -p package.json","lint":"tslint -p tsconfig.json -c tslint.json","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^8.1.2","@angular/common":"^8.1.2","@angular/compiler":"^8.1.2","@angular/compiler-cli":"^8.1.2","@angular/core":"^8.1.2","@angular/forms":"^8.1.2","@angular/platform-browser":"^8.1.2","@angular/platform-server":"^8.1.2","@types/ckeditor":"4.9.8","@types/core-js":"^2.5.2","@types/node":"^12.6.8","ng-packagr":"^5.3.0","prettier":"^1.18.2","rxjs":"^6.5.2","tslint":"^5.18.0","typescript":"3.4.5","zone.js":"^0.9.1"},"peerDependencies":{"@angular/core":"^8.1.2","@angular/forms":"^8.1.2","@angular/common":"^8.1.2"},"dependencies":{},"ngPackage":{"lib":{"entryFile":"./src/index.ts","languageLevel":["dom","es2017"]},"dest":"lib"},"gitHead":"24aff78b4e4dc6242d5a09c95492cd0515c009e9","_id":"ng2-ckeditor@1.2.4","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-azoeJ7jURnKoOsDmPGFX7ld4JXA6m14gamrYIU+dsehgeWkLnQrm3I/F0djzYM2JCljsqv8d+84wbT2sNs5xfg==","shasum":"dcabe4ce5e076d2d741c04ae531f044ff70376f5","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.4.tgz","fileCount":44,"unpackedSize":259306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOM/CCRA9TVsSAnZWagAAhU8P+gM85plbIkrmLCKyrYHH\nzybOGmfWYO2KEYJsMmuOUwA+FyYXKej77XInVsCrngyAMsd7uWa3wkdxGxr3\nj3jC1jVK7WbPcN62aj2EP4rBL5OmWYagegxKTa+vO3xdxSar5VW6NvRa5V0n\nEgrKfwbn2UDyMbYihCMftaoDG4qGim3C6HYbYZ3wfIFBGNIXIFIs0oeja5B2\nNCQbUmgXhgYtAgIcstYO/kp9zN5DfR10T7euxr7o6P+jGDpxtE/EgR/VNgDx\naO0kpD4omXeGAoeFkrUVt/ewP6G95ShlGMEvT92O/9pNusTnzZFIThDPFgPT\nv9zrHl0KKiIWNeiXhSrXn6jllF7kuCBNVoHGXD1rMW1JvjEufLSIicBxASsQ\n7TLMXn1MdX134zm6I9rFBfDf2JW8KojpptqCEcrkhmBLv701TKvE8vqJTrjZ\nkLTBK+EabQ14FNacWVVtLK895nEiGPxJSh6Y3FK3r47kL2+88XlAZJVj8Yu3\n0T66F2gJYrfKwzJvH39YredGrXqzb2JdTiRszr0rrco1aCYniUvyD1YqEq13\nzOtrunYDdt5Fo+Iz+5HTblnAOflKaFnykS2nh4NtKKhbZUwXHW24MqpfKoVz\nQjvAPj3oq626b1ZBhC+3yaSMFK7yhh3W46FtK+wDuVTa8tjw/n1MghPhIQDq\noxsb\r\n=jMeQ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH7OsJwWhg78xrWQOLm0RqEJBMeIJWQ96/uHVwuUYzESAiApkJx2phFRyO2XG3uueKmvR8UzkVOFq3DXGkUeXW0rBw=="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.4_1564004290324_0.7798768224931538"},"_hasShrinkwrap":false},"1.2.5":{"name":"ng2-ckeditor","version":"1.2.5","description":"Angular CKEditor component","main":"lib/bundles/ng2-ckeditor.umd.min.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ng-packagr -p package.json","lint":"tslint -p tsconfig.json -c tslint.json","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^8.2.7","@angular/common":"^8.2.7","@angular/compiler":"^8.2.7","@angular/compiler-cli":"^8.2.7","@angular/core":"^8.2.7","@angular/forms":"^8.2.7","@angular/platform-browser":"^8.2.7","@angular/platform-server":"^8.2.7","@types/ckeditor":"4.9.8","@types/core-js":"^2.5.2","@types/node":"^12.7.5","ng-packagr":"^5.5.1","prettier":"^1.18.2","rxjs":"^6.5.3","tslint":"^5.20.0","typescript":"3.5.3","zone.js":"^0.10.2"},"peerDependencies":{"@angular/core":"^8.2.7","@angular/forms":"^8.2.7","@angular/common":"^8.2.7"},"dependencies":{},"ngPackage":{"lib":{"entryFile":"./src/index.ts","languageLevel":["dom","es2017"]},"dest":"lib"},"gitHead":"56286f4fa78bf698132405d60db0fd20932e8067","_id":"ng2-ckeditor@1.2.5","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-llX09HJZJkWXkZD6gm7Ae/vH+nsXBo5+fXvz9HWtVruxP6DMbVW86WoPMb74VqGl34rx2z/IUvM9Zd2bPlmy8w==","shasum":"862b862832ec4129818394531878db025f734f44","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.5.tgz","fileCount":44,"unpackedSize":282162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgzmhCRA9TVsSAnZWagAA/0AP/A5srnDNqmHNSICxNFVZ\nvl6flAFS9MLIC8adxAkQM6Q9WMcYXpydhFscyPYjenSOkXRG89rKEuzk83/J\n+pWiz4UNdmNNOs8ZlzSj59sbpGjHo3l4DmoXfx6eaSkZ1N8qAErL0Ojiv2pU\n6HH7BGDU0DB55WNIpk2b7lqc1oKKGNgZNbza6bdg0EOmdVKDnIU4W8jlBa7R\nUcMci6GdNfvNMI5zjxRDwPXTUAXdN+Fn+Vo9cBi15EgE8mGNV8mXPerxsL6c\n0CabNs5qjTV0KswneZaZM16nldQEiCUrow38qxmOvx9XJU8/SKSfK8Fd6aGH\n3SLyV08a2i/U3ZxtXQXCksrtwVxztl+9m3VAV6AWu9IQ5uQmRpRyT/256OPZ\nE6h+vU5zWmi3fu+9bqu6rcWd6YkAdnvQDZ7k6gKqE7QKSz/a4tiFTrTJdUla\n7yFL256fAO8r+ETnbDCEf3jyWHuciBampHbABANl2EKSqkWsOTj0IFiRrK1D\nuqemAh92SmkgjOLxKoJq4bv47mRJsM0guAX1Op/EsTvaAsNfhnqZUyUrmmip\nzAxZ6heehIinj3FdylrNZhMBLOQIz5PoKPPCflO5KJVpgFeuOSu/FsEHeuw2\nmGDrJBX7TigBoeW8VC6S+AP0ytIiHZSV8pEXGeh73A7Hrr4263ADgvVyxlaH\nBTjK\r\n=Gxza\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEaxfalHp9aW8kLNP3nb5xhbapU9YswiiwVkY2RS8U7QIgLnStRrmqOYEeCEhBZZ5n+mUo40Waa1gdjkvrqf6EliM="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.5_1568881057291_0.8093452024494516"},"_hasShrinkwrap":false},"1.2.6":{"name":"ng2-ckeditor","version":"1.2.6","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^8.2.7","@angular/common":"^8.2.7","@angular/compiler":"^8.2.7","@angular/compiler-cli":"^8.2.7","@angular/core":"^8.2.7","@angular/forms":"^8.2.7","@angular/platform-browser":"^8.2.7","@angular/platform-server":"^8.2.7","@types/ckeditor":"4.9.8","@types/core-js":"^2.5.2","@types/node":"^12.7.5","ng-packagr":"^5.5.1","prettier":"^1.18.2","rxjs":"^6.5.3","tslint":"^5.20.0","typescript":"3.5.3","zone.js":"^0.10.2"},"peerDependencies":{"@angular/core":"^8.2.7","@angular/forms":"^8.2.7","@angular/common":"^8.2.7"},"dependencies":{"tslib":"^1.9.0"},"module":"fesm5/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm5":"esm5/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm5":"fesm5/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"_id":"ng2-ckeditor@1.2.6","_nodeVersion":"10.16.0","_npmVersion":"6.11.3","dist":{"integrity":"sha512-/bw0ZzVBvHUrFrXFeP08XKSsIX67M85rTiZkcphn0kpripAj13JvX/l/SQ74Kfk5K226Y3c+rONDj6OtfZH0kA==","shasum":"be5dc7872846e329f61d5b0d6ce084045044ab7f","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.6.tgz","fileCount":30,"unpackedSize":264320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdg6NCCRA9TVsSAnZWagAAc6sP/ihnoESKjr5Imv71YvOd\n+N/uh0NzHVpvNlop+UmToXjwjeVCQK97FV6GDALqSRb1+tsj4ZgNuFHFp1yk\neH41e0whnHNLB1nHXkItid8Ct8PoQfB39/Ta0t1PwI4rs7vMgXou7NNBnM40\ng2adp8N92IgE2RY146ADMJdPQz7KjDu0PVXnS62iQKG6tcEL447Cq9BmmGn3\nzV6PnqbDKDxtfsGldSI/vzlgVCljJJ9IWsYa1fbAKkXuy4STVSSZ5+h6pfcv\nupgTYOT17CIajRDpmYJChRjhbkdI4AJhUiHtf51vIJPr5NjpPPswJ2b+H0yJ\n5F/Fswbffn/bPq2juRD+WSc3bWsieZw18BQWSlWZMGxS0gHFiQDbfERSmkOz\nB4LaXd5vloTd2ktf4DV7U3AZEkhbwOlwSk6mZq7/mLAY1hF0i1h+/coIFn4y\nCQS8WuhyQ0rcCVRr+0rEdlGqOtOB6LMbtjn8S/i/ibGuDEZlXuAAh+W+SPY6\nAlpnNCNBZoUGLjcXPI5efBlgeCirW+4T88Ot+CsU0wVhEfFh3kocSumOyUej\nVHrMuSJ4mRWIMSfJehouuFgA3nLnOzZ/sMSDUe53IUCqQChOhzua79BSIByN\nKtSbEgOr9EKu5BzW6Qa1+Vm16ulTjph/RgwZ/TMwlxNEk733mJLAP9z4Jzfe\n9oi2\r\n=Zvc/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC5ULxj2KbzG2OvKOMdmygnJ1GHgiGDGRFRcj163fMcXAiAsoeqCc3UFz1lq7O1KaM5YYVUJq0lzZyFjj6WZSz5OeQ=="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.6_1568908098237_0.32835597109827863"},"_hasShrinkwrap":false},"1.2.7":{"name":"ng2-ckeditor","version":"1.2.7","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^9.0.2","@angular/common":"^9.0.2","@angular/compiler":"^9.0.2","@angular/compiler-cli":"^9.0.2","@angular/core":"^9.0.2","@angular/forms":"^9.0.2","@angular/platform-browser":"^9.0.2","@angular/platform-server":"^9.0.2","@types/ckeditor":"4.9.8","@types/core-js":"^2.5.3","@types/node":"^13.7.4","ng-packagr":"^9.0.1","prettier":"^1.19.1","rxjs":"^6.5.4","tslint":"^6.0.0","typescript":"3.7.5","zone.js":"^0.10.2"},"peerDependencies":{"@angular/core":"^9.0.2","@angular/forms":"^9.0.2","@angular/common":"^9.0.2"},"dependencies":{"tslib":"^1.9.0"},"module":"fesm5/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm5":"esm5/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm5":"fesm5/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"_id":"ng2-ckeditor@1.2.7","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-TmnfhvQB9yFisl6kS3MT+LmkMU1sc5gHdrcSvzL62a/LZs+V483ZunkW4A+wz+a9EV/wu5heiqqcSZsKtnVJqQ==","shasum":"f88b1dc73f028324d0c78edb6c961d9dce6ef9f9","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.7.tgz","fileCount":30,"unpackedSize":262346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXB1QCRA9TVsSAnZWagAA4KQP/RfVQG0RxMRhKjo/+gsw\nvGxPmZxhbg2lvR/oUQ5q4nM3PyVv3KQXrlwFI0vRauQvfVDdiUZTyxV4OhP+\nHAQQMxGJd0B9KZhstIgTu9qRwL/1szE/HrVMCflBc5tMM91dLmDBPaiPqgHA\n8z17qPjinyI/QsPoY9xhzztbMiM0VssWbD1YugOr6MOO6jrJo4I3+XqNL2+/\ni8BmK164vtBJPPKruwyA+kh63QYIV5OM+/0DhtG3tfjbaPR8JGjXfew0uhzx\nbojxtmCSf5H/6MuhdEL/6jEZKyutbxduEaTdrOqusVk1W3j9qd4ctPW6HQt9\nFTZT6vaK+jRtv9kSTJI7cRyEYav4Dd2N0cPyrCqqGcicTJ+Ywnoyg8gKESr/\nuc/9bzxyg494esgy1xN6MySEja0zVV1/iPQUY+Qj+GMV60dnCZjxjovEviUL\ni094Opqx8otv0ibDEfsQOIvFh9TuM1TmhBzyIc6kGCOoD2Kq20p/S9oc4dUG\nmCRGq0Hvck2R8eanVevFa2tijXXXDu4ZcygoUQbEXGZHjmw7Z2zT3dPGJ2+1\nFgnyOQGceXHgxoGhqQZKkNIa59U/itp3nw/KY/AMCwuXXmoaRDVDvn5iaymG\n6Q7/AWb3kEBgRsUe6fwHgzyZJP9pGMwek1hEDUh0pQLUQ0kQfu7X/iomeRel\nqFKp\r\n=kslJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG69SW1sputXU/x1P1YqKehh9VbQItu35VCUDZZeLOmcAiBOHbK+IESzCVGW/gBBkFS2ItsdQYhxQ6kmqajm+/JApQ=="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.7_1583095120072_0.9822945480084169"},"_hasShrinkwrap":false},"1.2.8":{"name":"ng2-ckeditor","version":"1.2.8","description":"Angular CKEditor component","main":"lib/bundles/ng2-ckeditor.umd.min.js","typings":"lib/ng2-ckeditor.d.ts","scripts":{"prepublishOnly":"npm run build","build":"ng-packagr -p package.json","lint":"tslint -p tsconfig.json -c tslint.json","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^10.0.4","@angular/common":"^10.0.4","@angular/compiler":"^10.0.4","@angular/compiler-cli":"^10.0.4","@angular/core":"^10.0.4","@angular/forms":"^10.0.4","@angular/platform-browser":"^10.0.4","@angular/platform-server":"^10.0.4","@types/ckeditor":"4.9.10","@types/core-js":"^2.5.3","@types/node":"^14.0.26","ng-packagr":"^10.0.3","prettier":"^2.0.5","rxjs":"^6.6.0","tslint":"^6.1.2","typescript":"3.9.7","zone.js":"^0.10.3"},"peerDependencies":{"@angular/core":"^10.0.4","@angular/forms":"^10.0.4","@angular/common":"^10.0.4"},"dependencies":{},"ngPackage":{"lib":{"entryFile":"./src/index.ts"},"dest":"lib"},"gitHead":"568974e738429e4051020fc543f83fd6217e90e0","_id":"ng2-ckeditor@1.2.8","_nodeVersion":"12.18.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-PBj/p4j7RuA7mPTGXLqT2uK9ydamKtUQmgMvMCnbTr1LxipEgvBqIDexhEaRsQWfPxG/xun6oL7GqOw4JJtsTw==","shasum":"cba79050b7f7c88efcfaada9ed59226633e4471f","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.8.tgz","fileCount":36,"unpackedSize":147555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHf/RCRA9TVsSAnZWagAAqy0P/AnMXemFDjyiaAdg+HGC\n/fN07xs9+6DApW8vWsAxEGLne/KZgcNArSqAtBVo7kfs19fjUYlYDrrCNBbY\nDYKzyplm8SdmkhwG9JvSR/DmOK+qEGTXMEbghcIkRZsgyAQyg1sBr06N9ITj\nFW48aiRDhxMPvS1LGsjS9n1PWY/lfRIyVg3uctbIG96eTZUOKs3IjCItuc07\nIW9LEEkaAkb5khYF9vYTNFfuJ48OYKXxiVv3X4A76dXOPCsHDZdcpZK8cPNG\nLVSRCeaeWsSDR8Qbr+JytPn0ZN4zdL34TyVJm9k8yIIDYIV4XjRcNsE7AeL3\nn0g1c3Mjh0W1E4v23TwApXo68gcjXxTjNr/wzfw/R4UAPcZg0njrXRzeFShJ\nyFDvooef1lprryoELJDrzj44mTeFoXE3H3dFPTkqvgmYQ2tJ/Ohm3kZ8KlpT\nPt7/bQ/XkkW/xEYB8hde6oYSYrfx1evS3tibd+YJMj58KEnFr0MXpgWRoL8a\nk2nmaT9yZ9UMDdcNH0yaTTn3wdcn3BMoEq1d/mgk5R5QHSeuuw5/H+P32bsl\nSrnv741KLeyGuZOENGBF19VrrS/YBjMKSb9sPJxmbHJkRB+ZJ0SikQSli9SX\nRYlzZNm+JykQwhGmRuEUEo6aBgim712BUxjtkAX9xuUpobquOsUrEfnxQlHa\ndTAw\r\n=LQRn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDkOyw+IaWakXXg4h/klUJcU9NHhi7eUX8ErYUCHZkcpgIhAMDYALL8LhWsaKyROrn2/L+nF9uy5BtOHbejwjC0Es62"}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.8_1595801552651_0.6874477766083333"},"_hasShrinkwrap":false},"1.2.9":{"name":"ng2-ckeditor","version":"1.2.9","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@angular/core":"^10.0.4","@angular/forms":"^10.0.4","@angular/common":"^10.0.4"},"dependencies":{"tslib":"^2.0.0"},"module":"fesm2015/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"_id":"ng2-ckeditor@1.2.9","_nodeVersion":"12.18.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-Olsq3fWc7eG8BsVDgCW9NZFuUfay1VJ9c2QlzLbtXoxilwRhtHJsPxuAjE9DjxhQWgYa0TSgosk43JKkBqT2lQ==","shasum":"e9f8bf73db69133a20a522721a69dca427dadb2e","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.2.9.tgz","fileCount":22,"unpackedSize":129857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIBb1CRA9TVsSAnZWagAAeMoP/3C+M0wlvk4YBf7uxEfV\neN1v86xDPjS9ZR9xrrZa6siFm2QRl+7QaMCh2xx1H7nYuGd8M2cdoBcb5/jU\nNVnKyibIXNoJs+PVrNi5ol9//XJ42Z5N2v2qS45pV3iHrVFRQYIO7+eF7VFS\nGzvB5HTe/v2uspTommJyiyndKfmgh2GCWeZEmEWU7MyUhHyl1F42OtzSM8Tf\nl/SP+7cQGus2nVyBFruGlOFTKf+tmutC4gjWExPYfzSwT5tT/gNH9GuDwx1x\nhZO/RnJVETH1oAdNqBtdwVsjEHLvcruto5Z+X3hCbLKeTaHOOLkOlgRLlkrk\n/xYqsUcBF6/KiGHfRphNGfqi7XICcwo8XZ0Fvnfv7GLA7EPmufjBgOj1KEzc\n0f8e0YYqfHYf9hjalOHhEH+d/mUbqpp/AuNngWZHOhndJ6sKKKOtDmqbEM1E\nVQGjL6rdCiBXsU2gsaGkllj/0CQqawrtYOY70sLlgrBps/BFqcQ4vu1wDBc2\nHtWHV+aR1eNSIf4gkjZDN41fXaQFQGgW+LWU+NYZGeGNtHKKLEdFXbVWbUHw\nVW2Oa7OCMVOipIxKs1dJfileJLN1OkWJtXPGHiY2r2Lp93IWVAONZaVQ+NdH\nchAbf11nEpvqjt2RMbNMdE+sn7t5oAcizpiBtgJXvSjrPePyg3JZBxyDBV3Z\n+V5f\r\n=4AgE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEwre7qEP2ISbWq3F6p0L386LAhb6DaKw4wGbG/CXz6TAiBOT6PoenRPnrYnJUq5Y6eIJMEedX6tHqfbA26yhTy0Mg=="}]},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.2.9_1595938548937_0.8603035122250502"},"_hasShrinkwrap":false},"1.3.0":{"name":"ng2-ckeditor","version":"1.3.0","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@angular/core":"^10.0.4","@angular/forms":"^10.0.4","@angular/common":"^10.0.4"},"dependencies":{"tslib":"^2.0.0"},"module":"fesm2015/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"_id":"ng2-ckeditor@1.3.0","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"integrity":"sha512-Nd28XUO8Mf0OwypwD+ulAIyAt9/7vt2bs2ofD9NUXu5uR+5G5C1GoevqWPfDm84yw2GeS1FLlfOX8iKVEmixgw==","shasum":"250ef59017dfd4f6d820fcc0a5d19301071267ce","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.0.tgz","fileCount":22,"unpackedSize":130789,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1+X4CRA9TVsSAnZWagAA0nMQAJod5ryGLV+Q1NL6nNR7\nIPflW2LC3jSnXnyCrhxTdctpzJQkQTdulh2pH06AfN3M+RPHB/UKHIV1BrrI\nXu5WuTHvc1t/60/F2kfIJQE1N2a5ZG56w6apWx3sFtRTYLN3t36Mc1Yb8u0Y\nfqE4m7AAg7fQN6F2RU3BP5aEWfyLixJje59DGywhT8+42WTtXzvqEECnzCrr\nYBNU2klYmfqWgikPTsVAWm4IasnsYS6DVoR5FW5k4Qc3y7Hwak+OJOvB8zWX\nu1vgiAWmyYCzfsJ4xS0KXwhem1fIMPx2KwjTYl9chihl3oyl9pgw4jmnECBy\niMrwO5tGU5+SAUmOClw2QtgWNcOBG8bc/1t7tembLdxJ42YWMEg4IAGuC3dW\niRKlPNRY73o+/OnzjihQ0oMMUP92R1gxmgCI9r7SWxBbsxUkJw5A/HoZCXSr\nVrpUakO0HHZtnnm5clL90rACsNj4CNeIQtMYRFoo72rxmnS6oULKn+wRiggj\nkdvcs0oNuemeB+bjEXupVNyQDgvyWNpzN4v8FEqSpwKbnXQ+OXLHRdmwKE4U\nrnSzBmL9l+sLd1Kh+CaNflFfAFS0PZiK/4j+ZtMZTjVBoNCeuOqfo04deGcj\nE6N0kwggvZ3gC/AeVEqPyUE7dfmKa+oYaN6Dg21Z6bhNwFRTlPIDUOGSTqtn\naRMz\r\n=2is+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2tvV/eErBcic6hBlP4bZ2WQAxQgflW5T+3F9sDsQ+JwIhAPywWavIC26HSn95CmdHc0Qr3yGSKJsRBC2lfeCJd0sQ"}]},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.0_1607984631715_0.979273885198124"},"_hasShrinkwrap":false},"1.3.1":{"name":"ng2-ckeditor","version":"1.3.1","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@angular/common":"^11.0.4","@angular/core":"^11.0.4","@angular/forms":"^11.0.4"},"dependencies":{"tslib":"^2.0.0"},"module":"fesm2015/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"_id":"ng2-ckeditor@1.3.1","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"integrity":"sha512-lNMJ4L3GTea6Rb5AHkw5VMgT4/CAKXZjhZ0BQ/EY2XU0r2vkIOSkov/0eKvcO3RiFJtGv/hefzkZahb4R7RKWA==","shasum":"591559425376f1d6f5242d94f68a4b1e3f7f4afa","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.1.tgz","fileCount":22,"unpackedSize":131325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf2Oy2CRA9TVsSAnZWagAAs00P/iwN/I9Hq8ij8cWGTKvo\n1EKcTodP3+w/NP2tHlIXctm2IqbVE6jvr7fV79SQu40fkWWDd+qH+xi03n6u\nQA/kGnyzOtzlZSj11BSmOniiHM5yAdefeKjVI4gTYNzXhyg3J4S5Da4Lx8+8\n4fwNHHtlTSrRGoB2Ke7+BoNQHlXZBeCmkS1FCeVrORDhB3fVBi0fcv4d/mKM\nkh0/DfxZg1o5TfDc8KExfFCfkrxZLRk7f4sv/MIX3jwa4thJl/9VglwFfdoV\nEqZ/Sw/MzVlggkqmodKmX/KoFphlNFwTQVuzpIUGgymFbVAywoshmB9OqFSI\nzFFLJKI2929f3e9j49Pp+bs37Dn+PUYWy96ahg2qUYdZh6aSwbT5ByhdV1b8\n+qPCMU+tskweb3RSuteESVco6Lh48cm9X2EYwvCqnW/G432OlNmjKjRHmOu6\nyOpvIHfUUM3cAiRHoo5NE19pO8Ct2Uvt14vSyD3WZ2SraiC5pn+07nnDCoeP\nz174JtD5bp2nBQ9q3fY93QJhtnrc28iEtKAy3/Ur/Br5pwLT+wHcnhQJaf13\nMXETnxAu5MsotoooGRjE4U+CSICfMG78kGQb4+2FWInjOCYTLLrwk37s321O\n8OEHa4Tb9sOis7KhrWnPVWJLGTdXT4bHpMVt0JHKywW3YysRbsKgR36w3cfR\ngS0u\r\n=v2am\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCkkPeDfpfvPv4iAtZkvCvkn84YW4zXGBuxicaL17aUIQIhAPMc9AYs3z/OQGMI536jOLkqPttQvMGOmsufVW0wclg9"}]},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.1_1608051894304_0.3809755868781972"},"_hasShrinkwrap":false},"1.3.2":{"name":"ng2-ckeditor","version":"1.3.2","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@angular/common":"^11.0.4","@angular/core":"^11.0.4","@angular/forms":"^11.0.4"},"dependencies":{"tslib":"^2.0.0"},"module":"fesm2015/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"_id":"ng2-ckeditor@1.3.2","_nodeVersion":"14.15.4","_npmVersion":"7.5.2","dist":{"integrity":"sha512-2cVCHCLucE8aaDjz3LETSeOVgy7ba+Qvtu4eR4431nC1plOrgQUeB7EnX19AFr3mKjnkV2ycUEpW2Wxm7QNyNw==","shasum":"1c7dab2f0a09a81e54a785bc840a677e04e4abd2","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.2.tgz","fileCount":22,"unpackedSize":133641,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIB6ICRA9TVsSAnZWagAAucIQAJbSiv9VmPiEsZqVYDD8\nTCc6cu/7AqkRrN5WmWlfk3kT8sDtX15kI0bBmuiU2wTJT6XEZ7DyfRNEFrd/\nxTTGarZ17uiY7ilIJxenNah5MjZsUjpSTZcsJ2+pY95lMot1c4mIL3eoEh25\nx5wN5MyL3fFMMZMyco4xOVTvZyocSmXCnnmPWfPbt/7/khO9iSM4l/VCTMWX\nW32/vzhOT78ePhE+WohNZLu/bqYyiTAaYFD0dsAPmO4+McxpNMHBsXqqU4JU\nGjXsaLxn0E0WKJs8PeD/zVQ84BPhOpV24PqzOQNWe4UaVFCE4pS5V618/5Sr\nomM9fXRDVtKKEuq5gqUvdRDpW+LmzvGcwkr5Mj0CAT1Fzlr7NgC39e99eOin\nn84CtbQCoLxZeEt6bNaHMfmAD03CQb4g5EcLoTSTD01pNfpXu0tQfKz43IGg\nSMxaUgRcWM4SBcXSd+WEkMBzlx7U+bzvZ1Cx62lw4GNjQ2RKT12ZpWSYKVKG\nlDeguNyTSgAZeIDOPXFeqhdlQUkPque775ppSoe8x2G51RX61K6/7hAyCcl1\n+0hTbPPTUCzkCxAzwhTZof0FkBRzRoOOtDLVc7QDD8Lok9z0AN772GBNws5E\nYoonBmdzzMdZUHH2YS6MnfnODC8+QNLBO8o2tg1Zujq2T5MbTOMKOw2jUygc\nsqsb\r\n=Rmu9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBor+xPPyhTGEbUXsPTKBnaJvBa/abEvewZhvPtZGkxoAiBnm8muqFTM6qVSCSO3hAy3Ss8Vn48/XlneSnODgPSpXg=="}]},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.2_1612717704279_0.5839062052254209"},"_hasShrinkwrap":false},"1.3.3":{"name":"ng2-ckeditor","version":"1.3.3","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@angular/common":"^11.0.4","@angular/core":"^11.0.4","@angular/forms":"^11.0.4","@types/ckeditor":"^4.9.10"},"module":"fesm2015/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"dependencies":{"tslib":"^2.0.0"},"_id":"ng2-ckeditor@1.3.3","_nodeVersion":"14.15.4","_npmVersion":"7.5.2","dist":{"integrity":"sha512-NFLHFiz11eOmtldGHZDh8lva1kMNf+i8X1927SF7n9LOJhxCypWArSyobFyXdv/bPOMQvlyEsEoBUBQvRiwF7Q==","shasum":"bd8c34fc4343bea1932862aae446cb92f8bfb32a","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.3.tgz","fileCount":22,"unpackedSize":134772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIopuCRA9TVsSAnZWagAANgMQAIkA+hyQ3WdG5Avti7Ua\nDPXwQbJz9TGm3rHbaqCkju+qo+n7lwoLLA+2vTab0tQ9OVJVXmaCveZPMsbC\nSArZF9FIqMEeRoGJp7IGGq6v+/pJNoNN+xBDECoIfpeGpUhLQBxGkl3CLlz6\nyqA+Bk2d91t8om+GmtXtuH8Dv6/wmaGI5bgA85GEIEqwyOQTYRGVAI2cHSqZ\nWG1WeA+CCNQKYDTBtCi78pea4qq5OZrlop7qkyW8cnWUtp0BuRLB+KpRA3aK\nfJ7JcFa+NAa3Bj+2jO12fZGr1d3nwhKvbzfbv8h16TdxdYtU6VKTAUD17ok0\nqsoUWonR5G7bVpLcAtVfJ2JAYAVaK0PdCbjAYQ39Ghc/6kkzRzbbMMEtWTuj\n9CbWhYrnXIbVBttHhsW10z3IqnGizncdYNyzVlqTWPaLUIS5lRJnEifnnNYn\nsI7BBA2jO4CliPh1zX0XYSf/3azGIzB0qPqJmBnYNm56WCCLa8LX+NS57fVC\nTcookZRvXTHRrhBg5isFR06e6jlGur8SNn86gcxWQHWBBAgf3C0DR25qLWiI\n0ZT2epEuMZRrXRDQFJobdwfsAUpN2MuKVkPFWXrm+18M56l8PnMDB0zObgt6\nqUEAkQUPDbYs0cZnpOhlOlCqzKgMMSjatjiDcfOgRlfbcMJo6T6xb8mlO3ie\n1p3o\r\n=D6gc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA8hGriKtG8xodhqepSaDqRD/yaeBlQ60cVQn751oE5RAiEAnu5TpAD5D66Ffl9MkxrfJ4/OZenukjhri9PEDR4u7Vo="}]},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.3_1612876398297_0.13246941012066737"},"_hasShrinkwrap":false},"1.3.4":{"name":"ng2-ckeditor","version":"1.3.4","description":"Angular CKEditor component","main":"bundles/ng2-ckeditor.umd.js","typings":"ng2-ckeditor.d.ts","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@angular/common":"^12.0.4","@angular/core":"^12.0.4","@angular/forms":"^12.0.4","@types/ckeditor":"^4.9.10"},"module":"fesm2015/ng2-ckeditor.js","es2015":"fesm2015/ng2-ckeditor.js","esm2015":"esm2015/ng2-ckeditor.js","fesm2015":"fesm2015/ng2-ckeditor.js","metadata":"ng2-ckeditor.metadata.json","sideEffects":false,"dependencies":{"tslib":"^2.1.0"},"_id":"ng2-ckeditor@1.3.4","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-yGzG08phspU5XOZbA+PgUgk1Hu45FJPpZaj82PWWLa+U0YVRgoIiqiBxcs6N/M9cyyeTgIClJ67VosIDYan1TA==","shasum":"244c09ada42097a4f3bb1269e1c6201c588f9d52","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.4.tgz","fileCount":22,"unpackedSize":134775,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzGsbCRA9TVsSAnZWagAAHNMP/Ami0RCTsxeqQSfKtD/E\n690dZQUsXEe+HpRQyrlRiNsved+gXmnTtWwlgs4pHyU/ImBMbgPgzwGGtIPE\n92KteidjG/a454d4Y+qdbYSlRrOqU0NPn/A6UZ9Lu57tM0Q+txJvOv7KgkiV\n8ecpruBJjwCCALisRv36AbayzigdIa5AcWxMI+xMbtng5TEPpmtfp3b+hU+I\nSk9PbO2MobjxkyZiw+aEXIR9HDtV8BPhH1mDxf51jDIMxPu+FSiD6IyJ7Kjs\nlhjcs+JJwVbiLRDMjDk8q0/wgRUvoBD0z8bqxmAQzOT3wpkw4L5gcfomTxNq\nWy+vbQB7/oUkk68YzyA67aC+VgKWmCoHQtLxUfPKrSammFF2sky/bz81zmjw\nFLyNbgaIAtTp9Eymv0FJtYGLndQEGYOD2AUt8pA4LdOgPX1bTJVtykkiuPnY\nKulikpCq07ZsqB2x3AMlZlh5oTV8ZXQVUzPhiJ/OvT64by0Ik5Ojnn+u4DEq\n5VJVteL+VszObLJQEriOpvzszsaJOpdzrYoEnZk+70aso3umrqKwj8Aht+0i\nYg9ifrr41Ue0w/3pkKTbgQVP+s3MMwRqP3mxxqbl0u62YSuehXWpIDlDTzXg\nvqeVIRD2MF0duovsvP9FtxQMDAxVAqV0T9CYzAd2SLqTi89ZXVOIgnAJ5VEn\n74rn\r\n=pVyt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDKKf4W4ftxPsf9LjrkSf5d48HSQkp5n2jf3dbSf0jT1AiBeUGeXT5Pt0iE1VwRsZEO2zEIpFcTg7i3f3d+2Y+lo3Q=="}]},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.4_1624009498684_0.011327233274723847"},"_hasShrinkwrap":false},"1.3.5":{"name":"ng2-ckeditor","version":"1.3.5","description":"Angular CKEditor component","scripts":{"prepublishOnly":"npm run build","build":"ng-packagr -p ng-package.json","lint":"eslint -c ./.eslintrc.json ./src/**/*.ts","prettier":"prettier --ignore-path .gitignore --write ./**/*.ts","precommit":"npm run prettier && npm run lint","pub":"npm run build && cd dist && npm publish"},"keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","devDependencies":{"@angular/animations":"^13.0.2","@angular/common":"^13.0.2","@angular/compiler":"^13.0.2","@angular/compiler-cli":"^13.0.2","@angular/core":"^13.0.2","@angular/forms":"^13.0.2","@angular/platform-browser":"^13.0.2","@angular/platform-server":"^13.0.2","@types/ckeditor":"^4.9.10","@types/core-js":"^2.5.5","@types/node":"^16.11.10","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","eslint":"^8.3.0","ng-packagr":"^13.0.8","prettier":"^2.5.0","typescript":"^4.4.3","zone.js":"^0.11.4"},"peerDependencies":{"@angular/common":"^13.0.2","@angular/core":"^13.0.2","@angular/forms":"^13.0.2","@types/ckeditor":"^4.9.10"},"gitHead":"3767de76fe09d1be997e615397cdd7cc791802bd","_id":"ng2-ckeditor@1.3.5","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-U7mzkzbZwRxEQdouh/WSU6owlwqH7RHmS9UBPQwH6ijPoB+5Tm2RHxzI3D+1S1BaoFthf0eT1zrMXJTSzNpIyA==","shasum":"9b66ead1d4989da79018c5c3bb4d15eb71395dd5","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.5.tgz","fileCount":33,"unpackedSize":136059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3uOXCRA9TVsSAnZWagAAsvoP/ibT5TyJq8naUAvbEbdL\nX6ybHILFZfrv+IFNqY1tQtOCPkIZDtH9t7WzemUpo9B+b3BF1wI8cpbc1Nqy\nkYxRWIRDNtxsjC895dnn9oix3U73TJjXtgbcjIAqfQSdKXgRBRURE2iFesAl\nNgd24T498h0/OAEi75ktit32vuEuWg6OR1JlM1dY//CjRAtL3W6To6ixzulf\nmWieloOi2N6toO86UFmLCfbqyinVQ8YPmJw3Nc97xE3DwZc76aImpTtVhprQ\n3KM5oaLjKu+Is+uQAZO2929J8cVnDDK/F5VGRQ1uY50KJFhiwV5EWt55v0U0\ncZMBVbSZSkFwK16kbFBnMSY5pJxtv690NWG7KcSALhs4nHJVwGk6FJJXu2Cx\njFK3PQSeQ6CLo7buGqDDBmyWs02ygcsK85NGPtmnQfr/MmG85G4NJao/c6yD\n0i7g9TFZvXIH8cHmUKOhuX6mrVymX/b+7JrKHS+gAXDyymgzAifMEGlrcufT\n4KqUFKw5mgrqgeyHN5x9WANmxBLvU+I3+WUsrhSGCwF+5mLUeUyJ/xQxzHk0\nlQcFnKiRZaWToHeGkALb5IbPbs4PPV1dcEe9Twm03EZpEaAgQCm8rx21cdEz\n6oeuqjCXgStMZG5EI2Cg6DTgADxle3RKwfMGuTZCU5U546CdT5kHINNlc6L4\n+NYT\r\n=Di7E\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBH8rb+QHgTZ+fNVKulgBpQA2VeMed8nnsldIcT1+0CuAiBD7Py0fhqoE4zE3ARLqBRWPRwYCK4EqxvObA0/5FPeMA=="}]},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.5_1641997206881_0.0025209845390350427"},"_hasShrinkwrap":false},"1.3.6":{"name":"ng2-ckeditor","version":"1.3.6","description":"Angular CKEditor component","keywords":["angular","angular2","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@angular/common":"^13.0.2","@angular/core":"^13.0.2","@angular/forms":"^13.0.2","@types/ckeditor":"^4.9.10"},"module":"fesm2015/ng2-ckeditor.mjs","es2020":"fesm2020/ng2-ckeditor.mjs","esm2020":"esm2020/ng2-ckeditor.mjs","fesm2020":"fesm2020/ng2-ckeditor.mjs","fesm2015":"fesm2015/ng2-ckeditor.mjs","typings":"ng2-ckeditor.d.ts","exports":{"./package.json":{"default":"./package.json"},".":{"types":"./ng2-ckeditor.d.ts","esm2020":"./esm2020/ng2-ckeditor.mjs","es2020":"./fesm2020/ng2-ckeditor.mjs","es2015":"./fesm2015/ng2-ckeditor.mjs","node":"./fesm2015/ng2-ckeditor.mjs","default":"./fesm2020/ng2-ckeditor.mjs"}},"sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"_id":"ng2-ckeditor@1.3.6","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-dApbj+xgsw/CSzS9eDsEYa7ssSOvFzRoNm9/nXWGZZNXYe+vGBs7qlddRGGZraR2Hzi1f1N2xmefNz+tCtc3wA==","shasum":"65d892790604ee03af02e962b72da8213e6c6743","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.6.tgz","fileCount":19,"unpackedSize":118085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6HlMCRA9TVsSAnZWagAA444P/jg6TnL7eVlRcdaoNVZQ\nd01xjKXxvM5CuW8neqYMPNad8TBIPP4zuEC2GLxKjlyH3324nCMy1POlp8oQ\nElDuKrKN3QXjKAeH+xtbbMLg0Xyb4YY9ZzoTCb5eG+xp1AskgI32vLtyTEhr\nVai4lOXkehVOSft2GMAmeJg4fDo+lyu3G8Jha2Nvpjg6639pk81DfJ/U9VaV\nvKBduDkuBx0mQzcl/8h84p0r3bsBKH5VfCIMlMEqRbzIMNLL7CH7UInvw2D9\nVeMoNr4jCfb+aRhEeS19Q8SFwRlsUTT+u/1BrMD8gPQtQ5aKXWhpyWckpLs4\nKnuU/tIZ1UqyDhE7z8xDdhFdwlwlLCg17+l8yEJVbI9SnpQZ0Qr4GMsekV8Q\nQ0m/IEZ23hzaEdzCDj63Tky00EmfDWt8DKxn1SPMBKbbWZBEKmkgA5XMnpOd\nbNrQZAO8SR+IPIq4/XEPvuldoneb5CP5lNlKQgAeuBRaNDybJZ5NaZUbvwRA\nMiDQonBfpWJ4o1c07TSU4BvrD+iycIIbrChkdCKXO0PHiXBE/s59bq7Z/36z\n7xzMoveRhbaogar9q5CpPxWltWq4rNBXc4XxmgWIIf+iWItn9E4I99YFnaS9\nOHIYSYfrS2DE5UJ/jndw6VwQEgpmgYFlHOWrswLY6IBEzu6FRS1oPKiMywBq\nHKQk\r\n=liBE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2BWDBNBUIBkQNpHEtj/fNFgcNC0q3y0W03y71PywYcAIgWkWAvzkpZjU8TOCpRNoselpQLSdTxXbxMZF9RnWDzqw="}]},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.6_1642625356738_0.8797235819269804"},"_hasShrinkwrap":false},"1.3.7":{"name":"ng2-ckeditor","version":"1.3.7","description":"Angular CKEditor component","keywords":["angular","component","ckeditor","wysiwyg"],"author":{"name":"Simon Babay"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","peerDependencies":{"@types/ckeditor":"^4.9.10"},"module":"fesm2015/ng2-ckeditor.mjs","es2020":"fesm2020/ng2-ckeditor.mjs","esm2020":"esm2020/ng2-ckeditor.mjs","fesm2020":"fesm2020/ng2-ckeditor.mjs","fesm2015":"fesm2015/ng2-ckeditor.mjs","typings":"index.d.ts","exports":{"./package.json":{"default":"./package.json"},".":{"types":"./index.d.ts","esm2020":"./esm2020/ng2-ckeditor.mjs","es2020":"./fesm2020/ng2-ckeditor.mjs","es2015":"./fesm2015/ng2-ckeditor.mjs","node":"./fesm2015/ng2-ckeditor.mjs","default":"./fesm2020/ng2-ckeditor.mjs"}},"sideEffects":false,"dependencies":{"tslib":"^2.3.0"},"gitHead":"e36d669cd9f97fd527637fb9cf0a4e5eaf7dc725","_id":"ng2-ckeditor@1.3.7","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-3VdJLc/MUlFBbLg0rDwO3L+G3ofIn/zulV8rz/L4QVScQHpbJXGLJe6hIYNnAWOPaYFoGpczPC03YR+px3oJdQ==","shasum":"ba7856b23e6fc3a4d48e839d5c5652431641d9df","tarball":"https://registry.npmjs.org/ng2-ckeditor/-/ng2-ckeditor-1.3.7.tgz","fileCount":18,"unpackedSize":124470,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB6YGo9LqAiFo+wmnQbNVQWVUcmOBdu0kHhsOBFH91DDAiAarfzmeM/068O+h5yPvrHs6Ynh82pqLr/YEpM1D/NATw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+Al/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpOHA//UPKnGmBxzjWbACHdewiHR0KYPY1e5Z2pgnVlUG+YNnDWGwRy\r\nR3EYe5PxLCm9pfIwLDURnH1zwigar/RFb4aF5uiz0EMPQRZkiYKXDvzTN4vf\r\nc9r2xqSWjUEU/QdqDEFB20EmuT1UD8qbsutLzpvJgpNEzIQ1U38NV55EXZO8\r\n/Rn5u3XcJLyvIrY/gtUTq0PxSJHgX3tcTBcsBDBYg2TrGapCreD+qwrsbmXC\r\nGC7GMx+XNtp15r4bHh7KiiOG4LJhbgoIptpwJ1TO1fjwVETtyJ24UpmN1MHO\r\n6nUTkRWuJtpg+FoPlvxyQ12dr0DZHNWXv97ccrDRCAOqRmkAtrM/4ZGRkkJ2\r\nqja9RgGZx1F85R6JjlMozaakN9eO00DqRhOzsYT1Z4/hCQIds8GktO/mzV3v\r\nbIQQ3a1dL0eRdVGgcmXZp5MiTRMkdyNxXfsS+QcreOiDGxufDdpZcECnGocS\r\njbaz3pHe0Sbqp8yjEuKXMg+IBSkENLjZMGBr72MtG8mQTVEXl9wWVU00iVAy\r\nPb6XkYJPSsI0tf9oVkBgIYQ6J4r8K1V+wwehCBcx0CsW/93Hfy7cyVjBYLpN\r\nMt5XO2dnehQUReNBfCgg84l8y9dXGuCWXQ2ce4dnPHDqsBo3G5knhuEVs3bF\r\nRpYR/2Yk9ykz6JIFESRGiIhqxssPEZ9QZIA=\r\n=OLtF\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"chymz","email":"simon@babay.fr"},"directories":{},"maintainers":[{"name":"chymz","email":"simon@babay.fr"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ng2-ckeditor_1.3.7_1660422527645_0.6032530677364376"},"_hasShrinkwrap":false}},"homepage":"https://github.com/chymz/ng2-ckeditor#readme","keywords":["angular","component","ckeditor","wysiwyg"],"repository":{"type":"git","url":"git+https://github.com/chymz/ng2-ckeditor.git"},"author":{"name":"Simon Babay"},"bugs":{"url":"https://github.com/chymz/ng2-ckeditor/issues"},"license":"MIT","readmeFilename":"README.md","users":{"moosecouture":true,"jeandrebosch":true,"ricardoteix":true,"larrychen":true,"razor164":true,"kuzmicheff":true,"chad007":true,"codeinpixel":true,"nisimjoseph":true,"meliovation":true}}