{
  "name": "create-nightwatch",
  "version": "3.4.1",
  "description": "Nightwatch.js init command tool to setup everything up in no time using `npm init nightwatch`",
  "main": "index.js",
  "bin": {
    "create-nightwatch": "./index.js"
  },
  "scripts": {
    "setVersion": "node -p \"'export const CURRENT_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/utils/version.ts",
    "build": "rimraf dist && npm run setVersion && tsc",
    "prepare": "npm run build",
    "create-nightwatch": "npm run build && node index.js",
    "esbuild": "esbuild --bundle src/index.ts --outdir=dist --platform=node --target=ES2019",
    "test": "npm run build && npx nightwatch"
  },
  "keywords": [],
  "author": "Priyansh Garg",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nightwatchjs/create-nightwatch"
  },
  "devDependencies": {
    "@npm/types": "^1.0.2",
    "@types/inquirer": "^8.2.1",
    "@types/minimist": "^1.2.2",
    "@types/mockery": "^1.4.30",
    "@types/node": "^17.0.41",
    "@typescript-eslint/eslint-plugin": "^5.27.1",
    "@typescript-eslint/parser": "^5.27.1",
    "eslint": "^8.27.0",
    "mocha": "^10.1.0",
    "mockery": "^2.1.0",
    "nightwatch": "^3.6.2",
    "nock": "^13.2.9",
    "rimraf": "^5.0.5",
    "typescript": "^4.7.3"
  },
  "dependencies": {
    "@nightwatch/setup-tools": "^3.4.1",
    "ansi-colors": "^4.1.3",
    "axios": "^1.6.8",
    "inquirer": "^8.2.4",
    "minimist": "^1.2.6"
  },
  "files": [
    "dist",
    "index.js"
  ]
}
