{"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"dist-tags":{"latest":"10.0.2"},"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"description":"An Angular treeview component with checkbox","readme":"# ngx-treeview [![Build Status](https://travis-ci.org/leovo2708/ngx-treeview.svg?branch=master)](https://travis-ci.org/leovo2708/ngx-treeview) [![npm version](https://badge.fury.io/js/ngx-treeview.svg)](https://badge.fury.io/js/ngx-treeview)\n\nAn Angular treeview component with checkbox\n\n## Dependencies\n\n- [Angular](https://angular.io)\n- [Lodash](https://lodash.com)\n- [Bootstrap 4](https://getbootstrap.com)\n\nThis component is currently supporting Bootstrap 4. If you are using Bootstrap 4 alpha 6, please downgrade to the older version 1.0.10.\n\nYou can customize CSS yourself to break down dependencies to Bootstrap.\n\n## Features\n\n- Unlimited tree level\n- State: disabled / collapse, expand\n- Filtering\n- Internationalization (i18n) support\n- Template\n- Checkbox with tri-state\n\n## Demo\n\n[https://leovo2708.github.io/ngx-treeview/](https://leovo2708.github.io/ngx-treeview/)\n\n## Installation\n\nAfter install the above dependencies, install `ngx-treeview` via:\n\n```shell\nnpm install ngx-treeview --save\n```\n\nOnce installed you need to import our main module in your application module:\n\n```js\nimport { TreeviewModule } from 'ngx-treeview';\n\n@NgModule({\n  declarations: [AppComponent, ...],\n  imports: [TreeviewModule.forRoot(), ...],\n  bootstrap: [AppComponent]\n})\nexport class AppModule {\n}\n```\n\n## Usage\n\n#### Treeview:\n\n```html\n<ngx-treeview\n  [config]=\"config\"\n  [items]=\"items\"\n  (selectedChange)=\"onSelectedChange($event)\"\n  (filterChange)=\"onFilterChange($event)\"\n>\n</ngx-treeview>\n```\n\n#### Treeview with dropdown:\n\n```html\n<ngx-dropdown-treeview\n  [buttonClass]=\"buttonClass\"\n  [config]=\"config\"\n  [items]=\"items\"\n  (selectedChange)=\"onSelectedChange($event)\"\n  (filterChange)=\"onFilterChange($event)\"\n>\n</ngx-dropdown-treeview>\n```\n\n`config` is optional. This is the default configuration:\n\n```js\n{\n   hasAllCheckBox: true,\n   hasFilter: false,\n   hasCollapseExpand: false,\n   decoupleChildFromParent: false,\n   maxHeight: 500\n}\n```\n\nYou can change default configuration easily because TreeviewConfig is injectable.\n\n#### Pipe `ngxTreeview`:\n\nTo map your JSON objects to TreeItem objects.\n\n```html\n<ngx-dropdown-treeview\n  [config]=\"config\"\n  [items]=\"items | ngxTreeview:'textField'\"\n  (selectedChange)=\"onSelectedChange($event)\"\n>\n</ngx-dropdown-treeview>\n```\n\n#### Create a TreeviewItem:\n\n```js\nconst itCategory = new TreeviewItem({\n  text: \"IT\",\n  value: 9,\n  children: [\n    {\n      text: \"Programming\",\n      value: 91,\n      children: [\n        {\n          text: \"Frontend\",\n          value: 911,\n          children: [\n            { text: \"Angular 1\", value: 9111 },\n            { text: \"Angular 2\", value: 9112 },\n            { text: \"ReactJS\", value: 9113 },\n          ],\n        },\n        {\n          text: \"Backend\",\n          value: 912,\n          children: [\n            { text: \"C#\", value: 9121 },\n            { text: \"Java\", value: 9122 },\n            { text: \"Python\", value: 9123, checked: false },\n          ],\n        },\n      ],\n    },\n    {\n      text: \"Networking\",\n      value: 92,\n      children: [\n        { text: \"Internet\", value: 921 },\n        { text: \"Security\", value: 922 },\n      ],\n    },\n  ],\n});\n```\n\nYou can pass the second paramater 'autoCorrectChecked' with value=true (default is false) in constructor of TreeviewItem to correct checked value of it and all of its descendants. In some cases, you need to push or pop children flexibly, checked of parent may be not correct. Then you need to call function correctChecked() to help to correct from root to its descendants.\n\n```js\nconst vegetableCategory = new TreeviewItem({\n  text: \"Vegetable\",\n  value: 2,\n  children: [\n    { text: \"Salad\", value: 21 },\n    { text: \"Potato\", value: 22 },\n  ],\n});\nvegetableCategory.children.push(\n  new TreeviewItem({ text: \"Mushroom\", value: 23, checked: false })\n);\nvegetableCategory.correctChecked(); // need this to make 'Vegetable' node to change checked value from true to false\n```\n\n#### TreeviewEventParser:\n\nExtract data from list of checked TreeviewItem and send it in parameter of event selectedChange. Some built-in TreeviewEventParser:\n\n- DefaultTreeviewEventParser: return values of checked items.\n- DownlineTreeviewEventParser: return list of checked items in orginal order with their ancestors.\n- OrderDownlineTreeviewEventParser: return list of checked items in checked order with their ancestors. Note that: value of a leaf must be different from value of other leaves.\n\n#### Templating:\n\nSee example 4 & 5.\n\n## Contributing\n\nI am very appreciate for your ideas, proposals and found bugs which you can leave in github issues. Thanks in advance!\n","repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"users":{"chad007":true,"leovo2708":true,"attacomsian":true,"johnshao":true,"monczek":true},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"license":"MIT","versions":{"0.0.1":{"name":"ngx-treeview","version":"0.0.1","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"clean":"rimraf dist","start":"ng serve","build":"npm run build:lib && npm run build:demo","build:demo":"npm run clean && ng build","build:lib":"npm run clean && ngc && copyfiles package.json README.md LICENSE dist/","test":"ng test","lint":"ng lint","e2e":"ng e2e","pub":"npm run pub:lib && npm run pub:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist","ci":"npm run lint && npm run test -- --watch=false && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"lib/index.js","module":"lib/index.js","jsnext:main":"lib/index.js","types":"lib/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"1.0.0","@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/http":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@angular/router":"^4.0.0","@types/jasmine":"2.5.38","@types/lodash":"^4.14.62","@types/node":"~6.0.60","bootstrap":"^4.0.0-alpha.6","codelyzer":"~2.0.0","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^0.12.0","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","protractor":"~5.1.0","rimraf":"^2.6.1","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@0.0.1","_shasum":"37b34e8b7ff133d4a96ccf6fd525f0df2324e287","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"37b34e8b7ff133d4a96ccf6fd525f0df2324e287","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-0.0.1.tgz","integrity":"sha512-OSaB1uwSZY5zEfrhRphy2PumXnXY1ACyU8F+3UQY/OI6KrerjLQKAxltE0I0P4xDgFI++u6ZrES7PJ854CuSsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCPlBVcxPrx+nnUGwCq82c5AqKBgqGP7yMkhWR/0qhsGgIhALCsU4wkDdRyHnUMEdd2XZcZ0AdbTe0qm1xFJRQD2sD6"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngx-treeview-0.0.1.tgz_1492668851327_0.6980920180212706"},"directories":{}},"0.0.2":{"name":"ngx-treeview","version":"0.0.2","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"clean":"rimraf dist","start":"ng serve","build":"npm run build:lib && npm run build:demo","build:demo":"npm run clean && ng build","build:lib":"npm run clean && ngc && copyfiles package.json README.md LICENSE dist/","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage","lint":"ng lint","e2e":"ng e2e","pub":"npm run pub:lib && npm run pub:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"lib/index.js","module":"lib/index.js","jsnext:main":"lib/index.js","types":"lib/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"1.0.0","@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/http":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@angular/router":"^4.0.0","@types/jasmine":"2.5.38","@types/lodash":"^4.14.62","@types/node":"~6.0.60","bootstrap":"^4.0.0-alpha.6","codelyzer":"~2.0.0","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^0.12.0","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","protractor":"~5.1.0","rimraf":"^2.6.1","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@0.0.2","_shasum":"d222a801ca3ba81149d43eece2733dd58d59f389","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"d222a801ca3ba81149d43eece2733dd58d59f389","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-0.0.2.tgz","integrity":"sha512-o+JM7hE/24+XedJgCSp8HCLx1Rou1MdkotiEouLiWJJfLoBr5n5j9bKeofTXB5EAbs/0vqhidrJeVMyg1c/1AQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE7SWhMJgt7t4B8IHbbZ4KnI9NyKgKpXS3Lf47fxfHYcAiEAmbDM0aYfmMbwVHzxugJ1zEb22I58gDKrA0BFQNQgrhU="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ngx-treeview-0.0.2.tgz_1492673319790_0.21235953108407557"},"directories":{}},"0.0.3":{"name":"ngx-treeview","version":"0.0.3","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"clean":"rimraf dist","start":"ng serve","build":"npm run build:lib && npm run build:demo","build:demo":"npm run clean && ng build","build:lib":"npm run clean && ngc && copyfiles package.json README.md LICENSE dist/","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage","lint":"ng lint","e2e":"ng e2e","pub":"npm run pub:lib && npm run pub:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"lib/index.js","module":"lib/index.js","jsnext:main":"lib/index.js","types":"lib/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"1.0.0","@angular/common":"^4.0.0","@angular/compiler":"^4.0.0","@angular/compiler-cli":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","@angular/http":"^4.0.0","@angular/platform-browser":"^4.0.0","@angular/platform-browser-dynamic":"^4.0.0","@angular/router":"^4.0.0","@types/jasmine":"2.5.38","@types/lodash":"^4.14.62","@types/node":"~6.0.60","bootstrap":"^4.0.0-alpha.6","codelyzer":"~2.0.0","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^0.12.0","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","protractor":"~5.1.0","rimraf":"^2.6.1","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.4"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@0.0.3","_shasum":"9d8d5f226fd9f5fca26467beedfe888c4e055e1e","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"9d8d5f226fd9f5fca26467beedfe888c4e055e1e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-0.0.3.tgz","integrity":"sha512-hgSAH428tDDKWQ+iez6NrhsGkSQU2g8vSqBWv23XHwFafEtiAc32d9WJ2WuDdkh6NR3HjgeTaKNUHk22JgcG7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICTNKNDLmgsSTi9Gh0iNsHNo9sIBlivQwc1ZPxCgh0LzAiEAtyAjnpszXhnuN3PY3dPxUn7XsAMRP7pqjknSPjg4/c8="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ngx-treeview-0.0.3.tgz_1492679966925_0.1591317707207054"},"directories":{}},"0.0.4":{"name":"ngx-treeview","version":"0.0.4","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"clean":"rimraf dist","start":"ng serve","build":"npm run build:lib && npm run build:demo","build:demo":"npm run clean && ng build --prod","build:lib":"npm run clean && ngc && rollup -c rollup-config.js && copyfiles package.json README.md LICENSE dist/","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage","lint":"ng lint","e2e":"ng e2e","pub":"npm run pub:lib && npm run pub:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist","rollup":"rollup -c rollup-config.js"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"lib/index.js","module":"lib/index.js","jsnext:main":"lib/index.js","types":"lib/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.0.1","@angular/common":"^4.1.0","@angular/compiler":"^4.1.0","@angular/compiler-cli":"^4.1.0","@angular/core":"^4.1.0","@angular/forms":"^4.1.0","@angular/http":"^4.1.0","@angular/platform-browser":"^4.1.0","@angular/platform-browser-dynamic":"^4.1.0","@angular/router":"^4.1.0","@types/jasmine":"2.5.38","@types/lodash":"^4.14.63","@types/node":"~6.0.60","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"~2.0.0","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^0.12.0","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","protractor":"~5.1.0","rimraf":"^2.6.1","rollup":"^0.41.6","rollup-plugin-angular-inline":"^1.0.0","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.9"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@0.0.4","_shasum":"fa7d8a798adeaa28882f0ff948f1d72c58d0d3c6","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"fa7d8a798adeaa28882f0ff948f1d72c58d0d3c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-0.0.4.tgz","integrity":"sha512-+NEDbNH1eTsSzsX87L/yglRlait6YWNfdkWDb6a6CdCW7Zlc+AS9iw0V2qD3+9pxLAId+XJfrwJovNYrsIjVUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBmRkm8BOVjl7cyFrkfDjnkvZDviqBFNVaXVDc98bo7OAiASqb4heoKe3vZprCD67FYejQXe6gvpWbfkMoLzyrT14w=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-0.0.4.tgz_1495527596509_0.2627166120801121"},"directories":{}},"0.0.5":{"name":"ngx-treeview","version":"0.0.5","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"clean":"rimraf dist","start":"ng serve","build":"npm run build:lib && npm run build:demo","build:demo":"npm run clean && ng build --prod","build:lib":"npm run clean && ngc && copyfiles package.json README.md LICENSE dist/","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage","lint":"ng lint","e2e":"ng e2e","pub":"npm run pub:lib && npm run pub:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"lib/index.js","module":"lib/index.js","jsnext:main":"lib/index.js","types":"lib/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.0.1","@angular/common":"^4.1.0","@angular/compiler":"^4.1.0","@angular/compiler-cli":"^4.1.0","@angular/core":"^4.1.0","@angular/forms":"^4.1.0","@angular/http":"^4.1.0","@angular/platform-browser":"^4.1.0","@angular/platform-browser-dynamic":"^4.1.0","@angular/router":"^4.1.0","@types/jasmine":"2.5.38","@types/lodash":"^4.14.63","@types/node":"~6.0.60","bootstrap":"^4.0.0-alpha.6","codelyzer":"~2.0.0","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^0.12.0","jasmine-core":"~2.5.2","jasmine-spec-reporter":"~3.2.0","karma":"~1.4.1","karma-chrome-launcher":"~2.0.0","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^0.2.0","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","protractor":"~5.1.0","rimraf":"^2.6.1","rxjs":"^5.1.0","ts-node":"~2.0.0","tslint":"~4.5.0","typescript":"~2.2.0","zone.js":"^0.8.9"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@0.0.5","_shasum":"0cee595e45f3ef443607431b5c54faaaf22a8ac5","_from":"dist","_resolved":"file:dist","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"0cee595e45f3ef443607431b5c54faaaf22a8ac5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-0.0.5.tgz","integrity":"sha512-/ugnaAPHdBv6L3kkf83Na3ls3Ijy6SKPPfWDKAnBm2s5Z2Gw3eSd0LXHpbnwpxb+D//nZ2ZF0sLDXWeLV963uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDzvUjo1Sd3ru+6kJlRDWIOrvm/q/kkJBUKF9OtkZ/g/gIgXdgm69hzM8Vp2ptdDBd+3BX76jGJwnHy1cTd4kxcKGE="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-0.0.5.tgz_1495700697365_0.635691583622247"},"directories":{}},"1.0.0":{"name":"ngx-treeview","version":"1.0.0","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"rimraf dist/lib && ngc -p tsconfig-lib.json && gulp && rollup -c rollup.config.js && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo --prod","build":"rimraf dist && npm run build:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.1.1","@angular/common":"^4.2.2","@angular/compiler":"^4.2.2","@angular/compiler-cli":"^4.2.2","@angular/core":"^4.2.2","@angular/forms":"^4.2.2","@angular/platform-browser":"^4.2.2","@angular/platform-browser-dynamic":"^4.2.2","@angular/router":"^4.2.2","@types/jasmine":"2.5.38","@types/lodash":"^4.14.66","@types/node":"^7.0.31","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","jasmine-core":"^2.6.3","jasmine-spec-reporter":"^4.1.0","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","rollup":"^0.43.0","ts-node":"^3.0.6","tslint":"^5.4.3","typescript":"^2.4.0","zone.js":"^0.8.12"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.0","_npmVersion":"5.0.3","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-tbbGDXhU+96MQaZOTVcbpKQ9E7ZXg/9vucN825ohmOygtI5iQJI4OVQUihOR3/Jb7bE1DmVuqp935zbrCL06rA==","shasum":"1b7763aee68235862a79c65952742df07440edda","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHlzZ/ej4uhEYj8vgVzmZSrESnHoJ/10qd+buw0pOYzFAiACJFGfdPRu20+3zQe0ur6N6cjzKbkCvK5dN6V2QkDB8Q=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.0.tgz_1497522007429_0.887685151072219"},"directories":{}},"1.0.1":{"name":"ngx-treeview","version":"1.0.1","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"rimraf dist/lib && ngc -p tsconfig-lib.json && gulp && rollup -c rollup.config.js && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo --prod","build":"rimraf dist && npm run build:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.1.1","@angular/common":"^4.2.2","@angular/compiler":"^4.2.2","@angular/compiler-cli":"^4.2.2","@angular/core":"^4.2.2","@angular/forms":"^4.2.2","@angular/platform-browser":"^4.2.2","@angular/platform-browser-dynamic":"^4.2.2","@angular/router":"^4.2.2","@types/jasmine":"2.5.38","@types/lodash":"^4.14.66","@types/node":"^7.0.31","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","jasmine-core":"^2.6.3","jasmine-spec-reporter":"^4.1.0","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","rollup":"^0.43.0","ts-node":"^3.0.6","tslint":"^5.4.3","typescript":"^2.4.0","zone.js":"^0.8.12"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.1","_npmVersion":"5.0.3","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-1IxGPJBormqRvMd/eZptJPacURuV0NEqp217MJVh+m1rSt+vzm2udghHM5nl/ehPDCpK/+cHCqvcJrdZ4qqGFw==","shasum":"b5f607e49cfdc8b92c432fb9e76a449153b3d9f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsuOow9sIYhJFckOIb8APDT95kgsgTEHN7+euU4uicOgIgcKZDJha+mMR8/8IGrfpgWwes9oNmY7ZFZhc3omXKzDM="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.1.tgz_1497544103423_0.6658560519572347"},"directories":{}},"1.0.2":{"name":"ngx-treeview","version":"1.0.2","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"rimraf dist/lib && ngc -p tsconfig-lib.json && gulp && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo --prod","build":"rimraf dist && npm run build:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./src/index.js","module":"./src/index.js","jsnext:main":"src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.1.1","@angular/common":"^4.2.2","@angular/compiler":"^4.2.2","@angular/compiler-cli":"^4.2.2","@angular/core":"^4.2.2","@angular/forms":"^4.2.2","@angular/platform-browser":"^4.2.2","@angular/platform-browser-dynamic":"^4.2.2","@angular/router":"^4.2.2","@types/jasmine":"2.5.38","@types/lodash":"^4.14.66","@types/node":"^7.0.31","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","jasmine-core":"^2.6.3","jasmine-spec-reporter":"^4.1.0","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","rollup":"^0.43.0","ts-node":"^3.0.6","tslint":"^5.4.3","typescript":"^2.4.0","zone.js":"^0.8.12"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.2","_npmVersion":"5.0.3","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-3FrAzWl+HofY4HMNV3OKFXPBJZNDE4PSTI5FF9DNLT2XcW6cL9j8Z8KIqkGsaCWB+bX6Qz2hBbuAw7l66rYXhQ==","shasum":"1ca86565db80b9699ba798339de65640eb6a9498","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBHVv58wWdJox3DeMgT686HW7wH7jyrXMuOQLXfOlJD0AiArTn0jFF5S0sm+xaE6Kx6O90U/MXofifB15C1FtMN/wQ=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.2.tgz_1497598051748_0.10937922145240009"},"directories":{}},"1.0.3":{"name":"ngx-treeview","version":"1.0.3","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"rimraf dist/lib && ngc -p tsconfig-lib.json && gulp && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo --prod","build":"rimraf dist && npm run build:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./src/index.js","module":"./src/index.js","jsnext:main":"src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.1.2","@angular/common":"^4.2.2","@angular/compiler":"^4.2.2","@angular/compiler-cli":"^4.2.2","@angular/core":"^4.2.2","@angular/forms":"^4.2.2","@angular/platform-browser":"^4.2.2","@angular/platform-browser-dynamic":"^4.2.2","@angular/router":"^4.2.2","@types/jasmine":"2.5.38","@types/lodash":"^4.14.66","@types/node":"^7.0.31","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","jasmine-core":"^2.6.3","jasmine-spec-reporter":"^4.1.0","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","rollup":"^0.43.0","ts-node":"^3.0.6","tslint":"^5.4.3","typescript":"^2.4.0","zone.js":"^0.8.12"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.3","_npmVersion":"5.0.3","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-MrFuvDIaKQ+A/EQ5p+PDjutwNe90sgeiwZthOyzt6ywkCy78LAajQ9648lSxos9hDNN/P1Pnc2BY+PCbrY8IDg==","shasum":"726bb8273296dde9c0ef824d4620375318664ee5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFKeFIHpjItaUIykQuyaQvmsfj1i14bCUr55xPXJgqTGAiBBZgkjzyusv4dIaqs6rV1V1qTLA3Hef/XuGo5h6fg8sA=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.3.tgz_1497602209087_0.9973391245584935"},"directories":{}},"1.0.4":{"name":"ngx-treeview","version":"1.0.4","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"rimraf dist/lib && ngc -p tsconfig-lib.json && gulp && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo --prod","build":"rimraf dist && npm run build:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./src/index.js","module":"./src/index.js","jsnext:main":"src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.1.2","@angular/common":"^4.2.2","@angular/compiler":"^4.2.2","@angular/compiler-cli":"^4.2.2","@angular/core":"^4.2.2","@angular/forms":"^4.2.2","@angular/platform-browser":"^4.2.2","@angular/platform-browser-dynamic":"^4.2.2","@angular/router":"^4.2.2","@types/jasmine":"2.5.38","@types/lodash":"^4.14.66","@types/node":"^7.0.31","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","jasmine-core":"^2.6.3","jasmine-spec-reporter":"^4.1.0","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","rollup":"^0.43.0","ts-node":"^3.0.6","tslint":"^5.4.3","typescript":"^2.4.0","zone.js":"^0.8.12"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.4","_npmVersion":"5.0.3","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-QVeJV7T7stoCb0EvjhS67c0FaKYwnLkKRfUYdc7RpL6gZ7PhpXDqW0TKGDIPOQnOhwIS/D1MDXD7z6ihcEHiHg==","shasum":"afd4859a8cf2827d3456e5942538798a1bf8dd58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOPgzv++Z/6p7ZOa7ikhNUVdAgNROfXWv07p0gipwSZwIhAMc7SgXcKUShBPSqBvlrVVsBHIsnhhciHj29PMHFyqHE"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.4.tgz_1497605676926_0.7188683543354273"},"directories":{}},"1.0.5":{"name":"ngx-treeview","version":"1.0.5","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"rimraf dist/lib && ngc -p tsconfig-lib.json && gulp && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo","build":"rimraf dist && npm run build:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.1.1","@angular/common":"^4.2.2","@angular/compiler":"^4.2.2","@angular/compiler-cli":"^4.2.2","@angular/core":"^4.2.2","@angular/forms":"^4.2.2","@angular/platform-browser":"^4.2.2","@angular/platform-browser-dynamic":"^4.2.2","@angular/router":"^4.2.2","@types/jasmine":"2.5.38","@types/lodash":"^4.14.66","@types/node":"^7.0.31","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","jasmine-core":"^2.6.3","jasmine-spec-reporter":"^4.1.0","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","rollup":"^0.43.0","ts-node":"^3.0.6","tslint":"^5.4.3","typescript":"^2.4.0","zone.js":"^0.8.12"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.5","_npmVersion":"5.0.3","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-neKA5PLLctEQ0d04BrP8jTWiFY4bvVOuNRfsU9RXxhRDXEgDZbtYZpThN1i6SKJBKfQlWibC3UlsmWJOJgQ32g==","shasum":"70afc63b95727d8b9189eb41983e346320123c2c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMHxWOmUOXucFjr3yAXB2IYF6Be4PcB20/+/cL7NiLsgIgPexIaMWvPab8l2E+6KODTYBEA6mrgiZF0fm+4Dy/Le0="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.5.tgz_1497608604672_0.5619905192870647"},"directories":{}},"1.0.6":{"name":"ngx-treeview","version":"1.0.6","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"ncp src/lib tmp --stopOnErr && gulp && rimraf dist/lib && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo","build":"rimraf dist && npm run build:demo","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"2.5.38","@types/lodash":"^4.14.68","@types/node":"^7.0.33","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","ncp":"^2.0.0","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","rollup":"^0.43.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.12"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.6","_npmVersion":"5.0.4","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-iZxYvfWdrGCJqr8vDOygar2vVCYMS0sQOuM7w2lFdnOvbw/OuPs0lLVLmDEMqh7LOdTkrLhNRTdumTHMTgtDVA==","shasum":"6cb4e50e2ed22c10f26c06bbf137afbcf7415cf0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCW0Zy+uX2ZESuvBbYR1e2JBlbeWaUfpvaA8oO7Fasv4AIhAM6s+FyhIRSYSsFYPcOSCe9HdLG5zkcuTJxaf+fjxEsS"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.6.tgz_1499672272649_0.06206488166935742"},"directories":{}},"1.0.7":{"name":"ngx-treeview","version":"1.0.7","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"gulp inline-templates && rimraf dist/lib && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo","build":"npm run build:demo","prebuild":"rimraf dist tmp","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"2.5.38","@types/lodash":"^4.14.68","@types/node":"^7.0.33","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.7","_shasum":"6ee961a2ff624d1eefbd590618ace674bbb6934c","_from":"dist\\lib","_resolved":"file:dist\\lib","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"6ee961a2ff624d1eefbd590618ace674bbb6934c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.7.tgz","integrity":"sha512-Z8zpp7I1jGE7GeMmVPSFRGwlYHeCEAyVmoaxn7pw7yLYpNK9FW6CfQKnS4W/HYmzVqpIFMLC18JpUpoVZzJgYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDza7axVXa4B6QrUu3r1qMCJEo9NhCLhF6PkdK6uKemFgIgMjgq9maWwwV01PiGH8dH4ev84Rm6YJUuIyzgmzFR240="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.7.tgz_1500450407780_0.07345342310145497"},"directories":{}},"1.0.8":{"name":"ngx-treeview","version":"1.0.8","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"gulp inline-templates && rimraf dist/lib && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo","build":"npm run build:demo","prebuild":"rimraf dist tmp","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.8","_shasum":"a2bcabb70f88d432b98ea616c9440dd6c0dc6074","_from":"dist\\lib","_resolved":"file:dist\\lib","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"a2bcabb70f88d432b98ea616c9440dd6c0dc6074","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.8.tgz","integrity":"sha512-dqhtPb/UD75nhe9CIbztof+BErPWLpyisvbrSsHOdKZb5AQAJsVXAM3WRVsO2ESRbmVO3FxVnneb3IJHLuBRVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIANW8WSKBdRv4G+glY6CaN1OI2ZZXV36a3xroWF/qrkBAiBP/eN8QSC6Lel/Q0ZvnHmFHq5h7tHcKa0sQgrLi5vLDA=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.8.tgz_1500535891108_0.07330307038500905"},"directories":{}},"1.0.9":{"name":"ngx-treeview","version":"1.0.9","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"gulp inline-templates && rimraf dist/lib && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app demo","build":"npm run build:demo","prebuild":"rimraf dist tmp","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.9","_shasum":"eb2123623dc4cc2dfa01a101d7b6c377b6ecaeb3","_from":"dist\\lib","_resolved":"file:dist\\lib","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"shasum":"eb2123623dc4cc2dfa01a101d7b6c377b6ecaeb3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.9.tgz","integrity":"sha512-q0gGarVU64JmJz7DYSA17sPjUsZHVTP5c0iTq5iywd83r0Er9F1UfTj0lD7DcYcVkRepHl7u9OKwc78ZS3WprQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCTKap0mUKFPrGxWeqUGkMN4s2IRmrI6RfiMlEpZHdO4QIhAN+j2MhqNZbw6DM0tg05jEnT0BJVEy/64XXIVbwe6ocs"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.9.tgz_1500604853491_0.6290364316664636"},"directories":{}},"1.0.10":{"name":"ngx-treeview","version":"1.0.10","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve --app lib","start:demo":"npm run build:demo && lite-server -c bs-config.json","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","build:lib":"gulp inline-templates && rimraf dist/lib && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","build:demo":"npm run build:lib && rimraf dist/demo && ng build --app=demo --prod","build":"npm run build:demo","prebuild":"rimraf dist tmp","postbuild":"rimraf tmp","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub:lib":"npm run build:lib && npm publish dist/lib","pub":"rimraf dist && npm run pub:lib && npm run pub:demo","ci":"npm run lint && npm run test-ci && npm run e2e"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lite-server":"^2.3.0","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.0.10","_npmVersion":"5.3.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-5OG0SV0vCueLVK+nON9TQO9zJtdn3KeyXrmfMJCp4QDIsUuH2Jt84NI+/1kcGJZaLOZzDnH8V10jBTJsKH1Hng==","shasum":"49bf8375572de0c04c6576281c9a039723702da8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.0.10.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1Q6dsxu+gSf++6kiRJcv7VGRDAg/EY4PvRU6V5ipEVwIhAOc0GHDbe2NrW/RGdueNa8fxJqWFh32EOsWA8vCJl7Ml"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.0.10.tgz_1502356578910_0.2723896997049451"},"directories":{}},"1.1.0":{"name":"ngx-treeview","version":"1.1.0","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.1.0","_npmVersion":"5.3.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-5fHYOO4HpkEWVcssAXpnndBuUOm5X+DmTwLxqq0BkBQxprquI3nLCQ5rAFTa8gl0/Pjewr7g3NCuMGR+xMrQ3g==","shasum":"3e652bb140e492f01c7ccdc4a2523567ad893a6a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.1.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCHxqSUYIQo7N1AYwWHgwGacSL0520DIBO7DQWqU9AdrgCID7OlwwBdHhDw2Q4UTKVFDYCYQKzqZY5gLg1kBrFX2Tr"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.1.0.tgz_1502852531916_0.1455468179192394"},"directories":{}},"1.2.0":{"name":"ngx-treeview","version":"1.2.0","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.2.0","_npmVersion":"5.3.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-1DPMgsxK5CYM1riFIq7ZNwrmECN9ynn8aFEm6gEmSlF2aV4FLpBpfvTNB8Nx0TN7XVHvg0qEN73ZZbBYwU1RSA==","shasum":"a7374c35e2e8f4158c7ee63e224e0235a917b0d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICBumgZTEKUserhWkrS5hvGe5f7T2UT38yodbHQpVeVhAiEA2TdI1RKu66Vl6aDdryi+YAU1v4lBZOUxFj0Gd9uD6rs="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.2.0.tgz_1505718365324_0.3479757911991328"},"directories":{}},"1.2.1":{"name":"ngx-treeview","version":"1.2.1","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"^2.4.1","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.2.1","_npmVersion":"5.3.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-BUiGYEqmT41XPOzHa929MRApTqFtUJW2X0YRBkCBx3KIl2OAcF4nuI1w/2oPfHEZWbMWUxl88Sr1+pUCnpgRXQ==","shasum":"a9f8e2e0444830daf0ab93c956a8e319f55a529a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHyzyNxpkOX9zdpr7NhshzhK834hFy7YHdS+S6ErSdtsAiBSBgSjEq/8YpRcHf1qp0sRoKDtPyH0pqre/CvAo+WCcA=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.2.1.tgz_1505962780038_0.7647571924608201"},"directories":{}},"1.2.2":{"name":"ngx-treeview","version":"1.2.2","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"2.4.0","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.2.2","_npmVersion":"5.4.2","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-iazmkzXjiOv3Lg179v2gpYvN/fVkrrcWk/Kgz1pvI58HJWT/ygA22T6d38B7oJxgXHM6xO4WjLwW746ny/cPvA==","shasum":"dc6ddff76a2adb17f3052050d012fdf57423a45f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.2.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChAPV/v0OW4byjwHNyBtyJ3fgELcSWL4zdUCAv757FgAIhAJPoipNvqqtOpj1DRAhFgzeNLnTxO4HOnWSpqPOo38sO"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.2.2.tgz_1506491853623_0.15060348925180733"},"directories":{}},"1.2.3":{"name":"ngx-treeview","version":"1.2.3","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"2.3.2","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.2.3","_npmVersion":"5.4.2","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-pI7IlQ02+yWjyBD2jQPz2fOo3HsoQ+xXHU3jVqERA6wU2hx/H+e67RDF4+flr/t2fB2gzGPheBek/+RgGaWBwA==","shasum":"32c18212d58e106cc0ceca94bf9008457209fcbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDyXflw6WItfuOKGQq26k7qe0wzilcPgTTfCsvhMImJQgIhAMLugTi20Y51WRSGgXz7h8a4vM0av18D4+VVlpW4BoZZ"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.2.3.tgz_1506507536206_0.7858264299575239"},"directories":{}},"1.2.4":{"name":"ngx-treeview","version":"1.2.4","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"2.3.2","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.2.4","_npmVersion":"5.4.2","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-Un0gG0cmfDZrmyDzR/p9QFs+q/xjIVc79oYMQaGsKHvWdbD3OHq+EDTAMHARIckMmV8Uh8bluknSJ1EGSv1ZsQ==","shasum":"4218d2e5bcdc10ad9afeb55cd76f221c2bd8589b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.2.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEGMTCU5cCBj/hG1DqviLlsIk0SElYBqKqjkLp9NFHZGAiEA1n9tZH1YnFnpt3dHgwuuURLgycFbrcdvqOkVK7sByq0="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.2.4.tgz_1508393348483_0.8000027239322662"},"directories":{}},"1.2.5":{"name":"ngx-treeview","version":"1.2.5","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"./bundles/ngx-treeview.umd.js","module":"./src/index.js","jsnext:main":"./src/index.js","typings":"./src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^4.0.0","@angular/core":"^4.0.0","@angular/forms":"^4.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/cli":"^1.2.0","@angular/common":"^4.2.6","@angular/compiler":"^4.2.6","@angular/compiler-cli":"^4.2.6","@angular/core":"^4.2.6","@angular/forms":"^4.2.6","@angular/platform-browser":"^4.2.6","@angular/platform-browser-dynamic":"^4.2.6","@angular/router":"^4.2.6","@types/jasmine":"^2.5.53","@types/jasminewd2":"^2.0.2","@types/lodash":"^4.14.68","@types/node":"^8.0.14","bootstrap":"^4.0.0-alpha.6","codecov":"^2.1.0","codelyzer":"^3.1.2","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.0.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.0.0","jasmine-core":"^2.6.4","jasmine-spec-reporter":"^4.1.1","karma":"^1.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.5.3","protractor":"^5.1.2","rimraf":"^2.6.1","ts-node":"^3.2.0","tslint":"^5.5.0","typescript":"2.3.2","zone.js":"^0.8.1"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@1.2.5","_npmVersion":"5.5.1","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-iQ3bNt0d8O/PykCmINVJb5/YsV4HQpLaghW7QxhXxmm9J+gbvmbM2BH4a95ejocOuNYQ40o+j9koFDaLVUwaXQ==","shasum":"ac7b66f2c003294bb73e7bfb0e970629b067dad2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-1.2.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBQrrdv1ZaWKc/EpPOYRsfwX4qAOHvlHmuhiMAizMmffAiACP6/LM2OybsZ6ASfEg742LCaOAmzd3ncYswWCr8lWCQ=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-1.2.5.tgz_1509517993336_0.11645286227576435"},"directories":{}},"2.0.0":{"name":"ngx-treeview","version":"2.0.0","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --code-coverage","test-ci":"ng test --watch=false --code-coverage --single-run=true","e2e":"ng e2e","ci":"npm run lint && npm run test-ci && npm run e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"bundles/ngx-treeview.umd.js","module":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/animations":"^5.0.0","@angular/cli":"1.6.2","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/language-service":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","bootstrap":"^4.0.0-beta.2","codecov":"^3.0.0","codelyzer":"^4.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.1.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.7.2","protractor":"~5.1.2","rimraf":"^2.6.2","rxjs":"^5.5.2","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.14"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.0","_npmVersion":"5.6.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-IJMvpxEZ9j4fy30wVqWSwaQEE8uU4NdWeV0EzlNbLg9l10Wrgsv59zShwsvgdd/TP/60l91zBcqmjZzIU6Z4KA==","shasum":"d34e2f98643e185f1dc9796d3b419ad40e57a210","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCrUUpWfLoBlSeqpsZC78EDTOzY2oM+W+S+7QOAqmkeKQIgUaqkx1YBRd+KkgTZlAyM3P8KNsF7JO6EwTEBkPL0Hic="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-2.0.0.tgz_1513852243050_0.24198827403597534"},"directories":{}},"2.0.1":{"name":"ngx-treeview","version":"2.0.1","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/animations":"^5.0.0","@angular/cli":"1.6.2","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/language-service":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","bootstrap":"^4.0.0-beta.2","codecov":"^3.0.0","codelyzer":"^4.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.1.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.7.2","protractor":"~5.1.2","rimraf":"^2.6.2","rxjs":"^5.5.2","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.14"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.1","_npmVersion":"5.6.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-hHsIYJzvImdiLwwyNo7PH8ardQhRLmb4a64DMz4bC2TEJRgZthfG9NaJ+L1JGeQJAUwKGDYEY0/sweN1J1GOEA==","shasum":"6d8c87a71083b7e834b22994a2335c8b00959461","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/w8HuEEacL3qryqtWVFHXiLFHXPDF5rDi/xiYJjBc8QIhAOpEqU3jGwCdsXe3o9/xWszHU72WZDH/b1yqVep5f6iV"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-2.0.1.tgz_1515045360459_0.9431949662975967"},"directories":{}},"2.0.2":{"name":"ngx-treeview","version":"2.0.2","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/animations":"^5.0.0","@angular/cli":"^1.6.6","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/language-service":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","bootstrap":"^4.0.0","codecov":"^3.0.0","codelyzer":"^4.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.1.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.7.2","protractor":"~5.1.2","rimraf":"^2.6.2","rxjs":"^5.5.2","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.14"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.2","_npmVersion":"5.6.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-d6FOnhi9jszLvRHTUiOQ13htGTz5sCnsTER/1pev/uvyrP2VB3EXSMNuf44YnJbTmfK2o7gDSgG//S3sXA67CQ==","shasum":"eb06f69916903a8b5e25b6880a985086584b797b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHg+/ACG7I5ALG2x6mC5+gt/b4HzMjMbrPmbRckevnSjAiEAlEFgWri+oW8hrbYoCzndZJEBQ0fyTxMWlGf/qMqyuok="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-2.0.2.tgz_1517308115224_0.7833918943069875"},"directories":{}},"2.0.3":{"name":"ngx-treeview","version":"2.0.3","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/animations":"^5.0.0","@angular/cli":"^1.6.6","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/language-service":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","bootstrap":"^4.0.0","codecov":"^3.0.0","codelyzer":"^4.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.1.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.7.2","protractor":"~5.1.2","rimraf":"^2.6.2","rxjs":"^5.5.2","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.14"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.3","_npmVersion":"5.6.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-j9QDg11p1dlWAWbd59nDaitOQOvvvtrTBYiRbnWjuupfnw6MoPBWJQKg2PpT5W90tGOPhxa4/qGkm9zQUUiqXg==","shasum":"27fb0078917152ebb8ab95576acf24246f9e6da4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFO7Vm0TzteRbUi4Ncj6oD55FlQAkyDPGNnMZ8+VmW7PAiBZAi0O3vg0WKSd14lsUYCAwIaG2ggWM+I3I6wqiG02UQ=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-2.0.3.tgz_1517556116809_0.49000094062648714"},"directories":{}},"2.0.4":{"name":"ngx-treeview","version":"2.0.4","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/animations":"^5.0.0","@angular/cli":"^1.6.6","@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/language-service":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@angular/router":"^5.0.0","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"~6.0.60","bootstrap":"^4.0.0","codecov":"^3.0.0","codelyzer":"^4.0.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.1.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.2.1","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.4","node-sass":"^4.7.2","protractor":"~5.1.2","rimraf":"^2.6.2","rxjs":"^5.5.2","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.14"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.4","_npmVersion":"5.6.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-I/WZ4SMv7GRkyQ8KAfZKx1NtId4XihkOCLn8KkuXdonpYfw3RbfDAx21dEMCS1/fV9EVtu7f2DUrDbUKXyPauA==","shasum":"e2bd4b80e8f837be3a3f4a2bda31f950032c3890","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAFsBfqn0G6SKDC7yFj0jd2Y+Aey+ZN+Dbzz1N4WrV2bAiEAoUcrEraYCcLOXAuThuZSaI+AIl6QsioD0a/7tcimUrY="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview-2.0.4.tgz_1517812832400_0.5411205107811838"},"directories":{}},"2.0.5":{"name":"ngx-treeview","version":"2.0.5","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild:lib":"rimraf tmp dist/lib","build:lib":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib","postbuild:lib":"rimraf tmp","prebuild:demo":"rimraf dist/demo","build:demo":"ng build --prod","pub:lib":"npm run build:lib && npm publish dist/lib","pub:demo":"npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo","pub":"npm run pub:lib && npm run pub:demo"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/animations":"^5.2.9","@angular/cli":"^1.7.3","@angular/common":"^5.2.9","@angular/compiler":"^5.2.9","@angular/compiler-cli":"^5.2.9","@angular/core":"^5.2.9","@angular/forms":"^5.2.9","@angular/http":"^5.2.9","@angular/language-service":"^5.2.9","@angular/platform-browser":"^5.2.9","@angular/platform-browser-dynamic":"^5.2.9","@angular/router":"^5.2.9","@fortawesome/fontawesome":"^1.1.4","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"^6.0.102","bootstrap":"^4.0.0","codecov":"^3.0.0","codelyzer":"^4.2.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.1.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.4.2","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.5","node-sass":"^4.8.3","protractor":"~5.1.2","rimraf":"^2.6.2","rxjs":"^5.5.7","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.20"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.5","_npmVersion":"5.7.1","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-R00uAyWrIyD4S/ufWGOA8gnrf+qGXPmQpE6Xy9p4d4v5ImiDadcPOKdWbXKxsA5TAJMpvSpduCdikpi0WhMzwg==","shasum":"e6f942ee3e1874d6d96eccbc872a52228af0ade3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.5.tgz","fileCount":67,"unpackedSize":109985,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwwZw6Hp4cM1ybDlcpFSCRYfmOr7/aTc/NT+gt51AvrQIhAIOvV7hX7DXe+drka6m2cb+Rg5lPmYOOaANLbJdyEDtF"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_2.0.5_1521456511561_0.8889353766763677"},"_hasShrinkwrap":false},"2.0.6":{"name":"ngx-treeview","version":"2.0.6","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild":"rimraf tmp dist","build":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist","postbuild":"rimraf tmp","pub":"npm run build && npm publish dist","predeploy":"rimraf dist","deploy":"ng build --prod --base-href /ngx-treeview/ && node gh-pages.js"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.0.0"},"devDependencies":{"@angular/animations":"^5.2.9","@angular/cli":"^1.7.3","@angular/common":"^5.2.9","@angular/compiler":"^5.2.9","@angular/compiler-cli":"^5.2.9","@angular/core":"^5.2.9","@angular/forms":"^5.2.9","@angular/http":"^5.2.9","@angular/language-service":"^5.2.9","@angular/platform-browser":"^5.2.9","@angular/platform-browser-dynamic":"^5.2.9","@angular/router":"^5.2.9","@fortawesome/fontawesome":"^1.1.4","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"^6.0.102","bootstrap":"^4.0.0","codecov":"^3.0.0","codelyzer":"^4.2.1","copyfiles":"^1.2.0","core-js":"^2.4.1","font-awesome":"^4.7.0","gh-pages":"^1.1.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.4.2","karma-jasmine":"~1.1.0","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.5","node-sass":"^4.8.3","protractor":"~5.1.2","rimraf":"^2.6.2","rxjs":"^5.5.7","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.20"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.6","_npmVersion":"5.8.0","_nodeVersion":"6.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-hGG9YEAtw6WjzGCHw3So5W6apycgIgKSjy6x/MZPRkNYF+9jzKlRg2tqMfcdWJH5TR0Fsn9HfK2+ZXG6F+rF2A==","shasum":"d0f1950370d98a1bd5733346a2af8900585c9881","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.6.tgz","fileCount":67,"unpackedSize":111120,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIArpQksX+0Tw1v8eX+4fht4VDkhxf01mTdvsqw1C4bqCAiAzVed+9jfr8bZKo7veq0+kE0pry4Jd3xBdTg1W5L5YOw=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_2.0.6_1523269535382_0.11027035172057031"},"_hasShrinkwrap":false},"2.0.7":{"name":"ngx-treeview","version":"2.0.7","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild":"rimraf tmp dist","build":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist","postbuild":"rimraf tmp","pub":"npm run build && npm publish dist","predeploy":"rimraf dist","deploy":"ng build --prod --base-href /ngx-treeview/ && node gh-pages.js"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","lodash":"^4.17.10"},"devDependencies":{"@angular/animations":"^5.2.11","@angular/cli":"^1.7.4","@angular/common":"^5.2.11","@angular/compiler":"^5.2.11","@angular/compiler-cli":"^5.2.11","@angular/core":"^5.2.11","@angular/forms":"^5.2.11","@angular/http":"^5.2.11","@angular/language-service":"^5.2.11","@angular/platform-browser":"^5.2.11","@angular/platform-browser-dynamic":"^5.2.11","@angular/router":"^5.2.11","@fortawesome/fontawesome":"^1.1.8","@types/jasmine":"~2.5.53","@types/jasminewd2":"~2.0.2","@types/node":"^6.0.112","bootstrap":"^4.1.1","codecov":"^3.0.2","codelyzer":"^4.3.0","copyfiles":"^1.2.0","core-js":"^2.5.7","font-awesome":"^4.7.0","gh-pages":"^1.2.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.6.2","jasmine-spec-reporter":"~4.1.0","karma":"~1.7.0","karma-chrome-launcher":"~2.1.1","karma-cli":"~1.0.1","karma-coverage-istanbul-reporter":"^1.4.3","karma-jasmine":"^1.1.2","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.10","node-sass":"^4.9.0","protractor":"^5.3.2","rimraf":"^2.6.2","rxjs":"^5.5.11","ts-node":"~3.2.0","tslint":"~5.7.0","typescript":"~2.4.2","zone.js":"^0.8.26"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@2.0.7","_npmVersion":"6.1.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-RJsODd8qMUKDk5xhIrPsfqU/HyRXC6xvRd+R2Z/U5KuJyNqvMCAEl1ymqgV6PAP1GoXIBG7yqZGyVPPOuCExtg==","shasum":"1ed8c4ddd836d5aa78acf731dc2515cbef038f3e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-2.0.7.tgz","fileCount":67,"unpackedSize":110756,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGDSSCRA9TVsSAnZWagAA7LkP/i+Qs8g0faZHiTI34dkO\nvPVkEvwpXhCHUyogwE83VqkbkO8n9W5bB+PvWy3/j9DY78DQgFo3dOzaCHan\nheUEUXBBDFj7hg7/1IaBDNdl4tu2pE4pbUlrw1jv/upAZp8ZGixOlA/dZ/zO\nUYDDOFSFQA/d2t7UhTiKVq/w1VFZWZK/EpGJ4n2L/uVapzhwV98SG1uJh+DQ\n8XtMoAaL71xxfATh9S51wZkAKoGZU/rGye0dlJKQH5cteZNydoQCP/BXzsrY\nlL43p56fiPbfOvMn6brC4Q1AO4pEV9zC5X92sAD+vnZyDJ94iZkBiGxVi6lE\n3rXmVY/vWnqmuvken1RpfpW5Ik0nTP3CGHSw/DjB2CkYCobvaKChccCXsm/3\nDiQf2cgPIsJNrYene+h56r5OVdkBPO/gQpovrSHCCrPSvg4zNUs68AWQOWyk\nIzvgPJRVKShi0Zeh7GBXcLe3MuRW4K9QzaVIcdPojRIGbWdRe65GBnL/+F+E\nT/NREQXNBXhhrdG+i3UBqzO3Sc+41immT1ra5BiuHwccpNdGdOopxwj73Bi0\n9ck6JxirJfipKO6jsLgoTmOSLhffCh/ZOba+Yl5/ecNLQnDQ3sis+/HwToHC\nDU/JjYPyZt3GxetKBIi6seVLdSUEx2Kt+LYXUJ474Zf4Zwae5ql8Kl66r1LL\npyic\r\n=SE10\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGNfAKg72j3Oq0adeJ5/F2xRilJSNfD4yZWD0+o79vFtAiBA1eUHSTQPWLKbpnLrAVqkED4ZACU57rzkiGGPirfUoA=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_2.0.7_1528312976585_0.5963893308058461"},"_hasShrinkwrap":false},"6.0.0":{"name":"ngx-treeview","version":"6.0.0","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild":"rimraf tmp dist","build":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist","postbuild":"rimraf tmp","pub":"npm run build && npm publish dist","predeploy":"rimraf dist","deploy":"ng build --prod --base-href /ngx-treeview/ && node gh-pages.js"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","lodash":"^4.17.10"},"devDependencies":{"@angular-devkit/build-angular":"~0.6.8","@angular/cli":"^6.0.8","@angular/common":"^6.0.4","@angular/compiler":"^6.0.4","@angular/compiler-cli":"^6.0.4","@angular/core":"^6.0.4","@angular/forms":"^6.0.4","@angular/http":"^6.0.4","@angular/language-service":"^6.0.4","@angular/platform-browser":"^6.0.4","@angular/platform-browser-dynamic":"^6.0.4","@angular/router":"^6.0.4","@fortawesome/fontawesome":"^1.1.8","@types/jasmine":"^2.8.8","@types/jasminewd2":"~2.0.3","@types/node":"^8.10.19","bootstrap":"^4.1.1","codecov":"^3.0.2","codelyzer":"^4.3.0","copyfiles":"^2.0.0","core-js":"^2.5.7","font-awesome":"^4.7.0","gh-pages":"^1.2.0","gulp":"^3.9.1","gulp-inline-ng2-template":"^4.1.0","jasmine-core":"~2.99.1","jasmine-spec-reporter":"~4.2.1","karma":"~1.7.1","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"^2.0.1","karma-jasmine":"^1.1.2","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.10","node-sass":"^4.9.0","protractor":"^5.3.2","rimraf":"^2.6.2","rxjs":"^6.2.0","ts-node":"~5.0.1","tslint":"~5.9.1","typescript":"~2.7.2","zone.js":"^0.8.26"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@6.0.0","_npmVersion":"6.0.1","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-xf1Bkoh6zNz6Ek/SMqhtUVSNhcWjrlO2NIX6r1g5FMIhLHoyC83jT0HIWvPLuMsz+MdA+UK6kTTEm/4SzNYtmQ==","shasum":"f35f8fa7dbff8f92ec8c01881ddb901014c0c45e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-6.0.0.tgz","fileCount":67,"unpackedSize":112638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGmJNCRA9TVsSAnZWagAAdNQP/09AD0mXf/slFouaLHMx\n2FItTovoBbkICrPRD4INlzedmnNDihGJmKixfxrkFJQNJiC0bkTkPgcCOtQ6\nfejqWMm9GcgmKd0OvzfzU6kB3YUMAHMIcR7DitFsEAArtpLOnZlT2XGgYKE0\nuIxrWjSDui/4S0lFr+0WoMCAXQ5DTiYRCcASfKC/fycRzVHmTRcOXn09nJor\n2ecJg5/0TZykle2Z71bUZc4WgTwTYF4eCOIn9zWAm6jhb8M1r/bni2GJRgMD\nT5TgwK0n6pgHp2GZNKGHTtnJnwIl9Ff/iqEKkvrSOMfQhrQRDMI2mIFjfvaj\n3M/3cmpo4L8eZXJJuby+ZhUSyCIp5+3pLkYcFItWvZTYMAJT+b9jibjOyI2z\nQjC9U7dB3cuQPI269BxgdW8Y3epi05I8r4wYhrqH/UaORLRiGbi5GEi18Vwt\nTamLUPYjNaB4Tz2F07Ct9mu9kWJ3yn3n+xNEuk2jKZ7adaxlLRWbenRIQvmk\nZZCSqGgyXaW4xCEcbewBrG44d8s2NYX7bS15lRL2uO26W+ihV+ndde08zMAl\nsmQ2FE2bYM7fOasN5sIQvBzj1qYifgaMAktd600Yyu6q5KsLqeAxEnmLAHwv\nSzSIBYtRr6IaQqdIcdGNddp3i/tQ2BiGHpkrYcyLN9I03RrTurnHhkHGX+Ub\nTM7X\r\n=exeB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCAogdAQFUl4MveSfhUhmFPXRxpvLZhucEMsGrhTNuirAIhALmN86qNOQaMmdkRtTd5dBMZDg17uiCvUPfr9jMC5jat"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_6.0.0_1528455756735_0.03295757745199568"},"_hasShrinkwrap":false},"6.0.1":{"name":"ngx-treeview","version":"6.0.1","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild":"rimraf tmp dist","build":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist","postbuild":"rimraf tmp","pub":"npm run build && npm publish dist","predeploy":"rimraf dist","deploy":"ng build --prod --base-href /ngx-treeview/ && node gh-pages.js"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","lodash":"^4.17.10"},"devDependencies":{"@angular-devkit/build-angular":"~0.8.0","@angular/cli":"~6.2.1","@angular/common":"^6.1.7","@angular/compiler":"^6.1.7","@angular/compiler-cli":"^6.1.7","@angular/core":"^6.1.7","@angular/forms":"^6.1.7","@angular/http":"^6.1.7","@angular/language-service":"^6.1.7","@angular/platform-browser":"^6.1.7","@angular/platform-browser-dynamic":"^6.1.7","@angular/router":"^6.1.7","@fortawesome/fontawesome":"^1.1.8","@types/jasmine":"^2.8.8","@types/jasminewd2":"~2.0.3","@types/node":"^8.10.29","bootstrap":"^4.1.3","codecov":"^3.1.0","codelyzer":"^4.4.4","copyfiles":"^2.1.0","core-js":"^2.5.7","font-awesome":"^4.7.0","gh-pages":"^1.2.0","gulp":"^4.0.0","gulp-inline-ng2-template":"^5.0.1","jasmine-core":"~2.99.1","jasmine-spec-reporter":"~4.2.1","karma":"~3.0.0","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"~2.0.1","karma-jasmine":"~1.1.2","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.10","node-sass":"^4.9.3","protractor":"^5.4.0","rimraf":"^2.6.2","rxjs":"^6.3.2","ts-node":"~7.0.0","tslint":"~5.11.0","typescript":"~2.9.2","zone.js":"^0.8.26"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@6.0.1","_npmVersion":"6.2.0","_nodeVersion":"10.9.0","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-jVqKdxfpqCrWmWO5fNtGwIvT+QWM2zGcrSDeo8RV+Ckptr5QZQ+iFczjbJ4ZjsLXa3jDQsRznhk6fEb6Sq1p4g==","shasum":"4b475fd5f63da9e263a3edb78d7c396a53c08303","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-6.0.1.tgz","fileCount":67,"unpackedSize":110346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkj6YCRA9TVsSAnZWagAAsMIQAI8jLzWVSp5yqSoCHX+s\n8i53TX7C6rTj7R1dW7E+Iw2PTFdg9RcJ8X4jdU2XKzC/Z/C/6612etBhpcZu\nlG+IJK62dcUCkVFMATCi9UbLKrBIjOO7p+MRReYEH0iZyMHiEV267DkpZCBu\n20BQNzdQ+TUMeH+eKVkj8t75csXVz2aUmXMg088p5Ybzc58eLDui13Ngy2A0\nh/sDP4VzPrDK0OmLqJ75q7G3rYPoE8L5GOgaprVauO4b3aufo8QY0wRA3BBj\nugkEYJCYjM0Gx8EAHWgH1jM+BcrXnQ3GwsGPzDagz7tNpjwEPa85wUrR7eNW\nFBK+cuxH5TyooOFoFUdMMnqA4KQHM/wegzFxANmC1qV53qQ86ZJunrIA4r0A\nwKYrQFJu+TJxlG3JeZyuIAPE13XxCP/kAlq95/KzOdHHzw1FtArp16Oc4OlL\nQ6BxjDdi5FbaJTAzqycDswih0X+7iI9cFoZbO4hfL1j5pzWVXKQLllL+Kd5W\nJmNIg9dyfIFIOlBjxxfko5ML5BeiSyhEjxIZYipWAG6+Oc06oRCG3q+bZgSA\nU8h+i4hBQSscGDf0QqOkz0c6LsI+72F4tfnjvgxmT7O62eLxkpCC6O243HZh\n7q4AGzVaad0ZspS39ZHCPkIhUTSFn34AA99UF3kzzCLvUwSZYl9LCUQXvOFS\n7LPx\r\n=oBkD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEB1bXkIG+FwvFEqsb8wa3+byh3nx0geRioYKXujnX9nAiBfDXcs0hktvI7hQy+jNrEn6ogdpv980wSfn0MrpGMWKg=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_6.0.1_1536310935820_0.14789605503483583"},"_hasShrinkwrap":false},"6.0.2":{"name":"ngx-treeview","version":"6.0.2","license":"MIT","description":"An Angular treeview component with checkbox","scripts":{"start":"ng serve","lint":"ng lint","test":"ng test","test-coverage":"ng test --watch=false --code-coverage","e2e":"ng e2e","prebuild":"rimraf tmp dist","build":"gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist","postbuild":"rimraf tmp","pub":"npm run build && npm publish dist","predeploy":"rimraf dist","deploy":"ng build --prod --base-href /ngx-treeview/ && node gh-pages.js"},"keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"main":"src/index.js","module":"src/index.js","jsnext:main":"src/index.js","types":"src/index.d.ts","private":false,"peerDependencies":{"@angular/common":">=6.0.0","@angular/core":">=6.0.0","@angular/forms":">=6.0.0","lodash":"^4.17.10"},"devDependencies":{"@angular-devkit/build-angular":"~0.8.0","@angular/cli":"~6.2.1","@angular/common":"^6.1.7","@angular/compiler":"^6.1.7","@angular/compiler-cli":"^6.1.7","@angular/core":"^6.1.7","@angular/forms":"^6.1.7","@angular/http":"^6.1.7","@angular/language-service":"^6.1.7","@angular/platform-browser":"^6.1.7","@angular/platform-browser-dynamic":"^6.1.7","@angular/router":"^6.1.7","@fortawesome/fontawesome":"^1.1.8","@types/jasmine":"^2.8.8","@types/jasminewd2":"~2.0.3","@types/node":"^8.10.29","bootstrap":"^4.1.3","codecov":"^3.1.0","codelyzer":"^4.4.4","copyfiles":"^2.1.0","core-js":"^2.5.7","font-awesome":"^4.7.0","gh-pages":"^1.2.0","gulp":"^4.0.0","gulp-inline-ng2-template":"^5.0.1","jasmine-core":"~2.99.1","jasmine-spec-reporter":"~4.2.1","karma":"~3.0.0","karma-chrome-launcher":"~2.2.0","karma-coverage-istanbul-reporter":"~2.0.1","karma-jasmine":"~1.1.2","karma-jasmine-html-reporter":"^0.2.2","lodash":"^4.17.10","node-sass":"^4.9.3","protractor":"^5.4.0","rimraf":"^2.6.2","rxjs":"^6.3.2","ts-node":"~7.0.0","tslint":"~5.11.0","typescript":"~2.9.2","zone.js":"^0.8.26"},"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@6.0.2","_npmVersion":"6.2.0","_nodeVersion":"10.9.0","_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"dist":{"integrity":"sha512-RlXRGtesdghJfLcUzk9sDUaYTAxvuyf16vn4H19If7gYvbHHCRgpdZ2md6jQCppkcjsYNJ4ZP1WkAeqxH5FcDg==","shasum":"2836a0f2c90999e22819527afbf07252c8e0ceb5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-6.0.2.tgz","fileCount":67,"unpackedSize":110532,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb64kfCRA9TVsSAnZWagAAS+UP/3XFYaDSEX/wXDvh7i8/\n6E8LCrnqx5XbLL/E6ecuSKwXwH0PGh2xVFyyji2TxXIQ7lfWrRTYeVGa1lqk\nWzIc5jPdnRRteof/fukPuci0xy8jr0ZoEqVsD/Mt/GR0FGPfx9Z6McBvam3y\n2jJ8pFqHmvWfWv1RoY5Q43hL8LtVeIbL20H+7KpCRF8QlNqaS0IKq3BsyBaC\nN8D9DQVpCV5SjMtm4+6wRwFhBlK3smTOXiQ6GQA1DCDP7x2zi+BosDrrcq2B\n6OmYHvVoBhUyvSY27aPmlZipTjSXLIo6oWk/o9Gexn8FXaGHujV7GQzIpzlV\n6KXzaXw7lR09Mgulu7soarY41gFX9ylyfPYv9hZibaSlQklzkzhmRWohwehc\nass64JSY3lzZ9qWWPB8m7bsAOiaC0LWzuHZVpIg+AfOGqPYVBIbd0tk0Sl3R\n5XjuGz/ilI2SUKx+pAZjIj8sLAFWGwZza6DJnvFuM9nYAp89DS0owAWiNKi4\nHNkKydp5R5RonZkObOPNZDZDcH2hOcriYX0vLm8hCom7Hvs0aPsLtVniCf5M\n9etCWxBvN1RAmd78X9L6iBx+KWnLA81Mj9rD/5Fer993DDvKMkp6Q6bU+vIi\nE9C3nqCplJVeFUBmrVf8wOD/pSXvMIFEoJZX4bi4Ui7zfsMq6wh2GKUY/9Dx\nBT60\r\n=7ChC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQClb77AIaLnWFBtyQybOWnlG2Gy0ZblF7lEeeAOC5IT/QIgEAmW1jAC0PEpowYaP4wTAM0sdr9UjjJ1v3teInddpw4="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_6.0.2_1542162718575_0.7691863411317783"},"_hasShrinkwrap":false},"10.0.0":{"name":"ngx-treeview","version":"10.0.0","license":"MIT","description":"An Angular treeview component with checkbox","keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"peerDependencies":{"@angular/common":"^10.0.0","@angular/core":"^10.0.0","lodash":"^4.0.0"},"dependencies":{"tslib":"^2.0.0"},"main":"bundles/ngx-treeview.umd.js","module":"fesm2015/ngx-treeview.js","es2015":"fesm2015/ngx-treeview.js","esm2015":"esm2015/ngx-treeview.js","fesm2015":"fesm2015/ngx-treeview.js","typings":"ngx-treeview.d.ts","metadata":"ngx-treeview.metadata.json","sideEffects":false,"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@10.0.0","_nodeVersion":"12.18.2","_npmVersion":"6.13.7","dist":{"integrity":"sha512-wQfcTAUcLk0dBbNHUivgex2bDTGiad5oJx/oyCHDfidVnvff52xRqZJmpj8O9rGrXRqYS/f6KQPk2USLjywz7A==","shasum":"5f93b580eedbf072b9f2b8293a1f4cff5c62ecf1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-10.0.0.tgz","fileCount":43,"unpackedSize":447932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAt5bCRA9TVsSAnZWagAALcgQAJJd+oBbRIDnkomfFVtm\ndMgAmogPkQB5NE96nhPXs5D0aNxgNsZU6rOlbnnd2XIXhdHziNKHpAE1hm0n\nN4wNHOvP27CpvAjV9N7STQ296PpHBW1gVU54QyoZTwurtS8hrmvaNSl2NxxW\n/JOW5qrxYs+XaNZMMJD62R7hBrX78rqYxXbc5B769uu2WTniByuk0yQQHeYO\nO4zzaVsywltxPHf1srfthx1KR9XxMUgNevLbYHYnXtZzfX4u0gfx/1+8+Rwc\nHWPsAOsv7Y0BKGKhvwTnDpzK83qRSx9d5WvOvqxSHQmXJGIGv88MtrHCdK0K\n/iQEfzaInESX9+2LtJXNYNWxXodPxLgDhAVThS5bQ5ZXvAwCkJQjkIRohWjM\n6WALghTikqLl11ILcsouFQVmpp7QBJ5c5g0nkMPRtnRbEYuRVdVQCydCmfgs\noE7RC8YiU+X/JrQiNGmeP/EYKv4aZMMOHwPPFehX+Uf+9jcVgGNLBVO1icHR\n3BnHtGKnNWOppwbOqa7g2B3knIoDtTlGKwK0J55wJ8XPcoJsCL8f5XNxPMdg\nhNZxU2M/q4nHUtm9nrd0FaABZzwIoW1M1+Tf0SRRneR7kjkpf+Qp7virR+4y\nufg0qKdf9Bl9goLDeiWHY4kv3E/9ayTFyW/mEPtaa+a8KDsVlo3Bd+YbR0y/\nCT9n\r\n=3lKW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEE7qdR2VKDnHNzjNKWBePdaoUf7w5rqtVc0fR6w4LgfAiAEc6YoZ5CGevnsqVWPakd980hu+fK0HNvd2Fz9Me7BzA=="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_10.0.0_1594023514743_0.6808953473332289"},"_hasShrinkwrap":false},"10.0.1":{"name":"ngx-treeview","version":"10.0.1","license":"MIT","description":"An Angular treeview component with checkbox","keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"peerDependencies":{"@angular/common":"^10.0.0","@angular/core":"^10.0.0","lodash":"^4.0.0"},"dependencies":{"tslib":"^2.0.0"},"main":"bundles/ngx-treeview.umd.js","module":"fesm2015/ngx-treeview.js","es2015":"fesm2015/ngx-treeview.js","esm2015":"esm2015/ngx-treeview.js","fesm2015":"fesm2015/ngx-treeview.js","typings":"ngx-treeview.d.ts","metadata":"ngx-treeview.metadata.json","sideEffects":false,"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@10.0.1","_nodeVersion":"12.18.2","_npmVersion":"6.13.7","dist":{"integrity":"sha512-e36UhEvWtU+db+mJJWpeHqnw3mykkqlkCTSocqhGn9bPcY7st/8lcbnmrT9LnfxxAMNwNg+95X0El2dPQBFrWg==","shasum":"47b75287b95196ed4753eefe47fa1864e859703c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-10.0.1.tgz","fileCount":43,"unpackedSize":451674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAt74CRA9TVsSAnZWagAA1Y4P/RLVc/8lyn+DWJ/CFghO\nttyq063BJ5x+xVsmjPdChBul2CkaR8yRWIc6OykRvBaQzD+j8RS1opAGsnin\nftJTz1gDaktAMAwD2cA9M6UYiw2gOoL4jndQA6kj+SlgRQ3I8Zl5rrfePlG9\nPPiGK8h22FvY7e0ekvSrHh5IWSG8g+KjgOcXj2gAN5xDpVr3Y+gjFGhVuVcA\nw999R122uZrOPwyoR4CzpYUjAxhY32y0WOkzJLaA0nM8vKQrhiZMO/Bv2YJP\n4ypqDhzD/TL/1VwuTvWi2UYFFGaiF4mMxMYzqqdm6LVxjTXgJAcTnFf/0ege\n7X8FGirIl0v54E9otbLfJk72HOhMH0U0XfjUP7f+382BFMiGWKMDTLBPRE4m\nL6aLBxBLT/osWKnAnyE30JMugfe8PpvD/ltXUnu4VHrzRuvYcL7y8iAra2MG\nveVbzs64V7kuIctHoJ+AUx/svFMeaJHEqZILYxEICGw2qI6/qnqmIPfblhnl\nv3cla6SZ/2DRIp03vxqGWfAADcPnBHP85UWNYpukZWw4J0B7fa7aknuwKM+T\nMX1Vf3614+OxjahYvIyffLqxMyGQGrOKeEjrmp7PSj3Cl6lo/SSO5P6B7GNF\nc1hdllSgROXG/zrHjukHhskkhFEb5Tark9eE/7MWOBZxYkaS4AxYRruBynqM\nX0vK\r\n=6qUc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClH4aTJK3nbufN0XE3zSe9n7DKl6NpnCgVMB1P5QlSygIhAJrD6rTKCKuV+omtGoV/k8NO3VT3xroTqOeWQJms376N"}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_10.0.1_1594023672128_0.9469932126960638"},"_hasShrinkwrap":false},"10.0.2":{"name":"ngx-treeview","version":"10.0.2","license":"MIT","description":"An Angular treeview component with checkbox","keywords":["ng","ngx","angular","ngx-treeview","tree","treeview","tree-view","checkbox","dropdown","recursive","angular tree component"],"author":{"name":"Leo Vo","email":"leovo2708@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/leovo2708/ngx-treeview.git"},"bugs":{"url":"https://github.com/leovo2708/ngx-treeview/issues"},"peerDependencies":{"@angular/common":"^10.0.0","@angular/core":"^10.0.0","lodash":"^4.0.0"},"dependencies":{"tslib":"^2.0.0"},"main":"bundles/ngx-treeview.umd.js","module":"fesm2015/ngx-treeview.js","es2015":"fesm2015/ngx-treeview.js","esm2015":"esm2015/ngx-treeview.js","fesm2015":"fesm2015/ngx-treeview.js","typings":"ngx-treeview.d.ts","metadata":"ngx-treeview.metadata.json","sideEffects":false,"homepage":"https://github.com/leovo2708/ngx-treeview#readme","_id":"ngx-treeview@10.0.2","_nodeVersion":"12.18.2","_npmVersion":"6.13.7","dist":{"integrity":"sha512-vuSaJ3mqQOsosQE8tWhyPbfNvrUYgdy+YNxUWdaAvwX+Oucwe+xqfMT6J//jx0SI1u3GqOCXZDN+XMK813Hvhw==","shasum":"efb2ad4a9f6357e3a28913519721e571505ce6cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ngx-treeview/-/ngx-treeview-10.0.2.tgz","fileCount":43,"unpackedSize":453178,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfA/NfCRA9TVsSAnZWagAA0sEP/2GBS/Cnv/t+nx5Du1hQ\ncEYj2crn6qnQy92YI8TvMY9ZNT1LEKn/uxgPLVyhHCsHyivvfX5Ryqu3CcMt\nZAMCdlCJLadptxyWgbhAutCA0MqeGZ+QXawKk4sYEken/d4JcmnoVmct36x2\nP953bz4WjTjiLeB9Yb9ONDYDEeK+EjiVX+2+piHm1zmAcBV0cBOMVjzj1apr\nD9gN1Yq2jgqvcrmwA2XzOCXJpJxFg34244oNsqNFYr4QC41SU3Cq1j3vSz4B\nv6KjZ2XXiikNLcBT4tzn9Zg98t1mjvoSRSMfFsKP9i1TDMloIPjMr33Z1HrY\nMH3nURkCiCRb9QCM1459jmzrT1/xYA65WDWMqSvZOfxO9ZBdLE+rHTuEcH+b\npI921QOzXJTgA0q51prk5ARSYxD196/v4EK0HHDFNZx7ZtNICCucZmlUafUg\nSgYN6GU2e5ewbTWf5xIzsVqYJmR2TDHCGNyTexj9HPcFXexpCufMY/CRy/0W\nyNzkvXu11ohhZR5bBRpzSowURgrHZcZHXzB3Zl8hziAPmFVzEkP9p597zN95\n0XPTBd+OQH221lGMWzDAGPeQqU5Pc8c6MImiDaw6OEo1VZDJ73lMpdWSeNuA\n/J3xW6qclyPQsGs5qt/a8S/VMDz8i12HX8O4IIRxmQ13nKVBPQKlr+64ajdf\nIltR\r\n=9dEG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEnB5EWZbp09MK/iHhRIPdWtpKeVIKfTnruyBg+71291AiEAzFkT6B08O4aiJQnKS/yWRlMaX1+0MzYDTBU2KG+Df48="}]},"maintainers":[{"name":"anonymous","email":"leovo2708@gmail.com"}],"_npmUser":{"name":"anonymous","email":"leovo2708@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ngx-treeview_10.0.2_1594094430750_0.21074003090272742"},"_hasShrinkwrap":false}},"name":"ngx-treeview","time":{"modified":"2022-06-21T08:43:53.549Z","created":"2017-04-20T06:14:11.553Z","0.0.1":"2017-04-20T06:14:11.553Z","0.0.2":"2017-04-20T07:28:40.034Z","0.0.3":"2017-04-20T09:19:28.984Z","0.0.4":"2017-05-23T08:19:56.601Z","0.0.5":"2017-05-25T08:24:57.494Z","1.0.0":"2017-06-15T10:20:07.585Z","1.0.1":"2017-06-15T16:28:23.526Z","1.0.2":"2017-06-16T07:27:31.873Z","1.0.3":"2017-06-16T08:36:49.223Z","1.0.4":"2017-06-16T09:34:37.106Z","1.0.5":"2017-06-16T10:23:24.841Z","1.0.6":"2017-07-10T07:37:52.793Z","1.0.7":"2017-07-19T07:46:48.070Z","1.0.8":"2017-07-20T07:31:31.238Z","1.0.9":"2017-07-21T02:40:53.608Z","1.0.10":"2017-08-10T09:16:19.029Z","1.1.0":"2017-08-16T03:02:12.024Z","1.2.0":"2017-09-18T07:06:07.558Z","1.2.1":"2017-09-21T02:59:40.172Z","1.2.2":"2017-09-27T05:57:35.020Z","1.2.3":"2017-09-27T10:18:56.461Z","1.2.4":"2017-10-19T06:09:08.556Z","1.2.5":"2017-11-01T06:33:13.658Z","2.0.0":"2017-12-21T10:30:43.239Z","2.0.1":"2018-01-04T05:56:00.595Z","2.0.2":"2018-01-30T10:28:35.330Z","2.0.3":"2018-02-02T07:21:56.939Z","2.0.4":"2018-02-05T06:40:32.600Z","2.0.5":"2018-03-19T10:48:31.635Z","2.0.6":"2018-04-09T10:25:35.521Z","2.0.7":"2018-06-06T19:22:56.790Z","6.0.0":"2018-06-08T11:02:36.836Z","6.0.1":"2018-09-07T09:02:16.002Z","6.0.2":"2018-11-14T02:31:58.707Z","10.0.0":"2020-07-06T08:18:35.046Z","10.0.1":"2020-07-06T08:21:12.272Z","10.0.2":"2020-07-07T04:00:30.925Z"},"readmeFilename":"README.md","homepage":"https://github.com/leovo2708/ngx-treeview#readme"}