{
  "name": "style-to-object",
  "version": "1.0.4",
  "description": "Converts inline style to object.",
  "author": "Mark <mark@remarkablemark.org>",
  "main": "./cjs/index.js",
  "module": "./esm/index.mjs",
  "types": "./cjs/index.d.ts",
  "exports": {
    "types": "./cjs/index.d.ts",
    "import": "./esm/index.mjs",
    "require": "./cjs/index.js"
  },
  "scripts": {
    "build": "run-s build:*",
    "build:cjs": "tsc --outDir cjs",
    "build:umd": "rollup --config --failAfterWarnings",
    "clean": "rm -rf cjs coverage dist",
    "lint": "eslint --ignore-path .gitignore .",
    "lint:fix": "npm run lint -- --fix",
    "lint:tsc": "tsc --noEmit",
    "_postinstall": "husky install",
    "postpublish": "pinst --enable",
    "prepublishOnly": "pinst --disable && run-s lint lint:tsc test clean build",
    "test": "jest",
    "test:ci": "CI=true jest --ci --colors --coverage",
    "test:esm": "npm run build:cjs && node --test __tests__",
    "test:watch": "npm run test -- --watch"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/remarkablemark/style-to-object"
  },
  "bugs": {
    "url": "https://github.com/remarkablemark/style-to-object/issues"
  },
  "keywords": [
    "style-to-object",
    "inline",
    "style",
    "parser",
    "css",
    "object",
    "pojo"
  ],
  "dependencies": {
    "inline-style-parser": "0.2.2"
  },
  "devDependencies": {
    "@commitlint/cli": "18.2.0",
    "@commitlint/config-conventional": "18.1.0",
    "@rollup/plugin-commonjs": "25.0.7",
    "@rollup/plugin-node-resolve": "15.2.3",
    "@rollup/plugin-terser": "0.4.4",
    "@rollup/plugin-typescript": "11.1.5",
    "@types/jest": "29.5.6",
    "@typescript-eslint/eslint-plugin": "6.9.0",
    "@typescript-eslint/parser": "6.9.0",
    "eslint": "8.52.0",
    "eslint-plugin-prettier": "5.0.1",
    "husky": "8.0.3",
    "jest": "29.7.0",
    "lint-staged": "15.0.2",
    "npm-run-all": "4.1.5",
    "pinst": "3.0.0",
    "prettier": "3.0.3",
    "rollup": "4.1.5",
    "ts-jest": "29.1.1",
    "typescript": "5.2.2"
  },
  "files": [
    "/cjs",
    "/dist",
    "/esm",
    "/src"
  ],
  "license": "MIT"
}
