{
  "name": "style-to-js",
  "version": "1.1.0",
  "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",
    "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",
    "prepublishOnly": "npm run lint && npm test && npm run clean && npm run build",
    "release": "standard-version --no-verify",
    "test": "jest --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": "0.3.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "@rollup/plugin-commonjs": "^16.0.0",
    "@rollup/plugin-node-resolve": "^10.0.0",
    "@rollup/plugin-typescript": "^6.1.0",
    "@types/jest": "^26.0.15",
    "@typescript-eslint/eslint-plugin": "^4.8.1",
    "@typescript-eslint/parser": "^4.8.1",
    "eslint": "^7.14.0",
    "eslint-plugin-prettier": "^3.1.4",
    "husky": "^4.3.0",
    "jest": "^26.6.3",
    "lint-staged": "^10.5.1",
    "prettier": "^2.2.0",
    "rollup": "^2.33.3",
    "rollup-plugin-terser": "^7.0.2",
    "standard-version": "^9.0.0",
    "ts-jest": "^26.4.4",
    "typescript": "^4.1.2"
  },
  "files": [
    "cjs/",
    "umd/"
  ],
  "license": "MIT"
}
