{
  "name": "yaml-server",
  "version": "1.10.0",
  "engines": {
    "node": ">=8.3.0"
  },
  "bin": {
    "yaml-server": "./src/index.js"
  },
  "description": "A command line tool that creates a REST server from a YAML file that you specify",
  "main": "index.js",
  "scripts": {
    "start": "node ./src/index.js",
    "test": "jest --coverage",
    "test:watch": "jest --watchAll",
    "premake-badge": "$(npm bin)/jest --coverage",
    "make-badge": "$(npm bin)/coverage-badges",
    "toc": "npx markdown-toc README.md",
    "lint": "npx eslint ./src/**"
  },
  "jest": {
    "coverageReporters": [
      "text",
      "lcov",
      "json-summary",
      "cobertura"
    ]
  },
  "keywords": [
    "YAML",
    "YML",
    "server",
    "fake",
    "REST",
    "API",
    "prototyping",
    "mock",
    "mocking",
    "test",
    "testing",
    "rest",
    "data"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/softchris/yaml-server.git"
  },
  "homepage": "https://softchris.github.io/yaml-server.html",
  "bugs": {
    "url": "https://github.com/softchris/yaml-server/issues"
  },
  "author": "Chris Noring (https://softchris.github.io)",
  "contributors": [
    {
      "name": "chris noring",
      "url": "https://softchris.github.io"
    }
  ],
  "license": "MIT",
  "dependencies": {
    "chalk": "^4.0.0",
    "cors": "^2.8.5",
    "express": "^4.17.1",
    "opn": "^6.0.0",
    "yaml": "^1.9.2",
    "yargs": "^15.3.1"
  },
  "devDependencies": {
    "coverage-badges": "^1.0.4",
    "eslint": "^7.0.0",
    "eslint-plugin-jest": "^23.13.1",
    "eslint-plugin-node": "^11.1.0",
    "jest": "^26.0.1",
    "markdown-toc": "^1.2.0",
    "supertest": "^4.0.2"
  }
}
