-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.81 KB
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
{
"name": "steadybit",
"version": "4.4.0",
"description": "Command-line interface to interact with the Steadybit API",
"type": "module",
"keywords": [
"steadybit",
"cli",
"chaos engineering",
"resilience engineering",
"api",
"gitops"
],
"files": [
"dist"
],
"bin": {
"steadybit": "dist/cli/steadybit.js"
},
"repository": {
"type": "git",
"url": "https://github.com/steadybit/cli.git"
},
"scripts": {
"clean": "rm -rf dist",
"verify": "npm run verify:typecheck && npm run verify:unit-test && npm run verify:lint && npm run prettier-check",
"verify:typecheck": "tsc --noEmit",
"verify:unit-test": "vitest run",
"verify:lint": "eslint .",
"prettier-check": "prettier . --check",
"prettier-write": "prettier . --write",
"build": "npm run clean && npm run build:ts && npm run build:permissions",
"build:ts": "tsc -p tsconfig.build.json",
"build:permissions": "chmod 755 dist/cli/*.js",
"ci": "npm run verify && npm run build",
"prepublishOnly": "npm run verify && npm run build"
},
"engines": {
"node": ">=22.13.0"
},
"author": "Steadybit GmbH",
"license": "MIT",
"dependencies": {
"@inquirer/confirm": "^6.1.1",
"@inquirer/input": "^5.1.2",
"@inquirer/password": "^5.1.1",
"@inquirer/select": "^5.2.1",
"commander": "^15.0.0",
"console-table-printer": "^2.12.1",
"js-yaml": "^5.2.2",
"picocolors": "^1.1.1",
"rxjs": "^7.5.5",
"semver": "^7.3.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@inquirer/testing": "^3.3.9",
"@types/node": "^22.19.4",
"@types/semver": "^7.3.9",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"msw": "^2.15.0",
"prettier": "^3.9.6",
"typescript": "~6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
}
}