{
  "name": "jest-t-assert",
  "version": "0.3.0",
  "description": "Use tape style assertions with Jest",
  "main": "lib/index.js",
  "module": "src/index.js",
  "author": "Michael Jungo <michaeljungo92@gmail.com>",
  "license": "MIT",
  "engines": {
    "node": ">=6"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jungomi/jest-t-assert.git"
  },
  "files": [
    "lib",
    "src"
  ],
  "keywords": [
    "assert",
    "assertion",
    "jest",
    "tape",
    "test",
    "testing"
  ],
  "scripts": {
    "build": "babel src --out-dir lib",
    "clean": "rimraf lib",
    "fix": "eslint . --fix",
    "lint": "eslint .",
    "test": "jest",
    "test-update": "jest -u",
    "test-watch": "jest --watch",
    "prepublish": "yarn run clean && yarn run build"
  },
  "peerDependencies": {
    "jest": "*"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.3",
    "babel-eslint": "^8.2.6",
    "babel-preset-env": "^1.7.0",
    "eslint": "^5.3.0",
    "eslint-plugin-prettier": "^2.6.2",
    "jest": "^23.5.0",
    "prettier": "^1.14.2",
    "rimraf": "^2.6.2"
  }
}
