{
  "name": "spaniel",
  "version": "2.10.2",
  "description": "LinkedIn's viewport tracking library",
  "license": "Apache-2.0",
  "main": "exports/spaniel.js",
  "scripts": {
    "test": "tsc && yarn run build && yarn test:playwright && testem ci && node test/headless/run",
    "serve": "yarn run build && node test/headless/server/app",
    "test:headless": "mocha --require @babel/register test/headless/specs/**/*.js test/headless/specs/*.js --exit --timeout 5000",
    "test:playwright": "playwright test --config=test/playwright/playwright.config.ts",
    "watch": "broccoli-timepiece exports",
    "build": "./scripts/build.sh",
    "stats": "node scripts/size-calc",
    "prettier": "prettier --write 'src/**/*.ts'",
    "prepublishOnly": "yarn run build",
    "docs:build": "./scripts/build-docs.sh",
    "docs:publish": "./scripts/publish-docs.sh"
  },
  "files": [
    "src",
    "exports",
    ".babelrc",
    "Brocfile.js",
    "build.sh",
    "README.md",
    "rollup.config.js",
    "declarations.d.ts",
    "CHANGELOG.md",
    ".travis.yml"
  ],
  "exports": {
    ".": {
      "types": "./exports/index.d.ts",
      "default": "./exports/spaniel.js"
    }
  },
  "types": "exports/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/linkedin/spaniel"
  },
  "engines": {
    "node": ">= 0.10.0"
  },
  "author": {
    "name": "Asa Kusuma"
  },
  "homepage": "https://github.com/linkedin/spaniel",
  "module": "exports/index.js",
  "devDependencies": {
    "@babel/core": "^7.2.2",
    "@babel/preset-env": "^7.2.2",
    "@babel/register": "^7.0.0",
    "@playwright/test": "1.14.0",
    "@types/express": "^4.17.13",
    "@types/node": "^12.0.0",
    "assert": "^1.3.0",
    "broccoli": "^1.1.0",
    "broccoli-cli": "1.0.0",
    "broccoli-funnel": "^1.2.0",
    "broccoli-merge-trees": "^3.0.1",
    "broccoli-rollup": "^2.1.1",
    "broccoli-string-replace": "^0.1.1",
    "broccoli-typescript-compiler": "^7.0.0",
    "broccoli-uglify-sourcemap": "^1.4.2",
    "chai": "^3.5.0",
    "chokidar": "^1.6.0",
    "express": "^4.13.4",
    "gzip-size": "^3.0.0",
    "husky": "^1.3.1",
    "lint-staged": "^8.1.0",
    "mocha": "^5.2.0",
    "nightmare": "^3.0.1",
    "playwright": "^1.13.1",
    "prettier": "^1.15.3",
    "pretty-bytes": "^4.0.2",
    "rsvp": "^3.1.0",
    "serve-static": "^1.10.2",
    "sinon": "^1.14.1",
    "testem": "^1.12.0",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.17.0",
    "tslint-plugin-prettier": "^2.0.1",
    "typescript": "~4.3.5"
  },
  "prettier": {
    "printWidth": 120,
    "tabWidth": 2,
    "singleQuote": true,
    "trailingComma": "none"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,js}": [
      "prettier --write",
      "git add"
    ]
  }
}
