-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.57 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
{
"name": "package-builder",
"private": true,
"version": "2.0.0",
"description": "Package Builder, ability to build package.xml and sfdx cmd of specific file names. All from within the org.",
"scripts": {
"lint": "./bin/lint",
"lint:aura": "eslint **/aura/**",
"lint:lwc": "eslint **/lwc/**",
"lint:markdown": "markdownlint .github/**/*.md README.md CHANGELOG.md -c .markdownlint.yml",
"pmd:mac": "$HOME/.pmd-bin-6.55.0/bin/run.sh pmd -d ./src/PackBuild/classes -R ./.pmdrc.xml -f textcolor --force-language apex",
"apexTest": "sf apex run test -s \"PackageBuilder\" -r human -c -w 30 -d .sfdx/tools/testresults/apex",
"test": "pnpm test:unit",
"test:unit": "sfdx-lwc-jest",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:coverage": "sfdx-lwc-jest --coverage",
"format": "prettier -l \"./**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}\"",
"format:fix": "prettier -w \"./**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}\""
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.7.2",
"@prettier/plugin-xml": "^3.3.1",
"@salesforce/eslint-config-lwc": "^3.5.3",
"@salesforce/eslint-plugin-aura": "^2.1.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^4.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"markdownlint": "^0.34.0",
"prettier": "^3.2.5",
"prettier-plugin-apex": "^2.1.0"
}
}