-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "custom-path-assistant",
"private": true,
"version": "0.1.0",
"description": "A custom Path Assistant built with LWC",
"scripts": {
"lint": "npm run lint:lwc",
"lint:lwc": "eslint **/lwc/**",
"test": "npm run lint && npm run test:unit",
"test:unit": "lwc-jest",
"test:unit:watch": "lwc-jest --watch",
"test:unit:debug": "lwc-jest --debug",
"test:unit:coverage": "lwc-jest --coverage",
"prettier": "prettier --write '**/*.{cmp,component,css,html,js,json,md,page,yaml,yml}'",
"prettier:verify": "prettier --list-different '**/*.{html,js,json,yaml,yml,md,cmp,page,component}'"
},
"author": "Maaaaarco",
"repository": {
"type": "git",
"url": "git+https://github.com/maaaaarco/Salesforce-Custom-Path-Assistant-LWC.git"
},
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.5.0"
},
"devDependencies": {
"@salesforce/eslint-config-lwc": "^0.3.0",
"@salesforce/lwc-jest": "^0.4.12",
"eslint": "^5.15.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "github:prettier/prettier",
"semver": "^5.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{html,js,json,yaml,yml,md,cmp,page,component}": [
"prettier --write"
],
"**/lwc/**": [
"eslint"
],
"*": [
"git add"
]
}
}