{
  "name": "celia",
  "version": "8.0.4",
  "description": "A modern JavaScript utility library delivering modularity, performance, and extras.",
  "main": "index.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "unpkg": "umd.js",
  "jsdelivr": "umd.js",
  "sideEffects": false,
  "scripts": {
    "gh-pages": "git subtree push --prefix=gh-pages origin gh-pages",
    "build": "rollup -c",
    "test": "jest --detectOpenHandles --config jest.config.js",
    "lint": "eslint --fix --ext .js",
    "benchmark": "npm run build && tiret -i ./benchmark/*.test.js",
    "release": "npm run build && npm publish dist --tag=beta"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fengxinming/celia.git"
  },
  "keywords": [
    "util",
    "lodash",
    "underscore"
  ],
  "author": "Jesse Feng",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fengxinming/celia.issues"
  },
  "homepage": "https://github.com/fengxinming/celia#readme",
  "devDependencies": {
    "@babel/core": "^7.14.0",
    "@babel/eslint-parser": "^7.13.14",
    "@babel/eslint-plugin": "^7.13.16",
    "@babel/preset-env": "^7.14.0",
    "@commitlint/cli": "^12.1.1",
    "@rollup/plugin-alias": "^3.1.2",
    "@rollup/plugin-buble": "^0.21.3",
    "@rollup/plugin-commonjs": "^15.1.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@rollup/plugin-replace": "^2.4.2",
    "babel-jest": "^25.5.1",
    "clrsole": "^3.0.1",
    "eslint": "^7.25.0",
    "eslint-config-fe": "^1.3.0",
    "fs-extra": "^9.1.0",
    "husky": "^4.3.8",
    "jest": "^25.5.4",
    "lint-staged": "^10.5.4",
    "rollup": "^2.46.0",
    "rollup-plugin-combine": "^2.1.1",
    "rollup-plugin-copy": "^3.4.0",
    "rollup-plugin-empty": "^1.0.0",
    "rollup-plugin-match": "^1.0.0",
    "rollup-plugin-replace-imports": "^1.0.0",
    "rollup-plugin-terser": "^5.3.1",
    "tiret": "^1.0.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ],
    "*.md": [
      "prettier --single-quote --write",
      "git add"
    ]
  }
}