{
  "name": "ava-fixture",
  "description": "Write fixture tests with ava",
  "version": "0.11.0",
  "main": "dist/es5/index.js",
  "module": "dist/es2015/index.js",
  "typings": "dist/es5/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npm run clean && npm run build-es5 && npm run build-es2015",
    "build-es5": "tsc -p tsconfig.es5.json",
    "build-es2015": "tsc -p tsconfig.es2015.json",
    "clean": "rimraf dist",
    "coverage": "nyc --check-coverage --branches 85 --functions 85 --lines 85 npm test",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "demo": "node scripts/demo.js",
    "dependency-check": "dependency-check . --unused --no-dev -i ava && dependency-check . --missing --no-dev",
    "lint": "tslint -p tsconfig.json --type-check \"src/**/*.ts\"",
    "postpublish": "git push",
    "prepare": "npm run build",
    "preversion": "git pull && npm run verify",
    "test": "rimraf dist-spec && tsc && ava",
    "verify": "npm run lint && npm run coverage && npm run build && npm run dependency-check",
    "watch": "rimraf dist-spec && node scripts/watch.js"
  },
  "author": {
    "name": "Homa Wong",
    "email": "homawong@gmail.com"
  },
  "homepage": "https://github.com/unional/ava-fixture",
  "bugs": {
    "url": "https://github.com/unional/ava-fixture/issues"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/unional/ava-fixture.git"
  },
  "license": "MIT",
  "keywords": [
    "ava",
    "fixture"
  ],
  "ava": {
    "files": [
      "dist-spec/**/*.spec.js"
    ],
    "source": [
      "scripts/*.js",
      "dist-spec/**/*.js",
      "*.json"
    ],
    "require": [
      "./scripts/setup-browser-env.js",
      "./scripts/setup-test-env.js"
    ]
  },
  "nyc": {
    "exclude": [
      "scripts",
      "**/*.spec.*",
      "**/fixtures/**/*",
      "dist-spec/interfaces.js"
    ]
  },
  "peerDependencies": {
    "aurelia-logging": ">=1.2.0",
    "ava": ">=0.20"
  },
  "devDependencies": {
    "@types/mkdirp": "^0.5.0",
    "@types/node": "^8.0.15",
    "assert-order": "^2.3.1",
    "aurelia-logging": "^1.3.1",
    "aurelia-logging-color": "^0.5.5",
    "aurelia-polyfills": "^1.2.2",
    "ava": "^0.21.0",
    "bluebird": "^3.5.0",
    "browser-env": "^3.0.0",
    "core-js": "^2.4.1",
    "dependency-check": "^2.9.1",
    "eslint": "^4.1.1",
    "eslint-config-unional": "^0.2.3",
    "mkdirp": "^0.5.1",
    "nyc": "^11.0.3",
    "rimraf": "^2.6.1",
    "tslint": "^5.4.3",
    "tslint-config-unional": "^0.8.0",
    "typescript": "^2.4.1"
  },
  "dependencies": {
    "dir-compare": "^1.4.0"
  }
}
