{
  "name": "boxtape",
  "version": "0.0.16",
  "license": "MIT",
  "repository": "git@github.com:taylrun/boxtape.git",
  "author": "Taylor Goolsby <14286600+taylrun@users.noreply.github.com>",
  "description": "A tape testing framework with defaults",
  "keywords": [
    "tape",
    "testing",
    "tap"
  ],
  "bin": {
    "boxtape": "./cli.js"
  },
  "main": "boxtape.js",
  "types": "./boxtape.d.ts",
  "exports": {
    ".": "./boxtape.js",
    "./package.json": "./package.json"
  },
  "type": "module",
  "files": [
    "cli.js",
    "boxtape.js",
    "boxtape.d.ts"
  ],
  "scripts": {
    "test": "node cli.js tests/main.test.js && echo 'pass'",
    "test-fail": "node cli.js tests/fail.test.js && echo 'pass'",
    "prepublishOnly": "npm run test"
  },
  "dependencies": {
    "tap-pretty-with-errors": "^0.0.8",
    "tape": "^5.6.4"
  },
  "devDependencies": {
    "@types/tape": "^5.6.0",
    "sinon": "^15.2.0"
  }
}
