{
  "name": "color-adjuster",
  "version": "0.0.64",
  "description": "JavaScript color adjuster library",
  "keywords": [
    "javascript",
    "canvas",
    "html5"
  ],
  "main": "dist/color-adjuster.js",
  "module": "dist/color-adjuster.module.js",
  "typings": "dist/types/color-adjuster.d.ts",
  "files": [
    "dist",
    "examples"
  ],
  "author": "Rambo2015 <844154912@qq.com>",
  "repository": {
    "type": "git",
    "url": ""
  },
  "license": "MIT",
  "engines": {
    "node": ">=6.0.0"
  },
  "scripts": {
    "lint": "tslint --project tsconfig.json --format codeFrame 'src/**/*.ts' 'test/**/*.ts'",
    "prebuild": "rimraf dist",
    "build": "tsc --module commonjs && rollup -c rollup.config.js && typedoc src/index.ts --out ./docs",
    "start": "rollup -c rollup.config.js -w",
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "test:prod": "npm run lint && npm run test -- --no-cache",
    "deploy-docs": "ts-node tools/gh-pages-publish",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
    "precommit": "lint-staged",
    "travis-deploy-once": "travis-deploy-once",
    "prepare": "npx husky install",
    "release": "standard-version"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write",
      "git add"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testEnvironment": "jsdom",
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "moduleNameMapper": {
      "three/examples/jsm/": "<rootDir>/config/jest/mockUndefined.js",
      "\\.(css)$": "<rootDir>/node_modules/jest-css-modules"
    },
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 90,
        "functions": 95,
        "lines": 95,
        "statements": 95
      }
    },
    "collectCoverageFrom": [
      "src/**/*.{js,ts}"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^7.1.2",
    "@commitlint/config-conventional": "^7.1.2",
    "@types/fabric": "^4.5.8",
    "@types/jest": "^27.4.1",
    "@types/jquery": "^3.5.14",
    "@types/node": "^17.0.23",
    "@types/rollup-plugin-css-only": "^3.1.0",
    "@types/rollup-plugin-json": "^3.0.3",
    "commitizen": "^3.0.0",
    "coveralls": "^3.0.2",
    "cross-env": "^5.2.0",
    "cz-conventional-changelog": "^2.1.0",
    "fabric": "^5.2.1",
    "husky": "^1.3.1",
    "jest": "^27.4.1",
    "jest-canvas-mock": "^2.3.1",
    "jest-config": "^27.4.1",
    "jest-css-modules": "^2.1.0",
    "jquery": "^3.5.1",
    "lint-staged": "^8.0.0",
    "lodash.camelcase": "^4.3.0",
    "prettier": "^1.14.3",
    "prompt": "^1.0.0",
    "replace-in-file": "^3.4.2",
    "rimraf": "^2.6.2",
    "rollup": "^2.70.1",
    "rollup-plugin-cleanup": "^3.2.1",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-copy": "^3.4.0",
    "rollup-plugin-css-only": "^3.1.0",
    "rollup-plugin-json": "^3.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-sourcemaps": "^0.6.3",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.31.2",
    "rollup-watch": "^4.3.1",
    "semantic-release": "^15.9.16",
    "shelljs": "^0.8.3",
    "standard-version": "^9.3.2",
    "travis-deploy-once": "^5.0.9",
    "ts-jest": "^27.1.4",
    "ts-node": "^9.1.1",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.15.0",
    "tslint-config-standard": "^8.0.1",
    "typedoc": "^0.22.14",
    "typescript": "^4.6.3",
    "typescript-plugin-css-modules": "^3.4.0"
  },
  "dependencies": {}
}
