-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "patternfly-cli",
"version": "1.0.0-prerelease.1",
"description": "Patternfly cli for scaffolding projects, performing code mods, and running project related tasks",
"author": "Red Hat",
"license": "MIT",
"main": "dist/cli.js",
"type": "module",
"bin": {
"patternfly-cli": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"js"
]
},
"dependencies": {
"0g": "^0.4.2",
"commander": "^12.1.0",
"execa": "^9.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.3.5"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"jest": "^29.7.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}