| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | {  "name": "gulp-postcss",  "nyc": {    "lines": 100,    "statements": 100,    "functions": 100,    "branches": 100,    "reporter": [      "lcov",      "text"    ],    "cache": true,    "all": true,    "check-coverage": true  },  "version": "9.0.1",  "description": "PostCSS gulp plugin",  "main": "index.js",  "engines": {    "node": "^10 || ^12 || >=14"  },  "scripts": {    "pretest": "eslint *.js",    "test": "nyc mocha test.js"  },  "repository": {    "type": "git",    "url": "https://github.com/postcss/gulp-postcss.git"  },  "keywords": [    "gulpplugin",    "postcss",    "postcss-runner",    "css"  ],  "author": "Andrey Kuzmin <unsoundscapes@gmail.com>",  "license": "MIT",  "bugs": {    "url": "https://github.com/postcss/gulp-postcss/issues"  },  "homepage": "https://github.com/postcss/gulp-postcss",  "dependencies": {    "fancy-log": "^1.3.3",    "plugin-error": "^1.0.1",    "postcss-load-config": "^3.0.0",    "vinyl-sourcemaps-apply": "^0.2.1"  },  "devDependencies": {    "eslint": "^5.16.0",    "gulp-sourcemaps": "^2.6.5",    "mocha": "^5.2.0",    "nyc": "^12.0.2",    "postcss": "^8.0.0",    "proxyquire": "^2.1.0",    "sinon": "^6.3.5",    "vinyl": "^2.2.0"  },  "peerDependencies": {    "postcss": "^8.0.0"  }}
 |