UNPKG

create-oclif

Version:

oclif: create your own CLI

132 lines (131 loc) 3.52 kB
{ "name": "create-oclif", "description": "oclif: create your own CLI", "version": "1.17.0", "author": "Jeff Dickey @jdxcode", "bin": { "oclif": "bin/run" }, "bugs": "https://github.com/oclif/oclif/issues", "dependencies": { "@oclif/command": "^1.6", "@oclif/config": "^1.12.6", "@oclif/errors": "^1.2.2", "@oclif/fixpack": "^2.3.0", "@oclif/plugin-help": "^3", "@oclif/plugin-not-found": "^1.2.2", "@oclif/plugin-warn-if-update-available": "^1.5.4", "cli-ux": "^5.2.1", "debug": "^4.1.1", "find-yarn-workspace-root": "^2.0.0", "fs-extra": "^8.1", "github-slugger": "^1.2.1", "lodash": "^4.17.11", "normalize-package-data": "^3.0.0", "nps-utils": "^1.7.0", "qqjs": "^0.3.10", "sort-pjson": "^1.0.3", "tslib": "^2.0.0", "yeoman-environment": "^2.3.4", "yeoman-generator": "3", "yosay": "^2.0.2" }, "devDependencies": { "@oclif/dev-cli": "^1.21.0", "@oclif/plugin-legacy": "^1.1.4", "@oclif/test": "^1.2.4", "@types/chai": "^4.1.7", "@types/execa": "^0.9.0", "@types/fs-extra": "^9.0", "@types/lodash": "^4.14.121", "@types/lodash.template": "^4.4.6", "@types/mocha": "^8.0.0", "@types/node": "^14.0.14", "@types/read-pkg": "^5.1.0", "@types/shelljs": "^0.8.3", "@types/supports-color": "^7.2.0", "@types/write-json-file": "^3.2.1", "@types/yeoman-environment": "^2.10.2", "@types/yosay": "^0.0.29", "aws-sdk": "^2.443.0", "chai": "^4.2.0", "conventional-changelog-cli": "^2.0.17", "eslint": "^7.3.0", "eslint-config-oclif": "^3.1.0", "eslint-config-oclif-typescript": "^0.2.0", "execa": "^0.10.0", "fancy-test": "^1.4.3", "globby": "^11.0.1", "mocha": "^8.2.1", "npm-run-path": "^4.0.1", "nps": "^5.9.3", "shelljs": "^0.8.3", "tmp": "^0.2.1", "ts-node": "^9.0.0", "typescript": "3.8.3" }, "engines": { "node": ">=8.0.0" }, "files": [ ".oclif.manifest.json", "/bin", "/lib", "/templates" ], "homepage": "https://github.com/oclif/oclif", "keywords": [ "oclif" ], "license": "MIT", "main": "lib/index.js", "oclif": { "commands": "./lib/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-warn-if-update-available", "@oclif/plugin-not-found" ], "bin": "oclif", "dirname": "oclif", "macos": { "identifier": "com.oclif.cli", "sign": "Developer ID Installer: Heroku INC" }, "update": { "autoupdate": { "rollout": 50, "debounce": 60 }, "node": { "version": "12.12.0" }, "s3": { "bucket": "oclif-staging", "xz": true } }, "topics": { "pack": { "description": "package an oclif CLI into installable artifacts" }, "upload": { "description": "upload installable CLI artifacts to AWS S3" } } }, "repository": "oclif/oclif", "scripts": { "build": "rm -rf lib && tsc", "devcli:lint": "eslint . --ext .ts --config .eslintrc", "devcli:test": "mocha --forbid-only \"test/*.test.ts\"", "devcli": "yarn build --noEmit && yarn run devcli:test && yarn run devcli:lint", "lint": "nps lint", "postpack": "rm .oclif.manifest.json", "posttest": "yarn run lint", "prepack": "rm -rf lib && tsc && oclif-dev manifest", "version": "oclif-dev readme && git add README.md", "test": "nps test" }, "types": "lib/index.d.ts" }