UNPKG

2.77 kBJSONView Raw
1{
2 "name": "@oclif/dev-cli",
3 "description": "helpers for oclif CLIs",
4 "version": "1.26.3",
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.4",
12 "@oclif/config": "^1.17.1",
13 "@oclif/errors": "^1.3.5",
14 "@oclif/plugin-help": "^3.2.7",
15 "cli-ux": "^5.6.4",
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.1",
27 "@oclif/test": "^1.2.8",
28 "@types/chai": "^4.1.7",
29 "@types/execa": "^0.9.0",
30 "@types/fs-extra": "^9.0",
31 "@types/lodash": "^4.14.123",
32 "@types/lodash.template": "^4.4.6",
33 "@types/mocha": "^7.0.2",
34 "@types/node": "^14.0.14",
35 "@types/supports-color": "^5.3.0",
36 "@types/write-json-file": "^3.2.1",
37 "aws-sdk": "^2.443.0",
38 "chai": "^4.2.0",
39 "conventional-changelog-cli": "^2.0.17",
40 "eslint": "^7.3.1",
41 "eslint-config-oclif": "^3.1.0",
42 "eslint-config-oclif-typescript": "^0.2.0",
43 "globby": "^11.0.1",
44 "mocha": "^8.2.1",
45 "ts-node": "^9.0.0",
46 "typescript": "3.8.3"
47 },
48 "engines": {
49 "node": ">=8.10.0"
50 },
51 "files": [
52 "/oclif.manifest.json",
53 "/bin",
54 "/lib"
55 ],
56 "homepage": "https://github.com/oclif/dev-cli",
57 "keywords": [
58 "oclif"
59 ],
60 "license": "MIT",
61 "main": "lib/index.js",
62 "oclif": {
63 "commands": "./lib/commands",
64 "dirname": "oclif-dev",
65 "bin": "oclif-dev",
66 "macos": {
67 "identifier": "com.oclif.devcli",
68 "sign": "Developer ID Installer: Heroku INC"
69 },
70 "update": {
71 "autoupdate": {
72 "rollout": 50,
73 "debounce": 60
74 },
75 "node": {
76 "version": "12.12.0"
77 },
78 "s3": {
79 "bucket": "oclif-staging",
80 "xz": true
81 }
82 },
83 "plugins": [
84 "@oclif/plugin-help"
85 ]
86 },
87 "repository": "oclif/dev-cli",
88 "scripts": {
89 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
90 "lint": "eslint . --ext .ts --config .eslintrc",
91 "postpack": "rm -f oclif.manifest.json",
92 "posttest": "yarn lint",
93 "prepack": "yarn build && node ./bin/run manifest",
94 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
95 "version": "npm run changelog && node ./bin/run readme && git add README.md",
96 "pretest": "yarn build --noEmit && echo 'Skipping test dir compile check in CI for now (3rd party type error) but you should compile it locally'",
97 "build": "rm -rf lib && tsc"
98 },
99 "types": "lib/index.d.ts"
100}