{"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"keywords":["Angular","highlight.js","code snippet","code formatting"],"dist-tags":{"latest":"9.0.0","next":"8.0.1-beta.1"},"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"description":"[highlight.js](https://highlightjs.org) integration with Angular.","readme":"### angular2-highlight-js\r\n\r\n[highlight.js](https://highlightjs.org) integration with Angular.\r\n\r\n#### Quick links\r\n\r\n### Installation\r\n\r\n```bash\r\nnpm install --save angular2-highlight-js@latest highlight.js\r\n```\r\n\r\n### Usage\r\n\r\nAdd the highlight.js css for the style you want to use to your app's styles in **angular.json**.\r\n\r\n```json\r\n \"styles\": [\r\n             \"./node_modules/highlight.js/styles/monokai-sublime.css\",\r\n              ...\r\n            ],\r\n```\r\n\r\nIn **app.module.ts** import the highlight.js library and any languages you will be highlighting.\r\n\r\n```typescript\r\nimport { registerLanguage } from 'highlight.js';\r\nimport javascript from 'highlight.js/lib/languages/javascript';\r\nimport typescript from 'highlight.js/lib/languages/typescript';\r\n\r\nregisterLanguage('typescript', typescript);\r\nregisterLanguage('javascript', javascript);\r\n```\r\n\r\nImport the **AngularHighlightJsModule**.\r\n\r\n```typescript\r\nimport { AngularHighlightJsModule } from 'angular2-highlight-js';\r\n```\r\n\r\n```typescript\r\n@NgModule({\r\n  declarations: [AppComponent],\r\n  imports: [...AngularHighlightJsModule],\r\n  providers: [],\r\n  bootstrap: [AppComponent],\r\n})\r\nexport class AppModule {}\r\n```\r\n\r\nThis library contains the **HighlightJsContentDirective**\r\nBelow are usage notes for each. A demo app is also available as in the [repo]().\r\n\r\n#### For hljsContent directive\r\n\r\nUse this to highlight the contents of and element which will be set dynamically (by setting innerHTML for example).\r\n\r\nImport the directive and declare it.\r\n\r\n```typescript\r\n\r\n@Component({\r\n    selector: 'demo',\r\n    templateUrl: 'demo.component.html',\r\n    styleUrls: ['demo.component.css']\r\n})\r\n```\r\n\r\nAdd the attribute **hljsContent** to the element which will have content that requires highlighting.\r\nWhen the content is changed the directive will look for all child elements which match the selector provided and highlight them. If no selector is given it will default to finding all code elements.\r\n\r\n```html\r\n<section [innerHTML]=\"sampleContent\" hljsContent=\".highlight\"></section>\r\n```\r\n\r\nYou can configure **highlight.js** by using the **[options]** property on the directive\r\n\r\n```html\r\n<section\r\n  [innerHTML]=\"sampleContent\"\r\n  hljsContent=\".highlight\"\r\n  [options]=\"{ useBr: true }\"\r\n></section>\r\n```\r\n","repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"license":"MIT","versions":{"1.0.0":{"name":"angular2-highlight-js","version":"1.0.0","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"rimraf lib && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2"],"author":{"name":"JayChase"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"repository":{},"gitHead":"641d083823453f47a026ca88e31a00e96c0390b7","_id":"angular2-highlight-js@1.0.0","_shasum":"06f974dc5bc15aacf67f56dfc7cea5a61dfcf0c2","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"06f974dc5bc15aacf67f56dfc7cea5a61dfcf0c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.0.tgz","integrity":"sha512-IpHv5R10MVU0eDRDlTg5SGjKIWxbhq+8Ic+Lb3veVeltt4ckuxZqbYeBQGbn4WrBGFPQf8/5MU4+wFZuoT+4UA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGoiHwtOWWQsxpbWF5KRhdoyZJwfjaqFk4OPjo5Omwm/AiEAs2k6WdsoqeEcilIjm0qC4L0KOFasImZBxhG/rpYx3/A="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.0.tgz_1468989086461_0.8387885123956949"}},"1.0.1":{"name":"angular2-highlight-js","version":"1.0.1","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"rimraf lib && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2"],"author":{"name":"JayChase"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"repository":{},"gitHead":"d1bec8c2b5e056e40da145752b2e4a09ba2e1f2f","_id":"angular2-highlight-js@1.0.1","_shasum":"66bd208156602afda3fd5d08672bf7a86a8aa81c","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"66bd208156602afda3fd5d08672bf7a86a8aa81c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.1.tgz","integrity":"sha512-E8NpVNHKRb57Orc/xSnhplbu9Am08ZEA4w8zbtXcofrUobBqAcZ0MCHurEX7ycR5B84e2XyPRZ0PFFpvTgJ3rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCtI7wCTte1nOhdmsPHa/druGyIjGLcjaa2kFuviINYEwIgbXY1L55diONLx/k398WoJWt0gAV/pBQBEWrNGsxZGDA="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.1.tgz_1468989151089_0.37274833186529577"}},"1.0.3":{"name":"angular2-highlight-js","version":"1.0.3","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"rimraf lib && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"5fd21779752c8b1cbd747ebe02ff9e253aff7adc","_id":"angular2-highlight-js@1.0.3","_shasum":"9e30670f88b9cad090a95317451fde149c4b34d5","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"9e30670f88b9cad090a95317451fde149c4b34d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.3.tgz","integrity":"sha512-ql3lvYFc+K6XB+0Y1mBZFWo0v1xrC9h8yk6WXC7r9VKwHCiQnD8KkRirbSXHTe2EjqgzfUkCEP+mbVYFozOXtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHYIzwut5Iiuy7PPMAP+92Vz31UOYHOdQ5xfyaono7BaAiEAt82lqE8miySpeStul6MtOGtAdm94nVTxfqGOZcasOfY="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.3.tgz_1468989505319_0.5089827917981893"}},"1.0.4":{"name":"angular2-highlight-js","version":"1.0.4","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"rimraf lib && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"79599d5a09d6515d03ac7d56e3b5136b01617ad9","_id":"angular2-highlight-js@1.0.4","_shasum":"11be8dd3c8d0c03c1d91782a114627a17b351de4","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"11be8dd3c8d0c03c1d91782a114627a17b351de4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.4.tgz","integrity":"sha512-tn7n0i/3LVOkipQFftM8ZEz6S8xlHgvmLgOzo4fRvbCOR9lFcg6VHrFG3Cga8+PSQNI1BW9EznaRIyyBRh3pmw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHOFCuGkQF828K7wFwD1MrfwihiCBL+kt++FpK/dBdVuAiAUoGq7ukK2LjlPsxnFtbEhdYdGufR/iupU2BoaYEIY1w=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.4.tgz_1468989728564_0.6735193370841444"}},"1.0.5":{"name":"angular2-highlight-js","version":"1.0.5","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"54ab5939e4e0daf8d0631fc13b6a88646f7cf32c","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@1.0.5","_shasum":"8befe4e634984f637a3039ade47595f7d4edcf9a","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"8befe4e634984f637a3039ade47595f7d4edcf9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.5.tgz","integrity":"sha512-4kyrZvUddY+2a/tX5D5MMB35RtpAEQAKOGszAsXmhuZ7Qj6O5JOxd4PuR+dytBD65prtP3eNnb3Xt3C3rrgAWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOmhVVCe9+VKNbKQkUSFVDd4OlYkDP+EBGEvyPB50MHgIhAMRrWI1GP46NxtDpB2w2DaFox7S9DKssoeT+IUdV1qWq"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.5.tgz_1468990356217_0.14784244168549776"}},"1.0.6":{"name":"angular2-highlight-js","version":"1.0.6","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"7d48d423d2620e8c98d1b814076fdb7f536a9bb7","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@1.0.6","_shasum":"2b23bb97d15eee1080b301ea3fc75903a8d36c60","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"2b23bb97d15eee1080b301ea3fc75903a8d36c60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.6.tgz","integrity":"sha512-9R+MUr23V4iE858/mY501IOKyTNz19ACiqmnXVmBsBHLaIyymeqbuhmeRScKbLy8w7jcli4R+GS4qKxT6wYlJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDAnZ/4GelQUqk81LjvQ4g7zos57i+jUp74lTB06dullQIgBuCXp/X/RXyyzeisEVYzHsH89UiYIfKrlTaY7NA3sWE="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.6.tgz_1469058627892_0.22320205834694207"}},"1.0.7":{"name":"angular2-highlight-js","version":"1.0.7","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"32a7d20b846181a1c3a62a4207acef42905c1c8f","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@1.0.7","_shasum":"cf58a1759d7a34dc36560ce4150700123b7472f0","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"cf58a1759d7a34dc36560ce4150700123b7472f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.7.tgz","integrity":"sha512-ssbSksgp4rfTXLjVoK6ZENI/Jb2ILydoqkqWPYMrMTiIInObqTVjmC+LpCJVvAtftFNvkxx2SLVt+4G9YytH8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDl/OhvxsYyJwpM5APe33bR1Esmy2QnR1IwUyICWNsPBgIgfnWd+zOzb7Yt0g2QS2vab3RvEUp6UOwqyq9cEFstgHI="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.7.tgz_1469505583028_0.7180958143435419"}},"1.0.8":{"name":"angular2-highlight-js","version":"1.0.8","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.4"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.4","@angular/compiler":"2.0.0-rc.4","@angular/core":"2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"2.0.0-rc.4","@angular/platform-browser":"2.0.0-rc.4","@angular/platform-browser-dynamic":"2.0.0-rc.4","@angular2-material/button":"^2.0.0-alpha.6","@angular2-material/card":"^2.0.0-alpha.6","@angular2-material/core":"^2.0.0-alpha.6","@angular2-material/icon":"^2.0.0-alpha.6","@angular2-material/input":"^2.0.0-alpha.6","@angular2-material/list":"^2.0.0-alpha.6","@angular2-material/progress-circle":"^2.0.0-alpha.6","@angular2-material/sidenav":"^2.0.0-alpha.6","@angular2-material/toolbar":"^2.0.0-alpha.6","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"af67bb7800a79f63e38a98a048fbb18a51405201","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@1.0.8","_shasum":"13a4edb7145e90fc1223b3e0c52f68c9b9b3f3ac","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"13a4edb7145e90fc1223b3e0c52f68c9b9b3f3ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-1.0.8.tgz","integrity":"sha512-CB5lsR9cAWup2fznEBSfgpXNVgL2r5AaryQ4OMCvWwbth+hRdaGXzTFdtmfNyXJyeZLRU3zbqsX+lzqj0RVnxA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGI1VMBhEU+WwP+Dsnh7q3rYx3nMze1nAY0Dr3eGScfGAiAfvXXJojj1nLWSSPdclAxXosALX8prDQNQVZngWS8JUQ=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-1.0.8.tgz_1470726504377_0.43444891390390694"}},"2.0.0-alpha.1":{"name":"angular2-highlight-js","version":"2.0.0-alpha.1","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/index.js","typings":"./lib/index.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.5"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/forms":"0.3.0","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","@angular/platform-browser-dynamic":"2.0.0-rc.5","@angular2-material/button":"2.0.0-alpha.7","@angular2-material/card":"2.0.0-alpha.7","@angular2-material/core":"2.0.0-alpha.7","@angular2-material/icon":"2.0.0-alpha.7","@angular2-material/input":"2.0.0-alpha.7","@angular2-material/list":"2.0.0-alpha.7","@angular2-material/progress-circle":"2.0.0-alpha.7","@angular2-material/sidenav":"2.0.0-alpha.7","@angular2-material/toolbar":"2.0.0-alpha.7","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"395b65700b6fdfa115d49d0e767fc18641c12808","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@2.0.0-alpha.1","_shasum":"676958167d7c413ba3f7ae6de44d90975396bbf0","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"676958167d7c413ba3f7ae6de44d90975396bbf0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-2.0.0-alpha.1.tgz","integrity":"sha512-Vf63kpebO0c8usHAXOBDk2/0UdoCZsWfmLtqP+eGDJ1OBfjb3C4/xKie3K2+E4GYm5jIlBnMht/VCLFg8P+gBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDGKXEoqXUKtvjbwmeDsOfAMiOkwTm7fhS/zo0EsUgI7AiA0SF8S/pgTI/w8VLcfTuzD9/gypI6w5gfd8zLk6IShhQ=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-2.0.0-alpha.1.tgz_1471514617141_0.5361127662472427"}},"2.0.0-alpha.2":{"name":"angular2-highlight-js","version":"2.0.0-alpha.2","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.5"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/forms":"0.3.0","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","@angular/platform-browser-dynamic":"2.0.0-rc.5","@angular2-material/button":"2.0.0-alpha.7","@angular2-material/card":"2.0.0-alpha.7","@angular2-material/core":"2.0.0-alpha.7","@angular2-material/icon":"2.0.0-alpha.7","@angular2-material/input":"2.0.0-alpha.7","@angular2-material/list":"2.0.0-alpha.7","@angular2-material/progress-circle":"2.0.0-alpha.7","@angular2-material/sidenav":"2.0.0-alpha.7","@angular2-material/toolbar":"2.0.0-alpha.7","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"4224f823881ea998690e187b4c2793b9d0395da2","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@2.0.0-alpha.2","_shasum":"4194c7228da8709eed3569fcdbf5a47d94b53010","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"4194c7228da8709eed3569fcdbf5a47d94b53010","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-2.0.0-alpha.2.tgz","integrity":"sha512-drveOn8B04MajCQ6zRXL8WeghxlONODtTo7hMliBQtgDYEhA25pS4akZDXBamcfBUQqy4oOmlLeOGLBwRicu6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA+wv13nOXYfLrRz1brMql0jTCvFkyTVhzkoLQAKzCxfAiAVzfZLvO6VvzEm0jIznM0z1KjJJHDKQLoDnWUTGc5tcg=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-2.0.0-alpha.2.tgz_1471517794924_0.5901301242411137"}},"2.0.0-alpha.3":{"name":"angular2-highlight-js","version":"2.0.0-alpha.3","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.5"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/forms":"0.3.0","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","@angular/platform-browser-dynamic":"2.0.0-rc.5","@angular2-material/button":"2.0.0-alpha.7","@angular2-material/card":"2.0.0-alpha.7","@angular2-material/core":"2.0.0-alpha.7","@angular2-material/icon":"2.0.0-alpha.7","@angular2-material/input":"2.0.0-alpha.7","@angular2-material/list":"2.0.0-alpha.7","@angular2-material/progress-circle":"2.0.0-alpha.7","@angular2-material/sidenav":"2.0.0-alpha.7","@angular2-material/toolbar":"2.0.0-alpha.7","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"^0.6.12"},"gitHead":"2b5d591b8b263e91b9805ca2b984908c4de96c30","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@2.0.0-alpha.3","_shasum":"673325c70527dc6109820f3a54fdb7cfe92492d7","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"673325c70527dc6109820f3a54fdb7cfe92492d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-2.0.0-alpha.3.tgz","integrity":"sha512-BBTM7yzBvZ5qu5Rdui/T+F8sTkOL46h1Hmd0PHjWQPDMOXjNggjNxZYXeJ46NBgESq/7unqXpgQk2gBn6fBrsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDb+NRaysiA9Kq9fTa+TAzuYUiVjILWUu8rSHiXnblQBQIgdHuujr+kVXvV7jCpYV9kztFbISzC2ds8WM2Ms63sqsU="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-2.0.0-alpha.3.tgz_1471518104330_0.3514843734446913"}},"2.0.0":{"name":"angular2-highlight-js","version":"2.0.0","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.5"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/forms":"0.3.0","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","@angular/platform-browser-dynamic":"2.0.0-rc.5","@angular2-material/button":"2.0.0-alpha.7","@angular2-material/card":"2.0.0-alpha.7","@angular2-material/core":"2.0.0-alpha.7","@angular2-material/icon":"2.0.0-alpha.7","@angular2-material/input":"2.0.0-alpha.7","@angular2-material/list":"2.0.0-alpha.7","@angular2-material/progress-circle":"2.0.0-alpha.7","@angular2-material/sidenav":"2.0.0-alpha.7","@angular2-material/toolbar":"2.0.0-alpha.7","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"0.6.12"},"gitHead":"85fb94028a473b6b8a24c11bef540c958daed6a4","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@2.0.0","_shasum":"d59e8f7b2e91d902271cc062ec0160387a4e9e62","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"d59e8f7b2e91d902271cc062ec0160387a4e9e62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-2.0.0.tgz","integrity":"sha512-TNP+SheXRTvDEivshaR3NeYBAhn/1mA/qT8u+vFun1Tqh25QH4hfCz0lSSF3U0PBYLePOBPhiEIVxsPID38/dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDXnmYgMUAvUlgYccW3ryvlqXm728BGqAyAeHVlFLuYHgIgFa1JkkTecohPIVLY1GCyMMB3sNTwiEOVtcWdGkvRzDw="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-2.0.0.tgz_1472005903213_0.8624713374301791"}},"2.0.1":{"name":"angular2-highlight-js","version":"2.0.1","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0-rc.5"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0-rc.5","@angular/compiler":"2.0.0-rc.5","@angular/core":"2.0.0-rc.5","@angular/forms":"0.3.0","@angular/http":"2.0.0-rc.5","@angular/platform-browser":"2.0.0-rc.5","@angular/platform-browser-dynamic":"2.0.0-rc.5","@angular2-material/button":"2.0.0-alpha.7","@angular2-material/card":"2.0.0-alpha.7","@angular2-material/core":"2.0.0-alpha.7","@angular2-material/icon":"2.0.0-alpha.7","@angular2-material/input":"2.0.0-alpha.7","@angular2-material/list":"2.0.0-alpha.7","@angular2-material/progress-circle":"2.0.0-alpha.7","@angular2-material/sidenav":"2.0.0-alpha.7","@angular2-material/toolbar":"2.0.0-alpha.7","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.0","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.6","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^1.8.10","typings":"^0.8.1","zone.js":"0.6.12"},"gitHead":"a47aeef0819d4fc55e66597aec7773c97878aa8e","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@2.0.1","_shasum":"d729c512046802ad09f027c6c29678186b5835a6","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"d729c512046802ad09f027c6c29678186b5835a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-2.0.1.tgz","integrity":"sha512-SnflRlwlUbc+kNWzyPTfqUUDrSI/8BOAp1F7ke+jdKCnAam84HMGCfiy/LrnVNPVOXJ0KftXbKSOFlCJ1O1aFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDcbcQdUN/ZAN7nGHeTFI4rB8WVcF6TpbCg9ZTwuWVlGAiEA9jAE4gVqpfSyt0jjCxQYQVrIF5+qOTvyImWeNz9HvUk="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-2.0.1.tgz_1472260919773_0.4877900565043092"}},"3.0.0":{"name":"angular2-highlight-js","version":"3.0.0","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","prepublish":"tsc && npm run pack"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0"},"dependencies":{},"devDependencies":{"@angular/common":"2.0.0","@angular/compiler":"2.0.0","@angular/core":"2.0.0","@angular/forms":"2.0.0","@angular/http":"2.0.0","@angular/platform-browser":"2.0.0","@angular/platform-browser-dynamic":"2.0.0","@angular/upgrade":"2.0.0","@angular2-material/button":"2.0.0-alpha.8","@angular2-material/card":"2.0.0-alpha.8","@angular2-material/core":"2.0.0-alpha.8","@angular2-material/icon":"2.0.0-alpha.8","@angular2-material/input":"2.0.0-alpha.8","@angular2-material/list":"2.0.0-alpha.8","@angular2-material/progress-circle":"2.0.0-alpha.8","@angular2-material/sidenav":"2.0.0-alpha.8","@angular2-material/toolbar":"2.0.0-alpha.8","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.12","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^2.0.2","typings":"^0.8.1","zone.js":"0.6.23"},"gitHead":"c5d33e302aca0abe84bbeeac6aee6fb9110d2122","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@3.0.0","_shasum":"9626fa30fcbd3c216c1cd8fd9fad23966a57779c","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"9626fa30fcbd3c216c1cd8fd9fad23966a57779c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-3.0.0.tgz","integrity":"sha512-YxpMSFs4JbHseooVdcn0ji79RHFdZy9luq2p1t1XMmidbeYjoekManFezF+O0aflcZckiyRLSwraxi1hzhPW/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAQ34XugY9pnpSgvtAkHh2hjlZcj9DbixDdfsoUb5tQlAiADWiWAFSy0bTIJf+BMEECqaog5/2b9rSoZn3N5k/0Tpg=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-3.0.0.tgz_1474105741846_0.9867828444112092"}},"4.0.0-alpha":{"name":"angular2-highlight-js","version":"4.0.0-alpha","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0"},"dependencies":{},"devDependencies":{"@angular/common":"^2.0.0","@angular/compiler":"^2.1.2","@angular/compiler-cli":"^2.1.2","@angular/core":"^2.0.0","@angular/forms":"^2.0.0","@angular/http":"^2.0.0","@angular/material":"^2.0.0-alpha.9","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.0","@angular/platform-server":"^2.1.2","@angular/upgrade":"^2.0.0","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.12","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^2.0.2","typings":"^0.8.1","zone.js":"0.6.23"},"gitHead":"0aa2b6d19ddc04130a7ac27cb6e780f32967a8a6","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@4.0.0-alpha","_shasum":"1a78bb143d2ab085ee7ca02147c365f56f21c4c2","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"1a78bb143d2ab085ee7ca02147c365f56f21c4c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-4.0.0-alpha.tgz","integrity":"sha512-yLWxgzjmRiHaXvKFQFg5uXfxmGHp1kujT7zry+PAEQTAdSwifiBGuRu/hNTiysTizmDdfFpHwzbr9LrYjhRIxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCiqT8tpl77I7YkTG+owAF0mnxFtYjG8LeivBnaV1CoYQIhAODnNpS6nnAcPcXY9ZrhMQ9LdwgMBkG1mqW+8BmJHnAl"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-4.0.0-alpha.tgz_1478682196265_0.8972094000782818"}},"4.0.0":{"name":"angular2-highlight-js","version":"4.0.0","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://netdevplus.wordpress.com"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","peerDependencies":{"@angular/core":"2.0.0"},"dependencies":{},"devDependencies":{"@angular/common":"^2.0.0","@angular/compiler":"^2.1.2","@angular/compiler-cli":"^2.1.2","@angular/core":"^2.0.0","@angular/forms":"^2.0.0","@angular/http":"^2.0.0","@angular/material":"^2.0.0-alpha.9","@angular/platform-browser":"^2.0.0","@angular/platform-browser-dynamic":"^2.0.0","@angular/platform-server":"^2.1.2","@angular/upgrade":"^2.0.0","canonical-path":"0.0.2","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"5.0.0-beta.12","systemjs":"0.19.27","tslint":"^3.7.4","typescript":"^2.0.2","typings":"^0.8.1","zone.js":"0.6.23"},"gitHead":"a49be52249460cc263d0114f6f5ae7afec5185fc","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@4.0.0","_shasum":"15d4e1815290ee397e22af5d60ea497b9ae89a2a","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"15d4e1815290ee397e22af5d60ea497b9ae89a2a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-4.0.0.tgz","integrity":"sha512-1qH0JVso7CBlKvXIHLTiqF8i1g7OFx/kAMVXaBWODN9MBpwD65JFV419iLbo0YZ4guy3mg2V4rCaF4eIkje7rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGzT/Xi3ZlBG7mP/aj4v//fCYfWlqjPac0UycMdwBeN0AiBtc0YV7Pe/fteC9FqBoRQFqFdQoawJ54OoYW2jmS3zWw=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-4.0.0.tgz_1478908745310_0.9704734093975276"}},"5.0.0-alpha":{"name":"angular2-highlight-js","version":"5.0.0-alpha","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"^4.0.1","@angular/common":"^4.0.1","@angular/compiler":"^4.0.1","@angular/compiler-cli":"^4.0.1","@angular/core":"^4.0.1","@angular/forms":"^4.0.1","@angular/http":"^4.0.1","@angular/material":"^2.0.0-beta.2","@angular/platform-browser":"^4.0.1","@angular/platform-browser-dynamic":"^4.0.1","@angular/router":"^4.0.1","@types/core-js":"^0.9.41","@types/jasmine":"^2.5.47","@types/node":"^7.0.12","canonical-path":"0.0.2","codelyzer":"^2.1.1","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"^5.1.0","systemjs":"^0.19.27","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"gitHead":"80df674658f106c10e0e9b680492dc2ab5b96206","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@5.0.0-alpha","_shasum":"31262d47c38a9c1d5a371cb7e523bdbb176417c0","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.9.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"31262d47c38a9c1d5a371cb7e523bdbb176417c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-5.0.0-alpha.tgz","integrity":"sha512-cL2qpKBofsFRBirwLtwJO3dECrae0ahz3aQqRIdZ8cKqp5VCqhXvJzGuIiReK+os/Z5uKJHGhCDt/cmUheoG9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCp+xQrgXU6OHMWKyaER5a2FBhJSpINGcX10OG63hIhbQIgedPDQkHcaDD1XohRUys/Kv32OY8i0fvpYpEm+ggb0LU="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-5.0.0-alpha.tgz_1491312324656_0.3719147830270231"}},"5.0.0":{"name":"angular2-highlight-js","version":"5.0.0","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"^4.0.1","@angular/common":"^4.0.1","@angular/compiler":"^4.0.1","@angular/compiler-cli":"^4.0.1","@angular/core":"^4.0.1","@angular/forms":"^4.0.1","@angular/http":"^4.0.1","@angular/material":"^2.0.0-beta.2","@angular/platform-browser":"^4.0.1","@angular/platform-browser-dynamic":"^4.0.1","@angular/router":"^4.0.1","@types/core-js":"^0.9.41","@types/jasmine":"^2.5.47","@types/node":"^7.0.12","canonical-path":"0.0.2","codelyzer":"^2.1.1","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"^5.1.0","systemjs":"^0.19.27","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"gitHead":"c3d197b2f2fe81af5f5f7b011675f19102e03865","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@5.0.0","_shasum":"e0abccfcf5d2a2870a4439362cb94bd98edb25a9","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.9.5","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"shasum":"e0abccfcf5d2a2870a4439362cb94bd98edb25a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-5.0.0.tgz","integrity":"sha512-7BvPz2x10sv0uyvBWoL3RxO48h00BCXyKu6UonCP1C42X4hY6EO1wKL1z9yQlgbu43Cau7g+bE/uLweBARIEyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICYdzsiYMsFp5jhtA9syOhpHt6uO0Gx05pF2ZZTVfLhUAiAWi9t450SXClsXO4d8uv/QEhwkOkthT8iTOi5lF6a3mg=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/angular2-highlight-js-5.0.0.tgz_1491313414673_0.7905806333292276"}},"5.0.1":{"name":"angular2-highlight-js","version":"5.0.1","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular2","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"^4.0.1","@angular/common":"^4.0.1","@angular/compiler":"^4.0.1","@angular/compiler-cli":"^4.0.1","@angular/core":"^4.0.1","@angular/forms":"^4.0.1","@angular/http":"^4.0.1","@angular/material":"^2.0.0-beta.2","@angular/platform-browser":"^4.0.1","@angular/platform-browser-dynamic":"^4.0.1","@angular/router":"^4.0.1","@types/core-js":"^0.9.41","@types/jasmine":"^2.5.47","@types/node":"^7.0.12","canonical-path":"0.0.2","codelyzer":"^2.1.1","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"^5.1.0","systemjs":"^0.19.27","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"gitHead":"0d77afb56ced47bbd3c16a656934d8df4bf80f22","homepage":"https://github.com/Useful-Software-Solutions-Ltd/angular2-highlight-js#readme","_id":"angular2-highlight-js@5.0.1","_npmVersion":"5.0.0","_nodeVersion":"6.10.3","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"integrity":"sha512-+MuQahP8Cltf8erZhsmnWiASPq021aYVnVmBOB4Rw23DjZGFaDWjmLbGfk6MI+YJgsWka35v0hi7DZL2xU/X6A==","shasum":"98942629de99b54c98d217f8a3fd1d6633c97441","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-5.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCteH/j/wzrrB6YPXAsP5gJd+9m1RcBHuJzRqY7gKvRoAIgRf12+3XOJmVYPWu6fVMUuykYXgkNS5ZVjQ21gIsXSaM="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js-5.0.1.tgz_1496898816539_0.9529801176395267"}},"5.0.2":{"name":"angular2-highlight-js","version":"5.0.2","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"^4.0.1","@angular/common":"^4.0.1","@angular/compiler":"^4.0.1","@angular/compiler-cli":"^4.0.1","@angular/core":"^4.0.1","@angular/forms":"^4.0.1","@angular/http":"^4.0.1","@angular/material":"^2.0.0-beta.2","@angular/platform-browser":"^4.0.1","@angular/platform-browser-dynamic":"^4.0.1","@angular/router":"^4.0.1","@types/core-js":"^0.9.41","@types/jasmine":"^2.5.47","@types/node":"^7.0.12","canonical-path":"0.0.2","codelyzer":"^2.1.1","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"^5.1.0","systemjs":"^0.19.27","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"gitHead":"e002149c5509e4800b2b349a28c854d06842b783","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@5.0.2","_npmVersion":"5.0.4","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"integrity":"sha512-gDbRbVlIwEIGWM/7Y3jvYcvAQYc2AWQgFUGSlp+048yDoti5neE3AXTSRacSahGcSfjeuI/qaUleqcjcdFyDeA==","shasum":"3a83eea47e51cf20532888cc5059ca802758ce96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-5.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB+xPuIO18qsi0Tg0hp2SIqpra2/pwCJ8venfTziGlrpAiEAqIQKO7+qZKexDO8H0OoZr5nCjZDWFac5cbKNUj8ErQU="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js-5.0.2.tgz_1499818544285_0.015882537933066487"}},"6.0.0-alpha":{"name":"angular2-highlight-js","version":"6.0.0-alpha","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"^4.0.1","@angular/common":"^4.0.1","@angular/compiler":"^4.0.1","@angular/compiler-cli":"^4.0.1","@angular/core":"^4.0.1","@angular/forms":"^4.0.1","@angular/http":"^4.0.1","@angular/material":"^2.0.0-beta.2","@angular/platform-browser":"^4.0.1","@angular/platform-browser-dynamic":"^4.0.1","@angular/router":"^4.0.1","@types/core-js":"^0.9.41","@types/jasmine":"^2.5.47","@types/node":"^7.0.12","canonical-path":"0.0.2","codelyzer":"^2.1.1","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"^5.1.0","systemjs":"^0.19.27","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"gitHead":"e002149c5509e4800b2b349a28c854d06842b783","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@6.0.0-alpha","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"integrity":"sha512-qn64d/n6NKQPc+r8d8SgUATmhmkdPSzDj6D5hNdjKfWwZ3fYpa0gtj/elLzZmUdZTmAoyj1HHGWB8lB/a1i84g==","shasum":"db7ef9b671682dc7eadb85688172a1b0ea2f970a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-6.0.0-alpha.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCp4qMNLrRoOb2xQviV07nDCW6MlQ9gMM879MR1s/IVkwIgNHK2ofefUTnST6f+upzS6LRhp8RVHIHCS1rHBMZQXY0="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js-6.0.0-alpha.tgz_1503030322995_0.7391358728054911"}},"6.0.1-alpha":{"name":"angular2-highlight-js","version":"6.0.1-alpha","description":"highlight.js integration with Angular 2","directories":{},"files":["lib"],"main":"./lib/highlight-js.module.js","typings":"./lib/highlight-js.module.d.ts","scripts":{"start":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\"","code":"tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" \"karma start karma.conf.js\"","test":"tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"","lint":"tslint ./app/**/*.ts -t verbose","lite":"lite-server -c bs-config.js","tsc":"tsc","tsc:w":"tsc -w","typings":"typings","setup":"typings install && npm install","pack":"del lib /Q && xcopy src\\*.d.ts lib\\* /S /Y && xcopy src\\*.js lib\\* /S /Y && xcopy src\\*.css lib\\* /S /Y && xcopy src\\*.html lib\\* /S /Y && xcopy src\\*.map lib\\* /S /Y","a2-clear-build":"rimraf lib","prepublish":"npm run a2-clear-build && npm run a2-build","a2-build":"ngc -p ./tsconfig-ngc.json"},"keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"^4.0.1","@angular/common":"^4.0.1","@angular/compiler":"^4.0.1","@angular/compiler-cli":"^4.0.1","@angular/core":"^4.0.1","@angular/forms":"^4.0.1","@angular/http":"^4.0.1","@angular/material":"^2.0.0-beta.2","@angular/platform-browser":"^4.0.1","@angular/platform-browser-dynamic":"^4.0.1","@angular/router":"^4.0.1","@types/core-js":"^0.9.41","@types/jasmine":"^2.5.47","@types/node":"^7.0.12","canonical-path":"0.0.2","codelyzer":"^2.1.1","concurrently":"^2.0.0","core-js":"^2.4.1","jasmine-core":"2.4.1","karma":"^0.13.22","karma-chrome-launcher":"^0.2.3","karma-cli":"^0.1.2","karma-htmlfile-reporter":"^0.2.2","karma-jasmine":"^0.3.8","karma-verbose-reporter":"0.0.3","lite-server":"^2.2.0","lodash":"^4.11.1","protractor":"^3.3.0","reflect-metadata":"^0.1.3","rimraf":"^2.5.2","rxjs":"^5.1.0","systemjs":"^0.19.27","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"gitHead":"e002149c5509e4800b2b349a28c854d06842b783","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@6.0.1-alpha","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"dist":{"integrity":"sha512-xghWwojNUYBK2X/GcsrLS0Py9/3JbyeEbeNGkH9Imh4K+psKcD2a4AatB+hZZraHJ/B8YrDT+vkpgoIeZ6cCpw==","shasum":"a49450457a000ec19cc6fe52311db02ec9188e3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-6.0.1-alpha.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6Lu/T7A+ymQH6566miTSXEyH9zvgXmzSqOsxu/fmqNAIhAN1YrS713j0CPQXuxGEjUO5Mj0fuWHR81XfYMQUu1i08"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js-6.0.1-alpha.tgz_1503030694061_0.5670656361617148"}},"8.0.1-alpha":{"name":"angular2-highlight-js","version":"8.0.1-alpha","scripts":{"ng":"ng","start":"ng serve","build":"ng build angular-highlight-js && ng build demo","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"typings":"dist/angular-highlight-js/public-api.d.ts","main":"dist/angular-highlight-js/public-api.d.js","keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"~8.0.1","@angular/cdk":"~8.0.1","@angular/common":"~8.0.1","@angular/compiler":"~8.0.1","@angular/core":"~8.0.1","@angular/forms":"~8.0.1","@angular/material":"^8.0.1","@angular/platform-browser":"~8.0.1","@angular/platform-browser-dynamic":"~8.0.1","@angular/router":"~8.0.1","highlight.js":"^9.15.8","rxjs":"~6.4.0","tslib":"^1.9.0","zone.js":"~0.9.1","@angular-devkit/build-angular":"~0.800.0","@angular-devkit/build-ng-packagr":"~0.800.0","@angular/cli":"~8.0.3","@angular/compiler-cli":"~8.0.1","@angular/language-service":"~8.0.1","@types/highlight.js":"^9.12.3","@types/jasmine":"~3.3.8","@types/jasminewd2":"~2.0.3","@types/node":"~8.9.4","codelyzer":"^5.0.0","jasmine-core":"~3.4.0","jasmine-spec-reporter":"~4.2.1","karma":"~4.1.0","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"~2.0.1","karma-jasmine":"~2.0.1","karma-jasmine-html-reporter":"^1.4.0","ng-packagr":"^5.1.0","protractor":"~5.4.0","ts-node":"~7.0.0","tsickle":"^0.35.0","tslint":"~5.15.0","typescript":"~3.4.3"},"gitHead":"784a7e1ac0d10ef4b23a14f71452aa6e804c7c28","description":"[highlight.js](https://highlightjs.org) integration with Angular2.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-alpha","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-xW+yHBUYXBKBq3YujZTE757d8DSVBxC1XCGqEx3RYKHlYAM6HmYpIRqDPgvfMT/F2lURSm3zV41xHNyqAUCpqQ==","shasum":"0c690bfa328f8391e27b761289074193b4c9c029","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-alpha.tgz","fileCount":25,"unpackedSize":75617,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdA58bCRA9TVsSAnZWagAAIIkP/iXQsRv7cShiot5tpuT+\n+ivDmTRnyXy2ChyC59eKv0GoZrNs/NrHu4bxA4ixDZdKZy8CAOiM/4WlGpEV\nekx6QvXRqqnzMJbSdO8vzPBkVGYh6aSmrrsoxzbjdR0osgP8MG5+aEWPf6JK\n5l2ohCjMvdHs96c7nW0XKtDyOfWfKRQj8S+sjkMPv6Lw9y2kWHHpMQD7jDJ1\nUaS4An1Dam6UJUSulss2NTWohkpDVUpPzdflad1byk3KBYzL5d+gTVkH2x83\nptbfZYTg3gCGa+CWa0mxj1W7+4SPA5u4DZzAIsCxZJVC3iparUkgfxXYRqId\nRIHeGsyU4TdYwkXY7b46n+qIvnAlGRn8dUiFBpsXlv/5AA/TqjRCoNmQmbXV\n1bPcMy2JhKp4g/Wvs9uwTs78SeNc84wcQOtp58LpJozN14XX6tBEow0b3hmW\nXg6ZdRgGGLsWTAtXrg5aMl+CUjxBQQ9s3hWs4zlpYJtX13v4dnRt1rLiU8eD\nSy3IFeEdFBY47WaopJh/W8h66MWAoGiUdVc6t8pduhTqukHsJLwgaO59lGNV\nKr2ZEsX/AbxQ9T7c9FzBy2w3woGG7WgraCnLR4KsTmzeZ6d4/6DsRoYpODPQ\n+nI/JxftM5WuiPbhtWUsR/sI0iTOH/S8D7o8G836l/88ebi0Mt6qbjfns+Dl\niat3\r\n=s2Kt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnXHsQ9YXHCBnXS/J2QNFOIE7ht4ljrOQ47LFiANwzlQIhAIkz3izD80HRFnkzdu5cicsPaVRzTxa1ohDIlWfIhQhv"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-alpha_1560518427284_0.823935701067583"},"_hasShrinkwrap":false},"8.0.1-alpha.1":{"name":"angular2-highlight-js","version":"8.0.1-alpha.1","scripts":{"ng":"ng","start":"ng serve","build":"ng build angular-highlight-js && ng build demo","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"~8.0.1","@angular/cdk":"~8.0.1","@angular/common":"~8.0.1","@angular/compiler":"~8.0.1","@angular/core":"~8.0.1","@angular/forms":"~8.0.1","@angular/material":"^8.0.1","@angular/platform-browser":"~8.0.1","@angular/platform-browser-dynamic":"~8.0.1","@angular/router":"~8.0.1","highlight.js":"^9.15.8","rxjs":"~6.4.0","tslib":"^1.9.0","zone.js":"~0.9.1","@angular-devkit/build-angular":"~0.800.0","@angular-devkit/build-ng-packagr":"~0.800.0","@angular/cli":"~8.0.3","@angular/compiler-cli":"~8.0.1","@angular/language-service":"~8.0.1","@types/highlight.js":"^9.12.3","@types/jasmine":"~3.3.8","@types/jasminewd2":"~2.0.3","@types/node":"~8.9.4","codelyzer":"^5.0.0","jasmine-core":"~3.4.0","jasmine-spec-reporter":"~4.2.1","karma":"~4.1.0","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"~2.0.1","karma-jasmine":"~2.0.1","karma-jasmine-html-reporter":"^1.4.0","ng-packagr":"^5.1.0","protractor":"~5.4.0","ts-node":"~7.0.0","tsickle":"^0.35.0","tslint":"~5.15.0","typescript":"~3.4.3"},"gitHead":"c107113998ac994b3af504273c19a4e3d29e863a","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-alpha.1","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-rPLgB219cWpPUNFCYPkPyhhwTtJqPaHP39CWcPB9ikDCj0sEh5tQzoc/OLv87Q3LXH8E5saCRbHii8hU6R5NRA==","shasum":"4dbe40184d3e7f1fc520a32a80892f676a9967c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-alpha.1.tgz","fileCount":25,"unpackedSize":73710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBjqmCRA9TVsSAnZWagAAhdYP/j1yneKxOi0lGfoK8B+5\nPbWC6vxW3qdkKHMXfJJzEGqDj7//3rnL/pNYnR0zroc1Xow3isvfHarDCmTm\n8y2vusiuKg4H094mCxWmWM2Y06iAXkFdeswLCLg4q78HfeH5h1rDY/25TO+9\n0cny5zaG0JKBlKI5Raz7+U6NXuNz350dl4JTSGQRMChy1Yzi4p+JmqcaCxXs\nNBBi1stHdC5siG6xMVb9oy1df9Rm4QDp+DCZg0gw+W+ZB3z2XU9HXJlX6fTt\nefkonD+DI+oQ4OH+Tu7BK+cgOAW3/XFr8IILU9PEbmBauMr4jmZ3/TGTMY9D\niDCx/RMY40vUL78DQAuyi8OzVIqpWTLtNnli7KQH7K5Z7jxnqMk4DtfPqurI\nDaiCeRmJ2mv6w57nSqWOHGwaKTpxaOf2UpzgsVekK2+OjBICzLUeUOSU2AEj\nGWZfW6h+NcUfniDoSOuUntECTM3IiYzqyMR7dChGLTsKFZ4Ln93YlmjiaZ8l\nRlVwU3n6yHMT7VFc6XoQ5gK6CjfGxm4Yq5d3i1fHChV3ddgKs9N9TnTSPkkw\nq3ZuJ0vqs6ZuJWYM5i8aKgE3vG2MMmhZMvsXqP0ORigpTp7ws+UMfrfWUYNo\nDMNH3OUuX9J5F+yRuq2rEt8Z/1Ko/H68NJdO4mirjlKSa9TwbV0/Z90TRPey\nCjOv\r\n=BWlt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBUtQeikWI3+LcktaoMXmPclR/U0NJIL/ttAenrCwRmwIgR0vstEqC7QO5pTRgksAts+HSz7MkMiC5bKt7is97MJ8="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-alpha.1_1560689317463_0.08333270890962918"},"_hasShrinkwrap":false},"8.0.1-alpha.2":{"name":"angular2-highlight-js","version":"8.0.1-alpha.2","scripts":{"ng":"ng","start":"ng serve","build":"ng build angular-highlight-js && ng build demo","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"~8.0.1","@angular/cdk":"~8.0.1","@angular/common":"~8.0.1","@angular/compiler":"~8.0.1","@angular/core":"~8.0.1","@angular/forms":"~8.0.1","@angular/material":"^8.0.1","@angular/platform-browser":"~8.0.1","@angular/platform-browser-dynamic":"~8.0.1","@angular/router":"~8.0.1","highlight.js":"^9.15.8","rxjs":"~6.4.0","tslib":"^1.9.0","zone.js":"~0.9.1","@angular-devkit/build-angular":"~0.800.0","@angular-devkit/build-ng-packagr":"~0.800.0","@angular/cli":"~8.0.3","@angular/compiler-cli":"~8.0.1","@angular/language-service":"~8.0.1","@types/highlight.js":"^9.12.3","@types/jasmine":"~3.3.8","@types/jasminewd2":"~2.0.3","@types/node":"~8.9.4","codelyzer":"^5.0.0","jasmine-core":"~3.4.0","jasmine-spec-reporter":"~4.2.1","karma":"~4.1.0","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"~2.0.1","karma-jasmine":"~2.0.1","karma-jasmine-html-reporter":"^1.4.0","ng-packagr":"^5.1.0","protractor":"~5.4.0","ts-node":"~7.0.0","tsickle":"^0.35.0","tslint":"~5.15.0","typescript":"~3.4.3"},"gitHead":"44f84d822cadadaf274d7949ae82637b7d5f1044","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-alpha.2","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-JrMtsQHlzWfjF45kdmWC30cHhmIrG7+0dz1po4nU2ZnxAj9yDHzkC41M0bymkH5GBvoWop8RCi1tCb3hfdlTjA==","shasum":"491f390e0f91a6fba257d96e52eca088e4dec3e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-alpha.2.tgz","fileCount":64,"unpackedSize":106163,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBj3ZCRA9TVsSAnZWagAAcy8P/jplLUyB5KLzvMCRMdvz\nBb92dJ7XnhL1bWYVOe6XoXcyKUHUivDMsmAk3Rq9O/t34QSujxS6aN6gX/tN\nqT5XqWSXeyIcZGxojPh+QoBnVIhSCNuFJzgM4V43/hUX3p9jP/LNAHy1yenh\nHfTzUwr051aO3qV5/kxkhLu4LxuOCz4jBWbnRr2J3mKE49LpSuNjUpf+0QEK\nGBMeeEmJi7oMPQW+TyWkWnGUYfFrdX2pox3HLwgey3KWdyy0c0LJEkRt7JWf\nZqOUw7CF77+jBWA3zHvJ+ZAfwdFK68D6zGSha4PUK4gIEmP0cFaOB+R/PotE\n0bcNAhSRTqNKeR/1WS7MoQDKhoSDodUNqpz9pZC9J73ie7viiGT6ViblCsYd\nEJPslO2wvBCYAC579prSkLxh30HB7US7iBuLK3vTdv0hMBWeUgl2lh/oOp7k\nFrV6UCgCEB8FvRRH8Z3pl3TRHfr5Q0cc+4iik+JqHKhJ4LKGDbi4DM8T2GVu\n+vEnGRE0Z/mcqg8yWsIU4B2lLDvstVseJIxQe0b0hpIjC6Sbr3nWNZm4L/JA\nU7LlHq95hw3JPP+BAiW6fU0veaYM57rZPhjpY+ypqba7BmvzCbrKsS/zsUNv\nSHYMtAY8n7PWK5/eJ9QSWMvz3bflnkcr+qdZgjEFklX8s3S6EbLkxe1FsbLa\n0LC4\r\n=r11S\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdtDa5LE5F90xGxqAjiBJ0uP4NqDode/LAzkh3VFfvdAIhAOfFLOQ1mnUvKVGrJGT0icnZFf5lbMfJDu0RQeVY1Zdp"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-alpha.2_1560690136768_0.507672970947987"},"_hasShrinkwrap":false},"8.0.1-alpha.3":{"name":"angular2-highlight-js","version":"8.0.1-alpha.3","scripts":{"ng":"ng","start":"ng serve","build":"ng build angular-highlight-js && ng build demo","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"~8.0.1","@angular/cdk":"~8.0.1","@angular/common":"~8.0.1","@angular/compiler":"~8.0.1","@angular/core":"~8.0.1","@angular/forms":"~8.0.1","@angular/material":"^8.0.1","@angular/platform-browser":"~8.0.1","@angular/platform-browser-dynamic":"~8.0.1","@angular/router":"~8.0.1","highlight.js":"^9.15.8","rxjs":"~6.4.0","tslib":"^1.9.0","zone.js":"~0.9.1","@angular-devkit/build-angular":"~0.800.0","@angular-devkit/build-ng-packagr":"~0.800.0","@angular/cli":"~8.0.3","@angular/compiler-cli":"~8.0.1","@angular/language-service":"~8.0.1","@types/highlight.js":"^9.12.3","@types/jasmine":"~3.3.8","@types/jasminewd2":"~2.0.3","@types/node":"~8.9.4","codelyzer":"^5.0.0","jasmine-core":"~3.4.0","jasmine-spec-reporter":"~4.2.1","karma":"~4.1.0","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"~2.0.1","karma-jasmine":"~2.0.1","karma-jasmine-html-reporter":"^1.4.0","ng-packagr":"^5.1.0","protractor":"~5.4.0","ts-node":"~7.0.0","tsickle":"^0.35.0","tslint":"~5.15.0","typescript":"~3.4.3"},"gitHead":"8672b8800ee4ca7dd181a1ccd7543d4aab0fd6aa","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-alpha.3","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-dzIGtuNKrGqPeuA24042aLUi+IKAzN8i8yF0fr0K1PZiEAtPko/HULEfBytD/TaJk7eMjljKrYK8ZImHhhy+jg==","shasum":"bc98a3689d2b757fa44c4a88b45875528c110f0d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-alpha.3.tgz","fileCount":47,"unpackedSize":20356203,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBkJECRA9TVsSAnZWagAAp30P/izql0g3uGFqYnEranaH\n1joKxTN/lrwbFcm0FwRAX/RejDE6Ar7UCKdxa9MtCt2slVnga6EsXl5gZOZx\nNXKe82iDRlkvZNAIGFOLeA+gKyae4yM2ncweRhww0mwA72q4Y9PLGDWpeRaN\n/UTtQxQDPxPU4j+vV8+de8N2q7Jd3ktIyNdiYrk0Ori+fZSvELRVYneDYJVp\nJqCWRiEZX/YEAoK4dNql71r2hX9dUn9A361pYXIZvMCGcAu0eFv/FSGKiJNG\nx/AB8zw+SCUYToNa9Gbcz2x5/5ZSGX7nmGDzc9/Z7TuST4eATDTovMpNQYK8\nH2YHHhvDXXw5ejZKb9Q6ejzk/ish8rB/7n1kJJkv0jJmqQkpbYEUYZvA5XTt\nWTwzZOLI0IzcZBxNo6O2+GiW6G7bQDiDXhxqqFiIoYhSwLPjiGBpAZQ+eeVX\nu4Ftl1TPn1Y2stNlwsGbbgm2ck8i6br66bx/ZYXCWYpNkhSSPj1dBWEOUQRA\n9kfobHMs4aetVwscXqoB7k24Il61GqwkdikALewo8IbqJrd292KyYoqh7wOQ\nsrluC2q2pcxukSie31Bizz1gpd6WfODsBd21Xdk4XA79RDLthyDlAGAS5PPt\nVBAqb+KDClyiaWnzWRojIL4aQ5oBf0/aAiTwZ3BuMsem5ye/HNyprnK4qiO0\npq4O\r\n=1SPq\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG27yOqxW5toiq3H4owIPrcv+DSiwouS02hURmg0b1BjAiEA0x33wIGD9x9Tbtm2Oe2KBAHF8QOjmXdPb7NX65Qk+o8="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-alpha.3_1560691267701_0.8357695406353618"},"_hasShrinkwrap":false},"8.0.1-alpha.4":{"name":"angular2-highlight-js","version":"8.0.1-alpha.4","scripts":{"ng":"ng","start":"ng serve","build":"ng build angular-highlight-js && ng build demo","test":"ng test","lint":"ng lint","e2e":"ng e2e"},"keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"license":"MIT","dependencies":{},"devDependencies":{"@angular/animations":"~8.0.1","@angular/cdk":"~8.0.1","@angular/common":"~8.0.1","@angular/compiler":"~8.0.1","@angular/core":"~8.0.1","@angular/forms":"~8.0.1","@angular/material":"^8.0.1","@angular/platform-browser":"~8.0.1","@angular/platform-browser-dynamic":"~8.0.1","@angular/router":"~8.0.1","highlight.js":"^9.15.8","rxjs":"~6.4.0","tslib":"^1.9.0","zone.js":"~0.9.1","@angular-devkit/build-angular":"~0.800.0","@angular-devkit/build-ng-packagr":"~0.800.0","@angular/cli":"~8.0.3","@angular/compiler-cli":"~8.0.1","@angular/language-service":"~8.0.1","@types/highlight.js":"^9.12.3","@types/jasmine":"~3.3.8","@types/jasminewd2":"~2.0.3","@types/node":"~8.9.4","codelyzer":"^5.0.0","jasmine-core":"~3.4.0","jasmine-spec-reporter":"~4.2.1","karma":"~4.1.0","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"~2.0.1","karma-jasmine":"~2.0.1","karma-jasmine-html-reporter":"^1.4.0","ng-packagr":"^5.1.0","protractor":"~5.4.0","ts-node":"~7.0.0","tsickle":"^0.35.0","tslint":"~5.15.0","typescript":"~3.4.3"},"gitHead":"464e0a0ed2b29b3faa2bb8bd9b83ae1aad01c977","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-alpha.4","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-VDehGto328UP43oRDONnTAYKt5tnZsagq2TgjakHliebJN8QB1E9VF/sb7DkAXVeqWOa43NfdsxnrcQxgAv0Ng==","shasum":"17067ddf36e60b65bd52a57376b52b51f3372279","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-alpha.4.tgz","fileCount":47,"unpackedSize":20356203,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBkTSCRA9TVsSAnZWagAAUO4QAICUej2KClAyhbc3QhFr\nlDWS3C33Rl/JJsb6vsBS0AYFxhp0us1+qKf8laEQUXmVZsN4Nwltixn1yK8J\nhF9551SZ/RlFiBUObG/D9IjxPZrdcDko2bYKvhbQuQfR/YAfKwXZBlecuQdd\nD5XgVu/ZiI33oqN79wNPmG6bBkuwNnD+8k3z9P4Hfz15lGk7wbH7iyvx/qU3\nVo8mhh1Tvew2nxrt8SObFQPL4ECcwmdMXHk6rGAbTxZrIWts+7QEuPcVoESw\nU9u8NNr6K0KUw/4zbUfVMOvClcqOYa+6vucpYYzFrJlkuaEeopsyGr7FJWc0\nWWqB3+CukSz6UC8bgS33m2TiRI/pUaIi3JzpJuxphxU1kEK/oWe/CkWu77rH\nEvZCu2oArWFDkw/OD6gz4LbZGROo3GAt96ab00OLZyEg6W6Cxp+LcEuaW+03\n91sj2z903uVTHThFcvLhsibg7Us3RiPvL2rsj3wUOXXXHAa6NxliahPTg4Gy\nD/3jOivsthX9N9G7eLrZNSb2BuY6OupeOjXntb+Pr92WpmV5PMsL/euHbJr6\n3ILy4lg9xqO5S18yGtJ/HWN7XJPR3nb7IxrDrZOC99gZ2jjyB8tilhpMIoSI\nqtICWDfOciZAm4kG9UjGInlnU6p+WBS5hU6tdfnQNwo6AuM7b7zVxDkQZzZD\nhLeJ\r\n=Y7Cm\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDd2f/HltnZKnqZi2hDl6yuSUoJsuS4+V5ve3bxgKfmoQIhAIQFMiCo+mCcfUSflQgVLEBuSoNn/FyiM30LHN5HtGYU"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-alpha.4_1560691921275_0.27323884673033616"},"_hasShrinkwrap":false},"8.0.1-alpha.5":{"name":"angular2-highlight-js","version":"8.0.1-alpha.5","keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":"^8.0.1","@angular/core":"^8.0.1","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1-alpha.5.tgz","description":"This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.0.1.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-alpha.5","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-FlwI+FM/Po+/9G7SPEyL+r6gkZwHurqpANWvMmT5JdoSfkoXcHR3GONbiiVgwW345e7GMtccVZ0w6AQTcVTg7g==","shasum":"c9efce4b83d34eca3b17b8c2953403b95e8dc1c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-alpha.5.tgz","fileCount":23,"unpackedSize":70175,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBt4jCRA9TVsSAnZWagAApQ8P/R7y+sdm0FMONSq2jF4C\nE6HpobIZsYuearHjQkNGWRfKPtbQsHohcumhTEYi0Rv16sNpIDKdX1/RnKfI\n4LNVjA6vCgn+V0PIwbtGN1fFK7TVwcW5vWZvAmpztYqrkSmoMae7E7ZbbYj3\nsetywKpFRFd1rzcZaNZgB8FDPWEUditSTID30hw0vEYJEqAwudLPOIF/bjDr\nh6d94Ej8S67Uxs0YH01SJQqHqs5h3eSX+Z1kJqJn8t/yz2O93RAk3SdK8WhJ\nFf/wyMl5vcb4RJVeJVpTnasmU+dTZuHq4jzDfw/0COkO58J8N5ICPOcrCQSj\nilY1UCkAfuHQeAl1Qsl/t4aVuUCjkRLB7mDtxpZRKY3fQuFmWJYIwiFHCNb0\n0NQ0Zc4MViFs++mlCMeYvOUeOHy4bAr4VV1Ri/GOTGtfRmqYMVzAowWvYcfz\nRIVltrsq9SG7k+Y+c8tde5YE/6wKpxfiO3E1MlLRu8tjdlu4YUX2fG6vdc/0\n9geO3dDa1i03WVM+29M+td59CvUPToj0n+hv0c9+fabqTE3v4UXZ+fW3dwH6\nrdnJY8mzW9IboEFl8Wo32WSIQf+mx48a0DucSLNmMd5aT2vgXbndp1u5JhDp\nTY7LmRxnRDcxjiKl5SkJdNuPIq5aDZlJwv2+l6TRGErRKOYXnIVehbZbTX8U\nLV77\r\n=XMYl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrm0h7B7UxKtVMWpUPuBHX8qqTMOlh8Q1jpOqYC5olWQIhAP/MHOtRqYjigvOiQoF9Qe432heerkzHkrwtVJBskcPa"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-alpha.5_1560731170376_0.8571099489066951"},"_hasShrinkwrap":false},"8.0.1-beta.1":{"name":"angular2-highlight-js","version":"8.0.1-beta.1","keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":"^8.0.1","@angular/core":"^8.0.1","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1-beta.1.tgz","readme":"# AngularHighlightJs\n\nThis library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.0.1.\n\n## Code scaffolding\n\nRun `ng generate component component-name --project angular-highlight-js` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project angular-highlight-js`.\n> Note: Don't forget to add `--project angular-highlight-js` or else it will be added to the default project in your `angular.json` file. \n\n## Build\n\nRun `ng build angular-highlight-js` to build the project. The build artifacts will be stored in the `dist/` directory.\n\n## Publishing\n\nAfter building your library with `ng build angular-highlight-js`, go to the dist folder `cd dist/angular-highlight-js` and run `npm publish`.\n\n## Running unit tests\n\nRun `ng test angular-highlight-js` to execute the unit tests via [Karma](https://karma-runner.github.io).\n\n## Further help\n\nTo get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).\n","readmeFilename":"README.md","description":"This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.0.1.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-beta.1","_nodeVersion":"12.3.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-+XWSUCcApuoqujjmqvAxwRGRuDLS0jXdCFLIhYKiaUkS9Ifq4Rz+OuxkFR6QHTQ4VhzpyokA563fDvq5s5OdJQ==","shasum":"388ef6bd3cec2619a9127e8d3f407fd78c972639","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-beta.1.tgz","fileCount":23,"unpackedSize":70173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCJ81CRA9TVsSAnZWagAAmhEQAJhArockClVwaphPbocL\ngii0DyVxAzeKFYt2d3vnf8sPkJ3a3FIFKPTaaSzcoSw6DZXGHTt0yzA+NeD7\ndJNx8FjGTQ+hY4n/5B5rHv2YPy0sxIKTXcpsyMHVc0Gofa7jAmUMi5qNC1yT\nzFtUQQQqw3Ng1OuNNY1BsNwlzJKLcvYNeqqAEYkNjyr1jeh4d+mf2r/Dyyhp\nO3YI60o0tR9QgTDmtkIMKx03/50ySDLDOwJ0+8pSy4RXBOzBzf+TmxcpDOPu\n7xEcIGZbbCriVKKTZIHdf6WNHULcDTDN6JO9JW28tCkFwjkk+0RtrJE1rpN3\nh/N69izq/WFd5X3zUGgObWfgy5LQsycx8O6XzKmh0zitF3NiR1Qv6KwvUO7i\nnTaWa7DaEVNE3m8tebpkNEXmqu2RWYJyGA3rTfQV8VSI4dhtE1xijC9Z0RCB\n1GF7Yo86uMDPsZD11w4tvNKJoDJghYaQof1eaOWWaa6fR3Kcb5tufMtgMfg9\ndo25CAhJegHj4vc8LsTtUOf/ZnH8o2adKXqpxcpVF71NEV6LpwFEfPIr36fH\n5NUBNUpHLaWcpaOOFFnKDmCvQLYaoZMmrbuHdtR/eXhq9XoBInhccBawlgJx\nRmZXuJxA2L7skoOCgXbgVzztWdtPwnxc2iIqVmSHt/phKigCZzDVeuBR7bQl\nSbAO\r\n=FmeC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICkz7K/v43teBX+adMR/EI7nDRK9zhnhIvWYoZ9SB7s/AiBtm0uy5F+pK+c65FbpnDF1kr1cdWhRS1+Z8csRMOPLkQ=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-beta.1_1560846131974_0.7632945343649538"},"_hasShrinkwrap":false},"8.0.1-beta.2":{"name":"angular2-highlight-js","version":"8.0.1-beta.2","keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":"^8.0.1","@angular/core":"^8.0.1","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1-beta.2.tgz","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-beta.2","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-tfaMNbRuaAvZpjjQFPVeAAWSWmLFTTgAnry+0wtgxl7AYfqmnXC4oAVyZRLg/AdjHqT4g0E/WSzSwFzjenYp3g==","shasum":"a25c554ebc0b2b6f7c3d18720cc9b976a840eaa1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-beta.2.tgz","fileCount":23,"unpackedSize":70601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG0VxCRA9TVsSAnZWagAAeXoP/14Y26xQDX7EEshrvCO1\nfYbjFXiC/L8Kxw7ZsAfZjUP06yk3a3YOcDji2aETETm1hAQCYedkssqzHKEY\nP6vfVprjCIyLQULv4ztqZPAuIk/RqF40fpjjwbZPpxyqKs5OavN/dS+0+tBq\nOrJdBcWem6z/GNbye8ojYBxZO51N1kxG4Cv4HNdqvPJI6YID7kJgPng6x72O\nvr5qBJYXoEVMubP33DiHI1IAcA8k2/JrFwbKzBMocHK6Ronk2XFuhiTsQMpu\nuFgfxyCdKvFeE67HZNAfHxUPi8ds7Kd9pmdMj79Vwtd+Osufac2dFYmHNstm\n4Zg9MBPWR6P9Novwwh1friD4Hp8SkQ2IMeuWn+8T4M5mTUescR18YNTxU1a8\njIk2NbM24TIXefcGtjRmkr6pwzzJF32BSosocb9TohW5ZSvtARslRhWA1Ghs\niEoGqnhy+B9vXQGKaf+zHAOn/uh3Emv8+UEmaXRLb0noEvsRb9LiPDjTvaZE\nP5+dHjpRY/79r73EIZ1uzGZvHkm2+gGAlihIBYA2rHaT65ZdP1VlKbihoPj1\nvX8A5wILb1uwKLo6XjStk2ksCtkH9i74Wk2/xcDB+20V4hSPgazgPDJYCoF4\nRIZ7sFsXrp64BHOhqZ0rU6JSStJJ8WHLz3DnXX11v/Mnlx30tDNxMrwIMUHY\nTmkZ\r\n=YtAR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBVuRfc5tIAvpNzuBGcijAKER900TcC3mK9nvb1NpQrNAiB97y4Huf5nBEwDQpUm9ISkysgjVCZR0onhvoXPYO+Oxg=="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-beta.2_1562068336463_0.9534571945724124"},"_hasShrinkwrap":false},"8.0.1-beta.3":{"name":"angular2-highlight-js","version":"8.0.1-beta.3","keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":"^8.0.1","@angular/core":"^8.0.1","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1-beta.3.tgz","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-beta.3","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-Ld36ikhn5ngSdye+07Doiw4xKASzQ/kMP8oKOPGJehnkAkOTfVwAYCaMCamkbZExIOV0WB9FO45kk/MA2dwInA==","shasum":"68c42b3948134ede34536107e0062dec790fa1d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-beta.3.tgz","fileCount":23,"unpackedSize":70603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG0eRCRA9TVsSAnZWagAAiwoQAKD8y1A0gu5CNgxJ/+Q7\nKMmuvV/IOmcxxV30L9SYHc+19OJ5LBWkszJsJZZoR7tHi59u5d4dOZ6Q5OTE\nDfV7IxGQrAdneojmiC7k5W/dNPF+zUErt0CSHuNScnVovgotFtH66wfZCmKI\ntUta2paps5AlavItycU2cQYeIqn4gOCbn2a1DfISxiaOi9chSES/aXCXySkF\naIGPhUfLNeXyquUHFYgpDR4gSehLXIof8liSca/5JzpBRbzSnaCqkS7P2e/Z\n/v44CevOBcbxjS1Rg1BxWmfnnKbe8xXJJXZGVuEbMiJDkJIHrkRlPOaerEHH\n5dtaUFsGejEnVa29e7h5EEw+n4dOxD8cmfyODvZAtLjLpaPCKtlSnyurGhdc\nk+2FPmCFAISG8CVQKR6nUWj/IZR5pPCINgEAVLpTREIJoIzx3d7lj7WP73XL\ntNukn0uy4ZWvBostKsivJPyPtnLuNA7D787BSErnIb80ztP+rlocEapmef8M\nBAEpLyq5+fYjO2JlH/L9lvIBNtvPxYdcUwr1u0pbsgQHXVBrQb9dMt3PnTjw\nfkmj8A0d2IjATEQgBrQMbCN5t4zw8cAJawLMefBLphxmvlluBfWjF5yVmcst\nfHqMkuLKpO43HYzkpfYRD0ZWk+iBtAGocfEQ2Qbyptj8YkGLsTquSeN/izeZ\neDdu\r\n=okl0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQTG23GM7ph2Up07WLMsB1vplh0P9L3EgZqDf2nm+/CwIgYTwBPzuJextQoKpbc43hKzVE2za2C+G4Au8vxtI9t/Y="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-beta.3_1562068880702_0.6388481201633143"},"_hasShrinkwrap":false},"8.0.1-beta.4":{"name":"angular2-highlight-js","version":"8.0.1-beta.4","keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":"^8.0.1","@angular/core":"^8.0.1","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1-beta.4.tgz","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-beta.4","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-7VFJr2bdIFq6ZwyErgoF3M+B4+f1FGSVaPBRSbq4F5dJbbxo2l/A3wViIgVBWKE0aakrUTvJSfQx6VUZVGWJ5Q==","shasum":"bd890c287a715977b2ebefde6f662c4836a00140","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-beta.4.tgz","fileCount":23,"unpackedSize":70603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG0pcCRA9TVsSAnZWagAAYNUQAJk8L4Pg5HgyDY7YWEAi\n1pioph6n47nYAi3VbVlY2LcwUw1Xb4OgkkE4s4sIJLlH4yUzAo0zjO+JqXxk\n2pE3RltV/YTDA2KAGY9B8spMbTgoU/XdlwdYpQqJ2VCel52tz9GHKtLEPs4H\nqgHlKDiJEzGFs4SYgSLsrphz2zjDd6w1ep8Ctqohf4wcVLwmath3o+H37++/\n3XnHa9Li073rpo3HD5+4AtSvhralUSKstHJwbWzjJ3H33g0SejySXPM3Nh3l\nBltd9Z4NQLXvvpuQv5ZyZnhTFHQh1raF2T5tN22zW9AJ++GOYETJlO8UwqGD\noc5bm6hEKkq069R74rjcStcdidg7T0vcqwLG70xNswFe9iBPyCmLDzvIpK1F\nVR7Ke+qz27jNB53rRjAOBJpA1x7RHTk0GBx3F5hEg3sjSOTmKGapgMHWVr9F\nEvsiZdHkoRyBwiFk2e8181excuJiK+2isT+M+ufxUgTSr1RYOpPGwP9CKNw5\ngcOi+GdmicCxf+Mi5NglIZo1kwE+xBae6wdJa4t4nRo0voab5HDsJ4jk4djf\niLEK3c+1KDCg0cpwrZ3bkomwwKwj1Cr5k8+OJLMhGKAO570gZx4xjb3304zM\nmlx4P0gDiMSU2LUOCcbpBl3qthC4xE/JXtGh41+BMBdhrM26FodL7EenW13I\nxods\r\n=m+pI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjCcEQch11lm18USzYf3sGY+ay9VDOA1fC6dm4aig0MQIgQsqiCXg3TFkhcwj+Lewn0hTvVWMLgqMWSdk8d7I5eTQ="}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-beta.4_1562069595397_0.06766897931118887"},"_hasShrinkwrap":false},"8.0.1-beta.5":{"name":"angular2-highlight-js","version":"8.0.1-beta.5","keywords":["Angular","highlight.js","code snippet","code formatting"],"author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":"^8.0.1","@angular/core":"^8.0.1","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1-beta.5.tgz","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-beta.5","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-vqj/7riK2RRF+BuG0svmoV+x+8F0UlNTbunQAm2BxgSnqjrn9iFhJxgtGVSBaxMN9MRLb+DiFjzQrO4aRbxt1g==","shasum":"3e8dfaec9adf23a41740a5d37b72f3aaef22d42e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-beta.5.tgz","fileCount":23,"unpackedSize":70603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG0yJCRA9TVsSAnZWagAAETgQAJdmWdv2TN8SUfXH2eXZ\n/SMfWZVu8StDXUO3JzqL0AeCcq/F+8V0xyhmnfzP5hAT2jBr6GrGgfwPGx2Q\nc7b/sAH3GA7pbHhVekgtlWTEjQ30dxRfqWSJB1jX8E+wJniJYa7AbZGMCi2L\nKqHSHQvzV64UYxKIGAuuNcgiVuborPFv7CdtNa0l+XCIHJt96myiypNlRvfF\nAK+QKxaV5GPOxhFrz1uDiwKZR+Ur60QBVOkA082e9b48+vW0bHfBFlXMW5Du\njdh6m0Lk1biMpfqbbJRC3Ky0D4XTI0sgTam5PIEs2QzRZBGJmiYQ2bl5pWJo\nkf+foOBdgYRRmRpAo8iJrRvgllX7HCU8yFggoEDG/2LeciaQmnEDG7BJL1L7\nu7kJg+Nx/a2V2+3N4iB4pVnXbrWEtzLZU6MYLcDYiAE3V0u9hWS1eBYWiJKk\nyE5b2DylXrAI4XEeixee/WwaKmh7HNu1QEFt3CNHFsNCFLP01MCwu75AyYwR\nHBrYyqmtA1rQtyxMEk000Md2i6qsfeNbkIFGIOLRxAgXrQqC9jycX78Nvuyu\n6u8CMrFv9H3yGV8M//HSyvMK764Pu+bE2DTyD0IH+LyBFHHhnSZzfHKHPRFN\nBgcNxJRQMb/siQ9WYPSpSSwCdTIsA5jgobrSYlVKwP2I6XRZPgcqPs+vQi0L\nviqX\r\n=Jhje\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDUVh6rkFQ7ArQmhU4furmsEAi79AXmNetZehZBQPTZnAIhANjrZd0YilWXArWgaNl+6o8dwGwHJl9yz1QwHLjdCMjB"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-beta.5_1562070153146_0.8314628317344845"},"_hasShrinkwrap":false},"8.0.1-beta.6":{"name":"angular2-highlight-js","version":"8.0.1-beta.6","keywords":["Angular","highlight.js","code snippet","code formatting"],"license":"MIT","author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":"^8.0.1","@angular/core":"^8.0.1","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1-beta.6.tgz","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1-beta.6","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-E6KnedPkftL4we1OnrmZcKWxtuV/+7S1gL1N5XRPv+tybggyRuiN3UsxHhZXBkVlIvB6hSkGxG6o+NsPNif89A==","shasum":"636d93965911f19e2188a00fd3e9cbdfd42959b8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1-beta.6.tgz","fileCount":23,"unpackedSize":70623,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG02ZCRA9TVsSAnZWagAABBAP/0JlUoJF9ceu1wzQJy+T\nE6VzMd7BYH5VnfWpy22nVrEc2VwzPJnZ8JRhIAQGhD80IShx6l0gpCzz454H\nOpMfDeNb73w8ejAY1CIoKlvbCnVBtPEaYBqBSfZ51kEHJvxInwf26BYHfyJ+\nHgdpL3cpjTrHQTJjdB1vbNoyNwx/Fzjon3hNZ1qP5Cfv5rf4qS7ylUhM+GB7\na4BazwtIzy3KUoWTf6IHG+WmT/60spjansjO/3pSuRr1fxeX74F10ikP3aRf\nqK0F99ip09MTrolOfWFqvN+LKKutChzitMGAm8gVVycrW9JHTMvpeseW/Jku\nv/vTAGQrBrEuBPqikWrnFHi6nbFjKqFGqawpnC9CcuGxDUC29Ckow+gP8k1A\noAKbDPvolPIHge44LQ6uYaL+166V9uuLLGQI2mrwePZ0SFFAy++idc0/EA5w\nZUabk7yebjFDfewhzO3FWNjG6Uv3HUHuW1a+GgcsvZqR/3/TzjqvigMv6SMf\n3knJ70PRk5S/hKPZ//1cP0JHq7ItovgAwNuQ4RsbKkGEwjzBVrS5p1S7l36i\nfFLcMkICdBg6/PHnb1KWWsiRmPUTQXchmihcRMXahc+Azut6UiEGtOBN751S\nT7xS40L4TKqmfZFPsyndQyJR91IPmV6V39ENOpeNleYsmihKcmmxkRSU4eNY\nY5fX\r\n=Vyy2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC+S6sXQH5VVH2Whp6cK4vm+fTlOl32/Etf6YzpTiXPxQIhAJJ6wUWPCSx7v0f1Qe80O46Rx3YOBbdJiqo1HCwTIZNC"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1-beta.6_1562070425099_0.7195373844571094"},"_hasShrinkwrap":false},"8.0.1":{"name":"angular2-highlight-js","version":"8.0.1","keywords":["Angular","highlight.js","code snippet","code formatting"],"license":"MIT","author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":">=7.0.0","@angular/core":">=7.0.0","highlight.js":"^9.15.8"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm5/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm5":"esm5/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm5":"fesm5/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","metadata":"angular2-highlight-js.metadata.json","sideEffects":false,"dependencies":{"tslib":"^1.9.0"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-8.0.1.tgz","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@8.0.1","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-ORiIxJ7A8evS3gGf5Wfx5ecyEYJqa6WZ0GUBzXv9fGHNsAm8pGet7ZZt8pOB/V3srBWUrcdcDvy8jTi8rLNRWA==","shasum":"35b9e9906109f83abb9e6eef3c67a70a9925527d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-8.0.1.tgz","fileCount":24,"unpackedSize":71723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSBfrCRA9TVsSAnZWagAAq6EP/0jsEp1nGeWlHzlOhUfP\n9FTTcjuSdEQBPRvH1iAVmVh4ZfKwdkaAzJTRlH6suFYKiNgQ4Elyd8PG6fNw\n+R/AbKv+tIk14AAWDfAw+CiyE7aM7PTIUECBtAAz7FqS4y1n+FNL1/jbocpo\nnjygw7SWUBCnyH7Cq1QCakzvHRYEdydlBEC0ouPI34uzv0F6IfxxPX1xyzJq\nsWczhNC9RumsKMv8+tsvH8NADCAiYiCeeBZU43djokaTIm70SgJaI8jcy28v\noavrDfwj4x0vlEo0xnEoBrE53sOZJvWzvca5dVqPCF2X7TGpKE+K5O2c3Oeb\ndQqU8/OXTdFJDhfhh07zsW2xbbVHZqNR9lEgkOCFvwBWmiVuTcG3lt5U9Fk5\nU38WtqbceNH5PSYYL2hfqaw3W1pVZrWWazP9gizE1urikOKonr0Ve/4ncELX\nO+jqi1Aqu5ire81OlTYjj4i+gIX2UmT/EFFoC9gw44XM9HNnwMosr/Qa1EzR\nt/d1RIBJWDfBJpp9fSY4TdqA59VVTr7L/VYko2Mh9o0+vJbAj60LRSteNSWy\nyfNfXpSirWdEdLEN7KFg22TYzjE+2E5Elzd6CaHX5v2Nrwc6qOX6x5lAdSCK\nS4lmADFQ39mrFfL+ERkN5gM9SlegNP7oG0IKihMRk0AHEXHX5RneocIZSH1c\n+05R\r\n=QIIs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCefZmFc/tAs5TiLIkL8PWpqrMLUmMJfqgRuMPgvzBBiwIhAKNJ+7Xw7yyovwnE8qifAFXffLPdKEUkJJ4jR5tNCJ0x"}]},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_8.0.1_1565005803285_0.6093861521023467"},"_hasShrinkwrap":false},"9.0.0":{"name":"angular2-highlight-js","version":"9.0.0","keywords":["Angular","highlight.js","code snippet","code formatting"],"license":"MIT","author":{"name":"Jay Chase","email":"JonathanChase@outlook.com","url":"https://www.usefuldev.com/home"},"bugs":{"url":"https://github.com/jaychase/angular2-highlight-js/issues"},"repository":{"type":"git","url":"git+https://github.com/jaychase/angular2-highlight-js.git"},"peerDependencies":{"@angular/common":">=10.0.0","@angular/core":">=10.0.0","highlight.js":">=10.4.0"},"main":"bundles/angular2-highlight-js.umd.js","module":"fesm2015/angular2-highlight-js.js","es2015":"fesm2015/angular2-highlight-js.js","esm2015":"esm2015/angular2-highlight-js.js","fesm2015":"fesm2015/angular2-highlight-js.js","typings":"angular2-highlight-js.d.ts","sideEffects":false,"dependencies":{"tslib":"^2.0.0"},"scripts":{"prepublishOnly":"node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy. This is not allowed.\\nPlease delete and rebuild the package, without compiling with Ivy, before attempting to publish.\\n')\" && exit 1"},"_resolved":"","_integrity":"","_from":"file:dist\\angular-highlight-js\\angular2-highlight-js-9.0.0.tgz","description":"[highlight.js](https://highlightjs.org) integration with Angular.","homepage":"https://github.com/jaychase/angular2-highlight-js#readme","_id":"angular2-highlight-js@9.0.0","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-h8qrqW215eGdvHxPnOyG+Vltmg/oqJESZRm4LX1LJtGxEcKiaL0VEC3XqYqvR3x5moEOa4yfVEMXhep6QmyAWA==","shasum":"4166e55972f9deb85890907822cc77516c59f973","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/angular2-highlight-js/-/angular2-highlight-js-9.0.0.tgz","fileCount":17,"unpackedSize":86799,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfw4dvCRA9TVsSAnZWagAA5X4P/inVtM0JhjNlypbHfjyg\nbQWPOxdQkhJ3ONM1uHgeK+nGds2trBsQEhiwXnjLGKJqU6dL/POgFgPNejkT\n3ZbYtWJzXIigsO35eTUtttGrrVBrKtA39yq7fr4OzYu427r6wunECM6Pycsb\nwrocfe84FenZ0dBFU0hrX++Hez+Ukl92dnN6hQSUUBswpYcXtCQNTv18LoI2\ntNN9wwSjBmD0J8cOQvTjYIMRqG7/vEqlKD4zHnotVH4Vd7FlbBnL7xJLo9I8\nhSHKLMIwTcbxhIBHXHte0vZqVVXgEXKt07sFPxCNaFOiQ8bP1fR17ETfw5RE\nDYoZDSXH8p41S2CltiAmM1v96urktbKbjivzi/pFbZJqCGOzOzZ+6Q/KlFO2\n2PTAgIA56Z19f/+65Dy1w7pZIC5sDc11qhrcVdpcIvvlc9sQMCTalP67pQ2x\nV/FD5YRfHQcZAQo0YKskxYugc7oaND/EGCAg38vNrbfdm39sj39vcI4m3Iiv\nVadDsBMg53vqtun4JGiVIa6FlGu/FhzfbpxK+tl/Xc39dr1Cbhkl8frRw4Nv\najqXWuv7XKfHVFXqMh7vh6yBs/eNwjKpr+hanc+9n9NSg0Q1Cvvk/ftQq2JM\nfovuJDuvHPYY8fZ1gg0tpv7Q/m5gZ788lbUWmlVLSCiH1mO6M5va5Eq/kAzH\n7Y6I\r\n=dkJ8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIENgfXgikEr6Wr3Z4q7/30zvOMViZ1WL3Uy/SK20WcjgAiAwGule7oU8plXMO/d5pWCsaY7pG08t0ZyW/Nm4HwmKqg=="}]},"_npmUser":{"name":"anonymous","email":"jonathanchase@outlook.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"jonathanchase@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/angular2-highlight-js_9.0.0_1606649710840_0.38460859342589315"},"_hasShrinkwrap":false}},"name":"angular2-highlight-js","time":{"modified":"2022-06-13T03:00:48.591Z","created":"2016-07-20T04:31:27.698Z","1.0.0":"2016-07-20T04:31:27.698Z","1.0.1":"2016-07-20T04:32:32.271Z","1.0.3":"2016-07-20T04:38:26.559Z","1.0.4":"2016-07-20T04:42:09.750Z","1.0.5":"2016-07-20T04:52:37.411Z","1.0.6":"2016-07-20T23:50:29.401Z","1.0.7":"2016-07-26T03:59:44.782Z","1.0.8":"2016-08-09T07:08:25.994Z","2.0.0-alpha.1":"2016-08-18T10:03:39.061Z","2.0.0-alpha.2":"2016-08-18T10:56:35.778Z","2.0.0-alpha.3":"2016-08-18T11:01:45.149Z","2.0.0":"2016-08-24T02:31:44.773Z","2.0.1":"2016-08-27T01:22:01.682Z","3.0.0":"2016-09-17T09:49:03.503Z","4.0.0-alpha":"2016-11-09T09:03:16.862Z","4.0.0":"2016-11-11T23:59:05.891Z","5.0.0-alpha":"2017-04-04T13:25:26.622Z","5.0.0":"2017-04-04T13:43:36.632Z","5.0.1":"2017-06-08T05:13:37.506Z","5.0.2":"2017-07-12T00:15:45.226Z","6.0.0-alpha":"2017-08-18T04:25:23.114Z","6.0.1-alpha":"2017-08-18T04:31:34.140Z","8.0.1-alpha":"2019-06-14T13:20:27.439Z","8.0.1-alpha.1":"2019-06-16T12:48:37.570Z","8.0.1-alpha.2":"2019-06-16T13:02:16.891Z","8.0.1-alpha.3":"2019-06-16T13:21:07.974Z","8.0.1-alpha.4":"2019-06-16T13:32:01.542Z","8.0.1-alpha.5":"2019-06-17T00:26:10.818Z","8.0.1-beta.1":"2019-06-18T08:22:12.116Z","8.0.1-beta.2":"2019-07-02T11:52:16.642Z","8.0.1-beta.3":"2019-07-02T12:01:20.791Z","8.0.1-beta.4":"2019-07-02T12:13:15.536Z","8.0.1-beta.5":"2019-07-02T12:22:33.294Z","8.0.1-beta.6":"2019-07-02T12:27:05.309Z","8.0.1":"2019-08-05T11:50:03.405Z","9.0.0":"2020-11-29T11:35:11.002Z"},"readmeFilename":"README.md","homepage":"https://github.com/jaychase/angular2-highlight-js#readme"}