{
  "name": "@articulate/chromeless",
  "version": "1.3.0-beta5",
  "description": "🖥 Chrome automation made simple. Runs locally or headless on AWS Lambda.",
  "homepage": "https://github.com/graphcool/chromeless",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/graphcool/chromeless.git"
  },
  "bug": {
    "url": "https://github.com/graphcool/chromeless/issues"
  },
  "main": "dist/src/index.js",
  "typings": "dist/src/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">= 6.10.0"
  },
  "scripts": {
    "ava": "tsc -d && nyc ava",
    "build": "npm run clean && tsc -d",
    "clean": "rimraf dist",
    "coverage": "npm run ava",
    "precommit": "lint-staged",
    "prepublishOnly": "npm run build",
    "prettier": "prettier --no-semi --single-quote --trailing-comma all --write \"src/**/*.ts\"",
    "release": "np",
    "test": "npm run tslint && npm run ava",
    "lint": "npm run tslint",
    "tslint": "tslint -c tslint.json -p tsconfig.json --exclude node_modules/**",
    "watch": "tsc -w",
    "watch:test": "tsc -d -w & ava --watch"
  },
  "dependencies": {
    "aws-sdk": "^2.90.0",
    "bluebird": "^3.5.0",
    "chrome-launcher": "^0.4.0",
    "chrome-remote-interface": "^0.24.2",
    "cuid": "^1.3.8",
    "form-data": "^2.1.4",
    "got": "^7.1.0",
    "mqtt": "^2.9.2"
  },
  "devDependencies": {
    "@types/bluebird": "^3.5.8",
    "@types/cuid": "^1.3.0",
    "@types/node": "^8.0.15",
    "ava": "^0.21.0",
    "lint-staged": "^4.0.2",
    "np": "^2.16.0",
    "nyc": "^11.1.0",
    "prettier": "^1.5.3",
    "rimraf": "^2.6.1",
    "tslint": "^5.5.0",
    "typescript": "^2.4.2"
  },
  "lint-staged": {
    "*.{ts,js}": [
      "prettier --no-semi --single-quote --trailing-comma all --write",
      "lint",
      "git add"
    ]
  }
}
