{
  "name": "@mochiapp/runner",
  "version": "0.0.2",
  "description": "A test runner used for Mochi modules.",
  "keywords": [
    "mochi",
    "runner"
  ],
  "author": "errorerrorerror",
  "repository": "https://github.com/Mochi-Team/runner",
  "license": "MIT",
  "private": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "./dist"
  ],
  "dependencies": {
    "@types/got": "^9.6.12",
    "axios": "^1.6.2"
  },
  "devDependencies": {
    "@mochiapp/js": "~0.0.1",
    "@types/chai": "^4.3.11",
    "@types/mocha": "^10.0.6",
    "@types/node": "^20.10.4",
    "@typescript-eslint/eslint-plugin": "^6.14.0",
    "@typescript-eslint/parser": "^6.14.0",
    "chai": "^4.3.10",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "husky": "^8.0.3",
    "lint-staged": "^15.2.0",
    "mocha": "^10.2.0",
    "prettier": "^3.1.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "peerDependencies": {
    "@mochiapp/js": "~0.0.1"
  },
  "lint-staged": {
    "*.ts": [
      "pnpm lint:fix",
      "pnpm format"
    ]
  },
  "scripts": {
    "lint": "eslint",
    "lint:fix": "eslint --fix",
    "format": "prettier -w .",
    "format:check": "prettier --check .",
    "build": "rm -rf dist/ && tsc",
    "test": "mocha -r ts-node/register test/**/*.spec.ts"
  }
}