@stuntman/shared
Version:
Stuntman - HTTP proxy / mock shared types and utils
62 lines • 1.52 kB
JSON
{
"name": "@stuntman/shared",
"version": "1.0.0",
"description": "Stuntman - HTTP proxy / mock shared types and utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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": {
"config": "3.3.12",
"pino": "9.6.0",
"ts-jest": "^29.3.1"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/config": "3.3.5",
"@types/jest": "^29.5.14",
"jest": "29.7.0",
"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"
}
}