2022-11-14 18:11:53 +03:00
|
|
|
{
|
2022-11-17 01:21:38 +03:00
|
|
|
"name": "octoforce-actions",
|
2022-11-14 18:11:53 +03:00
|
|
|
"private": true,
|
|
|
|
"version": "1.0.0",
|
2022-11-16 00:31:18 +03:00
|
|
|
"description": "A lightweight open-source Salesforce CI/CD framework built on the GitHub platform.",
|
2022-11-14 18:11:53 +03:00
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint **/{aura,lwc}/**",
|
|
|
|
"test": "npm run 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",
|
|
|
|
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
|
|
|
|
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
|
|
|
|
"postinstall": "husky install",
|
|
|
|
"precommit": "lint-staged"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-06-21 07:23:03 +03:00
|
|
|
"@actions/core": "^1.10.1",
|
2022-11-17 01:45:32 +03:00
|
|
|
"@actions/github": "^5.1.1",
|
2024-06-21 07:23:03 +03:00
|
|
|
"@lwc/eslint-plugin-lwc": "^1.6.3",
|
2022-11-14 18:11:53 +03:00
|
|
|
"@prettier/plugin-xml": "^2.0.1",
|
2024-06-21 07:23:03 +03:00
|
|
|
"@salesforce/eslint-config-lwc": "^3.5.2",
|
|
|
|
"@salesforce/eslint-plugin-aura": "^2.1.0",
|
2022-11-14 18:11:53 +03:00
|
|
|
"@salesforce/eslint-plugin-lightning": "^1.0.0",
|
2024-06-21 07:23:03 +03:00
|
|
|
"@salesforce/sfdx-lwc-jest": "^5.0.0",
|
|
|
|
"eslint": "^8.49.0",
|
2022-11-14 18:11:53 +03:00
|
|
|
"eslint-plugin-import": "^2.25.4",
|
|
|
|
"eslint-plugin-jest": "^26.1.2",
|
2024-06-21 07:23:03 +03:00
|
|
|
"husky": "^8.0.3",
|
|
|
|
"lint-staged": "^14.0.1",
|
|
|
|
"prettier": "^3.2.5",
|
|
|
|
"prettier-plugin-apex": "^2.0.1"
|
|
|
|
},
|
|
|
|
"overrides": {
|
|
|
|
"braces": "3.0.3"
|
2022-11-14 18:11:53 +03:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
|
|
|
|
"prettier --write"
|
|
|
|
],
|
|
|
|
"**/{aura,lwc}/**": [
|
|
|
|
"eslint"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|