{
  "name": "grunt-critical",
  "description": "Grunt task to extract & inline critical-path CSS from HTML",
  "version": "3.0.1",
  "author": "Ben Zörb <ben@sommerlaune.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bezoerb/grunt-critical/issues"
  },
  "homepage": "https://github.com/bezoerb/grunt-critical#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bezoerb/grunt-critical.git"
  },
  "keywords": [
    "critical-path",
    "css",
    "perf",
    "gruntplugin"
  ],
  "main": "tasks/critical.js",
  "scripts": {
    "lint": "eslint tasks/*.js --fix",
    "test": "npm run lint && grunt ci"
  },
  "dependencies": {
    "async": "^3.2.4",
    "critical": "^5.0.2",
    "glob": "^8.0.3",
    "lodash": "^4.17.20"
  },
  "devDependencies": {
    "chai": "^4.3.6",
    "eslint": "^8.23.1",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-xo": "^0.42.0",
    "eslint-config-xo-space": "^0.33.0",
    "eslint-plugin-prettier": "^4.2.1",
    "finalhandler": "^1.2.0",
    "grunt": "^1.3.0",
    "grunt-complexity": "^1.1.0",
    "grunt-contrib-watch": "^1.1.0",
    "grunt-simple-mocha": "^0.4.1",
    "load-grunt-tasks": "^5.1.0",
    "normalize-newline": "^4.1.0",
    "prettier": "^2.7.1",
    "serve-static": "^1.15.0"
  },
  "files": [
    "tasks"
  ],
  "engines": {
    "node": ">=14.16"
  },
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true,
    "printWidth": 120,
    "bracketSpacing": false
  },
  "eslintConfig": {
    "env": {
      "browser": true,
      "commonjs": true,
      "es2021": true
    },
    "extends": [
      "xo-space",
      "prettier"
    ],
    "plugins": [
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error"
      ]
    },
    "overrides": []
  }
}
