-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "sfdc-ui-lookup-lwc",
"private": true,
"version": "2.27.0",
"description": "Salesforce Lookup Component (Lightning Web Components version)",
"scripts": {
"lint": "eslint .",
"test": "sfdx-lwc-jest",
"test:watch": "sfdx-lwc-jest --watch",
"test:debug": "sfdx-lwc-jest --debug",
"test:coverage": "sfdx-lwc-jest --coverage",
"prettier": "prettier --write '**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}'",
"prettier:verify": "prettier --check '**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}'",
"prepare": "husky || true",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{cls,css,html,js,json,md,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/*.js": [
"eslint"
],
"**/lwc/**": [
"sfdx-lwc-jest -- --bail --findRelatedTests --passWithNoTests"
]
},
"author": "Philippe Ozil",
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^3.2.0",
"@prettier/plugin-xml": "^3.4.2",
"@sa11y/jest": "^7.4.0",
"@salesforce/eslint-config-lwc": "^4.0.0",
"@salesforce/eslint-plugin-lightning": "^2.0.0",
"@salesforce/sfdx-lwc-jest": "^7.1.0",
"eslint": "^9.36.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"prettier": "^3.6.2",
"prettier-plugin-apex": "^2.2.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/sfdc-ui-lookup-lwc"
},
"volta": {
"node": "22.16.0"
}
}