forked from pozil/sfdc-ui-lookup-lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "sfdc-ui-lookup-lwc",
"private": true,
"version": "1.2.0",
"description": "Salesforce Lookup Component (Lightning Web Components version)",
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.5.0"
},
"scripts": {
"lint": "eslint **/lwc/**",
"test": "npm run lint && npm run test:unit",
"test:unit": "sfdx-lwc-jest",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"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"
},
"author": "Philippe Ozil",
"devDependencies": {
"@salesforce/eslint-config-lwc": "^0.5.0",
"@salesforce/sfdx-lwc-jest": "^0.7.1",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"prettier-plugin-apex": "^1.3.0",
"semver": "^7.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}": [
"prettier --write"
],
"**/lwc/**": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/sfdc-ui-lookup-lwc"
}
}