{
  "name": "abstract-sdk",
  "version": "8.1.5",
  "description": "Universal JavaScript bindings for the Abstract API and CLI",
  "keywords": [
    "abstract",
    "design",
    "version control"
  ],
  "homepage": "https://developer.abstract.com/",
  "bugs": {
    "email": "support@abstract.com",
    "url": "https://github.com/goabstract/abstract-sdk/issues"
  },
  "license": "MIT",
  "author": "Abstract <support@abstract.com> (http://abstract.com)",
  "files": [
    ".flowconfig",
    "/definitions",
    "/dist",
    "/scripts",
    "abstract-sdk.d.ts"
  ],
  "main": "dist/index.js",
  "types": "abstract-sdk.d.ts",
  "browser": {
    "@elasticprojects/abstract-cli": false,
    "child_process": false,
    "fs": false,
    "stream": false
  },
  "repository": "github:goabstract/abstract-sdk",
  "scripts": {
    "check-ts-types": "tsc abstract-sdk.d.ts --lib es2017,dom,esnext.asynciterable",
    "prepare": "./scripts/install-types.sh",
    "lint": "eslint . --ignore-path .gitignore",
    "test": "jest --coverage --runInBand",
    "prebuild": "rm -rf dist && flow-copy-source -i **/testing.js src dist",
    "build": "babel src -d dist --ignore **/testing.js",
    "prepublish": "yarn build",
    "release": "standard-version"
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
    "@babel/plugin-transform-regenerator": "^7.8.7",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-flow": "^7.0.0",
    "@elasticprojects/eslint-config-abstract": "^4.1.0",
    "babel-eslint": "^9.0.0",
    "babel-jest": "^26.0.0",
    "eslint": "^4.8.0",
    "eslint-config-react-app": "^2.1.0",
    "eslint-plugin-flowtype": "^2.50.0",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-jsx-a11y": "^5.1.1",
    "eslint-plugin-mocha": "^5.2.1",
    "eslint-plugin-prettier": "^2.6.2",
    "eslint-plugin-react": "^7.11.1",
    "flow-bin": "^0.110.1",
    "flow-copy-source": "^2.0.3",
    "flow-typed": "3.8.0",
    "jest": "^26.0.0",
    "nock": "^11.0.0",
    "prettier": "^1.14.2",
    "standard-version": "^9.5.0"
  },
  "dependencies": {
    "@babel/runtime-corejs3": "^7.9.6",
    "@elasticprojects/abstract-cli": "13.4.3",
    "core-js": "^3.6.5",
    "cross-fetch": "^3.0.1",
    "debug": "^4.0.1",
    "invariant": "^2.2.4",
    "js-sha256": "^0.9.0",
    "query-string": "^6.1.0",
    "uuid": "^3.3.2"
  },
  "eslintConfig": {
    "extends": "@elasticprojects/eslint-config-abstract",
    "env": {
      "jest": true
    },
    "settings": {
      "react": {
        "version": "^16.0.0"
      }
    }
  },
  "jest": {
    "testPathIgnorePatterns": [
      "<rootDir>/dist"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/tests/setup.js"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    }
  },
  "babel": {
    "presets": [
      "@babel/preset-flow",
      [
        "@babel/preset-env",
        {
          "corejs": 3,
          "useBuiltIns": "usage",
          "targets": {
            "node": 10,
            "ie": 11,
            "chrome": 65
          }
        }
      ]
    ],
    "plugins": [
      "@babel/plugin-proposal-object-rest-spread",
      "@babel/plugin-proposal-class-properties",
      "@babel/plugin-transform-regenerator"
    ]
  }
}
