-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.05 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
{
"name": "steadybit",
"version": "4.2.6",
"description": "Command-line interface to interact with the Steadybit API",
"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:unit-test && npm run verify:lint && npm run prettier-check",
"verify:unit-test": "jest",
"verify:lint": "eslint src",
"prettier-check": "prettier src --check",
"prettier-write": "prettier src --write",
"build": "npm run clean && npm run build:ts && npm run build:permissions",
"build:ts": "tsc",
"build:permissions": "chmod 755 dist/cli/*",
"ci": "npm run verify && npm run build",
"prepublishOnly": "npm run verify && npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Steadybit GmbH",
"license": "MIT",
"dependencies": {
"archy": "^1.0.0",
"colors": "1.4.0",
"commander": "^9.0.0",
"console-table-printer": "^2.12.1",
"eventsource": "^2.0.2",
"inquirer": "^8.2.0",
"js-yaml": "^4.1.0",
"node-fetch": "^2.7.0",
"open": "^8.4.0",
"ora": "^5.4.1",
"rxjs": "^7.5.5",
"semver": "^7.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.9.1",
"@types/archy": "^0.0.32",
"@types/eslint__js": "^8.42.3",
"@types/eventsource": "^1.1.15",
"@types/inquirer": "^8.2.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/node-fetch": "^2.6.9",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.4",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"msw": "^2.2.14",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}