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