-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
54
55
56
57
58
59
{
"name": "lwc-scv-recording",
"version": "1.0.0",
"description": "Salesforce LWC to control call recording on Service Cloud Voice",
"scripts": {
"lint": "npm run lint:lwc && npm run lint:apex",
"lint:lwc": "eslint force-app/main/default/lwc",
"lint:apex": "pmd pmd --minimum-priority 2 -d force-app -R apex-ruleset.xml -f text -l apex",
"test:lwc": "sfdx-lwc-jest",
"test:lwc: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}\"",
"pre-commit": "lint-staged --allow-empty",
"prepare": "husky install",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorgz/lwc-scv-recording.git"
},
"keywords": [
"lwc",
"salesforce",
"service-cloud-voice",
"apex",
"lightning"
],
"author": "victorgz",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/victorgz/lwc-scv-recording/issues"
},
"homepage": "https://github.com/victorgz/lwc-scv-recording#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@locker/eslint-config-locker": "^0.16.9",
"@lwc/eslint-plugin-lwc": "^1.6.2",
"@prettier/plugin-xml": "^0.13.1",
"@salesforce/eslint-config-lwc": "^0.11.0",
"@salesforce/sfdx-lwc-jest": "^1.1.0",
"eslint": "^7.32.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-apex": "^1.8.0",
"standard-version": "^9.5.0"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}": [
"prettier --write"
],
"**/lwc/**": [
"eslint"
]
}
}