@stuntman/client
Version:
Stuntman - HTTP proxy / mock API client
63 lines • 1.57 kB
JSON
{
"name": "@stuntman/client",
"version": "1.0.2",
"description": "Stuntman - HTTP proxy / mock API client",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/andrzej-woof/stuntman.git"
},
"homepage": "https://github.com/andrzej-woof/stuntman#readme",
"bugs": {
"url": "https://github.com/andrzej-woof/stuntman/issues"
},
"keywords": [
"proxy",
"mock",
"http",
"https",
"server",
"api",
"e2e",
"development",
"rest",
"gql",
"end-to-end",
"testing",
"qa",
"automated-testing",
"stub",
"functional"
],
"author": "Andrzej Pasterczyk",
"license": "MIT",
"dependencies": {
"@stuntman/shared": "^1.0.2",
"serialize-javascript": "7.0.2",
"uuid": "13.0.0"
},
"devDependencies": {
"@jest/globals": "30.2.0",
"@types/jest": "^30.0.0",
"@types/serialize-javascript": "5.0.4",
"@types/uuid": "11.0.0",
"jest": "30.2.0",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"files": [
"src/**",
"dist/**",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test LOG_LEVEL=silent NODE_CONFIG_STRICT_MODE= SUPPRESS_NO_CONFIG_WARNING=1 jest --coverage",
"clean": "rm -fr dist",
"build": "tsc && tsc-alias",
"lint": "prettier --check \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\"",
"lint:fix": "prettier --write \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\" --fix"
}
}