-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
49 lines (49 loc) · 1.78 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
{
"name": "sfdc-ui-lookup-lwc",
"private": true,
"version": "2.26.0",
"description": "Salesforce Lookup Component (Lightning Web Components version)",
"scripts": {
"lint": "eslint **/lwc/**/*.js",
"test": "sfdx-lwc-jest --skipApiVersionCheck",
"test:watch": "sfdx-lwc-jest --watch --skipApiVersionCheck",
"test:debug": "sfdx-lwc-jest --debug --skipApiVersionCheck",
"test:coverage": "sfdx-lwc-jest --coverage --skipApiVersionCheck",
"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"
],
"**/lwc/**/*.js": [
"eslint",
"sfdx-lwc-jest --skipApiVersionCheck -- --bail --findRelatedTests"
]
},
"author": "Philippe Ozil",
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.8.2",
"@prettier/plugin-xml": "^3.4.1",
"@sa11y/jest": "^6.12.1",
"@salesforce/eslint-config-lwc": "^3.6.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^6.0.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-apex": "^2.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/sfdc-ui-lookup-lwc"
},
"volta": {
"node": "20.13.1"
}
}