{
  "name": "buildless",
  "version": "0.0.10",
  "description": "Development HTTP server and deployment tool for static websites",
  "main": "./dist/index.js",
  "scripts": {
    "test": "exit 0",
    "prepublishOnly": "npm run compile",
    "compile": "npm run clean && tsc -p .",
    "watch": "tsc -w -p .",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "http",
    "server",
    "development",
    "static",
    "websites"
  ],
  "author": "Oleksii Rudenko <alexei.rudenko@gmail.com>",
  "license": "MIT",
  "bin": {
    "bls": "./dist/bin/bls.js"
  },
  "devDependencies": {
    "@types/chokidar": "2.1.3",
    "@types/colors": "1.2.1",
    "@types/debug": "4.1.4",
    "@types/glob": "7.1.1",
    "@types/lodash": "4.14.123",
    "@types/memory-fs": "0.3.2",
    "@types/mime": "2.0.1",
    "@types/minimist": "1.2.0",
    "@types/node": "11.13.7",
    "husky": "1.3.1",
    "lint-staged": "8.1.5",
    "prettier": "1.17.0",
    "typescript": "3.4.4"
  },
  "dependencies": {
    "aws-sdk": "2.441.0",
    "chokidar": "2.1.5",
    "colors": "1.3.3",
    "debug": "4.1.1",
    "glob": "7.1.3",
    "memory-fs": "0.4.1",
    "mime": "2.4.2",
    "minimist": "1.2.0"
  },
  "files": [
    "dist"
  ],
  "lint-staged": {
    "*.ts": [
      "prettier --single-quote --trailing-comma all --write",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run compile && lint-staged"
    }
  }
}
