{
  "name": "@iamkenos/fragile",
  "version": "0.2.1",
  "license": "MIT",
  "author": "iamkenos",
  "description": "A mocking framework powered by Express, designed to serve mock HTTP/s responses.",
  "main": "./build/index.js",
  "bin": {
    "fragile": "bin/fragile.js"
  },
  "homepage": "https://github.com/iamkenos/fragile#readme",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/iamkenos/fragile.git"
  },
  "bugs": {
    "url": "https://github.com/iamkenos/fragile/issues"
  },
  "scripts": {
    "start": "npm run build && node bin/fragile",
    "prebuild": "rimraf build && npm run lint -- --fix",
    "build": "tsc --build tsconfig.build.json",
    "postbuild": "run-s postbuild:**",
    "postbuild:cp:types": "shx mkdir -p build/types && shx cp -R ./src/types build",
    "postbuild:cp:resources": "shx cp -R ./src/cli/resources build/cli",
    "postbuild:cp:prettierrc": "shx cp ./.prettierrc build/cli/resources",
    "postbuild:cp:samples": "shx cp -R ./demo build/cli/resources",
    "postbuild:mv:samples": "shx mv ./build/cli/resources/demo ./build/cli/resources/samples",
    "postbuild:mv:tsconfig": "shx mv ./build/cli/resources/tsconfig.tpl.ejs ./build/cli/resources/tsconfig.json",
    "postbuild:rm:clutter": "rimraf ./build/cli/**/{recordings,certs,test}",
    "demo:serve": "./bin/fragile.js demo/fragile.conf.ts",
    "demo:serve:silent": "npm run demo:serve -- --l silent",
    "demo:test": "jest --config demo/test/.jestrc.js || exit 0",
    "pack": "npm run build && npm pack",
    "lint": "eslint ./",
    "test": "run-s test:**",
    "test:unit": "jest --config .jestrc.js --coverage",
    "test:demo": "start-test demo:serve:silent 1080 demo:test",
    "prerelease": "npm run build && npm test",
    "release": "node ./.scripts/s_release.js",
    "prepare": "husky install && npm run build"
  },
  "dependencies": {
    "@babel/core": "7.14.6",
    "@babel/preset-env": "7.14.5",
    "@babel/register": "7.14.5",
    "@types/cookie-parser": "1.4.2",
    "@types/express": "4.17.12",
    "@types/express-rate-limit": "5.1.2",
    "@types/multer": "1.4.6",
    "body-parser": "1.19.0",
    "body-parser-xml": "2.0.3",
    "chalk": "4.1.1",
    "cookie-parser": "1.4.5",
    "cors": "2.8.5",
    "ejs": "3.1.6",
    "express": "4.17.1",
    "express-rate-limit": "5.2.6",
    "fs-extra": "10.0.0",
    "http-proxy-middleware": "2.0.0",
    "inquirer": "8.1.1",
    "lodash.merge": "4.6.2",
    "loglevel": "1.7.1",
    "loglevel-plugin-prefix": "0.8.4",
    "multer": "1.4.2",
    "prettier": "2.3.1",
    "shelljs": "0.8.4",
    "slash": "3.0.0",
    "ts-node": "10.0.0",
    "tsconfig-paths": "3.9.0",
    "typescript": "4.3.4",
    "url-pattern": "1.0.3",
    "yargs": "17.0.1"
  },
  "devDependencies": {
    "@types/body-parser-xml": "2.0.0",
    "@types/cors": "2.8.10",
    "@types/ejs": "3.0.6",
    "@types/eslint": "7.2.13",
    "@types/fs-extra": "9.0.11",
    "@types/glob": "7.1.3",
    "@types/inquirer": "7.3.2",
    "@types/jest": "26.0.23",
    "@types/lodash": "4.14.170",
    "@types/lodash.merge": "4.6.6",
    "@types/prettier": "2.3.0",
    "@types/request": "2.48.5",
    "@types/rimraf": "3.0.0",
    "@types/shelljs": "0.8.8",
    "@types/xml2js": "0.4.8",
    "@types/yargs": "17.0.0",
    "@typescript-eslint/eslint-plugin": "4.27.0",
    "@typescript-eslint/parser": "4.27.0",
    "dotenv": "10.0.0",
    "eslint": "7.29.0",
    "eslint-config-standard": "16.0.3",
    "eslint-plugin-import": "2.23.4",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-promise": "5.1.0",
    "eslint-plugin-standard": "5.0.0",
    "got": "11.8.2",
    "husky": "6.0.0",
    "jest": "27.0.4",
    "lint-staged": "11.0.0",
    "npm-run-all": "4.1.5",
    "rimraf": "3.0.2",
    "shx": "0.3.3",
    "start-server-and-test": "1.12.5",
    "ts-jest": "27.0.3"
  }
}
