forked from salesforce/base-components-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.96 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": "base-components-recipes",
"private": true,
"version": "0.1.0",
"description": "Base Components Recipes",
"scripts": {
"lint": "npm run lint:lwc && npm run lint:aura",
"lint:lwc": "eslint **/lwc/**",
"lint:aura": "eslint **/aura/** --no-error-on-unmatched-pattern",
"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",
"test:unit:coverage": "sfdx-lwc-jest --coverage",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"postinstall": "node bin/check-version.js"
},
"license": "CC0-1.0",
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.5.0"
},
"devDependencies": {
"@prettier/plugin-xml": "^0.12.0",
"@sa11y/jest": "^0.1.4-beta.0",
"@salesforce/eslint-config-lwc": "^0.7.0",
"@salesforce/eslint-plugin-aura": "^1.4.0",
"@salesforce/sfdx-lwc-jest": "^0.10.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"husky": "^4.3.0",
"jest-canvas-mock": "^2.3.0",
"lint-staged": "^10.4.0",
"lwc-wire-service-sfdc-mocks": "http://npm.lwcjs.org/lwc-wire-service-sfdc-mocks/-/lwc-wire-service-sfdc-mocks-4.0.0-alpha4/b08248351ca36d32498e6f61443c58b0c96807d8.tgz",
"prettier": "^2.1.2",
"prettier-plugin-apex": "^1.7.0",
"semver": "^7.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{aura|lwc}/**": [
"eslint"
]
}
}