-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 2.53 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
{
"name": "pf-codemods",
"version": "1.3.0",
"description": "PF codemods monorepo",
"private": true,
"scripts": {
"test": "yarn test:v4 && yarn test:v5 && yarn test:v6",
"test:v4": "mocha packages/eslint-plugin-pf-codemods/test/rules/v4",
"test:v5": "mocha packages/eslint-plugin-pf-codemods/test/rules/v5",
"test:v6": "yarn build && mocha packages/eslint-plugin-pf-codemods/dist/js/rules/v6/*/*.test.js",
"test:v4:single": "pf-codemods --v4 --no-cache test/v4test.tsx",
"test:v5:single": "pf-codemods --no-cache test/test.tsx",
"test:v6:single": "yarn build && pf-codemods --v6 --no-cache packages/eslint-plugin-pf-codemods/src/rules/v6/*/*Input.tsx",
"test:v6:single:output": "yarn build && pf-codemods --v6 --no-cache packages/eslint-plugin-pf-codemods/src/rules/v6/*/*Output.tsx",
"test:koku": "pf-codemods --v6 --no-cache test/koku-ui",
"test:console": "pf-codemods --v6 --no-cache test/console/frontend",
"test:integreatly": "pf-codemods --v6 --no-cache test/tutorial-web-app",
"test:packages": "yarn get:packages && node --unhandled-rejections=strict packages/pf-codemods/index.js --v6 --no-cache test/packages",
"test:classnames": "lerna run test --scope=@patternfly/class-name-updater --stream",
"test:classnames:v5": "yarn build:classnames && lerna run test:v5 --scope=@patternfly/class-name-updater --stream",
"test:classnames:v6": "yarn build:classnames && lerna run test:v6 --scope=@patternfly/class-name-updater --stream",
"get:packages": "node getPackages.js",
"generate": "yarn build:generators && plop",
"build": "lerna run build",
"build:generators": "tsc --build --verbose generators/tsconfig.cjs.json",
"build:readme": "lerna run build:readme",
"build:classnames": "lerna run build --scope=@patternfly/class-name-updater",
"clean": "lerna run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patternfly/pf-codemods.git"
},
"author": "Red Hat",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/pf-codemods/issues"
},
"homepage": "https://github.com/patternfly/pf-codemods#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^3.22.0",
"mocha": "^7.2.0",
"plop": "^3.1.2",
"ts-node": "^10.9.2",
"case-anything": "^2.1.13",
"fs-extra": "^11.2.0",
"@types/fs-extra": "^11.0.4"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}