{
  "name": "ac-colors",
  "version": "1.4.3",
  "description": "ac-colors is a reactive JavaScript color library that can freely convert between RGB, HSL, HEX, XYZ, LAB, LCHab, LUV, and LCHuv, as well as handle random color generation and contrast ratio calculation.",
  "main": "index.min.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "mocha",
    "coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls",
    "lint": "eslint --fix --ignore-path .eslintignore .",
    "browserify": "npx browserify index.js --standalone Color --outfile dist/ac-colors.js",
    "transpile": "npx babel index.js --out-file index.min.js && npx babel dist/ac-colors.js --out-file dist/ac-colors.min.js",
    "minify": "npx uglifyjs --compress --mangle --keep-fnames --output index.min.js -- index.min.js && npx uglifyjs --compress --mangle --keep-fnames --output dist/ac-colors.min.js -- dist/ac-colors.min.js",
    "build": "npm run lint && npm run browserify && npm run transpile && npm run minify"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vinaypillai/ac-colors.git"
  },
  "keywords": [
    "acute-components",
    "lch",
    "lchab",
    "lab",
    "rgb",
    "hex",
    "hsl",
    "color-converter",
    "contrast-ratio",
    "javascript",
    "random-colors"
  ],
  "author": "Vinay Pillai",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/vinaypillai/ac-colors/issues"
  },
  "homepage": "https://github.com/vinaypillai/ac-colors#readme",
  "devDependencies": {
    "@babel/cli": "^7.14.3",
    "@babel/core": "^7.14.3",
    "@babel/plugin-proposal-class-properties": "^7.13.0",
    "@babel/preset-env": "^7.14.4",
    "@babel/preset-react": "^7.13.13",
    "babel-eslint": "^10.1.0",
    "browserify": "^16.5.2",
    "chai": "^4.3.4",
    "coveralls": "^3.1.0",
    "eslint": "^7.28.0",
    "eslint-config-google": "^0.14.0",
    "eslint-config-strongloop": "^2.1.0",
    "mocha": "^8.4.0",
    "mocha-lcov-reporter": "^1.3.0",
    "nyc": "^15.1.0",
    "uglify-js": "^3.13.9"
  },
  "dependencies": {}
}
