-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 875 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 875 Bytes
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
{
"name": "@patternfly/class-name-updater",
"version": "2.1.1",
"description": "Utility to update class names with Patternfly version numbers",
"author": "Red Hat",
"license": "MIT",
"bin": "./dist/cli.js",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build --verbose ./tsconfig.json",
"clean": "rimraf ./dist",
"test": "yarn build && yarn test:v5 && yarn test:v6",
"test:v5": "node ./dist/cli.js test --exclude test/largeFile.js",
"test:v6": "node ./dist/cli.js test --exclude test/largeFile.js --v6"
},
"dependencies": {
"@patternfly/shared-codemod-helpers": "workspace:^",
"colors": "^1.4.0",
"commander": "^5.1.0",
"diff": "^5.1.0",
"glob": "^12.0.0"
},
"devDependencies": {
"@types/diff": "^5.0.9",
"typescript": "^5.4.2"
}
}