forked from karkranikhil/salesforcetroop-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 919 Bytes
/
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
{
"name": "HelloWorld",
"version": "1.0.0",
"description": "This guide helps Salesforce developers who are new to Visual Studio Code go from zero to a deployed app using Salesforce Extensions for VS Code and Salesforce CLI.",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@salesforce/sfdx-lwc-jest": "^0.9.2"
},
"scripts": {
"test":"npm run test:unit",
"test:unit": "sfdx-lwc-jest",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:coverage": "sfdx-lwc-jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karkranikhil/salesforcetroop-code.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/karkranikhil/salesforcetroop-code/issues"
},
"homepage": "https://github.com/karkranikhil/salesforcetroop-code#readme"
}