{
  "name": "statigen",
  "version": "0.5.2",
  "description": "A static site generator that supports html, ejs, and markdown source files",
  "main": "dist/index.js",
  "repository": {
    "url": "https://github.com/TwitchBronBron/statigen"
  },
  "keywords": [
    "static-site-generator",
    "staticSiteGenerator"
  ],
  "scripts": {
    "build": "rimraf dist && tsc",
    "watch": "rimraf dist && tsc --watch",
    "test": "nyc mocha",
    "test:nocover": "mocha",
    "lint": "eslint \"src/**\"",
    "publish-coverage": "nyc report --reporter=text-lcov | coveralls",
    "preversion": "npm run build && npm run lint && npm run test",
    "serve-docs": "npm run build && node dist/cli.js --sourceDir docs --outDir .tmp/docs --watch",
    "serve-default-template": "npm run build && node dist/cli.js --sourceDir templates/default --outDir .tmp/templates/default --watch"
  },
  "bin": {
    "statigen": "dist/cli.js"
  },
  "files": [
    "dist/**/*",
    "templates/**/*",
    "LICENSE.txt",
    "README.md"
  ],
  "author": "Bronley Plumb",
  "license": "MIT",
  "dependencies": {
    "@compodoc/live-server": "^1.2.3",
    "@parcel/watcher": "^2.0.5",
    "chalk": "^4.1.2",
    "chokidar": "^3.5.1",
    "debounce": "^1.2.1",
    "ejs": "^3.1.8",
    "ejs-lint": "^1.2.2",
    "empty-dir": "^2.0.0",
    "fast-glob": "^3.2.11",
    "front-matter": "^4.0.2",
    "fs-extra": "^10.0.1",
    "marked": "^4.0.12",
    "moment": "^2.29.2",
    "semver": "^7.5.4",
    "yargs": "^17.4.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.0",
    "@types/chokidar": "^2.1.3",
    "@types/debounce": "^1.2.1",
    "@types/ejs": "^3.0.6",
    "@types/finalhandler": "^1.1.0",
    "@types/fs-extra": "^9.0.11",
    "@types/live-server": "^1.2.0",
    "@types/marked": "^4.0.3",
    "@types/mocha": "^9.1.0",
    "@types/node": "^14.14.41",
    "@types/semver": "^7.5.4",
    "@types/sinon": "^10.0.0",
    "@types/yargs": "^16.0.1",
    "@typescript-eslint/eslint-plugin": "^5.17.0",
    "@typescript-eslint/parser": "^5.17.0",
    "chai": "^4.3.6",
    "coveralls-next": "^4.2.0",
    "eslint": "^8.12.0",
    "eslint-plugin-github": "^4.3.6",
    "eslint-plugin-no-only-tests": "^2.6.0",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "rimraf": "^3.0.2",
    "sinon": "^13.0.1",
    "source-map-support": "^0.5.21",
    "ts-node": "^10.7.0",
    "typescript": "^4.6.3"
  },
  "mocha": {
    "spec": "src/**/*.spec.ts",
    "require": [
      "source-map-support/register",
      "ts-node/register"
    ],
    "fullTrace": true,
    "watchExtensions": [
      "ts"
    ]
  },
  "nyc": {
    "include": [
      "src/**/*.ts",
      "!src/**/*.spec.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register",
      "source-map-support/register"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true,
    "check-coverage": false,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100
  }
}
