@stuntman/client
Version:
Stuntman - HTTP proxy / mock API client
63 lines • 1.57 kB
JSON
{
"name": "@stuntman/client",
"version": "1.0.0",
"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.0",
"serialize-javascript": "6.0.2",
"uuid": "11.1.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "^29.5.14",
"@types/serialize-javascript": "5.0.4",
"@types/uuid": "10.0.0",
"jest": "29.7.0",
"ts-jest": "29.3.1",
"typescript": "5.8.2"
},
"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"
}
}