{
  "name": "github-actions",
  "version": "0.9.0",
  "private": false,
  "description": "CLI tool to install and update GitHub Actions",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "build": "rm -rf dist/* lib/* && tsc",
    "dev": "ts-node src/index.ts",
    "test": "jest",
    "test-cov": "jest --coverage",
    "workflows": "ts-node ./validator.ts",
    "lint": "eslint src/**/*.ts --cache",
    "format": "prettier --write **/*.ts",
    "format-check": "prettier --check **/*.ts",
    "uglify": "uglifyjs dist/index.js -cm > dist/index.min.js && rm dist/index.js && mv dist/index.min.js dist/index.js"
  },
  "bin": {
    "ghactions": "bin/ghactions"
  },
  "files": [
    "lib/*"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vemel/github_actions_js.git"
  },
  "keywords": [
    "actions",
    "node",
    "version",
    "pep440",
    "semver"
  ],
  "author": "Vlad Emelianov",
  "license": "MIT",
  "dependencies": {
    "chalk": "^4.1.0",
    "command-line-args": "^5.1.1",
    "command-line-usage": "^6.1.1",
    "configstore": "^3.1.5",
    "deep-equal": "^2.0.5",
    "diff": "^5.0.0",
    "inquirer": "^8.0.0",
    "inquirer-select-directory": "^1.2.0",
    "js-yaml": "^4.0.0",
    "node-fetch": "^2.6.1"
  },
  "devDependencies": {
    "@types/command-line-args": "^5.0.0",
    "@types/command-line-usage": "^5.0.1",
    "@types/deep-equal": "^1.0.1",
    "@types/diff": "^5.0.0",
    "@types/inquirer": "^7.3.1",
    "@types/jest": "^26.0.22",
    "@types/js-yaml": "^4.0.0",
    "@types/node": "^14.14.37",
    "@types/node-fetch": "^2.5.9",
    "@typescript-eslint/eslint-plugin": "^4.21.0",
    "@typescript-eslint/parser": "^4.21.0",
    "eslint": "^7.23.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.3.4",
    "eslint-plugin-prettier": "^3.3.1",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "jest": "^26.6.3",
    "prettier": "^2.2.1",
    "ts-jest": "^26.5.4",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.3",
    "uglify-js": "^3.13.3"
  }
}
