-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 KB
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
{
"name": "apex-async-linkable",
"version": "3.3.1",
"description": "Chain all kinds of async jobs in apex",
"author": "Sebastien Colladon <colladonsebastien@gmail.com>",
"private": true,
"keyword": [
"salesforce",
"async",
"future",
"batch",
"schedule",
"queue"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scolladon/apex-async-linkable.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/scolladon/apex-async-linkable/issues"
},
"homepage": "https://github.com/scolladon/apex-async-linkable#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "sfdx scanner:run -v -t 'chain/src/lib/classes/*.cls' -f table -c 'Async-Linkable'",
"postinstall": "./postInstall.sh",
"pre-commit": "lint-staged",
"pre-push": "npm run test:coverage && npm run lint",
"prepare": "husky install",
"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}\"",
"test": "sfdx force:apex:test:run -r human -d ./tests/apex -s chainLibrary -w 20",
"test:coverage": "npm run test -- -c"
},
"devDependencies": {
"@prettier/plugin-xml": "~2.2.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "~2.7.1",
"prettier-plugin-apex": "~1.11.0"
}
}