-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.3 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
{
"name": "duplicatehandling",
"private": true,
"version": "2.0.1",
"description": "Duplicates Handling enhancements",
"author": "David Schach",
"license": "GNU-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dschach/duplicatehandling"
},
"scripts": {
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:docs": "prettier --write \"docs/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"force-app/**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:apex": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify:apex": "prettier --check \"**/*.{cls,cmp,component,page,trigger}\"",
"prune": "git branch | grep -v \"main\" | xargs git branch -D",
"scratchorg": ". scripts/orginit.sh",
"prepare": "husky"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"highlightjs-apex": "^1.4.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"marked": "^15.0.6",
"prettier": "^3.4.2",
"prettier-plugin-apex": "^2.2.2"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
]
}
}