{
  "name": "@splitsoftware/splitio-commons",
  "version": "2.12.0",
  "description": "Split JavaScript SDK common components",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "types": "types",
  "files": [
    "README.md",
    "CONTRIBUTORS-GUIDE.md",
    "LICENSE",
    "CHANGES.txt",
    "cjs",
    "esm",
    "src",
    "types"
  ],
  "scripts": {
    "check": "npm run check:lint && npm run check:types",
    "check:lint": "eslint src types --ext .js,.ts",
    "check:types": "tsc --noEmit",
    "build": "npm run build:cjs && npm run build:esm",
    "build:esm": "rimraf esm && tsc -m es2015 --outDir esm",
    "build:cjs": "rimraf cjs && tsc -m CommonJS --outDir cjs",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "all": "npm run check && npm run build && npm run test",
    "publish:rc": "npm run check && npm run test && npm run build && npm publish --tag rc",
    "publish:stable": "npm run check && npm run test && npm run build && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/splitio/javascript-commons.git"
  },
  "keywords": [
    "splitio",
    "sdk",
    "javascript"
  ],
  "author": "Emiliano Sanchez <emiliano.sanchez@split.io> (https://github.com/EmilianoSanchez)",
  "contributors": [
    "Nicolas Zelaya <nicolas.zelaya@split.io> (https://github.com/NicoZelaya)"
  ],
  "license": "Apache-2.0",
  "bugs": "https://github.com/splitio/javascript-commons/issues",
  "homepage": "https://github.com/splitio/javascript-commons#readme",
  "dependencies": {
    "@types/ioredis": "^4.28.0",
    "tslib": "^2.3.1"
  },
  "peerDependencies": {
    "ioredis": "^4.28.0 || ^5.0.0"
  },
  "peerDependenciesMeta": {
    "ioredis": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/ioredis": "^4.28.0",
    "@types/jest": "^27.0.0",
    "@types/lodash": "^4.14.162",
    "@typescript-eslint/eslint-plugin": "^6.6.0",
    "@typescript-eslint/parser": "^6.6.0",
    "cross-env": "^7.0.2",
    "eslint": "^8.48.0",
    "eslint-plugin-compat": "^6.0.1",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-tsdoc": "^0.3.0",
    "fetch-mock": "^9.11.0",
    "ioredis": "^5.0.0",
    "jest": "^27.2.3",
    "jest-localstorage-mock": "^2.4.3",
    "lodash": "^4.17.21",
    "node-fetch": "^2.7.0",
    "redis-server": "1.2.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.5",
    "typescript": "4.4.4"
  },
  "sideEffects": false
}
