-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 1.13 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
{
"name": "salesforce-round-robin",
"version": "0.1.6",
"description": "Round robin records in Salesforce (SFDC) using Flow or Apex. Performant, fair, fast assignment with configurable user pools",
"repository": {
"type": "git",
"url": "https://github.com/jamessimone/salesforce-round-robin"
},
"author": "james.simone",
"license": "MIT",
"devDependencies": {
"@salesforce/cli": "latest",
"@salesforce/sfdx-scanner": "^3.15.0",
"prettier": "latest",
"prettier-plugin-apex": "latest"
},
"keywords": [
"salesforce",
"round robin",
"apex",
"flow"
],
"scripts": {
"create:package:round:robin": "pwsh -Command \"&{ . ./scripts/generatePackage.ps1; Generate -PackageName '\"salesforce-round-robin\"' -ReadmePath \"./README.md\" }\"",
"prepare": "sf plugins link ./node_modules/@salesforce/sfdx-scanner",
"prettier": "prettier",
"scan": "sf scanner run --pmdconfig config/pmd-ruleset.xml --target . --engine pmd --severity-threshold 3",
"test": "npm run test:apex",
"test:apex": "sf apex test run -s RoundRobinTestSuite -w 10",
"test:lwc": "echo No LWCs so far!"
}
}