{
  "name": "request-idle-polyfill",
  "version": "1.0.1",
  "description": "polyfill for requestIdleCallback",
  "keywords": [
    "polyfill",
    "requestIdleCallback"
  ],
  "main": "dist/index.js",
  "typings": "index.d.ts",
  "author": "Marvin Hagemeister <marvin@marvinhagemeister.de>",
  "license": "MIT",
  "scripts": {
    "clean": "rimraf dist/",
    "lint": "tslint 'src/**/*.ts'",
    "watch": "tsc -w",
    "build": "npm run clean && tsc",
    "test": "mocha --compilers ts:ts-node/register --require src/__tests__/setup.ts -R dot 'src/**/__tests__/*.spec.ts'",
    "test-watch": "npm t -- -w -R min",
    "coverage": "nyc npm t",
    "prepublish": "npm run lint && npm t && npm run build"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/chai": "^3.4.34",
    "@types/jsdom": "^2.0.29",
    "@types/mocha": "^2.2.33",
    "chai": "^3.5.0",
    "jsdom": "^9.8.3",
    "mocha": "^3.2.0",
    "nyc": "^10.0.0",
    "rimraf": "^2.5.4",
    "ts-node": "^1.7.2",
    "tslint": "^4.0.2",
    "typescript": "^2.1.4"
  },
  "nyc": {
    "include": [
      "src/*.ts",
      "src/**/*.ts"
    ],
    "exclude": [
      "typings",
      "node_modules/",
      "**/__tests__/**",
      "__tests__/**",
      "**/*.d.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "json",
      "html",
      "text",
      "text-summary",
      "lcovonly"
    ],
    "all": true
  }
}
