-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "@rundown-org/cli",
"version": "1.0.0",
"description": "Runbook orchestration CLI",
"type": "module",
"main": "dist/cli.js",
"bin": {
"rundown": "dist/cli.js",
"rd": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && chmod +x dist/cli.js && node scripts/copy-runbooks.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:unit": "NODE_OPTIONS='--experimental-vm-modules' jest --maxWorkers=2 --testPathIgnorePatterns='integration'",
"test:integration": "NODE_OPTIONS='--experimental-vm-modules' jest --maxWorkers=2 --testPathPattern='integration'",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"test:mutate": "stryker run",
"clean": "rm -rf dist"
},
"keywords": [
"rundown",
"runbook",
"cli",
"markdown"
],
"author": "Toby Hede",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tobyhede/rundown.git",
"directory": "packages/cli"
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@rundown-org/core": "*",
"@rundown-org/parser": "*",
"commander": "^14.0.2",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.1",
"minimatch": "^10.2.4",
"shell-quote": "^1.8.3",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.0",
"@types/shell-quote": "^1.7.5",
"jest": "^29.7.0",
"ts-jest": "^29.2.0",
"typescript": "^5.0.0"
}
}