{
  "name": "@point-api/js-sdk",
  "version": "1.1.39",
  "description": "Javascript SDK for Point API",
  "repository": "github:PointMail/js-sdk",
  "homepage": "https://docs.pointapi.com",
  "bugs": "https://github.com/PointMail/js-sdk/issues",
  "keywords": [
    "Point API",
    "Point",
    "autocomplete",
    "completion",
    "reply"
  ],
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "files": [
    "build",
    "dist"
  ],
  "unpkg": "dist/index.js",
  "scripts": {
    "test": "jest",
    "build": "tsc && npm run build-umd",
    "build-umd": "parcel build src/index-umd.ts --global PointApi --out-file index.js",
    "release": "npm version patch -m \"Bumping to %s\" && git push origin master --tags",
    "gen-docs": "typedoc --out docs src --theme markdown",
    "publish": "npm run build-umd && npm run build && npm publish --access public && npm run push-to-site",
    "push-to-site": "aws s3 cp ./dist/index.js s3://point-api-website/api.js"
  },
  "author": "Alex Iansiti <alex@pointapi.com>",
  "license": "MIT",
  "dependencies": {
    "socket.io-client": "2.3.0"
  },
  "devDependencies": {
    "@types/jest": "24.0.18",
    "@types/node": "12.7.12",
    "@types/socket.io-client": "1.4.32",
    "envify": "4.1.0",
    "jest": "24.9.0",
    "merge": "1.2.1",
    "parcel-bundler": "1.12.4",
    "ts-jest": "24.1.0",
    "tslint": "5.20.0",
    "tslint-config-prettier": "1.18.0",
    "typedoc": "0.15.0",
    "typedoc-plugin-markdown": "2.2.10",
    "typescript": "3.6.4"
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "^.+\\.(ts|tsx)$": "ts-jest"
    },
    "globals": {
      "ts-jest": {
        "tsConfig": "tsconfig.json"
      }
    },
    "testMatch": [
      "**/__tests__/*.+(ts|tsx|js)"
    ]
  },
  "browserslist": [
    "last 1 Chrome version"
  ],
  "publishConfig": {
    "access": "public"
  }
}
