{
  "name": "@splitsoftware/splitio-browserjs",
  "version": "1.7.0",
  "description": "Split SDK for JavaScript on Browser",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "types": "types",
  "files": [
    "README.md",
    "CONTRIBUTORS-GUIDE.md",
    "LICENSE",
    "CHANGES.txt",
    "cjs",
    "esm",
    "src",
    "types",
    "full"
  ],
  "scripts": {
    "check": "npm run check:lint && npm run check:types && npm run check:version",
    "check:lint": "eslint types src --ext .js,.ts",
    "check:types": "tsc --noEmit",
    "check:version": "./scripts/check_version.sh",
    "build": "npm run build:cjs && npm run build:esm && npm run build:umd",
    "build:esm": "rimraf esm && tsc -outDir esm && ./scripts/build_esm_replace_imports.sh",
    "build:cjs": "rimraf cjs && tsc -outDir cjs -m CommonJS && ./scripts/build_cjs_replace_imports.sh",
    "build:umd-visualizer": "rimraf umd && rollup --config rollup.visualizer.config.js",
    "build:umd": "rimraf umd && rollup --config rollup.ci.config.js --branch=$BUILD_BRANCH",
    "test": "npm run test:unit && npm run test:e2e",
    "test:unit": "jest",
    "test:e2e": "npm run test:e2e-logger && npm run test:e2e-offline && npm run test:e2e-online && npm run test:e2e-destroy && npm run test:e2e-errorCatching && npm run test:e2e-push && npm run test:e2e-consumer",
    "test:e2e-logger": "karma start karma/e2e.logger.karma.conf.js",
    "test:e2e-offline": "karma start karma/e2e.offline.karma.conf.js",
    "test:e2e-online": "karma start karma/e2e.online.karma.conf.js",
    "test:e2e-destroy": "karma start karma/e2e.destroy.karma.conf.js",
    "test:e2e-errorCatching": "karma start karma/e2e.errorCatching.karma.conf.js",
    "test:e2e-push": "karma start karma/e2e.push.karma.conf.js",
    "test:e2e-consumer": "karma start karma/e2e.consumer.karma.conf.js",
    "test-ts-decls": "tsc --build ts-tests",
    "all": "npm run check && npm run build && npm run test-ts-decls && npm run test",
    "publish:rc": "npm run check && npm run build && npm publish --tag rc",
    "publish:stable": "npm run check && npm run build && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/splitio/javascript-browser-client.git"
  },
  "keywords": [
    "splitio",
    "browser",
    "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-browser-client/issues",
  "homepage": "https://github.com/splitio/javascript-browser-client#readme",
  "dependencies": {
    "@splitsoftware/splitio-commons": "2.11.0",
    "tslib": "^2.3.1",
    "unfetch": "^4.2.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^24.0.1",
    "@rollup/plugin-json": "^6.0.0",
    "@rollup/plugin-node-resolve": "^13.0.6",
    "@rollup/plugin-terser": "^0.4.0",
    "@types/jest": "^27.0.2",
    "@types/node-fetch": "^2.5.7",
    "@typescript-eslint/eslint-plugin": "^6.6.0",
    "@typescript-eslint/parser": "^6.6.0",
    "eslint": "^8.48.0",
    "eslint-plugin-compat": "^4.2.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-tsdoc": "^0.3.0",
    "fetch-mock": "^11.1.3",
    "jest": "^27.2.3",
    "karma": "^6.4.1",
    "karma-chrome-launcher": "^3.1.1",
    "karma-rollup-preprocessor": "^7.0.8",
    "karma-tap": "^4.2.0",
    "puppeteer": "^3.3.0",
    "replace": "^1.2.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.79.1",
    "rollup-plugin-polyfill-node": "^0.12.0",
    "rollup-plugin-string": "^3.0.0",
    "rollup-plugin-ts": "^3.2.0",
    "rollup-plugin-visualizer": "^5.9.0",
    "sinon": "^9.2.2",
    "tape": "4.13.2",
    "tape-catch": "1.0.6",
    "ts-jest": "^27.0.5",
    "typescript": "4.4.4"
  },
  "sideEffects": false
}
