{
  "name": "beater",
  "description": "beater: bouzuya's easy test runner. it is inspired by eater.",
  "version": "9.0.1",
  "author": {
    "name": "bouzuya",
    "email": "m@bouzuya.net",
    "url": "https://bouzuya.net/"
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": "10"
          }
        }
      ],
      "babel-preset-power-assert"
    ]
  },
  "bugs": {
    "url": "https://github.com/bouzuya/beater/issues"
  },
  "dependencies": {
    "beater-reporter": "^2.0.2",
    "beater-tap-reporter": "^4.0.1"
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.8.4",
    "@babel/preset-env": "^7.8.4",
    "@types/node": "^10.17.19",
    "@types/power-assert": "^1.5.1",
    "@types/proxyquire": "^1.3.28",
    "@types/sinon": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^2.27.0",
    "@typescript-eslint/parser": "^2.27.0",
    "babel-preset-power-assert": "^3.0.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.9.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.0.1",
    "power-assert": "^1.6.1",
    "prettier": "^2.0.4",
    "proxyquire": "^2.1.3",
    "rimraf": "^3.0.1",
    "sinon": "^9.0.2",
    "typescript": "^3.7.3",
    "watch": "^1.0.2"
  },
  "files": [
    "lib"
  ],
  "homepage": "https://github.com/bouzuya/beater",
  "keywords": [
    "beater",
    "bouzuya",
    "eater",
    "runner",
    "test",
    "testing"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/bouzuya/beater.git"
  },
  "scripts": {
    "build": "npm-run-all -s build:format build:lint build:es2015 build:es5 build:lib",
    "build:es2015": "tsc",
    "build:es5": "babel --out-dir .tmp/es5/ --source-maps inline .tmp/es2015/",
    "build:format": "prettier --check '{src,test}/**/*.ts'",
    "build:lib": "babel --copy-files --no-comments --out-dir lib/ .tmp/es2015/src/",
    "build:lint": "eslint '{src,test}/**/*.ts'",
    "clean": "rimraf \".tmp\" \"lib\"",
    "format": "prettier --write '{src,test}/**/*.ts'",
    "prepare": "npm-run-all -s \"clean\" \"build\"",
    "test": "nyc --exclude .tmp/es5/test --source-map false node .tmp/es5/test/index.js",
    "watch": "npm-run-all -p \"watch:*\"",
    "watch:es2015": "npm run build:es2015 -- --watch",
    "watch:es5": "npm run build:es5 -- --watch",
    "watch:lib": "watch --wait 2 'npm run build:lib' '.tmp/es5/src/'",
    "watch:test": "watch --wait 2 'npm test' '.tmp/es5/src' '.tmp/es5/test'"
  }
}
