{
  "name": "rgba-to-rgb",
  "version": "1.0.2",
  "description": "Color conversion function",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "color",
    "rgba",
    "rgb"
  ],
  "files": [
    "dist",
    "src",
    "test"
  ],
  "bugs": {
    "url": "https://github.com/iyegoroff/rgba-to-rgb/issues"
  },
  "homepage": "https://github.com/iyegoroff/rgba-to-rgb#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/iyegoroff/rgba-to-rgb.git"
  },
  "author": "iyegoroff <iegoroff@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "invariant": "^2.2.4"
  },
  "devDependencies": {
    "@types/invariant": "^2.2.29",
    "@types/jest": "^23.3.7",
    "codecov": "^3.1.0",
    "jest": "^23.6.0",
    "ts-jest": "^23.10.4",
    "tslint": "^5.11.0",
    "tslint-config-standard": "^8.0.1",
    "typescript": "^3.1.3",
    "vrsource-tslint-rules": "^5.8.2"
  },
  "scripts": {
    "preversion": "npm run lint && npm run build && npm t",
    "build": "rm -rf dist && mkdir dist && tsc -p .",
    "lint": "tslint -p . && tslint test/*",
    "watch": "npm run build -- --watch",
    "test": "jest",
    "coverage": "codecov"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "ts"
    ],
    "testRegex": ".spec.ts$",
    "transform": {
      "^.+\\.ts$": "ts-jest"
    },
    "coverageDirectory": "coverage",
    "collectCoverage": true,
    "testEnvironment": "node"
  }
}
