allmyfutures/postcss-custom-media-generator

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "postcss-custom-media-generator",
  "version": "1.1.0",
  "description": "PostCSS plugin custom media generator",
  "main": "dist/index.js",
  "keywords": [
    "postcss",
    "css",
    "postcss-plugin",
    "postcss-custom-media-generator"
  ],
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "test": "jest",
    "build": "tsc",
    "prepublish": "rm -rf ./dist && pnpm test && pnpm build"
  },
  "author": "Jason Raimondi <jason@raimondi.us>",
  "license": "MIT",
  "repository": "allmyfutures/postcss-custom-media-generator",
  "engines": {
    "node": ">=12.0.0"
  },
  "peerDependencies": {
    "postcss": "^8.3.0"
  },
  "devDependencies": {
    "@jmondi/tsconfig": "^0.1.0",
    "@types/jest": "^29.2.5",
    "@types/node": "^18.11.18",
    "clean-publish": "^4.1.1",
    "jest": "^29.3.1",
    "postcss": "^8.4.21",
    "prettier": "^2.8.3",
    "ts-jest": "^29.0.5",
    "typescript": "^4.9.4"
  },
  "jest": {
    "preset": "ts-jest",
    "coverageThreshold": {
      "global": {
        "statements": 100
      }
    }
  }
}