UNPKG

2.73 kBJSONView Raw
1{
2 "name": "@oclif/dev-cli",
3 "description": "helpers for oclif CLIs",
4 "version": "1.26.10",
5 "author": "Jeff Dickey @jdxcode",
6 "bin": {
7 "oclif-dev": "./bin/run"
8 },
9 "bugs": "https://github.com/oclif/dev-cli/issues",
10 "dependencies": {
11 "@oclif/command": "^1.8.15",
12 "@oclif/config": "^1.18.2",
13 "@oclif/errors": "^1.3.5",
14 "@oclif/plugin-help": "3.2.18",
15 "cli-ux": "5.6.7",
16 "debug": "^4.1.1",
17 "find-yarn-workspace-root": "^2.0.0",
18 "fs-extra": "^8.1",
19 "github-slugger": "^1.2.1",
20 "lodash": "^4.17.11",
21 "normalize-package-data": "^3.0.0",
22 "qqjs": "^0.3.10",
23 "tslib": "^2.0.3"
24 },
25 "devDependencies": {
26 "@oclif/plugin-legacy": "1.2.7",
27 "@oclif/test": "1.2.9",
28 "@types/chai": "^4.1.7",
29 "@types/execa": "^0.9.0",
30 "@types/fs-extra": "^9.0",
31 "@types/lodash": "^4.14.177",
32 "@types/mocha": "^7.0.2",
33 "@types/node": "^14.0.14",
34 "@types/supports-color": "^5.3.0",
35 "@types/write-json-file": "^3.2.1",
36 "aws-sdk": "^2.443.0",
37 "chai": "^4.2.0",
38 "conventional-changelog-cli": "^2.0.17",
39 "eslint": "^7.3.1",
40 "eslint-config-oclif": "^3.1.0",
41 "eslint-config-oclif-typescript": "^0.2.0",
42 "globby": "^11.0.1",
43 "mocha": "^8.2.1",
44 "ts-node": "^9.0.0",
45 "typescript": "3.8.3"
46 },
47 "engines": {
48 "node": ">=8.10.0"
49 },
50 "files": [
51 "/oclif.manifest.json",
52 "/bin",
53 "/lib"
54 ],
55 "homepage": "https://github.com/oclif/dev-cli",
56 "keywords": [
57 "oclif"
58 ],
59 "license": "MIT",
60 "main": "lib/index.js",
61 "oclif": {
62 "commands": "./lib/commands",
63 "dirname": "oclif-dev",
64 "bin": "oclif-dev",
65 "macos": {
66 "identifier": "com.oclif.devcli",
67 "sign": "Developer ID Installer: Heroku INC"
68 },
69 "update": {
70 "autoupdate": {
71 "rollout": 50,
72 "debounce": 60
73 },
74 "node": {
75 "version": "12.12.0"
76 },
77 "s3": {
78 "bucket": "oclif-staging",
79 "xz": true
80 }
81 },
82 "plugins": [
83 "@oclif/plugin-help"
84 ]
85 },
86 "repository": "oclif/dev-cli",
87 "scripts": {
88 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
89 "lint": "eslint . --ext .ts --config .eslintrc",
90 "postpack": "rm -f oclif.manifest.json",
91 "posttest": "yarn lint",
92 "prepack": "yarn build && node ./bin/run manifest",
93 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
94 "version": "npm run changelog && node ./bin/run readme && git add README.md",
95 "pretest": "yarn build --noEmit && echo 'Skipping test dir compile check in CI for now (3rd party type error) but you should compile it locally'",
96 "build": "rm -rf lib && tsc"
97 },
98 "types": "lib/index.d.ts"
99}