{
  "name": "listcheck",
  "version": "1.0.0",
  "description": "A Checklist CLI. Create checklists and run them repeatedly from the command line.",
  "keywords": ["checklist", "check", "tasklist", "tasks", "cli", "command line", "command-line"],
  "bin": "dist/index.js",
  "homepage": "https://github.com/lhansford/listcheck",
  "author": "Luke Hansford",
  "license": "MIT",
  "scripts": {
    "type-check": "tsc --noEmit",
    "type-check:watch": "yarn type-check -- --watch",
    "build": "yarn build:types && yarn build:js",
    "build:types": "tsc --emitDeclarationOnly",
    "build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline --ignore **/*.test.ts",
    "lint": "node_modules/eslint/bin/eslint.js src --ext .js,.ts",
    "lint:fix": "yarn lint --fix",
    "start": "yarn build && node dist/index.js",
    "test": "jest",
    "test:watch": "jest --watchAll"
  },
  "devDependencies": {
    "@babel/cli": "^7.12.1",
    "@babel/core": "^7.12.3",
    "@babel/plugin-proposal-object-rest-spread": "^7.9.0",
    "@babel/plugin-transform-async-to-generator": "^7.8.3",
    "@babel/preset-env": "^7.12.1",
    "@babel/preset-typescript": "^7.12.1",
    "@types/chalk": "^2.2.0",
    "@types/commander": "^2.12.2",
    "@types/inquirer": "^6.5.0",
    "@types/jest": "^26.0.15",
    "babel-jest": "^26.6.1",
    "eslint": "^6.8.0",
    "eslint-config-fishbrain-base": "^2.0.0",
    "eslint-plugin-jest-formatting": "^2.0.0",
    "jest": "^26.6.1",
    "prettier": "^2.1.2",
    "typescript": "^4.0.3"
  },
  "dependencies": {
    "chalk": "^4.1.0",
    "commander": "^6.2.0",
    "inquirer": "^7.3.3"
  }
}
