{
  "name": "style-to-js",
  "version": "1.1.9",
  "description": "Parses CSS inline style to JavaScript object (camelCased).",
  "author": "Mark <mark@remarkablemark.org>",
  "main": "cjs/index.js",
  "scripts": {
    "build": "npm run build:cjs && npm run build:umd",
    "build:cjs": "tsc --declaration --outDir cjs",
    "build:umd": "rollup --config --failAfterWarnings",
    "clean": "rm -rf cjs umd",
    "lint": "npm run lint:js && npm run lint:ts && npm run lint:tsc",
    "lint:js": "eslint --ignore-path .gitignore .",
    "lint:ts": "npm run lint:js -- --ext .ts",
    "lint:tsc": "tsc --noEmit",
    "lint:fix": "npm run lint:js -- --fix && npm run lint:ts -- --fix",
    "_postinstall": "husky install",
    "postpublish": "pinst --enable",
    "prepublishOnly": "pinst --disable && npm run lint && npm run test:ci && npm run clean && npm run build",
    "test": "jest",
    "test:ci": "CI=true jest --ci --colors --coverage",
    "test:watch": "jest --watch"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/remarkablemark/style-to-js"
  },
  "bugs": {
    "url": "https://github.com/remarkablemark/style-to-js/issues"
  },
  "keywords": [
    "style-to-js",
    "css",
    "style",
    "javascript",
    "object",
    "pojo"
  ],
  "dependencies": {
    "style-to-object": "1.0.4"
  },
  "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.7",
    "@typescript-eslint/eslint-plugin": "6.9.1",
    "@typescript-eslint/parser": "6.9.1",
    "eslint": "8.52.0",
    "eslint-plugin-prettier": "5.0.1",
    "husky": "8.0.3",
    "jest": "29.7.0",
    "lint-staged": "15.0.2",
    "pinst": "3.0.0",
    "prettier": "3.0.3",
    "rollup": "4.2.0",
    "ts-jest": "29.1.1",
    "typescript": "5.2.2"
  },
  "files": [
    "cjs/",
    "src/",
    "umd/"
  ],
  "license": "MIT"
}
