{"maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"keywords":[],"dist-tags":{"latest":"7.0.1"},"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"description":"Detective to find dependents of CSS (PostCSS dialect)","readme":"# node-detective-postcss\n\n[![build](https://img.shields.io/github/actions/workflow/status/dependents/node-detective-postcss/node.js.yml?branch=main&label=CI&logo=github)](https://github.com/dependents/node-detective-postcss/actions/workflows/node.js.yml?query=branch%3Amain)\n[![npm version](https://img.shields.io/npm/v/detective-postcss?logo=npm&logoColor=fff)](https://www.npmjs.com/package/detective-postcss) [![npm downloads](https://img.shields.io/npm/dm/detective-postcss)](https://www.npmjs.com/package/detective-postcss)\n\n> Find the dependencies of a CSS file (PostCSS dialect)\n\nSupports `@import` and [`@value ... from`](https://github.com/css-modules/postcss-icss-values).\n\n```sh\nnpm install postcss detective-postcss\n```\n\nIt's the CSS (PostCSS dialect) counterpart to [detective](https://github.com/browserify/detective), [detective-amd](https://github.com/dependents/node-detective-amd), [detective-es6](https://github.com/dependents/node-detective-es6), [detective-sass](https://github.com/dependents/node-detective-sass), [detective-scss](https://github.com/dependents/node-detective-scss).\n\n- The AST is generated using [postcss](https://github.com/postcss/postcss) and [postcss-values-parser](https://github.com/shellscape/postcss-values-parser).\n\n### Usage\n\n```js\nconst fs = require('fs');\nconst detective = require('detective-postcss');\n\nconst content = fs.readFileSync('styles.css', 'utf8');\n\n// list of imported file names (ex: 'bla.css', 'foo.css', etc.)\nconst dependencies = detective(content);\n\n// or to also detect any url() references to images, fonts, etc.\nconst allDependencies = detective(content, { url: true });\n```\n\n### License\n\n[MIT](LICENSE)\n\n## Releasing\n\n- Bump the version of `package.json` to a meaningful version for the changes since the last release (we follow semver).\n- To do a dry-run of the release and what would go out in the package you can manually execute the [npm-publish](https://github.com/dependents/node-detective-postcss/actions/workflows/npm-publish.yml) workflow on the `main` branch. It will do a dry-run publish (not actually publish the new version).\n- Draft a new release in the github project - please use a tag named `vX.X.X` (where `X.X.X` is the new to-be-releases semver of the package - please add as many detail as possible to the release description.\n- Once you're ready, `Publish` the release. Publishing will trigger the [npm-publish](https://github.com/dependents/node-detective-postcss/actions/workflows/npm-publish.yml) workflow on the tag and do the actual publish to npm.\n","repository":{"type":"git","url":"git+https://github.com/dependents/node-detective-postcss.git"},"bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"license":"MIT","versions":{"1.0.0":{"name":"detective-postcss","version":"1.0.0","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@1.0.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"8aab9d06298ebed8390dd0326bb4a3de61b753da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-1.0.0.tgz","fileCount":10,"integrity":"sha512-hsH+u2vexLTU6O7IplH25kuecczwqqZ5g2vdm5ZP9IjKvs2+wcJ8IoPf2Fe8OR1nGflkEV7Dpb3/OmC075S5sw==","signatures":[{"sig":"MEQCIGyVze34qIQri4Qq4/rQjT+lR1bB93UWg5kK/E1sBS5nAiAVUrmQTOOOl8FhGHZNaX4a5z4FQeYx0+3j5jM4lVKxDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140342},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","gitHead":"cc906c6636e1faec9e63ad926c7a1fe0e4667bc5","scripts":{"test":"jest --ci","precommit":"lint-staged","prepublish":"tsc --outDir dist --declaration --declarationDir dist","test:watch":"jest --watch"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"5.6.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"_nodeVersion":"9.4.0","dependencies":{"debug":"^3.1.0","is-url":"^1.2.4","postcss":"^6.0.21","postcss-values-parser":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","husky":"^0.14.3","ts-jest":"^22.4.2","prettier":"^1.12.0","typescript":"^2.8.1","@types/jest":"^22.2.3","lint-staged":"^7.0.4","@types/debug":"^0.0.30","@types/is-url":"^1.2.28","node-source-walk":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_1.0.0_1523546218613_0.09249455490164715","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"detective-postcss","version":"2.0.0","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@2.0.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"1f62c312a401bfb6cdd9a2ffc5e952d112afd3f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-2.0.0.tgz","fileCount":10,"integrity":"sha512-rVy1Zf0er4K32UYkKTOogPz6SGv88zDxOM3Kz/eubPNT4EK+LBfNhN2dydaKNkG+m0Utw/szOds68pyCckeoXA==","signatures":[{"sig":"MEUCIBBgb0rj3BUKpBfRq/aug/oOh+g19Q1opMq8EC6oxy5QAiEA4I5vLOY98ndB0pxuzFOXgFuOq469rvFRaYgQx+vS1Xc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140311},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","gitHead":"f1d5c01c922f75386710f3a090b3c6d88c21cbcb","scripts":{"test":"jest --ci","prepare":"tsc --outDir dist --declaration --declarationDir dist","precommit":"lint-staged","test:watch":"jest --watch"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"5.6.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"_nodeVersion":"9.4.0","dependencies":{"debug":"^3.1.0","is-url":"^1.2.4","postcss":"^6.0.21","postcss-values-parser":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","husky":"^0.14.3","ts-jest":"^22.4.2","prettier":"^1.12.0","typescript":"^2.8.1","@types/jest":"^22.2.3","lint-staged":"^7.0.4","@types/debug":"^0.0.30","@types/is-url":"^1.2.28","node-source-walk":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_2.0.0_1523547147394_0.18730416108743286","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"detective-postcss","version":"2.1.0","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@2.1.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"9c7c81bb1cba79ed545c51342ac33f12ac1053b8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-2.1.0.tgz","fileCount":11,"integrity":"sha512-argxlTOSy/ti/TeDM68fPT02Oyvypg3In/WON3ARIs7GRip9b1QfThut9cZr7+WYuxQ5TaBch37+7rhHimdonQ==","signatures":[{"sig":"MEUCIQDfq/qZUJ8/IfC5xP4l670FnqdEHbN0j4IYpfzisSJxtwIgF9iQTPVOAL31QwQ4+dX7ZuWfyM8k5D8wFlU1LtzyEzI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144151,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+Zz0CRA9TVsSAnZWagAAcaUP/i4m5yw2EmRTB6qVksgc\naMM44IkY3f0jYLm5SNU9Bzwr3cqi4dkVIi/X4oWCkgQaC0A3c7TAI9zcSdKH\nRjJxicBi9g/aQSO+R68PvNI7SqEYgDO0joUg2tzma7FDX3JueLZTPzyKVZz4\nrCtopP3NzinUp4zYiDm/XDTdvbrG2NUUYC9+/iVfwoRprSeQICEsPYrvBf0/\nfBbhQy0MbD38c12VpO4ghJOZvTMM358mkSCmLkoGrD4y/NN5swwiKUM8KRe+\nTfbsyl3v3a51XIpj5+89Kn6I03JStXOxZ/RiH/UtSP+R+mY0ua7iaHZ+QjlI\n3+3Yr3s98sk/UMeQEowLV3HYIV8p/1ODUeTlgDIOtZyhoL+t5O6aSMEyhJFZ\n1yF990yDOs9fyFnqeZWinTJhQYEdkIZ6HjVj5pPahxuPVxXS/XrXtP7FVQCR\nJOaWfMCly4qQrXoJWHv0Ghiv3XXeZbl8UYsj2hS5ycU0/VH+xTj8B/PA/mUG\n5mRJlwy5SWYKlrEEZH8aE21YusingmFURMO/NrOlnrQKNxJ5qgqxJBC+HxXx\naFyE3n1aU6o/n5sq/0sksGZ9f/cj7Qw0xyIz90bGHc2ogkhByMDuTfEcRUW8\nwMpm429ok7EXL+Qop20dmTSLVcx9LjIk+PdQg42VXBrRDMx2f5v6TajLJV6D\nd6gl\r\n=YFfB\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","gitHead":"f305c9e0e39ef45c0ff136f47988f89ce03fca18","scripts":{"test":"jest --ci","prepare":"tsc --outDir dist --declaration --declarationDir dist","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"5.6.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"_nodeVersion":"9.4.0","dependencies":{"debug":"^3.1.0","is-url":"^1.2.4","postcss":"^6.0.21","postcss-values-parser":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","husky":"^0.14.3","ts-jest":"^22.4.2","prettier":"^1.12.0","typescript":"^2.8.1","@types/jest":"^22.2.3","lint-staged":"^7.0.4","@types/debug":"^0.0.30","@types/is-url":"^1.2.28","node-source-walk":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_2.1.0_1526308083434_0.5386585861418753","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"detective-postcss","version":"2.1.1","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@2.1.1","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"596176964f0cb9fda472d87727dd777d3b421741","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-2.1.1.tgz","fileCount":11,"integrity":"sha512-ff2YnAhZ5Qh7qFT9euGWYe/5BSU10wy0dWlzsD70v0lFsJbBl+D4KpGjs8EVhchx1Pr2+YLgI3qCker5wkqYew==","signatures":[{"sig":"MEYCIQD1Xx0QKazFYiNxGq8qpveG9Dq6KzJKayUkIanjGxg6hAIhAOPYoqw8jDgSNufXL6HlBjMQfFGL45sywk1zSGsKg1m7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+aJTCRA9TVsSAnZWagAAkHcP/1D3PLT0KB/3cX24Ywqp\nGlgTUwB7o9gYZuXQIMGpGSyDQxmYvZWssCESgNDLIjhgyxsH+7zypVCRkE02\n2pI5MghEuMlAKxytSXkcNgdhVCU/t0HmmIyef2Wrxhr4LIs6N6mrbUJxANTK\n+UMPGopA2JDPEXn0jFTUbKe1rdpv6BZH4B8wKhmlKNkIhHpWRNJDsvq6iWMX\nDnkjh37OTqxKVPq06oY4cq1vq85iY1gzoUeDwZvIMOYnqrtASjSj9E5RT2fN\nTAg/mxOQ6kbvPY7oW8uOi+rEtroudmO+Szo8m5QQqxPeYKshGpe/GEAr/rRA\n8tcCh30Hk+hSoPFhzHY/u8Yr85jTh3i/ujdF92BljSwQnqmOlJsINlbZWJRh\njdlSUqdH13HRMGI+Tp8OeHIoI0KqCt4jajIPwnnKER/lPj6mddhux+yJH+Tq\nRldVpjZsRQ1XjZt7E7XVeedHMd/zJ0yJlFcJOFvjr6NruaGhwOLhfJYf5xkW\nYcRBPN8vWFGnz9Vefa/P5iA95nsa7XyjwFJ7TUnWov12XNlw0h8NGdUNCeUB\n7EnYZUXKX7vRlnSxta9ToInJnn1dWVvbGfg1GJbsyS5VtbvAaYEmhiHAsmDB\n/Yo1grForWePGJSi6IgaMJiCVina1rYNhMToYiTfuDISvLI9QzA8qUe1aMEg\nZexe\r\n=k5AT\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","gitHead":"d9ef89750b7148a69c9b5b32edd812c56d15b515","scripts":{"test":"jest --ci","prepare":"tsc --outDir dist --declaration --declarationDir dist","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"5.6.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"_nodeVersion":"9.4.0","dependencies":{"debug":"^3.1.0","is-url":"^1.2.4","postcss":"^6.0.21","postcss-values-parser":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","husky":"^0.14.3","ts-jest":"^22.4.2","prettier":"^1.12.0","typescript":"^2.8.1","@types/jest":"^22.2.3","lint-staged":"^7.0.4","@types/debug":"^0.0.30","@types/is-url":"^1.2.28","node-source-walk":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_2.1.1_1526309458805_0.07764676958990302","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"detective-postcss","version":"2.1.2","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@2.1.2","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"4b0014e7a87dd650726b8bbe5366268789b1d8ef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-2.1.2.tgz","fileCount":11,"integrity":"sha512-Ryf9mdjP4Lgrlkfy1bHkeUrCyS94kUzzrAXkXL/2JmTaG1COU4lkmWm6YG4u1P0SKSP179RVLhbUoJ6J788rRQ==","signatures":[{"sig":"MEUCID2yjkHnGrGmxYhCKzUY1XJs6i5H7kIrfvE4/VmR0JzeAiEAtVtoHvfiCzK5+g9x6m7POZbfT4Pks9H+I2CTdg6DJNc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":146283,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+jy8CRA9TVsSAnZWagAAIzcP/jkkTycqaYZxeOjUuOqc\nCgx+yv1NoPyTcc6RjDJYaK5/TAC+oNu0bYvp1aSE167LZeeT75R+nVFiP6YL\nz1nppw+GVuUaHRwJ1HD/TDHukq1eW4UgDaXf049HjcXVETVzoAnOEtxhHZCT\nXwWctohmEJUm5k5SHljTwuPVlrTkjjpJli0hM3tTNdNrF3R7TUYK/gSiZJRH\nd36F1jDcAWS+rzhMkfdRq5JF/xxjxe2S7PEdbaqeV01GH6jTqFxf4wu3Hv5P\njYSF5EBMTSj/g5G3pdrS6L+iksnGbU5PCe9YAtrDet80wIrMXuUeFBzC2wfY\nFp5cgVZYuSiXzC+etzKtGoNd+lp75pLQug0IzBgNioVgN/9adaMRox3FsWD+\nIXqWB+q2WDKYigLCGsVgsFkxvIBzCjmpagOXqMq42sVzy7uRsEwQOUtj4dqb\nNy8DKeDI/IettvJS142DJgI9ghVg+GyIiRQxMuXzHf8zKqzDbCUbUn0Qzyvi\n7SwL3TEbjqohLIUPHV3elM8KdRqY+AQXJwLPZKMviLozjDjiELO3EQpNOHkp\nOblhgQI9RcbafX6b3SXyz0iNIFg3Y7tGrHoNN5AePc25vsepRAeIJ91h6DSq\njH55/S9nbMHb2CvjWthIkm2IQmT3diwG1nYJbF1MDUguwIIb/ZYdGIu7ZKe7\n5Tlp\r\n=/XSg\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","gitHead":"32296cd25ab1d0efd3b19a6fd6819d51cc3cf297","scripts":{"test":"jest --ci","prepare":"tsc --outDir dist --declaration --declarationDir dist","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"5.6.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"_nodeVersion":"9.4.0","dependencies":{"debug":"^3.1.0","is-url":"^1.2.4","postcss":"^6.0.21","postcss-values-parser":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","husky":"^0.14.3","ts-jest":"^22.4.2","prettier":"^1.12.0","typescript":"^2.8.1","@types/jest":"^22.2.3","lint-staged":"^7.0.4","@types/debug":"^0.0.30","@types/is-url":"^1.2.28","node-source-walk":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_2.1.2_1526348987427_0.8699455228656361","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"detective-postcss","version":"3.0.0","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@3.0.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"d7effb236fedbae823721eb9ebaefabefe13d02c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-3.0.0.tgz","fileCount":11,"integrity":"sha512-Dq4pza3UAT5gXHmNjinxhTydKGd9m3Tr6d0epP9VBipQfQl/ipe3ml7ybxpHk4TRwT2RPXKRsnCHhXfEdpksAQ==","signatures":[{"sig":"MEYCIQCOCw1yZ64TcNIx4FQXYxnWkNYd1H1kyQrs4J/ccKduKgIhAI9kFEofvHKmnmt+uRIhxHrKCUzxhSdN81pm5IzqdBOu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":142988,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbje2kCRA9TVsSAnZWagAAL6YQAJ6HB2kouskKmDdImlrY\nVRuNFI9YUhNN728WavBUA8XD/ZirQ86K2X3H8TqIwaAMmN4WljxGDzvmNf/P\n8vRRrntdzz3N/9mPSI4LcIhaghXjDPOV1cPvCMZHgmWmt2KbaFUZB8PzSORj\n52jsj/MaX3JnBWxGpHqt3a9Hiu7TbgC89xtmsdPQBrtG2o+Y/cdpdR9VAr4V\nunV+cSvAqSycUbxd4MtIiOPl6/w3y57ZdK49M96/Vi6VF4OPOQwKYzKeuozy\nXg3Hd7/3DpaasfrlpaM85kmK9FnehhNtnY7gr740tYOQSzrPPn2E8YhboFjg\n34jrXC7ADMAgfaIrNxuI2HR+TDRNZn2+NgqwW+ke7eZ/L//gFRm6a/n+HFgF\noYtNtN4uc6mRq5uULnqfW0rIbGS13WgcGNYw3ZkTCOjnUz/0cbFi4tX08zpL\nxt1ZMV9pNAPuQtKHyZZadeiXjzHABk5gN7LcJ70A9uGPzkfhpxHtnhdIE6l+\nOJdDGiKYGAmclCEFPI5nuetLjgAI23skeo93EWd+xW1V/2B+QenFspDr80nf\nWdfUuxwpMjKrIAbjhYxNrkbGJ3qaEV/Z0Lb7ebtJXXdIVNZxwN6CLZln0Qrm\nL1Tr+Q3q2BPc4hbawHeT/f++EX68tONF9CVu7JxWfeg5sprUgqYYiIGbbdap\n5qKS\r\n=XrO9\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":">=6.0.0"},"gitHead":"6a8e3b67764e6d457fc2e7eab7f74a1e917d9bd2","scripts":{"test":"jest --ci","prepare":"tsc --outDir dist --declaration --declarationDir dist","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"6.4.1","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"_nodeVersion":"10.9.0","dependencies":{"debug":"^3.1.0","is-url":"^1.2.4","postcss":"^7.0.2","postcss-values-parser":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.4.2","husky":"^0.14.3","ts-jest":"^23.1.2","prettier":"^1.14.0","typescript":"^3.0.1","@types/jest":"^23.3.1","lint-staged":"^7.2.0","@types/debug":"^0.0.30","@types/is-url":"^1.2.28"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_3.0.0_1536028068153_0.21239919123342266","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"detective-postcss","version":"3.0.1","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@3.0.1","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"511921951f66135e17d0ece2e7604c6e4966c9c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-3.0.1.tgz","fileCount":11,"integrity":"sha512-tfTS2GdpUal5NY0aCqI4dpEy8Xfr88AehYKB0iBIZvo8y2g3UsrcDnrp9PR2FbzoW7xD5Rip3NJW7eCSvtqdUw==","signatures":[{"sig":"MEUCIQCW1AkfswRgVgL7edT9mRw3ywCyomCCnCUaycxlBcSZqgIgdtAWc9MgWqnEBcKOZW/hVV6N5WYRZXriV0cXCHAdpxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgCuQCRA9TVsSAnZWagAAtgIP/iZsNaNwGZt7F5xuUXk/\n5DddApzQG010yNEsX1oNzYygzXacxaT8Wa6Kw+NkUw2+PhEWbXPg1vLX5PdE\nt28UOGYgpwyYcHEXgALy/JpDwZeFXrZXXdcUHHd8hMBEsKG84VEh5wLFHZFy\nRmOugDoQidZtlEA7OXR/krXQF3rVFRcdWGDzmBgcdgLhOEO0rASc83H9+ulP\nuoRZzjFFJ/bNLsweBzUbB0Pfx7VVbvZ65iAIgtMOa+G6Z7yUCJI7GAyvcc72\nbsDnooddFD9G3qi+BpBs/VO9DqJ22Y00dE7qgjK7BnxKe95HWhhjP1grAwrp\n3CTbeZZn9REfpX/vCclTp9LmD3vszKGK+1LXONV7ZpxUC9Ep4Vrj6s0vnMH2\n3phPAQpxvWdoo4NcbEk1uNnuxBEY6ACX7T62n4G2XXIri9HmWSnnvD2f+gyd\noVsglVAqd7QrRaX8Uyu5/Dm/mPuTjrXWkWqtXgQAiLV/JmCpJV2qmrPx1TOS\nir6oZRKBbZIRpHEyL8IgblvRUYUkewOsuEuT53/hc3KUWMucbtw5DQZGUFQx\nzXXIr2n9sHWtLsTZAtO/QP36l5/8XLIzjsp+TgdSIO6bv1V9pCAC9FcnrnH/\nRI6QErQHdSHcyN1/OnA8mljkdS7z6zBSwMb6hdhyC8SFcatDStLVmhF5+rEu\nHFsI\r\n=TU9b\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":">=6.0.0"},"gitHead":"88912e72c366fb6d5de64ae7e1afb13b42dcec8a","scripts":{"test":"jest --ci","prepare":"tsc --outDir dist --declaration --declarationDir dist","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"6.1.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"_nodeVersion":"10.14.1","dependencies":{"debug":"^4.1.1","is-url":"^1.2.4","postcss":"^7.0.2","postcss-values-parser":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.4.2","husky":"^0.14.3","ts-jest":"^23.1.2","prettier":"^1.14.0","typescript":"^3.0.1","@types/jest":"^23.3.1","lint-staged":"^7.2.0","@types/debug":"^0.0.30","@types/is-url":"^1.2.28"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_3.0.1_1551903631479_0.2316840706759129","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"detective-postcss","version":"4.0.0","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@4.0.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"dist":{"shasum":"24e69b465e5fefe7a6afd05f7e894e34595dbf51","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-4.0.0.tgz","fileCount":13,"integrity":"sha512-Fwc/g9VcrowODIAeKRWZfVA/EufxYL7XfuqJQFroBKGikKX83d2G7NFw6kDlSYGG3LNQIyVa+eWv1mqre+v4+A==","signatures":[{"sig":"MEUCIAC7OL3WGRZoy64wKlvEF0KIS+qbPJHfdrCpPfmGZ/mZAiEAjKPbbDeoQXkAt+NVXo2BuutU9dH56hFmvwc3Mg4Gpkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15741,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxDAWCRA9TVsSAnZWagAAXR4P/0RodauFd0jlM9K8z359\nyVTiU2bBrSaRuFLcLGJLosbIGVG//03kGGELCdzM5qzfp3fihqvbG0/LGgyv\np5qZE+57G2BWHxPKmQ7WsEzrqdQ53K0jqG3VwdmSrXxHt2rku29ZGv7dtRld\nWATIH+6wQPt9coRr76lHNpQQaNVoV7ORIFRIV5I7enSKeWu61qTkyB4aJy1W\npXKz2AUbSRi2trMR3lj6F2dkq2G4TQQThNUEXqiCCYCeml49AO//mvj8OOJ1\nTkV98N40qG8WSGz2jK921QMDg7MNcm0ILzvxXbF36N7tAawAp/9PWOPAO8P/\n8HPEsCW+hyPEJ1sAWddnZx9NU8JYjHvr5SruUYQ07Evw1P4NNFaP3wU3jMrd\npAGW2/9DMZ8eki9omPipguJ2Tu6RO5v4TNYsixAIb5RIjyZoZEAh5G9ACYOy\n/V1suF6wMD2hI2QEXp+8d/2GfvYLT8Nu6rB0bVM50nE/JP+BqMVvTwcFRxq2\nPXxG0VvT+WDXWhRhOhXrpuHuZuoPA3AHBtZITwfjOXMjrjWLLHhv3yg9vjYC\nBWWqxlrNIfvWLvCjMvTY4P0hbeuOzrv+X5UD5QCYlTlJlihqJkl0LWF4Ojr0\n83IdjOshNZJFaz1dqvPGdH7q9jNBP5oZ1zCsADiT9qzKgSicP0HCkR7Xyuy5\nKjlk\r\n=RGcz\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"^10 || ^12 || >=14"},"scripts":{"test":"jest --ci","prepare":"tsc --outDir dist --declaration --declarationDir dist","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"licenseText":"MIT License\n\nCopyright (c) 2018 Joscha Feth\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","lint-staged":{"*.{ts,json,md}":["prettier --write --tab-width 4 --single-quote --trailing-comma es5 \"*.ts\"","git add"]},"dependencies":{"debug":"^4.1.1","is-url":"^1.2.4","postcss":"^8.1.7","postcss-values-parser":"^2.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","husky":"^0.14.3","ts-jest":"^26.4.4","prettier":"^1.14.0","typescript":"^4.0.5","@types/jest":"^26.0.15","lint-staged":"^7.2.0","@types/debug":"^0.0.30","@types/is-url":"^1.2.28"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_4.0.0_1606692886212_0.3387855213921367","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"detective-postcss","version":"5.0.0","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@5.0.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"7d39bde17a280e26d0b43130fd735a4a75786fb0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-5.0.0.tgz","fileCount":5,"integrity":"sha512-IBmim4GTEmZJDBOAoNFBskzNryTmYpBq+CQGghKnSGkoGWascE8iEo98yA+ZM4N5slwGjCr/NxCm+Kzg+q3tZg==","signatures":[{"sig":"MEUCIBTrBhgY67GbxK9kqTDqhjABo8B7XKExBfBz50qGe6biAiEAmy3xDJ3H/rwGv8s/1eW6wW8bBHEMhy9q3d2RrSjghVg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8298,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgircpCRA9TVsSAnZWagAALegP/j98gZsMfX7WYgywLs79\n0P1mumGKM7sNOF/Gq80XCIol4cqjuFhfIo93aXY+7l1obu+70Pgck5VJv24A\n5Gon9clWlDA7BNtwCMhLelkZGcJJ650WjbR1MzXDfMTFGje2WIsy0nEtBfvL\nJkYCtWWqU508ZBVVXxZWD79w5EoNGmdzMOnQht2p6CLH5bJfZglDtZob1yFX\n+ORgZrtvRXF0ujxatWPRNSuA7M8EyonjJfLQoHDuc26YP2attyMp1yQC0zmr\nHEMPEC1YzHwkDwPjaiSOdIdvoB1NnbAEYkyMIrfTZdLMPLXgHeRI68RqMoSu\nqfZlQ+GTtHS1EdpjSNtOo4kPwT75X21keTH+wewOdmdhL3fd/QPbRscgBi4b\n6LIMH2EHZaK/FMtN+PWEuizQhM8YTyx4ffW4xOlAMPByBDzcQMMndBUq5022\nWz/j6jVFo4oMC+RZdvwAmIxRaInMUf9DbfhSnD7cp4PC8vPVd45OaxzTHXZB\nLo9XKVen3rVv/Co9k1ByrMRPpuChxyfAs0sFqhJq5bT48P5nTx2cP3cmqc2Z\nfp9H+flMozReN7aE/bYesOjz9KKIVlYSOHsCdXQJtBL3bsIKGvjbT+6AYdtW\nfcAy/5YDW2fiziejorYdx/ZANBkxrlDfXameyvxX8JridIvZL5zAza1kvVbI\nScGI\r\n=c9zr\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"^10 || ^12 || >=14"},"gitHead":"72cfb10bee49e9af4d3faa71d37058b4baa5271b","scripts":{"test":"jest --ci","prepack":"tsc --outDir dist --declaration --declarationDir dist","prepare":"rimraf ./dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"6.14.12","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md,yml}":["prettier --write","git add"]},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","is-url":"^1.2.4","postcss":"^8.2.13","postcss-values-parser":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","husky":"^6.0.0","rimraf":"^3.0.2","ts-jest":"^26.5.5","prettier":"^2.2.1","typescript":"^4.2.4","@types/jest":"^26.0.23","lint-staged":"^10.5.4","@types/debug":"^4.1.5","@types/is-url":"^1.2.28"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_5.0.0_1619703592752_0.013172668599871207","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"detective-postcss","version":"5.1.0","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@5.1.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"a7ceb1a7ba3c43940a9eb0f6a2d2435dcbabf453","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-5.1.0.tgz","fileCount":3,"integrity":"sha512-bnJTV/lvnP0vB9bbe2EsudmEbSUtVkFhWi3ChAzeFKquuTDqiu9G9Fbdltta9kiMLqzA+iQbptBCt8VO/l15JA==","signatures":[{"sig":"MEUCIQDpY6N2tT7sQ+7DiBec3d3UUUzPyddwBB+rv4b/Hju11QIgcQUt37JOVd0uxvSqOyH3/mz4vbJ/i1nZBUBZ+HNB28Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4855,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLtOtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpKdw//ZTW0zVK3BIicbXu1clPGyqBO7KqT622IQwnuzjwDTpXViqLg\r\n2Xurk8tL692NgdNFT64oPL/WJmE56WAukfdy0mPI2inW+cknqOM0SXdWRWvH\r\nTRdXzt0wNngYVZ+528d5Ds2b60/krnHMup1PnSOUjP4i8KmaJV8R3Zi4RNNq\r\n/r3OnNp/01TZqtAv9nfEvUAG8yzRKStxss63vz/2YUmBwFGPLqf8IheqPruU\r\nlBsWS815ARRI2v4QglV1QdnCwSc5abx8hXFcZxhyLKD+SBIeKyyBbHWWd6el\r\nGSe6ySiHaahB1X5QtMGlaRifAAkMqMYUgACxP/fZlhbQ3prrRTph3iea6hyo\r\nK2Gx6XYwnU+w8xjqOsdbeXj+qPVR1x3BQ1UJmeHOh6NekyTrYE5BpXG5imKF\r\npQ5CXaeVvOWi8ZSv937U5mewLjhJejALHdYWCRNEfrdTG06obg0SR1CA+sCE\r\nBpfuYqjV5wuTQjL26kqv7SbAuIxDx4gqU3UxbrAN1feEoY3sWXpFmhC/umJr\r\nYcrzA1DPqfEH6yoKLQYHDP9UFsj3lQi+4NcXvN6YGF0hkx3+SIJSEpNzTtqi\r\n9OFnCcPqHjXIE0lN7G28wXG8hbT+lF8ISUnyBNumHPVMaAtY2ptalAWZgxR6\r\n9IHPnxAWPyCB1TWUE21gOf7r2fjw5jfu8MM=\r\n=xd8J\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"^10 || ^12 || >=14"},"gitHead":"44f74cad459c179dae88b83a19480d55fd654224","scripts":{"test":"jest --ci","prepack":"tsc --outDir dist --declaration --declarationDir dist","prepare":"rimraf ./dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"8.3.1","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md,yml}":["prettier --write","git add"]},"_nodeVersion":"16.14.0","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.6","postcss-values-parser":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","husky":"^6.0.0","rimraf":"^3.0.2","ts-jest":"^26.5.6","prettier":"^2.5.1","typescript":"^4.5.5","@types/jest":"^26.0.24","lint-staged":"^10.5.4","@types/is-url":"^1.2.30"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_5.1.0_1647236013542_0.002179539131479169","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"detective-postcss","version":"5.1.1","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@5.1.1","maintainers":[{"name":"anonymous","email":"joscha@feth.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"ec23ac3818f8be95ac3a38a8b9f3b6d43103ef87","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-5.1.1.tgz","fileCount":5,"integrity":"sha512-YJMsvA0Y6/ST9abMNcQytl9iFQ2bfu4I7B74IUiAvyThfaI9Y666yipL+SrqfReoIekeIEwmGH72oeqX63mwUw==","signatures":[{"sig":"MEYCIQC5hpIEjGmVCz8EA6HABTkI3eXimWXPFeFC9w3M0C0PPAIhAIKGYkfSvgkMwvV4vZcOWDwxed3JPXTZOKsyk1WQdfIl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8308,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiM9WuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpfxg/5ALJcPMozk2NG+LuLHn4jM+CwifuIbBpEothWLfQWLkWHt4gK\r\n9yM9qDRtJooLw5x4cTE7rbLxSILvgVr4Rd8wI46ePx6oRNjKoLhg3+HDKHuj\r\nj4juFT+b4YJ93hvTaU1/gE4AVoNmjAZ0Ca2XVlsOGVIRFeWR8LOrVRtLfX8O\r\n+PeeU/qv4GXKNDJKXRjxyQ7jNCiM9bHNDkBaiGJE21P7BAVdrWe5rlKzhbnQ\r\n969+jPe9EhF2Y0PVJy+t8OXrB1xTIZIiNYq1KKiDbnM6DN+ZpGptRyYBmgQr\r\nWQ0+fNdTfFFx64bwupc6dK0SlKXpkVnGYTV/iE5o45GwVEWo7KsI53wA+onX\r\nuGIzq6nrE/knj9KZrJHbdcpkB3X6z3rnzWH0tqkKSkDX4Ia/p2AozQvLOzs0\r\nbMaxqXk7AFsEyg+fQuz97WKwEKbJQ6eLudeF5sa95bj4kK9KcuSMNhESgssM\r\nFxl1mj9e8DjMV5byvYAGwUTf2SM7+ddF6SGKcNsyqZs6uGZ5ZLg6Yltdvojd\r\njzAgmIhNTIBp2Y/t6kgDgtJQbs2buxWLb+mrQD9ZgQrwfa+ODPasi1u3B/f1\r\n1NrHfkLdinKWnCO8RJqwxaRne+FpgAqI7MByIJ9943QzRhi6qg7dggeiNsmV\r\nB4+bqMK6Wt+wckeoxrMXqbTr7CFsimc1HZg=\r\n=TsO2\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"12.x || 14.x || 16.x"},"gitHead":"1fe1c7e8be4da5570e56b501bfa5ce842d25d739","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"8.3.1","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md,yml}":["prettier --write","git add"]},"_nodeVersion":"16.14.0","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.6","postcss-values-parser":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","husky":"^6.0.0","rimraf":"^3.0.2","ts-jest":"^26.5.6","prettier":"^2.5.1","typescript":"^4.5.5","@types/jest":"^26.0.24","lint-staged":"^10.5.4","@types/is-url":"^1.2.30"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_5.1.1_1647564206102_0.8948393162024955","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"detective-postcss","version":"6.0.1","keywords":[],"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"MIT","_id":"detective-postcss@6.0.1","maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-postcss#readme","bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"dist":{"shasum":"5c803d29e73eb0c401b527ee49ed709a004c7d07","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-6.0.1.tgz","fileCount":6,"integrity":"sha512-KJu6te+ah3E07uX0ihVUd7buT2H3nDg8ycprsv1MpN++a0057jiMkmDSqkgbztqnUbhKsSkeWwJ6L2GmnbIQsg==","signatures":[{"sig":"MEUCIHYJllfpsDXvLG+QpF4H0dhxvwKVi4yr7t0sFLKXj3wMAiEArwClXEO0PIvn84W3NaA/EMqbkM9/Z2Gd0dCeBRrBwdQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8834,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNAVWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoaig//QVAceDLYPen1+bMY/VBD5yccXoS56FS/cIOBJrL0xXchAlGc\r\nxt0JW1G39AIiw9H2vArSyV7W+5fyrOo64Cd56igDUB8CodOXU/8jJ1TR9i1t\r\nd2wrul8C+PZ/UdGml0NVw7oT7eGEMrso5qv42ROPs3jNSsXYxU3NqB7qSJD+\r\nsS7IVS8rST/IDDeJkfhZpyBzp2mfDOSSc2B1urpUUj/eVX2FjW0XA0QRt7iL\r\n8/9FQ4kOOlq1LxIlIaDYwmzEGHaQqjGya+YNQ5+evcnMs3A+wz5YeR2olxcT\r\nkEaopDUp/YG96XCI5gqVMQPgwlwTFliJjAm7XwSnFmcUrKeQWLsL2HrTwrd1\r\nQpYN+rBkGv5gsdy+kSF7Ig4wN58xPDCLq2LMKUkYOV+B6gfbbHLrPjApddip\r\nZ1pavZ0G3V03g3Toajv9ojxiULscJ5xgHPtOPYTsVhL5tYUM2E5Vvo+8QEBt\r\nCgOGksiYbcLD8pwYLFpLzlByL9RgXzqt7/cYn+/as2tAwsm3QM1eFuIEZPss\r\nWPofcAln8h2jv1nAJ3McTXpJ2XFVdJqFkMmSiHLVlH1kA8ZVjG0KCcS47pXe\r\nsg3ezTL+7Qvl7NKPHfQlAAPOzHN3tL10HdjH29m1zerTeKbHz0p8Sbl7niKO\r\nunNm7u6u5QYCmGuBKElRJfxkey8yfH4+RxQ=\r\n=QAOM\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"12.x || 14.x || 16.x"},"gitHead":"6626a7e8c473642dbf81e286e95ee8c2154a4732","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/dependents/node-detective-postcss.git","type":"git"},"_npmVersion":"8.3.1","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md,yml}":["prettier --write","git add"]},"_nodeVersion":"16.14.0","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.6","postcss-values-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.5.1","rimraf":"^3.0.2","ts-jest":"^27.1.3","prettier":"^2.5.1","typescript":"^4.5.5","@types/jest":"^27.4.1","lint-staged":"^12.3.5","@types/is-url":"^1.2.30"},"runkitExampleFilename":"runkitExample.js","_npmOperationalInternal":{"tmp":"tmp/detective-postcss_6.0.1_1647576406688_0.16592380199544077","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"detective-postcss","version":"6.1.0","keywords":[],"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"MIT","_id":"detective-postcss@6.1.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-postcss#readme","bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"dist":{"shasum":"01ca6f83dbc3158540fb0e6a6c631f3998946e54","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-6.1.0.tgz","fileCount":6,"integrity":"sha512-ZFZnEmUrL2XHAC0j/4D1fdwZbo/anAcK84soJh7qc7xfx2Kc8gFO5Bk5I9jU7NLC/OAF1Yho1GLxEDnmQnRH2A==","signatures":[{"sig":"MEUCIQDOGODTASbHdUy4z52HxlPI7SQzQHhODqKOUeBiKOlE8wIgO3dJC9rJZeCpaEyQ7uAHmXKoQAIXP1rTW3NyMU54uYQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiiMtAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4ZA/+Oq63eo1GLUtIPo/eGasWO6raAzMNCEe9N4IfVwyiJm2788jn\r\nnWMAYeD+Kp3z1yLeF/vbh8nBY04/9KoQXgDvfEZXKDhSIYi14pOsGoxNbmep\r\n7jZ0AcFM/hbWv30uDCWuhACaa/HuRR5+B8awK2IvH4rzVBbOX6f6qXN3sdkq\r\n4vWXZau3FsS4qqrN3Lagm5N4JdKgBtXu5TILzsdu8RZ7ouOrWczR2Wu/c/EY\r\n9Bqh6YRNUxTJEb6+dg5Ot+VcN1M4WwS8GUwK9Dqe3cY4Bb37hAyE2rP4e+up\r\nx/G0CdgX/gYUAvS1frBT6nDIqWnq+xH3qnfFAFmHyY09oCpdS1By6S5P5+qp\r\nq4PNgPj3ySOAkIcJYoIxpemCk8khyAW/P1x4FXoWeb9E21Q2TEGYnMRws8+6\r\nto2jdOb3NPIPqR0wHe7jylAiIEM8om94K6ELAFr9chkGOWBwEupl08PqLqs0\r\n1TsCLIThUKj2PDqZTcNlGiXz4zShWCK6IDd+GQ9GdvnwHlKmlqsrlEKn2b3X\r\njWCUmXMW9qWXzBWY3+ZE5//amzRfR9LNqu1StD+qNw3/d3PdkOI5NLKyP94x\r\nlS3Th/LnJOXkrmOtLEKfcyXS1NfEmNXppkm95/Ie2pxbt8sur0FJGcmjKDcq\r\nSpjA3Uxl4EhKBpjaWEDVAOiU9dfPnjUCTKw=\r\n=9qIg\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"^12.0.0 || ^14.0.0 || >=16.0.0"},"gitHead":"78dc8ccc4174898f71e778a2d296d8c1ba416993","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/dependents/node-detective-postcss.git","type":"git"},"_npmVersion":"8.5.5","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md,yml}":["prettier --write","git add"]},"_nodeVersion":"16.15.0","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.12","postcss-values-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.5.1","rimraf":"^3.0.2","ts-jest":"^27.1.4","prettier":"^2.6.1","typescript":"^4.6.3","@types/jest":"^27.4.1","lint-staged":"^12.3.7","@types/is-url":"^1.2.30"},"runkitExampleFilename":"runkitExample.js","_npmOperationalInternal":{"tmp":"tmp/detective-postcss_6.1.0_1653132096740_0.023228239654422556","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"detective-postcss","version":"5.1.3","author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"Apache-2.0","_id":"detective-postcss@5.1.3","maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/joscha/node-detective-postcss#readme","bugs":{"url":"https://github.com/joscha/node-detective-postcss/issues"},"dist":{"shasum":"773314cd017621b7d382be81331eb0c7abbe8cc3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-5.1.3.tgz","fileCount":5,"integrity":"sha512-Wo7PUpF6wqeT1aRgajdyIdDRjFFJVxlXPRAlT1aankH/RVOgrJuEZFZ4ABxYXdzaRPO5Lkg8rHxsxpLnxdJIYA==","signatures":[{"sig":"MEUCIEBscRTPF7YXcawAZr3WAtGv1qLS2tS3EN8nvZNPXlWGAiEAqvKbpgsiaU/bLqAotXxeHA8dZtkz2itg6v9c1diHTvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjR/LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNAA//VFMsbytWNnf8sSDHqeRPghpBBcl5fHDzJOGSIQEY7snhI/Q6\r\n+Ixnbqevw93krVt13LAFd0aRSG15xxTBdDWSZ2uRHSi15aNvcVef3+GW09KG\r\nxPpQlUCKbjN4G3JjXfpIWGL8XQfAfyObHswrjLGDJe//E53lFDY64sx0O1I3\r\nSRVTGJnOQ56HGdyWQ1vtU0PqZ6bfX8bK3eX2ZXlsOCuS/W+dqPAVE7BQEdvl\r\nL9qFa66Rw2ekx9EpvkV6qJWALNqNIK8ExkMuFHxLsryMS0NczzbBymhJ6HyV\r\nU32d0Xv0sh4bfFh8dJo+mvWDGPeipfRv2HcgiG69SR/g1Vj/nPJMy16be4XZ\r\n0VKH14g42mlCFpMAL8WeE1PHB0eiWupXdj51OZKW9KMK9o62Zd9qW5tdohnz\r\nPSe9zrmmgCmAaVS/O1HOzEpWomWp9iNCsaqw5v0/3b3V0Sgc5HrBCRjSGVVs\r\nsqLr5FUTKNxy2ExCjI1KIOhnmCvHmQP6qXYWpqt+9/LkUgFUtDaxdbwfIKQk\r\naWKepLsfjkASByPzW5KgDDtrO83gn58CLPFg8zVMBU/wrj00qTo1xRpQhvc6\r\n4wnfHrHZCHLs22QbUYwxNjPlOPiRFl8fRvpIW0wcK+z7hc2UZpxJsGDjJvW1\r\n2JU9Xx0TYsa/cj/4RD1IQEoi31qLURFmHtI=\r\n=Cfah\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"^10 || ^12 || >=14"},"gitHead":"69cb0716575408e2a2ea90567491aa52601c3b1b","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git://github.com/joscha/node-detective-postcss.git","type":"git"},"_npmVersion":"8.19.2","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md,yml}":["prettier --write","git add"]},"_nodeVersion":"16.18.1","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.6","postcss-values-parser":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","husky":"^6.0.0","rimraf":"^3.0.2","ts-jest":"^26.5.6","prettier":"^2.5.1","typescript":"^4.5.5","@types/jest":"^26.0.24","lint-staged":"^10.5.4","@types/is-url":"^1.2.30"},"_npmOperationalInternal":{"tmp":"tmp/detective-postcss_5.1.3_1670193099403_0.84388852129395","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"detective-postcss","version":"6.1.1","keywords":[],"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"MIT","_id":"detective-postcss@6.1.1","maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-postcss#readme","bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"dist":{"shasum":"1845904ce55e1face3a814c2f34a93c7ef341d3d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-6.1.1.tgz","fileCount":6,"integrity":"sha512-mX62A6chiafyFW9AwGF6B/uVU+F3hGMZwXDqCHe+NjmU/M5jlDBazdXb1sMoDE+InTDsoPaX3bUUOH33Yxn5Sw==","signatures":[{"sig":"MEUCIQCSTWSzQ+bBk1CbdtLWRdJ9qKXOwHoq/rdYTexDS8cZrAIgR7FELAMilbfhwAFsS6yyWowYql8r/0dM64TAe0oHq04=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFe4bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr9RA/+NeGmHozKoNLBPusXEc2VlHGrPWdWqdlU+qVuet1N0M7bYQUE\r\nzLgUMUXhKDx8AJW7qF/7cz0SK7Es/zf/1SLetjcmEUVTm8rdmjhxLC5mDTBn\r\nJ2q/ZtYU0fiwjFtBc87vdomnNbr+FIH1pRZ9LKX9aB7TcgrX155jxgxbR0BX\r\n2S83/pSvLM9ltjperxo5/vsqyhPg120we9rlQ3vHo7bbgJ+0gOdtXK750n81\r\ncL/YOWTIfSgbjoWJCDNk2257e4goCkI1qNedvPLgKiwaJgnKgc0paxYkwekg\r\nnoaCu2d52KQmCATay6UnVgfmNzb+G3s+SBo9QneqMLTI5D+imuV2WIaM2oa4\r\n/g0QK8piOKHjgr94icYV1itJbs+Q/71HHToZLBVR7nNs0C/dhU0guw1JhLYH\r\n4IPxC5F+xn5l8ayUGMVm2IsBcfEj13nb8W0sX1KNV5VG/d4dQEeXzQMaQMzr\r\n9VAgBL5szpBlgXXa4uSV8a/LAcKdutoF3iRXWW0MBZIgST4hDUhbu8u7TQ9C\r\n236IEdwGiXe5oaGW4rGx/2XK8jlevPbOVF+0Zm/XmvBp8HyI7hZ9MxnLodH0\r\nA9Z9SjPo/XO79YtniNng6sV1MXDIiEizbxdKwqYIDBCeDzhPe9x6XQbY9Azc\r\nWA4i2ogEhWEBJWLSA4aqiH5/lmuoVSv9lOk=\r\n=a4/w\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"testEnvironment":"node","moduleFileExtensions":["ts","tsx","js","jsx","json","node"]},"main":"dist/index.js","engines":{"node":"^12.0.0 || ^14.0.0 || >=16.0.0"},"gitHead":"55b956ec9ecf3a44131cbd6c0e49301eded41dd3","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-postcss.git","type":"git"},"_npmVersion":"9.5.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"lint-staged":{"*.{ts,json,md,yml}":["prettier --write","git add"]},"_nodeVersion":"18.15.0","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.21","postcss-values-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.5.1","rimraf":"^3.0.2","ts-jest":"^27.1.5","prettier":"^2.8.4","typescript":"^4.9.5","@types/jest":"^27.5.2","lint-staged":"^13.2.0","@types/is-url":"^1.2.30"},"runkitExampleFilename":"runkitExample.js","_npmOperationalInternal":{"tmp":"tmp/detective-postcss_6.1.1_1679158810884_0.7447193001720787","host":"s3://npm-registry-packages"}},"6.1.2":{"name":"detective-postcss","version":"6.1.2","keywords":[],"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"MIT","_id":"detective-postcss@6.1.2","maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-postcss#readme","bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"dist":{"shasum":"dbce5cadc4ff318808ae79abe7744d7fc5187722","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-6.1.2.tgz","fileCount":6,"integrity":"sha512-HC8SGYcxBwkcr875wObS1PnHtCqHLEnzZBivKF3o3k3YLJ+4gR5Dq8GC7o/CSpxzSw3ZoXL4JQE6WhMJtnYm/Q==","signatures":[{"sig":"MEQCIF6rAvFJraKdvSBSbdnVX+sPWpEUM0o6dp+Uwoe/ART9AiA3L4UZbEYknAZv5xYGe/S9AVk8Y2ML1dZVd2gL5sIrSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8686,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPjEeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqBOw//cXZuG/uJv9D3OBJZNME7JWIFwCBTy6ilIhwW9y4gGeiitUlT\r\nue3f6Mj2zQeUfgUOiBsjuweN6D4JLfg4OJZOAJFxfeCt2lkYHZoOvDLMmduq\r\nL+tIy+tUorEDlzntqntf+oR7EvAHim1vcdGZj/K14yxOTbG8M53T1FN5qT0V\r\nuEE0XoY+U9bVBXx1ag+cufgNUA4xvrPR3/IQgmo/98kJ7EmrXM7wEhFsKyXX\r\nOpsDPjuKQPFPpkVMjavLYBn84/ykq8VYwMV0EssuOwh3c+/ZvsnhQnWL1LWE\r\n5/IRj2Si+CR/uPxVKhwGfTYBCgtHci3d97PiVa1PEPyeW/WZnJm/9/DTHJ3P\r\nvCxTn1akTY8eARmCyRS3wadMUAabuVTrll2YSS5/lNTgmDECBFLNtJjz/hB5\r\n9MFsXR0AjA2rSiRn6vEAGj9DcB+G0lsxmIe1gXJozEW720Ui08B7qoKAb0gS\r\nlUOHMzAZc4ozp2+LsrVVoLWOrBESbCH65z74cyrlslWzGc2XBMDD9rZrdXYW\r\nF0vyhypLAIpX89c59c4AozVSFKUVIKhLta7UZQRQIaInfTJfqRzBIAD0zNYG\r\nMHXSfZ7mD6tUM9TDHFg768rzuPQII/6aSRkw7a4JSfzzhfL+k1FXvMq4g7Gh\r\nm0Vfe7oUYSNx/LLH65m9mi3Jd499CPuajO8=\r\n=PWdi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":"^12.0.0 || ^14.0.0 || >=16.0.0"},"gitHead":"ef05add88a7c2cdb716d10f9171681f752197814","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"joscha@feth.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-postcss.git","type":"git"},"_npmVersion":"9.5.0","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"_nodeVersion":"18.15.0","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.22","postcss-values-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^28.1.3","rimraf":"^3.0.2","ts-jest":"^28.0.8","prettier":"^2.8.7","typescript":"^5.0.4","@types/jest":"^28.1.8","lint-staged":"^13.2.1","@types/is-url":"^1.2.30"},"runkitExampleFilename":"runkitExample.js","_npmOperationalInternal":{"tmp":"tmp/detective-postcss_6.1.2_1681797406038_0.8580208050772065","host":"s3://npm-registry-packages"}},"6.1.3":{"name":"detective-postcss","version":"6.1.3","keywords":[],"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"MIT","_id":"detective-postcss@6.1.3","maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-postcss#readme","bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"dist":{"shasum":"51a2d4419327ad85d0af071c7054c79fafca7e73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-6.1.3.tgz","fileCount":6,"integrity":"sha512-7BRVvE5pPEvk2ukUWNQ+H2XOq43xENWbH0LcdCE14mwgTBEAMoAx+Fc1rdp76SmyZ4Sp48HlV7VedUnP6GA1Tw==","signatures":[{"sig":"MEUCIFy6uSJZ1byCqiOQSL1KmBcu3UrM3gL6X2HdBGOVHIguAiEA0bfHvhQA1iATnkydyBsIpje3HypBQjAgKu0D3vPH6No=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8685,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkSMSjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBCA/7Bsdl5a1uORyNRouR0/w63NJSW5hcLDNASwNWqWcxKDVs34Yc\r\n9Ur0k2eOI4gazoH31tpZclL99A6OEIobTQUPljTz5FoTbniJubHlO33WunUD\r\nqynFE1uilkgadYdvFQ/cWH46r15uv+hKmaz/mU0gjhF7WPSVxJ8hScVWM/yQ\r\nQqJPnkrbK3wepcVnZYiv3BtqoMyT2xrXwet2NIkQqdqfw7OzRXu4xV5a1FLM\r\naPP7YtPfilCPBdRhbIwQcu7Igj70akMmLBbCyxurTrE+KnZttlkTKMvf9RV7\r\n3cKDG5OyFnN6ak3zzUB8Fl++zNqalGfvCwtkRQ5eqyt4uP8bU1CB+mavP6Mj\r\n6rrUtzIYTgtz6UOqvMntCWUSvp1DSv4uIvCUjKp3lZEG6CYGlnhulan/JDrC\r\nIbHOjm2/zH/Fq91o/B6MbYPIziiC1r9Q1nIeoDQxevDVXi0MZ207nk+0Tq9V\r\nZ82yAaO6SBcrYRdjt6vDVUxlhdkka6G5UdiibYp3gHWCyA+KUyS5rYxkkWln\r\nstw+u4Pm8epDKInsphLourCLuqB/87j9LpUSKWuMN0rUaPacrD8+dfytTkjA\r\n3Xg+Wf6WJA6V03XNHpVursO2MLZZNe8UZBFaG7JC8h22oQdX6XzVVzg35x05\r\n2a+iQ3qa2yJGS+E1LN0L0IF0wb2q86JSLOY=\r\n=b5+J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":"^12.0.0 || ^14.0.0 || >=16.0.0"},"gitHead":"fe15617110b9e18526ed582b54634cf73f69fb13","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-postcss.git","type":"git"},"_npmVersion":"9.5.1","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"_nodeVersion":"18.16.0","dependencies":{"is-url":"^1.2.4","postcss":"^8.4.23","postcss-values-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^28.1.3","rimraf":"^3.0.2","ts-jest":"^28.0.8","prettier":"^2.8.8","typescript":"^5.0.4","@types/jest":"^28.1.8","lint-staged":"^13.2.1","@types/is-url":"^1.2.30"},"runkitExampleFilename":"runkitExample.js","_npmOperationalInternal":{"tmp":"tmp/detective-postcss_6.1.3_1682490531528_0.19777316394265654","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"detective-postcss","version":"7.0.0","keywords":[],"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"MIT","_id":"detective-postcss@7.0.0","maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"homepage":"https://github.com/dependents/node-detective-postcss#readme","bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"dist":{"shasum":"e9cff50836d67339a0bf4378f22dba4ed5809c01","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-7.0.0.tgz","fileCount":6,"integrity":"sha512-pSXA6dyqmBPBuERpoOKKTUUjQCZwZPLRbd1VdsTbt6W+m/+6ROl4BbE87yQBUtLoK7yX8pvXHdKyM/xNIW9F7A==","signatures":[{"sig":"MEQCIB7FAN3SPS+O4HU7B30BB+lminUu+p5NqUpXM+z/1XYtAiBnCXbk7jD69Aomdz0pEcjCUjgfUYxgh8iKy2VSJx5mmg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8559},"main":"dist/index.js","engines":{"node":"^14.0.0 || >=16.0.0"},"gitHead":"ea2193bddfcd86835d41868f854ae7aa1e13002f","scripts":{"test":"jest --ci","prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","prettier":"prettier --write .","precommit":"lint-staged","test:watch":"jest --watch --notify"},"typings":"dist/index.d.ts","_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"repository":{"url":"git+https://github.com/dependents/node-detective-postcss.git","type":"git"},"_npmVersion":"10.2.4","description":"Detective to find dependents of CSS (PostCSS dialect)","directories":{},"_nodeVersion":"20.11.1","dependencies":{"is-url":"^1.2.4","postcss-values-parser":"^6.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.7.0","rimraf":"^3.0.2","postcss":"^8.4.38","ts-jest":"^29.1.2","prettier":"^3.2.5","typescript":"^5.4.4","@types/jest":"^29.5.12","lint-staged":"^15.2.2","@types/is-url":"^1.2.32"},"peerDependencies":{"postcss":"^8.4.38"},"runkitExampleFilename":"runkitExample.js","_npmOperationalInternal":{"tmp":"tmp/detective-postcss_7.0.0_1712553469381_0.6681455238017346","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"detective-postcss","version":"7.0.1","description":"Detective to find dependents of CSS (PostCSS dialect)","main":"dist/index.js","typings":"dist/index.d.ts","repository":{"type":"git","url":"git+https://github.com/dependents/node-detective-postcss.git"},"bugs":{"url":"https://github.com/dependents/node-detective-postcss/issues"},"homepage":"https://github.com/dependents/node-detective-postcss#readme","keywords":[],"author":{"name":"Joscha Feth","email":"joscha@feth.com"},"license":"MIT","engines":{"node":"^14.0.0 || >=16.0.0"},"peerDependencies":{"postcss":"^8.4.47"},"dependencies":{"is-url":"^1.2.4","postcss-values-parser":"^6.0.2"},"devDependencies":{"@types/is-url":"^1.2.32","@types/jest":"^29.5.14","jest":"^29.7.0","lint-staged":"^15.4.3","postcss":"^8.5.1","prettier":"^3.4.2","rimraf":"^6.0.1","ts-jest":"^29.2.5","typescript":"^5.7.3"},"scripts":{"prepack":"rimraf ./dist && tsc --outDir dist --declaration --declarationDir dist","pretest":"prettier --check .","test":"jest --ci","test:watch":"jest --watch --notify","precommit":"lint-staged","prettier":"prettier --write ."},"runkitExampleFilename":"runkitExample.js","_id":"detective-postcss@7.0.1","gitHead":"f9dade6fecbc3a3c6f55f24521b47f046e79d312","_nodeVersion":"20.18.2","_npmVersion":"10.8.2","dist":{"integrity":"sha512-bEOVpHU9picRZux5XnwGsmCN4+8oZo7vSW0O0/Enq/TO5R2pIAP2279NsszpJR7ocnQt4WXU0+nnh/0JuK4KHQ==","shasum":"f5822d8988339fb56851fcdb079d51fbcff114db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/detective-postcss/-/detective-postcss-7.0.1.tgz","fileCount":6,"unpackedSize":8558,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCAjPLEuBT47fW1EHM3qV/3jhpw1KNR4V3GmZOspjCoIAIhAPKjxRLycogCmHAJDS50EcUSo+viNevho8ER+ZxU4fj8"}]},"_npmUser":{"name":"anonymous","email":"xhmikosr@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"joscha@feth.com"},{"name":"anonymous","email":"xhmikosr@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/detective-postcss_7.0.1_1738415952498_0.9982219393899538"},"_hasShrinkwrap":false}},"name":"detective-postcss","time":{"created":"2018-04-12T15:16:58.612Z","modified":"2025-02-01T13:19:12.816Z","1.0.0":"2018-04-12T15:16:58.715Z","2.0.0":"2018-04-12T15:32:27.540Z","2.1.0":"2018-05-14T14:28:03.630Z","2.1.1":"2018-05-14T14:50:58.895Z","2.1.2":"2018-05-15T01:49:47.569Z","3.0.0":"2018-09-04T02:27:48.284Z","3.0.1":"2019-03-06T20:20:31.630Z","4.0.0":"2020-11-29T23:34:46.375Z","5.0.0":"2021-04-29T13:39:52.885Z","5.1.0":"2022-03-14T05:33:33.706Z","5.1.1":"2022-03-18T00:43:26.272Z","6.0.1":"2022-03-18T04:06:46.916Z","6.1.0":"2022-05-21T11:21:36.885Z","5.1.3":"2022-12-04T22:31:39.506Z","6.1.1":"2023-03-18T17:00:11.076Z","6.1.2":"2023-04-18T05:56:46.185Z","6.1.3":"2023-04-26T06:28:51.719Z","7.0.0":"2024-04-08T05:17:49.527Z","7.0.1":"2025-02-01T13:19:12.669Z"},"readmeFilename":"README.md","homepage":"https://github.com/dependents/node-detective-postcss#readme"}