{ "name": "colortranslator", "version": "4.1.0", "description": "A JavaScript library, written in TypeScript, to convert among different color models", "main": "index.js", "module": "esm/index.js", "types": "index.d.ts", "exports": { ".": { "require": { "types": "./index.d.ts", "default": "./index.js" }, "import": { "types": "./esm/index.d.ts", "default": "./esm/index.js" } } }, "files": [ "esm/**/*", "web/**/*", "index.d.ts", "index.js" ], "scripts": { "test:ts": "tsc --noEmit", "test": "jest --verbose", "lint": "eslint \"src/**/*.{js,ts}\" \"tests/**/*.ts\"", "clean": "./scripts/clean.sh", "finish": "./scripts/finish.sh", "build": "yarn clean && rollup --config rollup.config.js --bundleConfigAsCjs && yarn finish", "demo": "webpack serve --open --config webpack.demo.config.js", "docs": "webpack --config webpack.demo.publish.js --mode production && yarn build", "compile:regexps": "yarn plop", "prepare": "npm run build", "prepublishOnly": "npm run lint && npm run test", "version": "git add .", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/elchininet/ColorTranslator.git" }, "keywords": [ "color", "color-converter", "color-translator", "color-manipulation", "css-color", "css-color-convert", "rgb", "rgba", "hex", "hexadecimal", "hsl", "hsla", "cmyk", "typescript" ], "author": "ElChiniNet", "license": "Apache-2.0", "bugs": { "url": "https://github.com/elchininet/ColorTranslator/issues" }, "homepage": "https://github.com/elchininet/ColorTranslator#readme", "devDependencies": { "@types/jest": "^29.5.10", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "clean-webpack-plugin": "^4.0.0", "copy-webpack-plugin": "^11.0.0", "css-loader": "^6.8.1", "eslint": "^8.54.0", "google-code-prettify": "^1.0.5", "html-webpack-plugin": "^5.5.3", "jest": "^29.7.0", "mini-css-extract-plugin": "^2.7.6", "node-sass": "^9.0.0", "plop": "^4.0.0", "rimraf": "^5.0.5", "rollup": "^4.5.2", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-ts": "^3.4.5", "sass-loader": "^13.3.2", "style-loader": "^3.3.3", "ts-jest": "^29.1.1", "ts-loader": "^9.5.1", "typescript": "^5.3.2", "webpack": "^5.89.0", "webpack-cli": "^5.1.4", "webpack-dev-server": "^4.15.1", "whatwg-fetch": "^3.6.19" } }