{
  "name": "earljs",
  "description": "Ergonomic, modern and type-safe assertion library",
  "keywords": [
    "assert",
    "assertion",
    "assertions",
    "modern",
    "mocha",
    "chai",
    "jest",
    "typescript",
    "test",
    "testing",
    "unit",
    "tdd",
    "bdd",
    "expect",
    "exception"
  ],
  "repository": "git@github.com:earl-js/earl.git",
  "author": "Kris Kaczor <chris@kaczor.io>",
  "license": "MIT",
  "version": "0.2.3",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*",
    "internals/package.json",
    "mocha/package.json",
    "uvu/package.json"
  ],
  "scripts": {
    "start": "ts-node -T ./src/index.ts",
    "format": "prettier --ignore-path ../../.prettierignore --check .",
    "format:fix": "prettier --ignore-path ../../.prettierignore --write .",
    "lint": "eslint --ext .ts src test",
    "lint:fix": "yarn lint --fix",
    "typecheck": "tsc --noEmit",
    "clean": "rimraf dist",
    "build": "yarn clean && tsc -p ./tsconfig.prod.json",
    "build:watch": "yarn clean && tsc -p ./tsconfig.prod.json --watch",
    "build:watch:test": "yarn clean && tsc -p ./tsconfig.json --watch",
    "test": "mocha",
    "test:fix": "yarn lint:fix && yarn format:fix && yarn typecheck && yarn test",
    "release": "yarn lint && yarn format && yarn typecheck && yarn test && yarn build"
  },
  "dependencies": {
    "debug": "^4.1.1",
    "jest-snapshot": "^26.6.2",
    "ts-essentials": "^6.0.5"
  },
  "devDependencies": {
    "@microsoft/tsdoc": "^0.13.0",
    "@types/debug": "^4.1.5",
    "error-stack-parser": "^2.0.6"
  }
}
