forked from pozil/sfdc-ui-lookup-lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.95 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
{
"name": "sfdc-ui-lookup-lwc",
"private": true,
"version": "2.10.0",
"description": "Salesforce Lookup Component (Lightning Web Components version)",
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.5.0"
},
"scripts": {
"lint": "eslint **/lwc/**",
"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 --list-different '**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}'",
"postinstall": "node install-scripts/check-version.js && husky install",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{aura,lwc}/**": [
"eslint"
],
"**/lwc/**": [
"sfdx-lwc-jest --skipApiVersionCheck -- --bail --findRelatedTests"
]
},
"author": "Philippe Ozil",
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.0.1",
"@prettier/plugin-xml": "^1.0.1",
"@salesforce/eslint-config-lwc": "^2.0.0",
"@salesforce/eslint-plugin-lightning": "^0.1.1",
"@salesforce/sfdx-lwc-jest": "^0.14.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"husky": "^7.0.0",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"prettier-plugin-apex": "^1.10.0",
"semver": "^7.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/sfdc-ui-lookup-lwc"
}
}