-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.74 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "salesforce-data-treecipe",
"displayName": "Salesforce Data Treecipe",
"description": "source-fidelity driven development, pairs well with cumulus-ci",
"icon": "images/datatreecipe.webp",
"version": "1.1.0",
"engines": {
"vscode": "^1.94.0"
},
"publisher": "Salesforce-Data-Treecipe",
"repository": {
"type": "git",
"url": "https://github.com/jdschleicher/Salesforce-Data-Treecipe"
},
"categories": [
"Testing",
"Visualization",
"Programming Languages"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "treecipe.generateTreecipe",
"title": "Generate Treecipe",
"category": "Salesforce Treecipe"
},
{
"command": "treecipe.initiateConfiguration",
"title": "Initiate Configuration File",
"category": "Salesforce Treecipe"
},
{
"command": "treecipe.runSnowfakeryByRecipe",
"title": "Run Snowfakery by Recipe",
"category": "Salesforce Treecipe"
}
],
"configuration": [
{
"title": "TREECIPE_EXTENSION_CONFIGURATION",
"properties": {
"salesforce-data-treecipe.selectedFakerService": {
"type": "string",
"description": "faker implementation chosen as part of treecipe config setup and selections",
"default": "snowfakery"
},
"salesforce-data-treecipe.treecipeConfigurationPath": {
"type": "string",
"description": "workspace path location of treecipe.config.json file"
},
"salesforce-data-treecipe.useSnowfakeryAsDefault": {
"type": "boolean",
"description": "feature flag to drive snowfakery-data-treecipe to leverage snowfakery as default faker provider"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"vscode-test": "vscode-test",
"jest-test-summary": "jest --coverage --coverageReporters='json-summary' --json --outputFile=coverage/jest-results.json",
"jest-test": "jest --coverage"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.4.1",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.11.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@salesforce/core": "^8.8.0",
"ts-node": "^10.9.2",
"xml2js": "^0.6.2"
}
}