-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
133 lines (133 loc) · 3.78 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
124
125
126
127
128
129
130
131
132
133
{
"name": "@oclif/core",
"description": "base library for oclif CLIs",
"version": "4.0.32",
"author": "Salesforce",
"bugs": "https://github.com/oclif/core/issues",
"dependencies": {
"ansi-escapes": "^4.3.2",
"ansis": "^3.3.2",
"clean-stack": "^3.0.1",
"cli-spinners": "^2.9.2",
"debug": "^4.3.7",
"ejs": "^3.1.10",
"get-package-type": "^0.1.0",
"globby": "^11.1.0",
"indent-string": "^4.0.0",
"is-wsl": "^2.2.0",
"lilconfig": "^3.1.2",
"minimatch": "^9.0.5",
"semver": "^7.6.3",
"string-width": "^4.2.3",
"supports-color": "^8",
"widest-line": "^3.1.0",
"wordwrap": "^1.0.0",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/clean-stack": "^2.1.1",
"@types/debug": "^4.1.10",
"@types/ejs": "^3.1.5",
"@types/indent-string": "^4.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^18",
"@types/pnpapi": "^0.0.5",
"@types/sinon": "^17.0.3",
"@types/supports-color": "^8.1.3",
"@types/wordwrap": "^1.0.3",
"@types/wrap-ansi": "^3.0.0",
"benchmark": "^2.1.4",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"commitlint": "^19",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.1",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15",
"madge": "^6.1.0",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"sinon": "^18",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/oclif/core",
"keywords": [
"oclif",
"cli",
"command",
"command line",
"parser",
"args",
"argv"
],
"license": "MIT",
"exports": {
".": "./lib/index.js",
"./args": "./lib/args.js",
"./command": "./lib/command.js",
"./config": "./lib/config/index.js",
"./errors": "./lib/errors/index.js",
"./execute": "./lib/execute.js",
"./flags": "./lib/flags.js",
"./flush": "./lib/flush.js",
"./handle": "./lib/errors/handle.js",
"./help": "./lib/help/index.js",
"./hooks": "./lib/interfaces/hooks.js",
"./interfaces": "./lib/interfaces/index.js",
"./logger": "./lib/logger.js",
"./parser": "./lib/parser/index.js",
"./performance": "./lib/performance.js",
"./run": "./lib/main.js",
"./settings": "./lib/settings.js",
"./util/ids": "./lib/util/ids.js",
"./ux": "./lib/ux/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",
"compile": "tsc",
"format": "prettier --write \"+(src|test)/**/*.+(ts|js|json)\"",
"lint": "eslint . --ext .ts",
"posttest": "yarn lint && yarn test:circular-deps",
"prepack": "yarn run build",
"prepare": "husky",
"test:circular-deps": "yarn build && madge lib/ -c",
"test:debug": "nyc mocha --debug-brk --inspect \"test/**/*.test.ts\"",
"test:integration": "mocha --forbid-only \"test/**/*.integration.ts\" --parallel --timeout 1200000",
"test:interoperability": "cross-env DEBUG=integration:* ts-node test/integration/interop.ts",
"test:perf": "ts-node test/perf/parser.perf.ts",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\" --parallel"
},
"types": "lib/index.d.ts"
}