-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
60
61
{
"name": "outboundfundsmodulenpsp",
"license": "UNLICENSED",
"author": "Salesforce.org Impact Engineering",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7",
"@lwc/eslint-plugin-lwc": "^1.0.0",
"@sa11y/jest": "^3.1.0",
"@salesforce/eslint-config-lwc": "^3.2.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^0.14.0",
"cspell": "^5.13.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"hasha-cli": "^4.1.0",
"husky": "^4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"lockfile-lint": "^4.6.2",
"prettier": "^2.4.1",
"prettier-plugin-apex": "^1.10.0",
"typescript": "^4.5.2"
},
"resolutions": {
"yargs-parser": "^20.2.2",
"trim-newlines": "^3.0.1"
},
"scripts": {
"test:unit": "lwc-jest",
"test:unit:coverage": "lwc-jest --coverage",
"test:unit:watch": "lwc-jest --watch",
"test:unit:debug": "lwc-jest --debug",
"lint:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --validate-https",
"python:label_audit": "venv/bin/python scripts/label_audit.py"
},
"jest": {
"preset": "@lwc/jest-preset"
},
"lint-staged": {
"*.{cls,apex,js,html,md,yml,yaml,json}": [
"prettier --write"
],
"*.{cls,apex,js,html,md,xml,sql,py,yml,yaml}": [
"cspell"
],
"*.js": [
"eslint"
],
"*.py": [
"venv/bin/black --check --diff",
"venv/bin/flake8"
],
"yarn.lock": [
"lockfile-lint"
]
}
}