style-to-js
Advanced tools
Comparing version 1.1.12 to 1.1.13
{ | ||
"name": "style-to-js", | ||
"version": "1.1.12", | ||
"version": "1.1.13", | ||
"description": "Parses CSS inline style to JavaScript object (camelCased).", | ||
@@ -12,9 +12,7 @@ "author": "Mark <mark@remarkablemark.org>", | ||
"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": "eslint .", | ||
"lint:tsc": "tsc --noEmit", | ||
"lint:fix": "npm run lint:js -- --fix && npm run lint:ts -- --fix", | ||
"lint:fix": "npm run lint -- --fix", | ||
"prepare": "husky", | ||
"prepublishOnly": "npm run lint && npm run test:ci && npm run clean && npm run build", | ||
"prepublishOnly": "npm run lint && npm run lint:tsc && npm run test:ci && npm run clean && npm run build", | ||
"test": "jest", | ||
@@ -43,19 +41,24 @@ "test:ci": "CI=true jest --ci --colors --coverage", | ||
"devDependencies": { | ||
"@commitlint/cli": "19.2.1", | ||
"@commitlint/config-conventional": "19.1.0", | ||
"@rollup/plugin-commonjs": "25.0.7", | ||
"@commitlint/cli": "19.4.0", | ||
"@commitlint/config-conventional": "19.2.2", | ||
"@eslint/compat": "1.1.1", | ||
"@eslint/eslintrc": "3.1.0", | ||
"@eslint/js": "9.9.1", | ||
"@rollup/plugin-commonjs": "26.0.1", | ||
"@rollup/plugin-node-resolve": "15.2.3", | ||
"@rollup/plugin-terser": "0.4.4", | ||
"@types/jest": "29.5.12", | ||
"@typescript-eslint/eslint-plugin": "7.4.0", | ||
"@typescript-eslint/parser": "7.4.0", | ||
"eslint": "8.57.0", | ||
"eslint-plugin-prettier": "5.1.3", | ||
"husky": "9.0.11", | ||
"@typescript-eslint/eslint-plugin": "8.3.0", | ||
"@typescript-eslint/parser": "8.3.0", | ||
"eslint": "9.9.1", | ||
"eslint-plugin-prettier": "5.2.1", | ||
"eslint-plugin-simple-import-sort": "12.1.1", | ||
"globals": "15.9.0", | ||
"husky": "9.1.5", | ||
"jest": "29.7.0", | ||
"lint-staged": "15.2.2", | ||
"prettier": "3.2.5", | ||
"rollup": "4.13.0", | ||
"ts-jest": "29.1.2", | ||
"typescript": "5.4.3" | ||
"lint-staged": "15.2.9", | ||
"prettier": "3.3.3", | ||
"rollup": "4.21.1", | ||
"ts-jest": "29.2.5", | ||
"typescript": "5.5.4" | ||
}, | ||
@@ -62,0 +65,0 @@ "files": [ |
import StyleToObject from 'style-to-object'; | ||
import { camelCase, CamelCaseOptions } from './utilities'; | ||
@@ -3,0 +4,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
66114
22