-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.94 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
{
"name": "@oclif/multi-stage-output",
"description": "Terminal output for oclif commands with multiple stages",
"version": "0.7.15",
"author": "Salesforce",
"bugs": "https://github.com/oclif/multi-stage-output/issues",
"dependencies": {
"@oclif/core": "^4",
"@types/react": "^18.3.12",
"cli-spinners": "^2",
"figures": "^6.1.0",
"ink": "^5.0.1",
"react": "^18.3.1",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19",
"@oclif/prettier-config": "^0.2.1",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.10",
"@types/node": "^18",
"@types/sinon": "^17.0.3",
"chai": "^4.5.0",
"commitlint": "^19",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.2",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"ink-testing-library": "^4.0.0",
"lint-staged": "^15",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"sinon": "^18",
"strip-ansi": "^7.1.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/oclif/core",
"keywords": [
"oclif",
"cli",
"stages"
],
"license": "MIT",
"exports": {
".": "./lib/index.js"
},
"repository": "oclif/core",
"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",
"prepack": "yarn run build",
"prepare": "husky",
"test": "mocha --forbid-only \"test/**/*.test.+(ts|tsx)\" --parallel"
},
"types": "lib/index.d.ts",
"type": "module"
}