{
  "name": "apollo-utilities",
  "version": "0.2.0-alpha.4",
  "description": "Utilities for working with GraphQL ASTs",
  "author": "James Baxley <james@meteor.com>",
  "contributors": [
    "James Baxley <james@meteor.com>",
    "Jonas Helfer <jonas@helfer.email>",
    "Sashko Stubailo <sashko@stubailo.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 lib/* && rimraf coverage/*",
    "prepublishOnly": "npm run clean && npm run build",
    "build:browser":
      "browserify ./lib/index.js -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"
  },
  "devDependencies": {
    "@types/graphql": "~0.9.0",
    "@types/jest": "^20.0.7",
    "@types/lodash": "^4.14.72",
    "@types/node": "^8.0.20",
    "browserify": "^14.4.0",
    "graphql": "^0.10.3",
    "graphql-tag": "^2.4.2",
    "jest": "^20.0.4",
    "lodash": "^4.17.4",
    "rimraf": "^2.5.4",
    "ts-jest": "^20.0.10",
    "tslint": "^5.0.0",
    "typescript": "^2.2.1",
    "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"]
  }
}
