UNPKG

haz-cli

Version:
75 lines (74 loc) 1.81 kB
{ "name": "haz-cli", "version": "0.0.4", "description": "HAZ CLI", "keywords": [ "haz" ], "homepage": "https://github.com/brianclogan/haz", "bugs": "https://github.com/brianclogan/haz/issues", "repository": "brianclogan/haz", "license": "MIT", "author": "Brian Logan", "type": "module", "exports": "./lib/index.js", "types": "dist/index.d.ts", "bin": { "haz": "./bin/run.js" }, "files": [ "/bin", "/dist", "/oclif.manifest.json" ], "scripts": { "build": "shx rm -rf dist && tsc -b", "lint": "eslint . --ext .ts", "prepack": "yarn build && oclif manifest && oclif readme", "postpack": "shx rm -f oclif.manifest.json", "prepare": "yarn build", "test": "mocha --forbid-only \"test/**/*.test.ts\"", "posttest": "yarn lint", "version": "oclif readme && git add README.md", "haz": "./bin/dev.js" }, "oclif": { "bin": "haz", "commands": "./dist/commands", "dirname": "haz", "plugins": [ "@oclif/plugin-not-found", "@oclif/plugin-autocomplete" ], "topicSeparator": ":", "topics": {} }, "dependencies": { "@oclif/core": "^3", "@oclif/plugin-help": "^6", "@oclif/plugin-not-found": "^3.1.1", "@oclif/plugin-plugins": "^4", "yaml": "^2.4.1" }, "devDependencies": { "@oclif/prettier-config": "^0.2.1", "@oclif/test": "^3", "@types/chai": "^4", "@types/mocha": "^10", "@types/node": "^18", "chai": "^4", "docker-compose": "^0.24.7", "eslint": "^8", "eslint-config-oclif": "^5", "eslint-config-oclif-typescript": "^3", "eslint-config-prettier": "^9.1.0", "mocha": "^10", "oclif": "^4.5.4", "shx": "^0.3.4", "ts-node": "^10.9.2", "typescript": "^5" }, "engines": { "node": ">=18.0.0" } }