{
  "name": "@iyulab/http-test",
  "version": "1.3.0",
  "description": "API testing library, by .http files, Automatic assertion",
  "author": {
    "name": "iyulab",
    "url": "https://www.iyulab.com"
  },
  "homepage": "https://www.iyulab.com",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/iyulab/http-test.git"
  },
  "type": "module",
  "bin": {
    "http-test": "dist/program.cjs"
  },
  "main": "dist/index.js",
  "module": "dist/index.es.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "axios": "^1.13.2",
    "jsonpath-plus": "^10.3.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/jest": "^29.5.14",
    "@types/jsonpath": "^0.2.4",
    "@types/node": "^24.10.1",
    "@typescript-eslint/eslint-plugin": "^8.48.0",
    "@typescript-eslint/parser": "^8.48.0",
    "chalk": "^5.6.2",
    "eslint": "^9.39.1",
    "express": "^5.1.0",
    "jest": "^29.7.0",
    "json5": "^2.2.3",
    "multer": "^2.0.2",
    "nock": "^14.0.10",
    "rimraf": "^6.1.2",
    "rollup": "^4.53.3",
    "rollup-plugin-dts": "^6.3.0",
    "rollup-plugin-preserve-shebangs": "^0.2.0",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "start": "node --loader ts-node/esm ./src/program.ts ./tests/test_server.http",
    "detail": "node --loader ts-node/esm ./src/program.ts ./tests/test_server.http --verbose",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:ci": "jest --ci --coverage --watchAll=false",
    "lint": "eslint",
    "delete:types": "rimraf types",
    "delete:dist": "rimraf dist",
    "delete:all": "npm run delete:types && npm run delete:dist",
    "build": "npm run delete:all && tsc && rollup -c",
    "deploy": "npm version patch --no-git-tag-version && npm publish --access public"
  },
  "files": [
    "dist",
    "package.json",
    "README.md"
  ]
}
