{
  "name": "graphql-scalars",
  "version": "1.0.4",
  "description": "A collection of scalar types not included in base GraphQL.",
  "repository": {
    "type": "git",
    "url": "https://github.com/Urigo/graphql-scalars.git"
  },
  "sideEffects": false,
  "main": "dist/commonjs/index.js",
  "module": "dist/esnext/index.js",
  "typings": "dist/esnext/index.d.ts",
  "typescript": {
    "definition": "dist/esnext/index.d.ts"
  },
  "license": "MIT",
  "jest": {
    "roots": [
      "src"
    ]
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "all",
    "printWidth": 80
  },
  "scripts": {
    "clean": "rm -rf dist",
    "prebuild": "yarn clean",
    "build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs",
    "test": "jest --forceExit --runInBand && yarn bundlesize",
    "prepare-release": "yarn build && yarn test",
    "release": "yarn prepare-release && npm publish",
    "ci:release:canary": "node bump.js && npm publish --tag alpha --access public",
    "bundlesize": "yarn build && cd bundle-test/ && yarn && yarn test"
  },
  "devDependencies": {
    "@types/jest": "24.0.19",
    "graphql": "14.5.8",
    "graphql-tools": "4.0.5",
    "jest": "24.9.0",
    "lint-staged": "9.4.2",
    "merge-graphql-schemas": "1.7.0",
    "semver": "6.3.0",
    "ts-jest": "24.1.0",
    "tslint": "5.20.0",
    "typescript": "3.6.4"
  },
  "peerDependencies": {
    "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
  },
  "lint-staged": {
    "*.{ts,tsx}": [
      "tslint --fix",
      "git add"
    ],
    "*.{js,json,css,md,ts,tsx}": [
      "prettier --write",
      "git add -f"
    ]
  },
  "dependencies": {
    "@types/node": "12.11.6"
  }
}
