This repository was archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.35 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.35 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
{
"name": "sfdx-lightning-api-component",
"version": "2.2.0",
"description": "Promise-based service component for calling REST API from Lightning Aura Components without Named Credentials.",
"scripts": {
"org:create": "sfdx force:org:create --setalias lapi --setdefaultusername --definitionfile config/project-scratch-def.json",
"org:delete": "sfdx force:org:delete --targetusername lapi",
"org:open": "sfdx force:org:open --targetusername lapi --path //lightning/n/LC_Demo",
"source:deploy": "sfdx force:source:deploy --sourcepath force-app,force-demo --wait 10",
"permset:assign": "sfdx force:user:permset:assign --permsetname LC_Demo",
"apex:test": "sfdx force:apex:test:run --targetusername lapi --codecoverage --resultformat human --wait 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/douglascayers/sfdx-lightning-api-component.git"
},
"keywords": [
"salesforce",
"aura",
"promise",
"lightning-components"
],
"author": "Doug Ayers",
"license": "BSD-3-Clause",
"bugs": "https://github.com/douglascayers/sfdx-lightning-api-component/issues",
"homepage": "https://github.com/douglascayers/sfdx-lightning-api-component#readme",
"dependencies": {
"jsforce": "1.9.3",
"penpal": "4.1.1"
}
}