{
  "name": "apollo-boost",
  "version": "0.1.4",
  "description": "The easiest way to get started with Apollo Client",
  "author": "Peggy Rayzis <peggy@apollographql.com>",
  "contributors": [
    "James Baxley <james@apollographql.com>",
    "Sashko Stubailo <sashko@apollographql.com>",
    "James Burgess <jamesmillerburgess@gmail.com>"
  ],
  "license": "MIT",
  "main": "./lib/index.js",
  "typings": "./lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/apollographql/apollo-client.git"
  },
  "bugs": {
    "url": "https://github.com/apollographql/apollo-client/issues"
  },
  "homepage": "https://github.com/apollographql/apollo-client#readme",
  "scripts": {
    "test": "jest",
    "coverage": "jest --coverage",
    "lint": "tslint --type-check -p tsconfig.json src/*.ts",
    "prebuild": "npm run clean",
    "build": "tsc -p .",
    "watch": "tsc -w -p .",
    "clean": "rimraf coverage/* && rimraf lib/*",
    "prepublishOnly": "npm run build",
    "build:browser": "browserify ./lib/index.js --i apollo-utilities -o=./lib/bundle.js && npm run minify:browser",
    "minify:browser": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js",
    "filesize": "npm run build && npm run build:browser"
  },
  "dependencies": {
    "apollo-cache-inmemory": "^1.1.12",
    "apollo-client": "^2.2.8",
    "apollo-link": "^1.0.6",
    "apollo-link-error": "^1.0.3",
    "apollo-link-http": "^1.3.1",
    "apollo-link-state": "^0.4.0",
    "graphql-tag": "^2.4.2"
  },
  "devDependencies": {
    "@types/graphql": "0.12.5",
    "@types/jest": "21.1.10",
    "apollo-cache": "^1.1.7",
    "browserify": "15.2.0",
    "graphql": "0.13.2",
    "jest": "20.0.4",
    "lodash": "4.17.5",
    "rimraf": "2.6.2",
    "ts-jest": "20.0.14",
    "tslint": "5.9.1",
    "typescript": "2.5.2",
    "uglifyjs": "2.4.11"
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ]
  }
}
