-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
123 lines (123 loc) · 3.32 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@oclif/core",
"description": "base library for oclif CLIs",
"version": "2.9.3",
"author": "Salesforce",
"bugs": "https://github.com/oclif/core/issues",
"dependencies": {
"@types/cli-progress": "^3.11.0",
"ansi-escapes": "^4.3.2",
"ansi-styles": "^4.3.0",
"cardinal": "^2.1.1",
"chalk": "^4.1.2",
"clean-stack": "^3.0.1",
"cli-progress": "^3.12.0",
"debug": "^4.3.4",
"ejs": "^3.1.8",
"fs-extra": "^9.1.0",
"get-package-type": "^0.1.0",
"globby": "^11.1.0",
"hyperlinker": "^1.0.0",
"indent-string": "^4.0.0",
"is-wsl": "^2.2.0",
"js-yaml": "^3.14.1",
"natural-orderby": "^2.0.3",
"object-treeify": "^1.1.33",
"password-prompt": "^1.1.2",
"semver": "^7.5.3",
"slice-ansi": "^4.0.0",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"supports-color": "^8.1.1",
"supports-hyperlinks": "^2.2.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"widest-line": "^3.1.0",
"wordwrap": "^1.0.0",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@oclif/plugin-help": "^5.2.8",
"@oclif/plugin-plugins": "^2.4.7",
"@oclif/test": "^2.3.15",
"@types/ansi-styles": "^3.2.1",
"@types/benchmark": "^2.1.2",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/clean-stack": "^2.1.1",
"@types/ejs": "^3.1.2",
"@types/fs-extra": "^9.0.13",
"@types/indent-string": "^4.0.1",
"@types/js-yaml": "^3.12.7",
"@types/mocha": "^8.2.3",
"@types/nock": "^11.1.0",
"@types/node": "^16",
"@types/node-notifier": "^8.0.2",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^7.5.0",
"@types/shelljs": "^0.8.11",
"@types/slice-ansi": "^4.0.0",
"@types/strip-ansi": "^5.2.1",
"@types/supports-color": "^8.1.1",
"@types/wordwrap": "^1.0.1",
"@types/wrap-ansi": "^3.0.0",
"benchmark": "^2.1.4",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"commitlint": "^12.1.4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"fancy-test": "^2.0.16",
"globby": "^11.1.0",
"husky": "6",
"mocha": "^8.4.0",
"nock": "^13.3.0",
"proxyquire": "^2.1.3",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"sinon": "^11.1.2",
"tsd": "^0.25.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib",
"/flush.js",
"/flush.d.ts",
"/handle.js"
],
"homepage": "https://github.com/oclif/core",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "oclif/core",
"oclif": {
"bin": "oclif",
"devPlugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "shx rm -rf lib && tsc",
"commitlint": "commitlint",
"lint": "eslint . --ext .ts --config .eslintrc",
"posttest": "yarn lint",
"compile": "tsc",
"prepack": "yarn run build",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test:e2e": "mocha --forbid-only \"test/**/*.e2e.ts\" --timeout 1200000",
"pretest": "yarn build --noEmit && tsc -p test --noEmit --skipLibCheck",
"test:perf": "ts-node test/perf/parser.perf.ts"
},
"types": "lib/index.d.ts"
}