{"_id":"postcss-modules-local-by-default","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"keywords":["css-modules","postcss","css","postcss-plugin"],"dist-tags":{"next":"4.0.0-rc.4","latest":"4.2.0"},"author":{"name":"Mark Dalgleish"},"description":"A CSS Modules transform to make local scope the default","readme":"[![Build Status][ci-img]][ci] [![codecov][codecov-img]][codecov] [![npm][npm-img]][npm]\n\n# CSS Modules: Local by Default\n\nTransformation examples:\n\nSelectors (mode `local`, by default)::\n\n<!-- prettier-ignore-start -->\n```css\n.foo { ... } /* => */ :local(.foo) { ... }\n\n.foo .bar { ... } /* => */ :local(.foo) :local(.bar) { ... }\n\n/* Shorthand global selector */\n\n:global .foo .bar { ... } /* => */ .foo .bar { ... }\n\n.foo :global .bar { ... } /* => */ :local(.foo) .bar { ... }\n\n/* Targeted global selector */\n\n:global(.foo) .bar { ... } /* => */ .foo :local(.bar) { ... }\n\n.foo:global(.bar) { ... } /* => */ :local(.foo).bar { ... }\n\n.foo :global(.bar) .baz { ... } /* => */ :local(.foo) .bar :local(.baz) { ... }\n\n.foo:global(.bar) .baz { ... } /* => */ :local(.foo).bar :local(.baz) { ... }\n```\n<!-- prettier-ignore-end -->\n\nDeclarations (mode `local`, by default):\n\n<!-- prettier-ignore-start -->\n```css\n.foo {\n  animation-name: fadeInOut, global(moveLeft300px), local(bounce);\n}\n\n.bar {\n  animation: rotate 1s, global(spin) 3s, local(fly) 6s;\n}\n\n/* => */ \n\n:local(.foo) {\n  animation-name: :local(fadeInOut), moveLeft300px, :local(bounce);\n}\n\n:local(.bar) {\n  animation: :local(rotate) 1s, spin 3s, :local(fly) 6s;\n}\n```\n<!-- prettier-ignore-end -->\n\n## Pure Mode\n\nIn pure mode, all selectors must contain at least one local class or id\nselector\n\nTo ignore this rule for a specific selector, add the a `/* cssmodules-pure-ignore */` comment in front\nof the selector:\n\n```css\n/* cssmodules-pure-ignore */\n:global(#modal-backdrop) {\n  ...;\n}\n```\n\nor by adding a `/* cssmodules-pure-no-check */` comment at the top of a file to disable this check for the whole file:\n\n```css\n/* cssmodules-pure-no-check */\n\n:global(#modal-backdrop) {\n  ...;\n}\n\n:global(#my-id) {\n  ...;\n}\n```\n\n## Building\n\n```bash\n$ npm install\n$ npm test\n```\n\n- Build: [![Build Status][ci-img]][ci]\n- Lines: [![coveralls][coveralls-img]][coveralls]\n- Statements: [![codecov][codecov-img]][codecov]\n\n## Development\n\n```bash\n$ yarn test:watch\n```\n\n## License\n\nMIT\n\n## With thanks\n\n- [Tobias Koppers](https://github.com/sokra)\n- [Glen Maddern](https://github.com/geelen)\n\n---\n\nMark Dalgleish, 2015.\n\n[ci-img]: https://github.com/css-modules/postcss-modules-local-by-default/actions/workflows/nodejs.yml/badge.svg\n[ci]: https://github.com/css-modules/postcss-modules-local-by-default/actions/workflows/nodejs.yml\n[npm-img]: https://img.shields.io/npm/v/postcss-modules-local-by-default.svg?style=flat-square\n[npm]: https://www.npmjs.com/package/postcss-modules-local-by-default\n[coveralls-img]: https://img.shields.io/coveralls/css-modules/postcss-modules-local-by-default/master.svg?style=flat-square\n[coveralls]: https://coveralls.io/r/css-modules/postcss-modules-local-by-default?branch=master\n[codecov-img]: https://img.shields.io/codecov/c/github/css-modules/postcss-modules-local-by-default/master.svg?style=flat-square\n[codecov]: https://codecov.io/github/css-modules/postcss-modules-local-by-default?branch=master\n","repository":{"type":"git","url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git"},"users":{"jitendravyas":true,"sundaycrafts":true,"npm-packages":true},"bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"license":"MIT","versions":{"0.0.6":{"name":"postcss-modules-local-by-default","version":"0.0.6","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@0.0.6","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"eb6c9289c04fb34675a76c5f29cb43f2603e75cf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.6.tgz","integrity":"sha512-7VvYYHzuUPFQ+x3YMoXtOMscMyC5icWwN6Uq8aymhFswcwRnx18OR1PWdF5juJz/2eotQ93eT4dx6KYg+mwgeA==","signatures":[{"sig":"MEYCIQCjf4TpMFrg5ML0+GKZEfeYLAsAhD4pkzH56xrGGcERWAIhAOo9NzlxFz4rpskYuuTcIwMIPRK6xo5PR4pwxD+jR21A","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"eb6c9289c04fb34675a76c5f29cb43f2603e75cf","gitHead":"0a9a0db3201682d4374d089adaa0f57f864f6392","scripts":{"test":"tape test.js","prepublish":"npm prune && npm test"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.4.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.10.36","dependencies":{"postcss":"^4.1.5"},"devDependencies":{"tape":"^4.0.0"}},"0.0.7":{"name":"postcss-modules-local-by-default","version":"0.0.7","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@0.0.7","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"62b38af2340e046d7928fc041fa9f89b5690c97f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.7.tgz","integrity":"sha512-gPX3wUdFhAxFY8kM4yO3Q4HKE1w+iL6ZtaQ+zEDeKIYAki7zeDTQ9DF7Ztdb2Bl66vwklUGte7gxOluzOdZ6uA==","signatures":[{"sig":"MEUCIQC0KHM0O/vHpluutgHDNRq/uQUXj7zdK7ZVpoqvnsgu+QIgAygs2jPo5BlNan/OsJstnhLWisi+H0lQXvPgN+Pxhgg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"62b38af2340e046d7928fc041fa9f89b5690c97f","gitHead":"5106dc07bcf92a01b157c95d4ee0712f3515a7b4","scripts":{"test":"tape test.js","prepublish":"npm prune && npm test"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.4.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.10.36","dependencies":{"postcss":"^4.1.5","css-selector-tokenizer":"^0.3.1"},"devDependencies":{"tape":"^4.0.0"}},"0.0.8":{"name":"postcss-modules-local-by-default","version":"0.0.8","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@0.0.8","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"768c260ca73f5cd4ea3f31960ae23f1df1499aab","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.8.tgz","integrity":"sha512-5CKqh0+AcDpzO8O0uWqkC6Z1mkZ/j/4zkQKUPe8LA9JGa975e3QNloVxtfTCMVsdTknmjQF46QvYKhxLsThErg==","signatures":[{"sig":"MEQCIHYqUHnZ4w1QjJ8Rkw8fASaBUHwMAbdQ1r5DhKknP1oYAiAcqqdVWukrpmYTzifxShdyHgsg4mt2oYQeoEl9lXN31A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"768c260ca73f5cd4ea3f31960ae23f1df1499aab","gitHead":"cc92a1288883ebd76da9697c460e8d841ea4fc43","scripts":{"lint":"eslint index.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.4.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.10.36","dependencies":{"postcss":"^4.1.5","css-selector-tokenizer":"^0.4.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.22.1","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^0.2.1"}},"0.0.9":{"name":"postcss-modules-local-by-default","version":"0.0.9","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@0.0.9","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"164006828ae4a0b441816fbcedb6dcdd9cff85b4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.9.tgz","integrity":"sha512-xcdSH4ESZKrJcNYvWoyHYw8yU6Xzo5kW79M9Ne58Hwgl3Ubkow+rUFq6aJTYsbLVvqQPuBQxY4ClHrM9bGRhxg==","signatures":[{"sig":"MEUCIQD8NzVm7GvCIjtMla3nchW8MzHFpgd/WGOWp/SDb0gknQIgfYjyZIYDBs5iK9A7/0fVrK/QSOgv18aBwnRB1ysV/oA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"164006828ae4a0b441816fbcedb6dcdd9cff85b4","gitHead":"cc7f5bc58d341303fadc4d94e1aea7f146f50516","scripts":{"lint":"eslint index.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.4.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.10.36","dependencies":{"postcss":"^4.1.5","css-selector-tokenizer":"^0.4.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.22.1","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^0.2.1"}},"4.0.2":{"name":"postcss-modules-local-by-default","version":"4.0.2","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.2","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"586297f6ed3f307102feaacfad77473f05f15b80","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.2.tgz","fileCount":4,"integrity":"sha512-mR/pcIsQhU2UgKYOPjRCSgacmjn08pyrHk+Vrm8WEKjDWgqO43vdRkzmxyZOZWiKr6Ed9gpReQHhLUGVAcn9jw==","signatures":[{"sig":"MEUCIQChs/7LB9ZvjWP8YIREWF6PzknNGwx7qX8m70lidVf8rAIgUarscVaM1QmqP9tmGL8yP2kQQwScVOzAGsinLAp/0rU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20844},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"36e67d5f3f6ed41d329e49ed3c251c4a39fefd3d","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn lint && yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"9.5.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"18.15.0","dependencies":{"icss-utils":"^5.0.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.2_1684793671758_0.5196966632256743","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"postcss-modules-local-by-default","version":"4.2.0","description":"A CSS Modules transform to make local scope the default","main":"src/index.js","author":{"name":"Mark Dalgleish"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git"},"engines":{"node":"^10 || ^12 || >= 14"},"keywords":["css-modules","postcss","css","postcss-plugin"],"scripts":{"prettier":"prettier -l --ignore-path .gitignore .","eslint":"eslint --ignore-path .gitignore .","lint":"yarn eslint && yarn prettier","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","test":"yarn test:coverage","prepublishOnly":"yarn lint && yarn test"},"dependencies":{"icss-utils":"^5.0.0","postcss-selector-parser":"^7.0.0","postcss-value-parser":"^4.1.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^7.10.0","eslint-config-prettier":"^6.12.0","husky":"^4.3.0","jest":"^26.5.2","lint-staged":"^10.4.0","postcss":"^8.1.0","prettier":"^2.1.2"},"peerDependencies":{"postcss":"^8.1.0"},"gitHead":"db195e7e18bf0151b082f50f891809c0bf557e4e","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","_id":"postcss-modules-local-by-default@4.2.0","_nodeVersion":"22.11.0","_npmVersion":"9.6.0","dist":{"integrity":"sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==","shasum":"d150f43837831dae25e4085596e84f6f5d6ec368","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz","fileCount":4,"unpackedSize":26331,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAo6DfHBlrEa0RyiIOcwGP02+3Lx1h4PR7Nw8Ev22bXIAiEAx6OOtXZejcPUimSRMsWunrno1Eq4ejK3bhgZpbuygp8="}]},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-modules-local-by-default_4.2.0_1733928467319_0.13570508287944905"},"_hasShrinkwrap":false},"4.0.3":{"name":"postcss-modules-local-by-default","version":"4.0.3","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.3","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"b08eb4f083050708998ba2c6061b50c2870ca524","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz","fileCount":4,"integrity":"sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==","signatures":[{"sig":"MEYCIQC27rM8KitiqiXfVftoGgh9gehPVR8k8Hrf1Yj7dKiNXQIhAMAUkCr7Yz7GNB30A+Sh5AqUJsx4OlMMkzD9bRAdP1co","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21003},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"7f06bbb5e8347c8aebfb483463265ecb299192b3","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn lint && yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"9.5.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"18.15.0","dependencies":{"icss-utils":"^5.0.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.3_1684860317167_0.3549487246780152","host":"s3://npm-registry-packages"}},"4.0.0-rc.4":{"name":"postcss-modules-local-by-default","version":"4.0.0-rc.4","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.0-rc.4","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"aa284fd82cf07849e3a5061a798ba11f39bab980","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0-rc.4.tgz","fileCount":5,"integrity":"sha512-1QT0BsteflLbvxOENJjejL4B+PWs3U47wrkOkI6j6oX3YdpOWYUQCVCnzT0Uqt/aUFWoqY9493NYzYQs04H4xQ==","signatures":[{"sig":"MEUCIHY/adH2JHEhZJ6n4H4p4gu9Dx1h9ktIqRHTG4/4B+H7AiEAoY30+W3MQUEcuddqJiJApAaC8gtDPGUkSEyW0s35oSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25455,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfg1geCRA9TVsSAnZWagAA0zkP/ic7l8Obwq2TxDdRZbah\nXa7XLgQ2sMm/km3jH8ScRArdFpL6gIsWj1ATt0MGR7mMQ1Be7T6/8VlEfC8f\nNyOBSlESmcWRaWiP2sxN/dh4tIdxqyiJJbEAvXWxP1vVWRPDU0b8PSOKkxul\nDNbWViWKtCmhyfCzcm7p4YWMtczxtNHkwQofBV+0IplyFHYYPr+GWBspURyZ\nGjachIkugeB8O6+LDf7RM8mwrMWKuAH9wSQIBFA7HyzJT6vzYeBqQBgKuDJO\nvqRcCw4ujALzwAbioigAIur2RpgpKtJxlF2d1gp2Pw+GdlV0DxoiGeh8Zc8G\nKfeDK9X7kSZ/fc6x+jSe6inxTCupVYfKPTanm4/JOrpFBWO+jZS6bdd3mNph\n+70qxusiXr3P22qw29vQp9i0ti2o6u49/bgUNu8jiXV1q6NTzPBgbVJioV/G\nMv0GpgYRjSBibD5IfeG0pj52z4s0KXGoHOvf5w0BQkCTZ1Fq9KfBHrZAJlcg\niQe0gcHvCMwbmRY9fLF4r0Z9lmwzrc9JpQQNWqvo5VGZepNI9Y8TbQOGAepU\njgRbh6XmqceOWzepuS1V+KVDKt/31szqwVLlCeCuRI7Y7Jl3VI1Drnxlu02r\nwkmlWWpGCW6uV0ITJ+tpi5/THYVjbQU2vHIRt886epb3b40R5MNWHeD+CJZu\n+BwX\r\n=JfWK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"401bf912f0d244b55bcf0fc91f55367bdb09f75b","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","pretest":"yarn lint","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.14.8","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"icss-utils":"^5.0.0-rc.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.0-rc.4_1602443293830_0.1279459912301497","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-modules-local-by-default","version":"4.0.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.0","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"ebbb54fae1598eecfdf691a02b3ff3b390a5a51c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz","fileCount":5,"integrity":"sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==","signatures":[{"sig":"MEYCIQCJXf1iVpvyQfW7+lTPnj5g/chZZ2MudKYPGSvOfxkXMgIhAMkGiwy6Mmlv6rmFRLnICA51gXVRHm5vaOZNbv9I+f8M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25583,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhZKaCRA9TVsSAnZWagAAKRgQAI+LqzNtjEysMFmbLSHe\n+u+PmfV3judc07h6vIkyOenq9neI0Hm76cuoEobmjyolM9b5BSZmV2dGwyp2\nJtVoOb10WjDZTd2ZKC6Gq7vmBonUX46M7y7GXxfrPIPHJnTCg91xEc2Y1ETD\nOQEPWbZr5GheYib/hZek9JiNbMNn52l5eQHIQUH3Fk4FL+tleuRJR2iLSObL\nXUmZ1v4XYRAuzsaxVv8hQKgw1yv6fyrgoGQ8bo4UxlWIfA+HXS87DcGHGvnk\n9S0RlPvjsO1K8ykzYwW+AIKl4dVAeIDyxbvB1qaQM83MatO3HPtL3RR/J3/6\n2qLFEhc/zGziQFXAvCp6TOp4PY1oHkrZa4T3rl7tehCO+oXEP8sidHDisvWi\nMo1cgqTiWtybccoCB5G/AYl0N31rC89oA+1/sZfl96FFD2qIhYJH62iE2NBj\n1YZ+sZBuTWeyIe3jWQp6fwSDvdBMOiOeruILFLlfBTCCFu89Du9M51aPxTNO\nTQkIBtqurdY8Fd8toLsQ+xACifP0ariG1dhz6uF76z9YRExjxFjn6vPx/udI\nF08oSog66b74JuDPSrKaI9P6UAy+bDlp2x+Zpu4O7IAuBNOv98BSLExIq6zn\nSrbwOyAabHt0JB3+r/WgLzYV2tpxKNyD92LPLgOwROmLq+JyNc+2e3VA/pDC\nLwja\r\n=RRYY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"9351f12135a986ea32627db0f0c0177ea6bb431f","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","pretest":"yarn lint","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.14.8","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"icss-utils":"^5.0.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.0_1602589337584_0.19671146743388346","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"postcss-modules-local-by-default","version":"4.0.1","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.1","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"7beae6bb99ee5bfe1d8273b0d47a3463209e5cef","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.1.tgz","fileCount":4,"integrity":"sha512-Zr/dB+IlXaEqdoslLHhhqecwj73vc3rDmOpsBNBEVk7P2aqAlz+Ijy0fFbU5Ie9PtreDOIgGa9MsLWakVGl+fA==","signatures":[{"sig":"MEUCIQD3+GU/TZUUzi0E1/qMK9ElDyAJh7NKJ+MB11IkNss5+wIgYxGEUUTjBjbYSqnzI7rCDQ7encFXLlILnVWUIGF4mGM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20965},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"7942f726115c86d7ef19634344cd441cd6fa89e4","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn lint && yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"9.5.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"18.15.0","dependencies":{"icss-utils":"^5.0.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.1_1684454645843_0.32716836437575947","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"postcss-modules-local-by-default","version":"4.1.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.1.0","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"b0db6bc81ffc7bdc52eb0f84d6ca0bedf0e36d21","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.1.0.tgz","fileCount":4,"integrity":"sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q==","signatures":[{"sig":"MEUCIC4lyZwWvCSeMHhdSKbcoZXKYoKMh4Ivo6y3icFbkJCfAiEA2fPzW6ejFS3F1236gifWRNhp4iGqhkKVIcV3FLc0XD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25522},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"e489ff817b3a9f9de971bc3b7386adcef7205e57","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn lint && yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"9.6.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"22.11.0","dependencies":{"icss-utils":"^5.0.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.1.0_1731358644895_0.46618947712889236","host":"s3://npm-registry-packages"}},"4.0.0-rc.2":{"name":"postcss-modules-local-by-default","version":"4.0.0-rc.2","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.0-rc.2","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"1d21b885a418e54f36c7b156bea8f74bff1395a7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0-rc.2.tgz","fileCount":5,"integrity":"sha512-m915xqDXQ8d/vehbhLZbAmFlIU9JFKtEpRcBajhjfllRNVU+iPOcylbvn9asE4TVXvshhdJN09qVqGOl5RqTCA==","signatures":[{"sig":"MEQCIHDITrpWSFFB8Oo95r8Y5MdYs7HN4L8PibOa2rYv9016AiBKJmyV0kPg73MyVOt8Sj20AbyGDpv0VP/IMwszse2bPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25018,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJffzihCRA9TVsSAnZWagAATTYP+wbhODKxJ/wKyoFrEzu8\nouttKNusCVj/+ke4TI9rQgGiAaFFS+4PlTvuvI2YVwX6dSDHKZI/3yyaPiuc\nEatOZn1G3SlTszVAkED41wNBoUI0DU1DEdBGUi2l2lYWT9dkiTfNOX2kbPb0\nlB6Gpeh8hNw4rNQpS6IVFGWqsdHDvhKoriRQkVeg580RfoqNbACQIMPcvofu\nSmtVY/IudQ7yo57TNtosWp9VmcYbP7hdfzbrGZm8dp+rs4U5gCJPOb22gCt2\n5VCG/1Pbi4SRQ2L+csBDjO5OZaaYqePviXAmUCb4z4EBcjcmF6U11It4/yzD\nunffBjZxWi+Vop4iyl8Nig0PQQ03Th6nDckZDftndwW40BrXZYWRRAceIPmb\nk7pMkRW70c1WQ9m8NoUzF+LraQkNzqgnbWo7GkI95LnjNCu0FvxfQ1d2UK32\n5OopK2jvRRiW4JP8W1iLFaFteFtxxUTjzqmBc4r/A+wDpAXi748+e9WjwD7w\naFdH2eMSSgKP0GaVwhLDStvzha5jGRoa8UsbEgJuTE5UU+8AX7QljiiZoO28\ndt+u7ekK3gz7DhvDr0NJjZII8ytceAHmvJLUtRGn229fND9luIal/yGodcSK\nJb/7rVhZjX4iUE4lgBTvKEVMDevUAn2Dk0j+jdXik8dDEy+wny8qZ9VHlC4E\n35G0\r\n=qRI3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"f1a8491b052635f89568a35178e3fea11ae5873f","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","pretest":"yarn lint","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.14.8","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"icss-utils":"^5.0.0-rc.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.0-rc.2_1602173088930_0.8648153311761964","host":"s3://npm-registry-packages"}},"4.0.0-rc.3":{"name":"postcss-modules-local-by-default","version":"4.0.0-rc.3","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.0-rc.3","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"dba8d79f9e63d579d67e4c666f29a5eb6e93b6b3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0-rc.3.tgz","fileCount":5,"integrity":"sha512-Ja1fl075qxqW+ZQ31Wr8kJCXFpAsZIUZ7SV1JK/AgfGdsjRzQ6L0aAaf6ZUkyBEolpYlbocC3ZObk0gRqx4HgA==","signatures":[{"sig":"MEQCIC0d1naQVVcKJKgBR6JIp6+VOLCgC7txtexOcPuC5jh6AiBlCEOrDInW5txVrTU2YahTh621tVfp0tusEWf498CNcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJff4NdCRA9TVsSAnZWagAAq9gQAIKX3QqUenmcDorew1wz\ndWz9GInfFjlQlYs0mbf8gMxQrU6+fed39emMdagCiZCK5XMhtxIxF4vCN4gT\nDTPcF0heq8crfHVGs5m81T0vf8qdmyQMIBWf8Ootjt0xgDRSDO46gCKa/LUD\nOC60xpHSytd56MVUolssm9/HP1EPfGnOL1G7mhB5xJnzKgtEaefXpaJEjrZp\niB9nScyr7uMNhPChWntpoEpRBgODeAFCWrmTrA4NeTD18M5OC25nJNePscMD\notwVoq0gOCHhCOf/ZlYll2/irkezMZyf5WmWznjoxVv5E3o7XqkqeAFLdFTn\nuSxLnMWSzvKK7LcFweTYhjr0y7SbzbSaS6baAO2kHmJnExasPcRH4nTWWcJm\nAuimqETm7F86M1TFIpyzRKnBGb3U/VxAg1JnuvELdcAEnHeFefaugEurMA7p\naoN8VqnofsJODtVQJNr6KcuyuFSlgaBbhjLxerOW1toG960P3J5XZYv+YGea\nunLGV1k53224HJcDPx5ZPDE62+83Mdgvdk+Ysgi5z/Wg7B3OSDAUqHFpjO9a\nfY2vNUPFYG4xYiGvRTWYj6o8UQPF0bYHXnSCWnQfaEiKDjB4o/q3u0uZo8NB\naZVg9HMCyXO1MvQYyKv0isnuL2jrZ9qwfnutYjDY5Mz8S/utUdxOB2fpBVKB\nCvH3\r\n=ohEK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"dc6cd6a0e9bc3078d5f6972d8bfb6353a6428efe","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","pretest":"yarn lint","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.14.8","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"icss-utils":"^5.0.0-rc.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.0-rc.3_1602192220783_0.27856252825063366","host":"s3://npm-registry-packages"}},"4.0.0-rc.0":{"name":"postcss-modules-local-by-default","version":"4.0.0-rc.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.0-rc.0","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"996c0296cde2ee5e0a8ceae60eed6e7eaff9adbc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0-rc.0.tgz","fileCount":5,"integrity":"sha512-/3FD+ahPhMFC3DaN9pDoDduge9c77Fgry4+caGCutyWAvyGmBwr7JSCd+Zwywv4SzqAltNehMtcopZjpMUQuAQ==","signatures":[{"sig":"MEUCICKkJq4xVJuvy4FwEjAkuwfhtpd+gYZSl6rylrXu5kkUAiEAr9JsFqBuJxU8jQr4lhQixYv7oG6cC8DUFE4SOXt/hKg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYjsiCRA9TVsSAnZWagAAqCQP/3XdkQQPSdv/dmzL6Ugs\nX0+s2RQKP8JMuy0XprHsKcFySWpVArXiteZNNecWCXXTPSqmYckKGDgOZpKz\ncWIhSqXyS/NxcWunxsQErWTob8z2YkxuN5YXdSYNLtAyTLpm24jzVXt5gCIh\n1bzAbuWmZCygXbe8LLeTKd7Lc+3CQC/DryGfL+Bv982C7I7vA1i3N/cL9gpt\nNTV9IdCs40yTCCmkzoo6fMfQcTtAT9DU8vzJr6gUcBjXWktbi9Y+HTdMNQx0\nIrm3yYynTskPovF+yV+pVrf66i1ypsT16F8ak1ZsLbqx1kxL+qDedyQPgG2b\n26PZg3Ozr9qwZ8jqQMskEdONHpXADyGHmU9Kl7DzeXzhAxH2Orsmsv+uizjj\nfSoC71VG5eW/flnA3JDrdr4Sik3E/4IkS4Rmz59ZlLjWkr6Dz6CFfxcmLT8O\ntmrVD8k8CROv9433H5Ont9GTlxBbSc65yOrMjSLvXRiFdMBqKTA5/ymAHlUE\n5JfOTBplVOGAULwcbZtZcnyoTK1IPDupSakmPUlZWPZdaQflVjdP44KFwH4J\nbi4cOGh8IOy/8RFSGWTiDUoIQW9qDjcnjT0Vaetq+E7f+6eKDLcsKjL3TEAD\nTa7S+beHq1p/fK1fVR0Ftmh22IBhUDuGDdCnGHvUGo7M93EuUTLK/ujCsiX+\n684L\r\n=Gj9o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 10.13.0 || >= 12.13.0 || >= 14"},"gitHead":"52f9b7108a3d4a5f4cc4cf8f14cf588f5cd78ddf","scripts":{"ci":"yarn pretest && yarn cover","lint":"yarn eslint && yarn prettier","test":"tape test/index.js","cover":"istanbul cover test/index.js","eslint":"eslint --ignore-path .gitignore .","pretest":"yarn lint","autotest":"chokidar src/index.js test/test.js -c 'yarn test'","prettier":"prettier -l --ignore-path .gitignore .","prepublishOnly":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.14.8","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"icss-utils":"^4.1.1","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"tape":"^5.0.1","eslint":"^7.9.0","postcss":"^8.0.3","istanbul":"^0.4.5","prettier":"^2.1.2","coveralls":"^3.1.0","codecov.io":"^0.1.6","chokidar-cli":"^2.1.0"},"peerDependencies":{"postcss":"^8.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.0-rc.0_1600273185776_0.19670208525463573","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"postcss-modules-local-by-default","version":"4.0.4","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.4","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"7cbed92abd312b94aaea85b68226d3dec39a14e6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz","fileCount":4,"integrity":"sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==","signatures":[{"sig":"MEYCIQD4m4AiYcgXcYfBNCtledVkiZ3KUowOxMqG4MyvvVlVtQIhAOwy4eUUzlUxEo5Rdpx91Vg+GIl+J2zMoL6xJBuu4m+Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22433},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"506ac204575f3fa62f4f415d6c51b5a6aeb35c99","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn lint && yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"10.2.3","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"18.19.0","dependencies":{"icss-utils":"^5.0.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.4_1705516237742_0.962879384827563","host":"s3://npm-registry-packages"}},"4.0.0-rc.1":{"name":"postcss-modules-local-by-default","version":"4.0.0-rc.1","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.0-rc.1","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"a298359f12d9f30517be59836bf11e0f32f53190","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0-rc.1.tgz","fileCount":5,"integrity":"sha512-qkebHJ2n72D+W8BTr8BurXfuQVd0L5oLrZhkCHv9/T0FPVfBGEkK0Is7dem48+Dho1IiTZIDVVC8d57OdfAtQw==","signatures":[{"sig":"MEQCIHITWRe0lhzERHXfhuqgFFJc8WHU5GfIPpvvZPoxTW+uAiAub+3pNhhj+lWmTX8w03vEESfpbrGUQEyGHeYhkSJUYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfad7XCRA9TVsSAnZWagAAarwQAJa8UP8+qASPUS3l7UNM\nWO+c3VxpYdBZ6QDIyPHC++9pGJ4+sUPmW5Os/m0Nqme3Wvk8OBJ3FfS9WFh+\nJqAfKS6dmiYZfPHIwruE+AHuKHlqzNB3FN9YPu91Fov5Az+TwqEryrxX7C5I\nCtxHjyAM0sQh8cABWcYcD9n8bbHS13BtZiqRC6LdpVkhN/qcBnL1LO4BaNJH\npnhaJgRFKvZMhqLaumP7FUr7P6PdzIGwA7ehqXVLc8Fqyu0Uer5Fg/8a9Da0\nPpg/XSLeLy6Sblp7xjK875TiM4pfqpOizyRuvs1s2KCUhoFMZFZKr80xIB+3\nW/b5g+IG6uzrJokeiTwbZLdj/IGWlMUvKjIvQUOYJegzkT4TNQfkDdMWfmsT\nyJ6Qazo9buEuwsG59hXQxOtWs50iqgTGWi+DcTWycpFkD+eeEfRfPzFJAAJd\n4/agDW1PnygsDT9uhfCDLKxJIuft4OF/SOMrwxAJJpOWVnVFg3WfAIhvuaWW\n9hmtW9ebLc0drcACggJg5tyaWGojc2DVhGzzqkrUT8CjtVUz9drnItEn+ZxB\ndkRm4PDI9LorhAW0lvyXkxOLkniVEt+gbI/7NLqi0dfRP6FL0GdaZ37OnXtN\nGZ2DufYdkvWlCeKNPpCQJEOniMY5NvsWKthY/z07Jaj5eGLSueUttbztXKqw\nhmOK\r\n=LxI2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 10.13.0 || >= 12.13.0 || >= 14"},"gitHead":"aa9902fdd4f45f1a83e48e56f75632a88c07b5dd","scripts":{"lint":"yarn eslint && yarn prettier","test":"jest","eslint":"eslint --ignore-path .gitignore .","pretest":"yarn lint","test:ci":"yarn pretest && yarn cover","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.14.8","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"icss-utils":"^5.0.0-rc.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.4.2","eslint":"^7.9.0","postcss":"^8.0.7","prettier":"^2.1.2"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.0-rc.1_1600773847249_0.6224231584713147","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"postcss-modules-local-by-default","version":"4.0.5","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@4.0.5","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"geelen","email":"glen@glenmaddern.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"f1b9bd757a8edf4d8556e8d0f4f894260e3df78f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz","fileCount":4,"integrity":"sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==","signatures":[{"sig":"MEUCIBtj075ZLBG0djme0fZO4fT5KngRUVIxHRFfd+koULaNAiEA1pzHToAC72CCy7x/P6/AC/5v0qB3Q0HAwVjiCcfbC4k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22528},"main":"src/index.js","engines":{"node":"^10 || ^12 || >= 14"},"gitHead":"5eeb3053bc40061022ebc6f41cd207a405484de1","scripts":{"lint":"yarn eslint && yarn prettier","test":"yarn test:coverage","eslint":"eslint --ignore-path .gitignore .","prettier":"prettier -l --ignore-path .gitignore .","test:only":"jest","test:watch":"jest --watch","test:coverage":"jest --coverage --collectCoverageFrom=\"src/**/*\"","prepublishOnly":"yarn lint && yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"10.2.3","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"18.19.0","dependencies":{"icss-utils":"^5.0.0","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.2","husky":"^4.3.0","eslint":"^7.10.0","postcss":"^8.1.0","prettier":"^2.1.2","coveralls":"^3.1.0","lint-staged":"^10.4.0","eslint-config-prettier":"^6.12.0"},"peerDependencies":{"postcss":"^8.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_4.0.5_1712142504655_0.6529273935556308","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-modules-local-by-default","version":"3.0.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@3.0.0","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"6e2425f2f943bd900cd635ccd20f3f8d1b53a2ce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.0.tgz","fileCount":5,"integrity":"sha512-dApUojS+3/gWksAEoLID6Pu//oVmxFE74PIaJl7Ws+DlsbEJlTbAMPrmA2I0Knc7zguRbTtsiB19hSMhsmIqGw==","signatures":[{"sig":"MEQCIAEWkvuEsLRDG6nXBn1wSA+yabm8OQyiJ01vLO95NnvgAiAN3VpttbfalffBdf+PRVUeBKfhNsZH8QKST7avR5lkjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0X91CRA9TVsSAnZWagAAsJsP/2yHnWLwC6QFnaaS3cZJ\nG3TNHyWJmzEoRz/ylGCwjeVeptp18419Bwq4qQ81gjbtfiM0c/tj+AVXBser\ndyP4s0chgvLOy2ryoQsZpXrIAyIrhsduftZFGet8U66t9PhZ01s0kgBsOs6c\ndRad9kY1UrzzOmGVSvbu5AE/cASh/A8fIkipTfznVeB1wOUIWQn3agZuM4yZ\nR6t8xbZJ0lZ0PAE+xRbrkHjAaB514dch1yUIYU4Xdp5VVA2M10KE3TU4vQUb\nSxzA/lA1HfrWGC/Rh9CkXQgQJ02LjN3Wad54+BEdpaHLeQ3DigHD5ed9YER5\nNXtOhLABz4OZfp9J/trWQc1eegyE1bq3Ml/ofLAEBbE2Pv42I1FA0jjhqSjZ\nte2NYKUkN5FWfNWv6pTDWEm+5ivI+0lWPIjAbsqz2FizpfdzsODbKlCHhd8F\nKqoErXjQ9hiR1H6ROLiNKBQYYhFN49FbS3o2LvfSEyCoLBbEQbJdK3S5l3dH\n5wqe+HVUaq4LaIwBEJyOtIywQbPLR2PbYtsEx5EfF4PnZMtbnaIORsMXXLPY\nIlLKdtXRxe7GCp+OVkoB55LLGLHVJedNny3zAAFNlf8yApvMe2CePWf4+pdX\nDnzED6kaYKDy3+ssuoxtFDBSqlNIxUHtm2O8xHfJMeV4dNz0ntcnArTgDomT\nCgmQ\r\n=NM2+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6"},"gitHead":"1d7291e7e13acd565164e6afc7fad6a2e7051c19","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"prettier":{"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.9.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"postcss":"^7.0.6","icss-utils":"^4.0.0","postcss-value-parser":"^3.3.1","postcss-selector-parser":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_3.0.0_1557233524774_0.4380114778467139","host":"s3://npm-registry-packages"}},"0.0.12":{"name":"postcss-modules-local-by-default","version":"0.0.12","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@0.0.12","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"a93431a4b1d0b7a4021e238fc27d5e8e449282c2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.12.tgz","integrity":"sha512-aQZGW6jyQ5FxSL5QXjdU8Gtmj28vN9ipuVBK9+yk9b+E3iBehDOKaT7p2wv3VjSTrnOXr5Xxglxun4aNhwX27g==","signatures":[{"sig":"MEUCID/Me6oiFZiCPXzlIhGjO5hFR9p6fW9T8R5N2K/5HSlGAiEAg4AT4TYDnScg8iHG6Gz5ef1T6Ay4T8HLOP46O84BKd0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a93431a4b1d0b7a4021e238fc27d5e8e449282c2","gitHead":"712fc5b39cbd404a8c2f17bebed53f765f751eaa","scripts":{"lint":"eslint index.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.10.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.12.4","dependencies":{"postcss":"^4.1.5","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.22.1","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^0.2.1"}},"0.0.11":{"name":"postcss-modules-local-by-default","version":"0.0.11","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@0.0.11","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"a800af4321c3a4e0852d1ae529e6fc991ad395e7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.11.tgz","integrity":"sha512-e0m48wTMnsdZ62Ps23uvMsOvht6XL46UNM23jaAAxRgAdELEMARi3p1ogFll59u9K6i7cIFxunWYpxlTqvWLqw==","signatures":[{"sig":"MEUCIQCEOieqBhyGmKL0HHa5RdEc9RMf5qW4Ujx3DOPqH7UCTAIgIbsHgT+yKUllGWFIytz+LMk96yIOnrR/wVkER+VaNc8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"a800af4321c3a4e0852d1ae529e6fc991ad395e7","gitHead":"0ebcd26e523595151d56d831f3cce6d4e1efabc4","scripts":{"lint":"eslint index.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.11.2","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.10.36","dependencies":{"postcss":"^4.1.5","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.22.1","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^0.2.1"}},"0.0.10":{"name":"postcss-modules-local-by-default","version":"0.0.10","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@0.0.10","maintainers":[{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"8db5d5091a3effd8d13d4ed085341f6f67d20898","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-0.0.10.tgz","integrity":"sha512-uY4ykQ35cboYpnVNt1pFHFt0O0j14IGymfLj5xiX3/rxUKCjSDkf+RIjSR8OtWzJ9X4EqmDRqmvM7KmW3BUF5Q==","signatures":[{"sig":"MEYCIQD2ZfUucnTKRqWFCZAg9iczH/sUOVEOTaZ6fK/Itq3SGQIhALbZfSdj1SUpQ42Z8sioV6ZV6WD2GlXV0c/xmBWAVtvg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"8db5d5091a3effd8d13d4ed085341f6f67d20898","gitHead":"343c4d08ca1f2870caf2c7c19ad9ee979fbc9f02","scripts":{"lint":"eslint index.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test"},"_npmUser":{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.11.2","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.10.36","dependencies":{"postcss":"^4.1.5","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^0.22.1","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^0.2.1"}},"3.0.1":{"name":"postcss-modules-local-by-default","version":"3.0.1","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@3.0.1","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"3ec47d926a1cc02ecb189825139c2f241687268d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.1.tgz","fileCount":5,"integrity":"sha512-pM5LXcwN4wq3syrfeQE1DImiqduhRLqePwMTE+xpdhOOMV+GRyBKjRAQdlK4hZbPIz/E+Y14H0GEJ79brbSVRQ==","signatures":[{"sig":"MEYCIQDTlp67PdgysoIwp4VAd08YPrwz6zkll0/eM0rO2goHEQIhANM+kTWBOIGWC+7Y19A92Efc51dKX+m3bqlQXB0DrK49","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22936,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3TQqCRA9TVsSAnZWagAAtBYP/2tQom0xwlttqrN6ZrDv\nofz/bxHHLjwtARJxusPcmFoIHOzI67eMmmC8xXLShlLiOJWQneVQS803iycZ\nt24ixhz93Sz1JAHFpABTwrax2CRZ5+bFTuseF+/LXV7Jou8GziWhSkjNio1U\n8/EllqdfSlHVlskfgMwRtSLlc4x6KVzUzQdOx+3ttSx/harX/NVClgu3RMeu\nh/SMPTVWZyrxWFAhar3hubVY/aNNlnqn9NmdA1zr/J+qh9SyCQFPvrJHLlAk\nyj/jtgo4vqClpIwDlJsiCL4sFRbAtmq7dUFVXuI7RF3pOCWhdNH+gnzvmBvP\n71GlV96ty8vGD5FOOZKm+WYlyy2XRQqmPb30wjf6TA1ThQk+IGyrIrZ5OV9X\n4CFTRzgoBd4PiQzGXgXfUth1O2RCPUe6UYyt0ir9prciZBHpPbTZW6DC611J\nE04iOW/OAxnFy8lYf2Lp98mafOS2gdAcLaUxJoisCcsf3GS4uHifeaQ+7kjr\nRfFEktCz//Qj39ZJJi/vhrCVDQdQ58kD86Jfxl7R70HZy0QHpigRg1JP2irl\nO8R2xwggnbmYsCRL/kMTbcSWCYDgnArPS5XTHAYUyZMKRlbVBSkSi8IbAUGo\n3Kge5YU0Au4/flCdohPO42RbKpGWKR8WAiaCb4nlLIxFv7YOyK6yh4KcdNJn\nmDZ9\r\n=Q8Oy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6"},"gitHead":"1b84679cb0367cbed496ccdd82b9bd8413bc2596","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"prettier":{"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.9.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"postcss":"^7.0.6","icss-utils":"^4.0.0","postcss-value-parser":"^3.3.1","postcss-selector-parser":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_3.0.1_1558000682118_0.23788065438004002","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"postcss-modules-local-by-default","version":"3.0.2","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@3.0.2","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"e8a6561be914aaf3c052876377524ca90dbb7915","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz","fileCount":5,"integrity":"sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==","signatures":[{"sig":"MEQCIDFMmtjKxcrY3V1/bY9zcRUCPjk17hAege7Li/gcP1tYAiAQdfKR/qr9D2IsjM36/i59/OVRKpOQpTzO45ZJyZ44DA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23230,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9ur1CRA9TVsSAnZWagAAu2AQAIxSUGiqZxL0yC/ETIm6\nPxaE4ZgbzOTaOfQuCYHeiOglP6uZ9JF0Be8MiWqxqiEbt3lS83bdMFFo3tO6\nebyw65PzQcsJOD04PBPi/4EjxFQMh+9ybLrRwaW4+2qgVLrNNUZA30N6xuTm\n0x6XlsS1//edGeN81MHRxnI1tw5m+hCeEghray47Eb03RVKettij/x59lLYk\ns4WIMUNo0stcWZkHX4MfBqiYJENgm3z1nxhMNjdsLUe3IM7WLOpsl6vEfL2Q\nSCOSt2Di7mSfGa7KOO7GzfpPmnlv+o637gH84Lz1NZo2eHKmbkBRnLJTnfGb\nlvcudPNQ7SN4WKmWT6WdofOB5j5Xe45anKUYUM+qrV0XgCJtAvNVzDvesO+F\n0W/Eduggroht6ZOEa+t+Os8UpXoNnSRNEn4dJ0sPmM8cZSyDIg+oGR67Jbgd\njRyWrBfAhuVvlgxOD1x2HCV4VSLxwS90ceCaD2ZGYQKZ9CpaS/55fD4fvONB\nrY15N7L12loHB+G8LyiMT4hoQ4c+wB3cUBLgk7YMDJxsPSBPMqC+uMeLMnOD\nBdsnL05PNJB7RoFnyRnmX/fFB0GZ+TJCUBRzESo9N5qEj1ma/julu9HuTP0c\nLy3Z4JSZMJVw94CpZAO1z7Sj59vk/AvA2gpSbbgSaKpioO8R2+9t9qnaT7qq\nOJbv\r\n=iLLe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6"},"gitHead":"446dd71efe7db4a7754030e79be668171623d79d","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"prettier":{"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.9.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"postcss":"^7.0.16","icss-utils":"^4.1.1","postcss-value-parser":"^4.0.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_3.0.2_1559685875816_0.3010261024411909","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"postcss-modules-local-by-default","version":"3.0.3","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@3.0.3","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz","fileCount":5,"integrity":"sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==","signatures":[{"sig":"MEUCIBU7x0BmGUC6um1o99dSiIvoJMntEfWBBpHzOtCpzVCmAiEAqPoBzudU1HdvOz0zBYA/zi1GHsxH58y23Iq3gOfbD6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23546,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHCkCCRA9TVsSAnZWagAAiVcP/1BoZproI2jwIEUu7xfe\nKS4C/K+D40TWMUiCR1OVbA0vVPrMkmnIHoGR/UY6hiRseCxC37ZUfWPqlQPD\nmRLt5qZluY+J47aNyV8DtSm75B1/jezybX1HUMA5Bk35Cvw4Qn+Gf3Mkb1QH\nuDthOI+WdbV3frgk3i1W1NLWhJVfCAESK91o0TJnaQZEEOmnGAceTMFmsoyd\nbX2cjjtqKm3Q6w94SS3ALdKjBIpVLEEe83z+YrQaCp+dQ6A5kA+wd+qp89Zf\n4kRLzB514qL7PfnL4nEySY6+551OAVwxKEG2aBQvN86Eua0fDy2itoGxzWFM\ntM7vDL/1g95MFjsxCM8H7PV0Ko1KBNSblyqPLKKE/jAr5b7LcIFAjWCpVr7H\ns/19hn13tWJUaZuWOfW1NHNynTRZLtPeBh7oum6aFZnlbjogaXaeZNDwg6HF\ndKBp7SPOBndUghPMnRT3hrLJ8vMjO/mnHplNqy4JVNoL/5lgSEpkT34lZgCK\nl3KX+ZUn3NrFMNeLZORqhs8XobjQxuHquiqx4uDUa9iIKOJs51+WNwHIZaXL\nwhHVw3QnWJDfU/aHpcDvQ75yBgQJ+Zq7tQc5omGj9H6Utg5QyEb5NnMeTvWG\noQwjOxBFdOqpt3WNlVW7L3vCa/r3uXqsfw7Y4nUNooanXasXBmulVcq8v2iB\nhplT\r\n=/4gS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6"},"gitHead":"ec1cb48675a3c17028c5f68a4e4aa32f5c4dcecd","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"prettier":{"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.14.6","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.2","dependencies":{"postcss":"^7.0.32","icss-utils":"^4.1.1","postcss-value-parser":"^4.1.0","postcss-selector-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^5.0.1","eslint":"^5.16.0","istanbul":"^0.4.5","coveralls":"^3.1.0","codecov.io":"^0.1.6","chokidar-cli":"^1.2.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_3.0.3_1595681026471_0.6518148134297046","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"postcss-modules-local-by-default","version":"2.0.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@2.0.0","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"b3e433dbe348f6d6a1abee2b34745249ee1859ff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.0.tgz","fileCount":5,"integrity":"sha512-T8jRuToqWfCI23TdNnFckMvA2gLO0nEVWC53wwixu9Tf7CnyGXRo4R1WpD5wgGSRBN17l/uDvsykD5hrOpXxsg==","signatures":[{"sig":"MEQCIATdk2BskQsgmuN3YxUSCaUm0d0KYN1vGabjXsOeBRchAiAxDtZVVpigfaBn0XrDb5aaD654r/Nztxa2cYgGIv+NYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb99hKCRA9TVsSAnZWagAA0WsQAIBOS7RciWf2e8Tn4GEi\nC1U9F78ZxKczNYlHcJCh0JND3GtahqTCpF5q0WBKXyIt4Lx90eUwFSSHnQRX\nxZ/uK5/QNxWO9SQWYHLeqzmTdfjBLeqODsTF1wnsQBpWnwRZndFBuF40901g\ndkLru6hIu7F+OmGhE7fve0zlHehiGyo8UfV5iVT8PMwH+fNwrvHuKoW9W8f8\n1VJ1IsVYqIyADJs0uW5X/1+/S9x8SMR9+PdCYIflniqYjVcDiUFgMbZcqNXs\nvvQco1WUbO6VC+d+qHdnD+ok5bc3oUZalacw9Fm+V6V/SN9LjabKkp2uXpAe\nSx1kNvkrAvVBCr4efScNnwGsTvqqNTbl39Aokq/Vsk5PoEETEMvEal0TmlFC\nx4LuAsxLGDaquUXARFP7mgKymE7Nwre3Maol/FuwPIvm/oNCgkI9oZxeDPd9\nLQ0UAVWnhN+rgBtXXLkbz5L3hBvTFssEagn3bx1x+wyJuEAutdxj1QVZ25mt\nctsZRedLnJof4EgO9lqcC3IvlcfKy+CBRmXvP2JKIDnu+2izCIe1qiPPlYl6\n3t8+pM7oQ1qIOCqQN+CxLku/u5exzHp5XBxSCTRWGO7ykDWuBOFoiwZpmKfP\n7JrDtqr+YlLzYcU6C0fX8FrVzeTykNfuPbZAieRdzrgc6AgP5iJaqC9tiXQQ\nJ0eN\r\n=shWh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 6"},"gitHead":"ef87adb1199c90446b84e92aea3ed63936c07cfc","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.4.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.12.0","dependencies":{"postcss":"^7.0.6","css-selector-tokenizer":"^0.7.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_2.0.0_1542969418131_0.31686762301040394","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"postcss-modules-local-by-default","version":"2.0.1","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@2.0.1","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"22006d7daa31ad5c1e7881b117900b7bb2649fea","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.1.tgz","fileCount":5,"integrity":"sha512-MStSpAg9TJFFkcD1Sg9HazFxpCHFTmjDgTRopMpUGAzFX9wjwN+ERy+RE3W7cInkSm62zpu6fZ8Zy2UeQHQ7ng==","signatures":[{"sig":"MEUCIGVlZfivYH6Iu9oonppfEvhNi9YL+TthPA4kToEN6+SgAiEA17ZiIdMfYM4lNyi+/jP78yvdMY+NK0skr63x+0Kwfek=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9/EeCRA9TVsSAnZWagAAgQYP/i6/4KioawMMjYT6z4zj\nVQDri5G3C3zEoxeOs38DM4AphMSargxeg864q+I91h3d43oTB3HvLKJpNr5W\nm1vs82OLBy4dhkm0qK/YvmM8/A9p5dHyrO4lWyqF3oUue7QUCztWWb0rDWUi\neWF5l0j+E0L5V5DORR47kOL6EgPtmzzjTZ35znK1QrYy7v/+8Yf2Scq/WoZ0\nKE+IpPzRSY8SKFNDxOmsghv4Bjiwo2wR0sFi+WeE8hDQiOp6CbtBGdIqs1Tk\n8908S+B6MuhpLt2HWO3uGVvTDgpDtuCcL10P179/32zC1d+upoOep5eGMe26\nmeFkNdtpqedvV8M72uhJD1//L672az4KPTQreLveCJGB52iLsEpRIw26af/H\nmMh6LCi6xgjHvzjyYG1ymDH5tYMLoYnPy1EwW5+1Z+j0Hcpa+azj83ReGskw\nGg2+XVu5Yrj8JXpvi6JxCqkvhx58dB6TEe3er9te3IKr78DFyZn3U3P9lh1V\nkO1Wgeg5yHCXhX5IBZujeVYmrLqHRN+jMNfMrnDLIysFz4NJbYu5AiEUYurk\n3bf+y5fb4/caLIS5LHevtDUq5H09U5UIZV5+/ael/VwG3nzDlRs37QC2PAUC\n5IgZFM720nWxujbwpW1iWz58g0xrRf5p1M5oNPEnOfn8iFLXz7yZs2t821Pb\nBSoo\r\n=w3QT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 6"},"gitHead":"aefcd4b7d49e2def5a626b1ce30e0db6932c221b","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.4.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.12.0","dependencies":{"postcss":"^7.0.6","css-selector-tokenizer":"^0.7.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_2.0.1_1542975773480_0.9997961858299917","host":"s3://npm-registry-packages"}},"1.0.0-beta1":{"name":"postcss-modules-local-by-default","version":"1.0.0-beta1","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.0.0-beta1","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"89b3ad65f669973386804953948aad23b7330d5f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.0.0-beta1.tgz","integrity":"sha512-EkmCBVFsJKgYpQJZkV4qS51wA35nGzdWhdbhi2UmP05NQ4X2AIJf2XT6v3YcafvdswEe38JO16wHkjfPRVCNJw==","signatures":[{"sig":"MEYCIQCRxM5n3n30gZ3XqbxtE7RpJ2vUBTYTgzCX+QMQnxWWJQIhAMj+PjXAOpCBWktdeYXN9RK1Za1kggsRR/eaPip3vXYu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"89b3ad65f669973386804953948aad23b7330d5f","gitHead":"a3024f1bf9eb6015d49305a92a24354d4dfa5d97","scripts":{"lint":"eslint index.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"geelen","email":"hi@glenmaddern.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.13.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.12.2","dependencies":{"postcss":"^5.0.4","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.5.0","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"}},"1.0.0-beta2":{"name":"postcss-modules-local-by-default","version":"1.0.0-beta2","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.0.0-beta2","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"b5597be9008b20a06c1e80ce8fd2836fc5ea1eb0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.0.0-beta2.tgz","integrity":"sha512-O/ikvLD8C8qnNMJnx6NbJaJ+DGyO5hJNSznWPAI1WaNy/Jm4qIiXvpmRNg5XzzeN/voPmdg0j9AJTu+eZg5vXg==","signatures":[{"sig":"MEUCICicj7mzsboe2Xt1CvswTWvdOgvBK3r80oYMb3155YVCAiEA47MTK60tXPwD5CMMMiFCo4tqylMexpv8HYFhyQBfBAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b5597be9008b20a06c1e80ce8fd2836fc5ea1eb0","gitHead":"702a171699a33e16107573f8558291ce2dd3bc4a","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"3.3.3","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"4.0.0","dependencies":{"postcss":"^5.0.4","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.5.0","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"}},"2.0.6":{"name":"postcss-modules-local-by-default","version":"2.0.6","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@2.0.6","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"dd9953f6dd476b5fd1ef2d8830c8929760b56e63","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz","fileCount":5,"integrity":"sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA==","signatures":[{"sig":"MEYCIQConLeywk2n9MmHY6lCZv3lf2O/IOcbgV4w9+hEnmSbCAIhAIxooxfRsVCXzH5hf0Zi517uHkuhSpVZuRh2dc0IvluD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21540,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcflk2CRA9TVsSAnZWagAAiMcP/RLlqtEAp7xCSHcDcjo2\nKGgBtky+nZiTb+dbX4kohh8tkCtnqn+jlcBQ3MlbstglxUNprG8HsN1nzzsa\nYtdRvJuUJTTGlR2UVPpWZt8AzPmFZHADPZ80sJPwqFjJi2HL3LZRoqRgcijD\netktNmBHi5EnXc2ETht3Y0axgtoSySYNj32MH8K/qrKa4f/FEfA+WhF9jLFH\nVAMbSgkiLfHGtQRzd1UiX3VuqlfjdCiZ/GQtGXxAjrnzJjGYO0/THlG5AyIW\n76gIqzY4U1y2uWOCkh3tYkhvWO5pSie3pCr2VGXFdF/T8w7XpCI5WAqfwBWv\niaf+A4KbA9tYyMujSAWEkECG07fya/8hmfvnNXWN0G8tWD+eg7d572cPOBwz\nvLVwfnDDY5ws6Rwo2GRUY0ECZP2aInDrLPbzZfUcKyaJ8HTE+PiO4betSJJn\nVb4JrxG9toYdQbDgfhFH6UTSV7xpj08OoivRjpafKaMx+/b9mCcE4E8xOAzk\nrrKABnYLrOBe/YO913B77y7vrhVT9cDEDXIldGdIWWT0//jnuX6xJ9P6SNl7\njyiadVeARa1GiZ8pEKznnE/tHpqqZ5eZdLaayCpBHYo/op4kxA6xVVGj8weL\njqVVFb3rukjLaUlsWxMm0NZjdCKkPY9TQI6ovbX8Nx+Y8Sc0kjeJKPGALm5E\nJEnO\r\n=J5wu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6"},"gitHead":"ba6229afea9c1079c31d5cc8dc9a4f42d5eab1ce","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"prettier":{"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.8.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.0","dependencies":{"postcss":"^7.0.6","postcss-value-parser":"^3.3.1","postcss-selector-parser":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_2.0.6_1551784245554_0.7616535232383268","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"postcss-modules-local-by-default","version":"2.0.4","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@2.0.4","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"a000bb07e4f57f412ba35c904d035cfd4a7b9446","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.4.tgz","fileCount":5,"integrity":"sha512-WvuSaTKXUqYJbnT7R3YrsNrHv/C5vRfr5VglS4bFOk0MYT4CLBfc/xgExA+x2RftlYgiBDvWmVs191Xv8S8gZQ==","signatures":[{"sig":"MEUCIQCRt6I9zzg1bokepedI/8z2AyCGy6tOxppKv9ZIgoCx/AIgPXcV9V5LQC5k/2l63BviBAMXErJe7JvpScYSEgvJtF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19677,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcL58wCRA9TVsSAnZWagAAsLoP/0+wvRSnjuvufpXRJNXG\nssWrZcmziIFt9yv1xi0UYcH6FILEMIGA6HZC4G1OBfjRx8RKXAxWd6BVW2eS\nvaDSKvCSmUF6d42mECCdwvFx7ckdnRWagMK6pgGBIF4JDc6Bcu61n37HeMqW\nA5TRAC36dF6CIP6gXOsOspmD5rSJBRQemKqY9sEl9NmfWuqSALUZTrMIiFAZ\nbFPvCu3z/irNZeKemYNAOeRNT8LIanbQ/zrFKA738nwEI2UuJowEmJRCL3Gs\nBINqXafpZeeqsBAExBU7VJa49LIFRBJ9F1YLn+VsIQ2BgGemZjhxeM9bRW/K\nV3SxwFdKN1YWCvGg1YRQQf6Sd5fJWjq2gRwGErmf4xN4RIS/a9J+fcX+ctOb\nCq3a/Jk0DWWay6RiFZM/OlF+PXqax+GEfKmL9RKqmlgxmKDPlu/n9qkIozNM\nmT2LVdidEUX++H7sbcmX+adyRCzkc2RoocHmsEYqTHT5o0E43bo59zNLrDXb\nBXBWLvGXslKz6Kbx/eclWeYYJ4kdL1CfjqpnHESSRo8XTDEpaUoQnaK2WMTl\nxMK5GtPBhaMHNmTgU1VWehztYjhXur46jzfiiRMxfVmm47oyWN5DO3v0AHIQ\nfn7hG5XqKz4MucQHs3koAOFgM8KWKcdkId8DcUgGyXEpub+76L8jk12ZWAM1\n1Q+N\r\n=BNq9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 6"},"gitHead":"30223a30505612816fd18e6ebb92d097f678f20f","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.5.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.0","dependencies":{"postcss":"^7.0.6","postcss-value-parser":"^3.3.1","css-selector-tokenizer":"^0.7.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_2.0.4_1546624816205_0.5672731129232256","host":"s3://npm-registry-packages"}},"2.0.5":{"name":"postcss-modules-local-by-default","version":"2.0.5","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@2.0.5","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"7f387f68f5555598068e4d6d1ea0b7d6fa984272","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.5.tgz","fileCount":5,"integrity":"sha512-iFgxlCAVLno5wIJq+4hyuOmc4VjZEZxzpdeuZcBytLNWEK5Bx2oRF9PPcAz5TALbaFvrZm8sJYtJ3hV+tMSEIg==","signatures":[{"sig":"MEUCIQDQ+WKVmP6y1Lmn7Pj4o7KTnALekwmkyjMoPopc37qnXAIgbVodwjM98dpw89GAaI+N/HANqe2Ie/2K0tHnqQCWru4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWvZECRA9TVsSAnZWagAA7MwQAIjg6pTyh7e4YfdlDCVw\nlXt4EHacYNKZplNpI6wypXBazkIDh4uR+cdbaywT832G0lq6c9+/GpowVlpO\nGjOVcnh4T2CvWdqdgvDZC5wAD1povPS/hNuqz1IKLyqW0LrVzDeGaN/AvftQ\nkVmTiomBq12lqRh7/0ML7uesJiZ8POYKSOONHvQ6TKVjNHirc6g2yT3gExi7\ndEcRyjTXdGTVxu0ztWVYxL4KNKszxv3R4bu5Xz0wVs386fea5ttZvsL2AbsN\nly8Y8SXPpa46DZkgEEjoOGXutlZgJQLdFvKEFWT7ATxMbxfpo1lwIeqEK6Q+\nrb/GhZiLkl7f+gIjooDtw4NLsWrlvq10pURDwpJz68Ewyse0cxDrYpLTj9Wj\nWRQDzru+LkpmAAW3EeFRrRn8ukt3VPyxJ0HvJzsrbfU7gMma7+n0pkYzplnX\nnpfCNMXn6xRnoxGB1veBgfQqbJCYMxsIN66FKlaxA4drcXM8Hw0/I+PR32nE\nDSM/aDQMahdB7K7QxRBLUhQERVALYYW90aDUh2BtrL/gTT81cAryArhtdUg+\nG8jIXDWV8AwxSXmYD7w4QQXrdGJ5+f5kcbdge/Im5wvb/cCii+ZZxXQVMBVD\nTCtCTka7sgxelq2LQaajczgF1+EZ9cry8OLBR2Xuocmi3DM42Eo00bjINDkY\n+Y5k\r\n=JtsU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6"},"gitHead":"2b451e14dcffcb3883b1393f988d1e68779b9aed","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.7.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.15.0","dependencies":{"postcss":"^7.0.6","postcss-value-parser":"^3.3.1","css-selector-tokenizer":"^0.7.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_2.0.5_1549465156186_0.06939697861374006","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"postcss-modules-local-by-default","version":"2.0.2","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@2.0.2","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"edfd6a874d326b52daaa3014bfc11e9e4b0cfafc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.2.tgz","fileCount":5,"integrity":"sha512-qghHvHeydUBQ3EQic5NjYryZ5jzXzAYxHR7lZQlCNmjGpJtINRyX/ELnh/7fxBBmHNkEzNkq2l5cV6trfidYng==","signatures":[{"sig":"MEUCIHzFJ3QWsyNSyB9/lD4ex4Zdc1zYE46zE2yIPjfMs/gQAiEAnk3iYioZGNWCwZveJXgX5hnXyqli1iFYhFwPvhTOzoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18894,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcB7/XCRA9TVsSAnZWagAAor4P/jr2rybDwbPE8o40+DuA\nwjmSgdKw7MU0KyDUt4VFI7Q5SNyQFDSX+1KxvtbopYj1zDROrXdLY/S6Rf5a\nrLuiFnG3SAk9I832IA52iPob0bPqQUCzSFz+1xqPYlaWwj+YPEnB7IBPUftH\nXRZoWcuelO4NxllSjN50JW8A4hE/jiSXpHgbf1e8nN2mUzP9Bwp3Th5+71A5\niw9VZ3151GbiQD9O/i3xzis0ynMYySsG9ATEcVgwND6SpdkFFT2QOmGEA7lm\nY1fnma1m6d4oCfTFFwxmiNAb42DGbQwIxRvULeYcSU8bRLoBZS9eS7Q6wHE1\nyQbX82+wwfqsgHs3EOR2cSU3HvnJ7R71ygpTDEdjs71wPr+Q4BmAr5DxY0oi\n1hm5Ln5i986TmRpdppcxKWDvbVUWA6Q6FeihwdQY15pdMHcGLPeE5hBCyrDJ\nToC2pMfMISQX6wt7GA4Br6ZTXR0qWi3+/rI0ZNuEgFj/qH5l3mmxFLYwsNmF\nB2ROE8gjjdnJLbin/Bp4UZa5+Vnc6INoDuDn6hj1C9rHD9S1pcPaGm6pYy+g\nxm1rI+Z12dgtDAT8YoJezTpXnhjmDOwqBYoMf14qBJdmRkS8tfKzJAeO/b0L\nsTAPqoWC/pRmdch51mAq+So+TK4LNXEHrmspd0ju+/18U7//DgZv43hHb93q\n64N8\r\n=U+HA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 6"},"gitHead":"38bb518dce7ad7c43f78a8b5926e5a693cb919dc","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.4.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.12.0","dependencies":{"postcss":"^7.0.6","postcss-value-parser":"^3.3.1","css-selector-tokenizer":"^0.7.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_2.0.2_1544011734589_0.17906523598631385","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"postcss-modules-local-by-default","version":"2.0.3","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@2.0.3","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"6a199d596ec3ef57b8f5ced96d786b8cb16a7dec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.3.tgz","fileCount":5,"integrity":"sha512-jv4CQ8IQ0+TkaAIP7H4kgu/jQbrjte8xU61SYJAIOby+o3H0MGWX6eN1WXUKHccK6/EEjcAERjyIP8MXzAWAbQ==","signatures":[{"sig":"MEUCIFfz0Dn/p6wfexVIMqvneLIpxBvNTV7ZIWcVEFpHJs02AiEAm5TtHq7EG6fywsLOrm1aSRYCG2N4B/n7DtBZ88lpkG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19165,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHL63CRA9TVsSAnZWagAAA3gP/01OmpjVgqAGvdk9XUvB\n+VYjP3dJQJgRICxk2bg4NrqZhWoIEkWKgRgsh/br3vwCEFhYeMIqHZ42CLQ9\nsZq0EqdowXzFEhknts/6uAiGhm+ivTYBiSgew5u7iHo64Q/a/Uggo+X1gPd9\nFWpggSNhmEAVDZEJDfQBCirDeMDREwI1TfrbVFDGarMGUx/Ht/w/h6rfe6Pd\nXEaQ6Y9XbULieZOCs+onBbCYrXalfRKThY+J6cMft4BJlm0EIPbPU4NEa063\nCoux43CzXqVcXcxpXoS88ftZiV47GeOCz5i4MamUYEqilfNyS8Slouh5KQjg\nakttPaW3wfK0V4EqLzQ5wySOE2Z/VPeIyDoQ/KWEEgXSnGL0uoTk5rKXqxQy\nD4rQ69Dj7oq4P8d+ZBeIxoqI3RKj8DUOBjCQFqyfreQegA1Ti065Ak5CBd9M\nDjFU9HAvybT2HBwfcU1oBVExYa8oll/Awb6/mgaXtXCe8/7DK6XqFQ1ufsTi\nQYNgTGzOM2OZyo1xCAstq+HWuJjSpz4PdTXTA5p92HSKZGCMXyC5K5lur5EC\n20QYJKt3Zq/s4xOtZeq8HCvYqqbn5Lv16Lw0gEjzm8QjkDl0dOVOOpAx8qy5\n8KsWkJXGQiXLNn/NsdezqDZAQ7YMn05gUU00tIdWlaTMggJa4kC2nwB6y00Z\nM0lK\r\n=vRvf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","engines":{"node":">= 6"},"gitHead":"8e9514cba7b99a989069bfe0177384d19f592e6c","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"yarn lint && yarn cover -- --report lcovonly","pretest":"yarn lint","autotest":"chokidar index.js test.js -c 'yarn test'","precover":"yarn lint","prepublish":"yarn test"},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"6.5.0","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"10.14.1","dependencies":{"postcss":"^7.0.6","postcss-value-parser":"^3.3.1","css-selector-tokenizer":"^0.7.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.0.0","eslint":"^5.9.0","istanbul":"^0.4.5","coveralls":"^3.0.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default_2.0.3_1545387703143_0.381600727283415","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-modules-local-by-default","version":"1.0.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.0.0","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"5fe7217ea1a7a9fdb9ead513f1e055051a4401a8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.0.0.tgz","integrity":"sha512-fUlBK4AIVbuIqIbLtQG1AbBOd2pU8zdW9Z26VMwAcF7ATE4WuYcq6ir/XU2l9EuOs+51SUzT0i+OZEU2AcPSmQ==","signatures":[{"sig":"MEUCIHzXjhNyJsR8BUF34gYJaqAjimNZfWPFuSz51j7TROPCAiEA+FhLw69sdG3IDcGBU1auIffmbAg2zdG0ZNB62Qn+ivU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"5fe7217ea1a7a9fdb9ead513f1e055051a4401a8","gitHead":"98f6d7ad6bb7c005c494c5242f2adb837efc1300","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"3.3.3","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"4.0.0","dependencies":{"postcss":"^5.0.4","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.5.0","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"}},"1.0.1":{"name":"postcss-modules-local-by-default","version":"1.0.1","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.0.1","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"5ecb890fe5269f70fc3b980f6202cde9771d4799","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.0.1.tgz","integrity":"sha512-QyEfJV99vxCAlEneiylkG3yDuR4UwdX1NRGl57oTu8M1bDKgU9qYJPW2g3DFygkU93W0Z5GLcNRc9TLXyfuN/A==","signatures":[{"sig":"MEUCIEheAWfi4Ne3PPCcsaJFoeYTTELeXNxLMFZ3F/y+F3lhAiEAg4L7626mS6/p3Pkg/d9Bll242uDFyXo+Ws2jVBhcaWo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"5ecb890fe5269f70fc3b980f6202cde9771d4799","gitHead":"9e0439a8a6d16b67ff6bed4721bd1bc2bc2364b8","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"2.10.1","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"0.12.4","dependencies":{"postcss":"^5.0.4","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.5.0","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"}},"1.1.0":{"name":"postcss-modules-local-by-default","version":"1.1.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.1.0","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"c049d6cdec16dcfb32da3139faf8ac7492f669cb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.1.0.tgz","integrity":"sha512-s8XjwOjIHDNeVNBFoATBuArQsqeMIzEo0KKgoSRTqPkPdz2Unv7K/3CyMZMcWjYFV9jNKE0PejUyp6pAkDJ/8Q==","signatures":[{"sig":"MEQCIDeYNriSrupgMxFGT087cLgQ7yDwKzHfW437paxcOSrnAiBb3GoqZHerTxot7mOGg+HdsqdRsZvpuBPSGnZMyT/S4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c049d6cdec16dcfb32da3139faf8ac7492f669cb","gitHead":"a9bdde6d4b697c148d9660741a19f36da0e589f9","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"3.8.9","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"6.2.0","dependencies":{"postcss":"^5.0.4","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.5.0","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default-1.1.0.tgz_1466453651357_0.05369096947833896","host":"packages-12-west.internal.npmjs.com"}},"1.0.2":{"name":"postcss-modules-local-by-default","version":"1.0.2","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.0.2","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"8ee81af9eb9d1c6447b65fa7686f6c75e2cb114e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.0.2.tgz","integrity":"sha512-qEeDt97dsoPg40ym46b14um+l1v4QZJPFAueERvfUkvGCVnupbaVA3gLNqAJIMYxYXqWRx6+4mHhhGzr5735mQ==","signatures":[{"sig":"MEQCIGQjXeAE/cNdf6x9FvKM7qXSTfctJbXFa3g+QgA3T3vfAiA5X36UYYQBcGuO4nhiJ7TBCHthJt5z/XHZVRvb3C2PEg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"8ee81af9eb9d1c6447b65fa7686f6c75e2cb114e","gitHead":"7ba3c648bdaaeaa28aca522cd84a279e7c41e68b","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"3.8.9","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"6.2.0","dependencies":{"postcss":"^5.0.4","css-selector-tokenizer":"^0.5.1"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.5.0","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default-1.0.2.tgz_1466452335071_0.16343818558380008","host":"packages-12-west.internal.npmjs.com"}},"1.1.1":{"name":"postcss-modules-local-by-default","version":"1.1.1","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.1.1","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"29a10673fa37d19251265ca2ba3150d9040eb4ce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.1.1.tgz","integrity":"sha512-scO65S29k9BSdBtgAXzWaCOCoYMkDhMAhY9xUXEDDYwf9dsRlAxqnTFBopbQ/iru06NX+kkMk4ROVT4C5RUYpQ==","signatures":[{"sig":"MEUCIClh3IOPoUo14ATGfIHqZ7tuBafFmsJ/+ZMPHVQGIaHnAiEAjt9G6NkHo+4beBhErcX0RAhwXb3Kslo9kcVJh2cfQxM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"29a10673fa37d19251265ca2ba3150d9040eb4ce","gitHead":"70332316d9a15bcfd8f69b497f9c69a87ec5d475","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"geelen","email":"hi@glenmaddern.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"3.10.5","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"5.3.0","dependencies":{"postcss":"^5.0.4","css-selector-tokenizer":"^0.6.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^1.5.0","istanbul":"^0.3.14","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default-1.1.1.tgz_1469010258667_0.7742084034252912","host":"packages-16-east.internal.npmjs.com"}},"1.2.0":{"name":"postcss-modules-local-by-default","version":"1.2.0","keywords":["css-modules","postcss","css","postcss-plugin"],"author":{"name":"Mark Dalgleish"},"license":"MIT","_id":"postcss-modules-local-by-default@1.2.0","maintainers":[{"name":"geelen","email":"hi@glenmaddern.com"},{"name":"markdalgleish","email":"mark.john.dalgleish@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme","bugs":{"url":"https://github.com/css-modules/postcss-modules-local-by-default/issues"},"dist":{"shasum":"f7d80c398c5a393fa7964466bd19500a7d61c069","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz","integrity":"sha512-X4cquUPIaAd86raVrBwO8fwRfkIdbwFu7CTfEOjiZQHVQwlHRSkTgH5NLDmMm5+1hQO8u6dZ+TOOJDbay1hYpA==","signatures":[{"sig":"MEUCIQC2JlWIeBpRMfeOPKyC3Ehj/CEbHA85i3fCKUCF68Ib4wIgHAtoHezSccYWDalt0QjffzVjDnaEJkWYCG6U/9xiEdA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"f7d80c398c5a393fa7964466bd19500a7d61c069","gitHead":"8c7f208f12d32d65a4233ffaf10253f538d85e9e","scripts":{"lint":"eslint index.js test.js","test":"tape test.js","cover":"istanbul cover test.js","travis":"npm run cover -- --report lcovonly","pretest":"npm run lint","autotest":"chokidar index.js test.js -c 'npm test'","precover":"npm run lint","prepublish":"npm prune && npm test","publish-patch":"npm prune && npm test && npm version patch && git push && git push --tags && npm publish"},"_npmUser":{"name":"geelen","email":"hi@glenmaddern.com"},"repository":{"url":"git+https://github.com/css-modules/postcss-modules-local-by-default.git","type":"git"},"_npmVersion":"4.1.2","description":"A CSS Modules transform to make local scope the default","directories":{},"_nodeVersion":"7.6.0","dependencies":{"postcss":"^6.0.1","css-selector-tokenizer":"^0.7.0"},"devDependencies":{"tape":"^4.0.0","eslint":"^3.19.0","istanbul":"^0.4.5","coveralls":"^2.11.2","codecov.io":"^0.1.2","chokidar-cli":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-modules-local-by-default-1.2.0.tgz_1495407266237_0.4570582681335509","host":"s3://npm-registry-packages"}}},"name":"postcss-modules-local-by-default","time":{"0.0.6":"2015-05-27T21:08:00.603Z","0.0.7":"2015-05-30T01:52:20.666Z","0.0.8":"2015-06-10T21:06:59.775Z","0.0.9":"2015-06-12T10:08:21.566Z","4.0.2":"2023-05-22T22:14:31.903Z","4.2.0":"2024-12-11T14:47:47.509Z","4.0.3":"2023-05-23T16:45:17.312Z","4.0.0-rc.4":"2020-10-11T19:08:14.014Z","4.0.0":"2020-10-13T11:42:17.903Z","4.0.1":"2023-05-19T00:04:06.117Z","4.1.0":"2024-11-11T20:57:25.104Z","4.0.0-rc.2":"2020-10-08T16:04:49.137Z","4.0.0-rc.3":"2020-10-08T21:23:40.906Z","4.0.0-rc.0":"2020-09-16T16:19:45.948Z","4.0.4":"2024-01-17T18:30:37.877Z","4.0.0-rc.1":"2020-09-22T11:24:07.352Z","4.0.5":"2024-04-03T11:08:24.785Z","3.0.0":"2019-05-07T12:52:04.930Z","modified":"2025-05-14T15:34:22.192Z","0.0.12":"2015-08-21T07:41:13.634Z","0.0.11":"2015-07-19T12:31:32.495Z","0.0.10":"2015-06-16T21:14:34.950Z","3.0.1":"2019-05-16T09:58:02.329Z","3.0.2":"2019-06-04T22:04:35.971Z","3.0.3":"2020-07-25T12:43:46.589Z","2.0.0":"2018-11-23T10:36:58.263Z","2.0.1":"2018-11-23T12:22:53.667Z","1.0.0-beta1":"2015-09-22T06:08:18.463Z","created":"2015-05-27T21:08:00.603Z","1.0.0-beta2":"2015-10-19T19:24:33.341Z","2.0.6":"2019-03-05T11:10:45.747Z","2.0.4":"2019-01-04T18:00:16.390Z","2.0.5":"2019-02-06T14:59:16.279Z","2.0.2":"2018-12-05T12:08:54.717Z","2.0.3":"2018-12-21T10:21:43.240Z","1.0.0":"2015-10-19T21:42:12.238Z","1.0.1":"2015-12-22T09:14:41.619Z","1.1.0":"2016-06-20T20:14:13.954Z","1.0.2":"2016-06-20T19:52:17.738Z","1.1.1":"2016-07-20T10:24:21.251Z","1.2.0":"2017-05-21T22:54:26.311Z"},"readmeFilename":"README.md","homepage":"https://github.com/css-modules/postcss-modules-local-by-default#readme"}