-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.57 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
{
"name": "portwood-docgen",
"version": "1.0.0",
"private": true,
"description": "Build tooling for the Portwood DocGen managed package (Salesforce 2GP). Pins formatter versions and pre-commit hooks so every contributor produces identical output regardless of local install.",
"repository": {
"type": "git",
"url": "git+https://github.com/Portwood-Global-Solutions/Portwood.git"
},
"homepage": "https://portwood.dev",
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write \"force-app/**/*.{cls,trigger,page,component,cmp,html,js,xml}\" \"scripts/**/*.apex\" \"*.{json,md,yml,yaml}\"",
"format:check": "prettier --check \"force-app/**/*.{cls,trigger,page,component,cmp,html,js,xml}\" \"scripts/**/*.apex\" \"*.{json,md,yml,yaml}\"",
"prepare": "husky",
"smoke": "node scripts/ui-smoke.mjs",
"qa": "node scripts/qa/run-all.mjs",
"qa:offline": "node scripts/qa/run-all.mjs --offline",
"org:setup": "./scripts/qa/setup-org.sh",
"org:new": "./scripts/qa/setup-org.sh docgen-verify --create"
},
"devDependencies": {
"@prettier/plugin-xml": "3.4.2",
"husky": "9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "16.4.0",
"playwright": "^1.62.0",
"prettier": "3.8.3",
"prettier-plugin-apex": "2.2.6"
},
"lint-staged": {
"force-app/**/*.{cls,trigger,page,component,cmp,html,js,xml}": "prettier --write",
"scripts/**/*.apex": "prettier --write",
"*.{json,md,yml,yaml}": "prettier --write"
}
}