{
  "name": "page-with",
  "version": "0.6.1",
  "description": "A library for usage example-driven in-browser testing of your own libraries.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": "git@github.com:kettanaito/page-with.git",
  "homepage": "https://github.com/kettanaito/page-with#readme",
  "author": "Artem Zakharchenko <kettanaito@gmail.com>",
  "license": "MIT",
  "files": [
    "lib",
    "README.md"
  ],
  "lint-staged": {
    "*.ts": [
      "eslint",
      "prettier"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "devDependencies": {
    "@ossjs/release": "^0.5.1",
    "@types/jest": "^27.0.2",
    "@types/node": "^16.11.6",
    "@typescript-eslint/eslint-plugin": "^5.2.0",
    "@typescript-eslint/parser": "^5.2.0",
    "cpy-cli": "^3.1.1",
    "eslint": "^8.1.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-jest": "^25.2.2",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^8.0.3",
    "jest": "^27.3.1",
    "lint-staged": "^10.5.3",
    "prettier": "^2.4.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.7",
    "ts-node": "^10.4.0",
    "typescript": "^4.4.4"
  },
  "dependencies": {
    "@open-draft/until": "^2.0.0",
    "@types/debug": "^4.1.7",
    "@types/express": "^4.17.13",
    "@types/mustache": "^4.1.2",
    "@types/uuid": "^8.3.1",
    "debug": "^4.3.2",
    "express": "^4.17.1",
    "headers-polyfill": "^3.0.3",
    "memfs": "^3.4.7",
    "mustache": "^4.2.0",
    "playwright": "^1.16.2",
    "uuid": "^8.3.2",
    "webpack": "^5.61.0",
    "webpack-merge": "^5.8.0"
  },
  "scripts": {
    "start": "tsc -w && pnpm copy",
    "lint": "eslint ./{src,test}/**/*.ts",
    "clean": "rimraf ./lib",
    "copy": "cpy '**/*' '!**/*.ts' ../lib --cwd=./src --no-overwrite --parents",
    "build": "pnpm lint && pnpm clean && tsc && pnpm copy",
    "test": "jest",
    "release": "release publish"
  }
}